Skip to content

Commit

Permalink
Change which secrets are used to pull the kafka connection details (#367
Browse files Browse the repository at this point in the history
)
  • Loading branch information
dehort authored May 20, 2024
1 parent 8ad624c commit 91f1b47
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions deploy/connect-msk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ objects:
type: ${KAFKA_SASL_MECHANISM}
username: ${KAFKA_USERNAME}
passwordSecret:
secretName: app-auth
password: client_secret
secretName: msk-client
password: password
externalConfiguration:
volumes:
- name: rds-client-ca
Expand Down Expand Up @@ -358,13 +358,13 @@ objects:
- name: KAFKA_USERNAME
valueFrom:
secretKeyRef:
key: client_id
name: app-auth
key: username
name: msk-client
- name: KAFKA_SECRET
valueFrom:
secretKeyRef:
key: client_secret
name: app-auth
key: password
name: msk-client
volumeMounts:
- name: volume-temp
mountPath: /tmp/temp-files
Expand Down

0 comments on commit 91f1b47

Please sign in to comment.