Skip to content
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

ci: pin image for simple test #170

Merged
merged 1 commit into from
Feb 21, 2024
Merged
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
6 changes: 3 additions & 3 deletions deployments/simple/initializer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ spec:
memory: 50Mi
containers:
- name: workload
image: "fedora:38"
image: "docker.io/library/busybox:1.36.1-musl@sha256:d4707523ce6e12afdbe9a3be5ad69027150a834870ca0933baf7516dd1fe0f56"
command:
- /bin/bash
- /bin/sh
- "-c"
- echo Workload started ; sleep inf
- echo Workload started ; while true; do sleep 60; done
volumeMounts:
- name: tls-certs
mountPath: /tls-config
Expand Down
Loading