Skip to content

Commit

Permalink
chore: add missing error-reporting values
Browse files Browse the repository at this point in the history
  • Loading branch information
NilsOveTen committed Jun 13, 2024
1 parent 07e6a51 commit fa3a9c1
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 3 deletions.
3 changes: 3 additions & 0 deletions deploy/base/deployment-catalog-history-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,6 @@ spec:
httpGet:
path: /ready
port: 8080
volumeMounts:
- mountPath: /var/secrets/google
name: error-reporting-sa
13 changes: 12 additions & 1 deletion deploy/demo/env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ spec:
spec:
containers:
- name: catalog-history-service
env:
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /var/secrets/google/error-reporting-sa-key.json
- name: PROJECT_ID_GCP
valueFrom:
secretKeyRef:
name: common-demo
key: PROJECT_ID
- name: MONGO_HOST
valueFrom:
secretKeyRef:
Expand All @@ -31,3 +38,7 @@ spec:
secretKeyRef:
name: commonurl-demo
key: SSO_AUTH_URI
volumes:
- name: error-reporting-sa
secret:
secretName: error-reporting-sa-demo
13 changes: 12 additions & 1 deletion deploy/prod/env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ spec:
spec:
containers:
- name: catalog-history-service
env:
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /var/secrets/google/error-reporting-sa-key.json
- name: PROJECT_ID_GCP
valueFrom:
secretKeyRef:
name: common-prod
key: PROJECT_ID
- name: MONGO_HOST
valueFrom:
secretKeyRef:
Expand All @@ -31,3 +38,7 @@ spec:
secretKeyRef:
name: commonurl-prod
key: SSO_AUTH_URI
volumes:
- name: error-reporting-sa
secret:
secretName: error-reporting-sa-prod
13 changes: 12 additions & 1 deletion deploy/staging/env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ spec:
spec:
containers:
- name: catalog-history-service
env:
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /var/secrets/google/error-reporting-sa-key.json
- name: PROJECT_ID_GCP
valueFrom:
secretKeyRef:
name: common-staging
key: PROJECT_ID
- name: MONGO_HOST
valueFrom:
secretKeyRef:
Expand All @@ -31,3 +38,7 @@ spec:
secretKeyRef:
name: commonurl-staging
key: SSO_AUTH_URI
volumes:
- name: error-reporting-sa
secret:
secretName: error-reporting-sa-staging

0 comments on commit fa3a9c1

Please sign in to comment.