Skip to content

Instantly share code, notes, and snippets.

@parisnakitakejser
Created January 22, 2022 17:29
Show Gist options
  • Save parisnakitakejser/1659aa559b760961a7df4e4af0ff0ae6 to your computer and use it in GitHub Desktop.
Save parisnakitakejser/1659aa559b760961a7df4e4af0ff0ae6 to your computer and use it in GitHub Desktop.
First deployment for Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: sample-server
labels:
app: web
spec:
replicas: 2
selector:
matchLabels:
app: web
template:
metadata:
labels:
app: web
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment