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

Update datadog secret in BGS #3385

Closed
wants to merge 13 commits into from
4 changes: 2 additions & 2 deletions helm/svc-bgs-api/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
- name: DD_RABBITMQ_PASS
valueFrom:
secretKeyRef:
name: vro-dd-rabbitmq-pass
key: rabbitmq_pass
name: {{ .Values.secrets.rabbitmq.name }}
key: {{ .Values.secrets.rabbitmq.key }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
6 changes: 6 additions & 0 deletions helm/svc-bgs-api/values-for-prod-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@
bip:
bipClaimUrl: claims-prodtest.prod.bip.va.gov/api/v1
bipEvidenceUrl: vefs-claimevidence-prodtest.prod.bip.va.gov/api/v1/rest

secrets:
rabbitmq:
name: vro-dd-rabbitmq-pass
key: rabbitmq_pass

6 changes: 6 additions & 0 deletions helm/svc-bgs-api/values-for-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@
bip:
bipClaimUrl: claims-prod.prod.bip.va.gov/api/v1
bipEvidenceUrl: vefs-claimevidence.prod.bip.va.gov/api/v1/rest

secrets:
rabbitmq:
name: vro-dd-rabbitmq-pass
key: rabbitmq_pass

6 changes: 6 additions & 0 deletions helm/svc-bgs-api/values-for-qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@
bip:
bipClaimUrl: claims-uat.stage.bip.va.gov/api/v1
bipEvidenceUrl: vefs-claimevidence-uat.stage.bip.va.gov/api/v1/rest/

secrets:
rabbitmq:
name: vro-dd-rabbitmq-pass
key: rabbitmq_pass

6 changes: 6 additions & 0 deletions helm/svc-bgs-api/values-for-sandbox.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,9 @@
bip:
bipClaimUrl: claims-uat.stage.bip.va.gov/api/v1
bipEvidenceUrl: vefs-claimevidence-uat.stage.bip.va.gov/api/v1/rest

secrets:
rabbitmq:
name: vro-dd-rabbitmq-pass
key: rabbitmq_pass

6 changes: 6 additions & 0 deletions helm/svc-bgs-api/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,9 @@ bip:
# TODO: Consider moving these URL settings to application-*.yml files
bipClaimUrl: claims-uat.stage.bip.va.gov/api/v1
bipEvidenceUrl: vefs-claimevidence-uat.stage.bip.va.gov/api/v1/rest

secrets:
rabbitmq:
name: vro-dd-rabbitmq-pass
key: rabbitmq_pass
Ponnia-M marked this conversation as resolved.
Show resolved Hide resolved

2 changes: 1 addition & 1 deletion scripts/image_vars.src
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ imageTagExists(){
export postgres_GRADLE_IMG="va/abd_vro-postgres"
export postgres_IMG="vro-postgres"

export rabbitmq_GRADLE_IMG="va/abd_vro-rabbitmq"
export rabbitmq_GRADLE_IMG="va/abd_rabbitmq"
Ponnia-M marked this conversation as resolved.
Show resolved Hide resolved
export rabbitmq_IMG="rabbitmq"

export dbinit_GRADLE_IMG="va/abd_vro-db-init"
Expand Down