Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add missing error-reporting values #29

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading