Skip to content

Commit

Permalink
remove username references and push to dockerhub (#128)
Browse files Browse the repository at this point in the history
* remove username references and push to dockerhub

* update calendar java app image
  • Loading branch information
jackgopack4 authored Aug 15, 2024
1 parent 22de51b commit f9d8349
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion apps/manual-container-metrics/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
- name: manual-container-metrics-app
securityContext:
{}
image: "stanleyliu855/manual-container-metrics-app:v1.0.5"
image: "datadog/opentelemetry-examples:manual-container-metrics-app-v1.0.5"
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down
2 changes: 1 addition & 1 deletion apps/rest-services/golang/calendar/k8s/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
spec:
containers:
- name: calendar-rest-go
image: dineshgurumurthydd/apps:calendar-go-rest-0.6
image: datadog/opentelemetry-examples:calendar-go-rest-0.14
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down
4 changes: 2 additions & 2 deletions apps/rest-services/java/calendar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ As of now, in order for trace/log correlation to work the `trace_id` key needs t
Install calendar in K8s with OTel SDK

```
helm install -n otel-ingest calendar-otel-java ./deploys/calendar/ --set image.repository=dineshgurumurthydd/calendar-java --set image.tag=otel-0.1,node_group=ng-1
helm install -n otel-ingest calendar-otel-java ./deploys/calendar/ --set image.repository=datadog/opentelemetry-examples --set image.tag=calendar-java-otel-0.1,node_group=ng-1
```

Install calendar in K8s with DD SDK

```
helm install -n otel-ingest calendar-dd-java ./deploys/calendar-dd/ --set image.repository=dineshgurumurthydd/calendar-java --set image.tag=otel-0.1,node_group=ng-1
helm install -n otel-ingest calendar-dd-java ./deploys/calendar-dd/ --set image.repository=datadog/opentelemetry-examples --set image.tag=calendar-java-otel-0.1,node_group=ng-1
```
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

replicaCount: 1
image:
repository: pablobaeyens/calendar-app
repository: datadog/opentelemetry-examples
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "latest"
tag: "calendar-app-latest"
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
Expand Down
4 changes: 2 additions & 2 deletions apps/rest-services/java/calendar/deploys/calendar/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

replicaCount: 3
image:
repository: dineshgurumurthydd/calendar-java
repository: datadog/opentelemetry-examples
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "20240507-01"
tag: "calendar-java-20240815-01"
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion apps/rest-services/js/database.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { Pool } = require('pg');

const pool = new Pool({
user: 'dinesh.gurumurthy',
user: 'otel.sample',
host: 'localhost',
database: 'postgres',
port: 5432,
Expand Down
2 changes: 1 addition & 1 deletion apps/rest-services/py/app_postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import psycopg2
from flask import Flask, jsonify, request

DATABASE = "dbname=postgres user=dinesh.gurumurthy host=localhost port=5432"
DATABASE = "dbname=postgres user=otel.sample host=localhost port=5432"


def get_db():
Expand Down

0 comments on commit f9d8349

Please sign in to comment.