Skip to content

Instantly share code, notes, and snippets.

@PLaRoche
Created June 5, 2018 14:38
Show Gist options
  • Save PLaRoche/ecac8a5a207e559177ab0e73b3b0cedb to your computer and use it in GitHub Desktop.
Save PLaRoche/ecac8a5a207e559177ab0e73b3b0cedb to your computer and use it in GitHub Desktop.
sample k8s deployment
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
labels:
io.kompose.service: web
randomlabel : website
name: web
spec:
replicas: 1
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
io.kompose.service: web
randomlabel : website
spec:
containers:
- image: web
name: web
ports:
- containerPort: 80
resources: {}
restartPolicy: Always
status: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment