Skip to content

Instantly share code, notes, and snippets.

@tristanlins
Created January 19, 2020 12:12
Show Gist options
  • Save tristanlins/3bc70c730c48d9a57fef0c66b3d0e03f to your computer and use it in GitHub Desktop.
Save tristanlins/3bc70c730c48d9a57fef0c66b3d0e03f to your computer and use it in GitHub Desktop.
Medium | Simple deployment.yml
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: my-app
name: my-app
spec:
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
app: my-app
template:
metadata:
labels:
app: my-app
spec:
containers:
- name: my-app
image: nginx
restartPolicy: Always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment