Last active
November 20, 2020 16:15
-
-
Save PinkJohnOfUs/848bfa32186cb562bf853e303ac93649 to your computer and use it in GitHub Desktop.
Reproduce podman-2.2.0-rc issue #8428
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:20.04 as base | |
ADD run.sh . | |
ENTRYPOINT [ "/bin/sh" ] | |
CMD [ "run.sh" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: bash-bug | |
labels: | |
app: bugreport | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: bugreport | |
template: | |
metadata: | |
labels: | |
app: bugreport | |
spec: | |
containers: | |
- name: bugcontainer | |
image: bugimage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "hello bug" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment