Skip to content

Instantly share code, notes, and snippets.

@alperen-selcuk
Last active April 7, 2021 22:25
Show Gist options
  • Select an option

  • Save alperen-selcuk/68e4564e85b839e4f37cb83b02a8366c to your computer and use it in GitHub Desktop.

Select an option

Save alperen-selcuk/68e4564e85b839e4f37cb83b02a8366c to your computer and use it in GitHub Desktop.
replicaset
apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: nginx-replicaset
labels:
app: nginx
tier: web-page
spec:
replicas: 2
selector:
matchLabels:
app: nginx
tier: web-page
template:
metadata:
labels:
app: nginx
tier: web-page
spec:
containers:
- name: nginx
image: nginx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment