Skip to content

Instantly share code, notes, and snippets.

@Rahulsharma0810
Last active April 14, 2020 14:30
Show Gist options
  • Save Rahulsharma0810/33c47eb60bcc75a1860b678d479480ae to your computer and use it in GitHub Desktop.
Save Rahulsharma0810/33c47eb60bcc75a1860b678d479480ae to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: ReplicationController
metadata:
name: nginx
spec:
replicas: 3
selector:
app: nginx ##Must BE same to template/metadata/labels/app
template:
metadata:
name: nginx
labels:
app: nginx ##
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