Skip to content

Commit e9c5318

Browse files
authored
fixing boolean flag in deployment args to be on a single line (#457)
Issue #, if available: N/A Description of changes: Fixing deployment `args` to have boolean values on a single line. This is needed since the presence of the flag itself is a `truthy` statement, and the next line for the `env` is ignored. See [this](#455 (comment)) comment on `leader-elect` PR for more info. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 8549748 commit e9c5318

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

templates/config/controller/deployment.yaml.tpl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ spec:
2929
- "$(AWS_REGION)"
3030
- --aws-endpoint-url
3131
- "$(AWS_ENDPOINT_URL)"
32-
- --enable-development-logging
33-
- "$(ACK_ENABLE_DEVELOPMENT_LOGGING)"
32+
- --enable-development-logging=$(ACK_ENABLE_DEVELOPMENT_LOGGING)
3433
- --log-level
3534
- "$(ACK_LOG_LEVEL)"
3635
- --resource-tags

0 commit comments

Comments
 (0)