Skip to content

Instantly share code, notes, and snippets.

@ravens
Created November 18, 2020 19:53
Show Gist options
  • Save ravens/c578f40688307d71926f8556643a85cb to your computer and use it in GitHub Desktop.
Save ravens/c578f40688307d71926f8556643a85cb to your computer and use it in GitHub Desktop.
sample deployment
apiVersion: apps/v1
kind: Deployment
metadata:
name: foobar-deployment
labels:
app: foobar
spec:
replicas: 1
selector:
matchLabels:
app: foobar
template:
metadata:
name: foobar-app
labels:
app: foobar
spec:
containers:
- name: busybox
image: busybox:1.32.0-musl
args:
- sleep
- infinite
- name: nginx
image: nginx:1.7.9
ports:
- containerPort: 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment