Skip to content

Commit

Permalink
e2e: remove bash from simple deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
wirungu committed Mar 19, 2024
1 parent 7f30aac commit fa0e6ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/internal/kuberesource/sets.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func Simple() ([]any, error) {
Container().
WithName("workload").
WithImage("docker.io/library/busybox:1.36.1-musl@sha256:d4707523ce6e12afdbe9a3be5ad69027150a834870ca0933baf7516dd1fe0f56").
WithCommand("/bin/bash", "-c", "echo Workload started ; while true; do sleep 60; done").
WithCommand("/bin/sh", "-c", "echo Workload started ; while true; do sleep 60; done").
WithResources(ResourceRequirements().
WithMemoryLimitAndRequest(50),
),
Expand Down

0 comments on commit fa0e6ca

Please sign in to comment.