Skip to content

Instantly share code, notes, and snippets.

@PinkJohnOfUs
Last active November 20, 2020 16:15
Show Gist options
  • Save PinkJohnOfUs/848bfa32186cb562bf853e303ac93649 to your computer and use it in GitHub Desktop.
Save PinkJohnOfUs/848bfa32186cb562bf853e303ac93649 to your computer and use it in GitHub Desktop.
Reproduce podman-2.2.0-rc issue #8428
FROM ubuntu:20.04 as base
ADD run.sh .
ENTRYPOINT [ "/bin/sh" ]
CMD [ "run.sh" ]
---
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
#!/bin/bash
echo "hello bug"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment