Skip to content

Commit

Permalink
service account
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronClaydon committed Jun 4, 2024
1 parent 28ff190 commit b74b04c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
30 changes: 15 additions & 15 deletions deploy/travigo-assistant/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,23 +38,23 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
env:
- name: TRAVIGO_TWILIO_ACCOUNT_SID
valueFrom:
secretKeyRef:
name: {{ $.Values.twilio.credentialsSecret }}
key: account_sid
optional: false
valueFrom:
secretKeyRef:
name: {{ $.Values.twilio.credentialsSecret }}
key: account_sid
optional: false
- name: TRAVIGO_TWILIO_AUTH_TOKEN
valueFrom:
secretKeyRef:
name: {{ $.Values.twilio.credentialsSecret }}
key: auth_token
optional: false
valueFrom:
secretKeyRef:
name: {{ $.Values.twilio.credentialsSecret }}
key: auth_token
optional: false
- name: TRAVIGO_TWILIO_SERVICE_SID
valueFrom:
secretKeyRef:
name: {{ $.Values.twilio.credentialsSecret }}
key: service_sid
optional: false
valueFrom:
secretKeyRef:
name: {{ $.Values.twilio.credentialsSecret }}
key: service_sid
optional: false
ports:
- name: http
containerPort: {{ .Values.service.port }}
Expand Down
4 changes: 2 additions & 2 deletions deploy/travigo-assistant/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ fullnameOverride: ""

serviceAccount:
# Specifies whether a service account should be created
create: true
create: false
# Automatically mount a ServiceAccount's API credentials?
automount: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
name: "travigo-assistant"

podAnnotations: {}
podLabels: {}
Expand Down

0 comments on commit b74b04c

Please sign in to comment.