Skip to content
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
4 changes: 4 additions & 0 deletions templates/helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ spec:
- "$(AWS_ACCOUNT_ID)"
- --aws-region
- "$(AWS_REGION)"
- --aws-endpoint-url
- "$(AWS_ENDPOINT_URL)"
- --enable-development-logging
- "$(ACK_ENABLE_DEVELOPMENT_LOGGING)"
- --log-level
Expand All @@ -64,6 +66,8 @@ spec:
value: {{ .Values.aws.account_id | quote }}
- name: AWS_REGION
value: {{ .Values.aws.region }}
- name: AWS_ENDPOINT_URL
value: {{ .Values.aws.endpoint_url | quote}}
- name: ACK_WATCH_NAMESPACE
value: {{ .Values.watchNamespace }}
- name: ACK_ENABLE_DEVELOPMENT_LOGGING
Expand Down
1 change: 1 addition & 0 deletions templates/helm/values.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ aws:
# If specified, use the AWS region for AWS API calls
region: ""
account_id: ""
endpoint_url: ""

# log level for the controller
log:
Expand Down