Skip to content

Instantly share code, notes, and snippets.

@mikerodionov
Last active June 19, 2022 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikerodionov/afd5f37cf16020719888674de76b0b28 to your computer and use it in GitHub Desktop.
Save mikerodionov/afd5f37cf16020719888674de76b0b28 to your computer and use it in GitHub Desktop.
Deployment definition
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: sampleapp
spec:
selector:
matchLabels:
app: sampleapp
replicas: 1
template:
metadata:
labels:
app: sampleapp
spec:
containers:
- name: sampleapp
image: ubuntu
ports:
- containerPort: 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment