Skip to content

Commit 7c52167

Browse files
authored
remove --aws-account-id flag from deployment (#218)
ACK runtime v0.15.0 removed support for the `--aws-account-id` controller flag but our deployment templates were still adding this flag to the controller entrypoint args, which causes tests to fail with: ``` unknown flag: --aws-account-id ``` Related: #213 See: aws-controllers-k8s/runtime@6080101 Signed-off-by: Jay Pipes <[email protected]> By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 46edaac commit 7c52167

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

templates/config/controller/deployment.yaml.tpl

-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ spec:
2626
- command:
2727
- ./bin/controller
2828
args:
29-
- --aws-account-id
30-
- "$(AWS_ACCOUNT_ID)"
3129
- --aws-region
3230
- "$(AWS_REGION)"
3331
- --enable-development-logging

templates/helm/templates/deployment.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ spec:
3737
- command:
3838
- ./bin/controller
3939
args:
40-
- --aws-account-id
41-
- "$(AWS_ACCOUNT_ID)"
4240
- --aws-region
4341
- "$(AWS_REGION)"
4442
- --aws-endpoint-url

0 commit comments

Comments
 (0)