Browse Source
Merge pull request #150 from abpframework/skoc/paypalsecret
Change location of paypal secret
main
selman koc
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
4 deletions
-
etc/k8s/helm-chart/eventhub/charts/api/templates/api.yaml
-
etc/k8s/helm-chart/eventhub/values.azure.yaml
|
|
|
@ -27,12 +27,12 @@ spec: |
|
|
|
- name: Payment__PayPal__ClientId |
|
|
|
valueFrom: |
|
|
|
secretKeyRef: |
|
|
|
name: {{ .Values.payPal.secretName }} |
|
|
|
name: {{ .Values.global.payPal.secretName }} |
|
|
|
key: clientId |
|
|
|
- name: Payment__PayPal__Secret |
|
|
|
valueFrom: |
|
|
|
secretKeyRef: |
|
|
|
name: {{ .Values.payPal.secretName }} |
|
|
|
name: {{ .Values.global.payPal.secretName }} |
|
|
|
key: secret |
|
|
|
nodeSelector: |
|
|
|
agentpool: demopool |
|
|
|
|
|
|
|
@ -20,6 +20,8 @@ global: |
|
|
|
stringEncryptionDefaultPassPhrase: "TxVIZFPxK33czbbv" |
|
|
|
imagePullPolicy: Always |
|
|
|
eventHubImageVersion: latest |
|
|
|
payPal: |
|
|
|
secretName: paypal-secret # look for this secret https://github.com/volosoft/devops/blob/master/old-folder/eventhub/apihost-secret.yaml |
|
|
|
account: |
|
|
|
containerImage: "volosoft.azurecr.io/eventhub/identityserver" |
|
|
|
api: |
|
|
|
@ -34,7 +36,5 @@ dbmigrator: |
|
|
|
containerImage: "volosoft.azurecr.io/eventhub/dbmigrator" |
|
|
|
background-services: |
|
|
|
containerImage: "volosoft.azurecr.io/eventhub/background" |
|
|
|
payPal: |
|
|
|
secretName: paypal-secret # look for this secret https://github.com/volosoft/devops/blob/master/old-folder/eventhub/apihost-secret.yaml |
|
|
|
nodeSelector: |
|
|
|
agentpool: demopool |