-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ecs] Healthcheck command always prepends CMD #2461
Closed
ChrisLahaye opened this issue
May 2, 2019
· 0 comments
· Fixed by #2462 · May be fixed by MechanicalRock/account-reaper#6
Closed
[ecs] Healthcheck command always prepends CMD #2461
ChrisLahaye opened this issue
May 2, 2019
· 0 comments
· Fixed by #2462 · May be fixed by MechanicalRock/account-reaper#6
Labels
Comments
4 tasks
rix0rrr
pushed a commit
that referenced
this issue
May 6, 2019
Adding a healthcheck command to an ECS container definition results in an invalid command after synthesizing. Before: Input: ['CMD', 'command'] Output: HealthCheck: Command: - CMD - CMD - echo - z Input: ['CMD-SHELL', 'command'] Output: HealthCheck: Command: - CMD - CMD-SHELL - echo - z After: Input: ['CMD', 'command'] Output: HealthCheck: Command: - CMD - echo - z Input: ['CMD-SHELL', 'command'] Output: HealthCheck: Command: - CMD-SHELL - echo - z fixes #2461 Signed-off-by: Chris Lahaye <[email protected]>
SanderKnape
pushed a commit
to SanderKnape/aws-cdk
that referenced
this issue
May 14, 2019
Adding a healthcheck command to an ECS container definition results in an invalid command after synthesizing. Before: Input: ['CMD', 'command'] Output: HealthCheck: Command: - CMD - CMD - echo - z Input: ['CMD-SHELL', 'command'] Output: HealthCheck: Command: - CMD - CMD-SHELL - echo - z After: Input: ['CMD', 'command'] Output: HealthCheck: Command: - CMD - echo - z Input: ['CMD-SHELL', 'command'] Output: HealthCheck: Command: - CMD-SHELL - echo - z fixes aws#2461 Signed-off-by: Chris Lahaye <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Adding a healthcheck command to an ECS container definition results in an invalid command after synthesizing.
To Reproduce
Expected behavior
Version:
The text was updated successfully, but these errors were encountered: