Skip to content

Instantly share code, notes, and snippets.

@VerosK
Created April 12, 2022 14:36
Show Gist options
  • Save VerosK/bf40941e8cf6ba833e18bf134d218893 to your computer and use it in GitHub Desktop.
Save VerosK/bf40941e8cf6ba833e18bf134d218893 to your computer and use it in GitHub Desktop.
Kubernetes busybox pod
apiVersion: apps/v1
kind: Deployment
metadata:
name: busybox
labels:
app.kubernetes.io/name: busybox
spec:
selector:
matchLabels:
app.kubernetes.io/name: busybox
template:
metadata:
labels:
app.kubernetes.io/name: busybox
spec:
containers:
- name: busybox
image: centos:7
command:
- sleep
- '7d'
@VerosK
Copy link
Author

VerosK commented Apr 12, 2022

kubectl apply -f https://gist.githubusercontent.com/VerosK/bf40941e8cf6ba833e18bf134d218893/raw/e601e1d1cd2c9cacafd5260357f9fbd4909734be/pod.yml

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