Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created August 29, 2019 05:28
Show Gist options
  • Save tkssharma/97ec63189112fec51808559170160f61 to your computer and use it in GitHub Desktop.
Save tkssharma/97ec63189112fec51808559170160f61 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deploy
labels:
app: nginx-app
spec:
replicas: 3
template:
metadata:
labels:
app: nginx-app
spec:
containers:
- name: nginx-container
image: nginx:1.7.9
ports:
- containerPort: 80
selector:
matchLabels:
app: nginx-app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment