Skip to content

Instantly share code, notes, and snippets.

@evbruno
Created October 22, 2025 14:12
Show Gist options
  • Save evbruno/a6668a38e8271c47437f0aed0eb19fcc to your computer and use it in GitHub Desktop.
Save evbruno/a6668a38e8271c47437f0aed0eb19fcc to your computer and use it in GitHub Desktop.
ubuntu-sleep
apiVersion: v1
kind: Pod
metadata:
name: ubuntu
labels:
app: ubuntu
spec:
containers:
- image: ubuntu
command:
- "sleep"
- "604800"
imagePullPolicy: IfNotPresent
name: ubuntu
restartPolicy: Always
@evbruno
Copy link
Author

evbruno commented Oct 22, 2025

saving myself a few searches:

apt update && \
  apt install -y postgresql-client && \
  apt install -y dnsutils

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment