Skip to content

Instantly share code, notes, and snippets.

@DevopsVlogger
Created August 26, 2020 15:44
Show Gist options
  • Save DevopsVlogger/3196245fd10b4e86fa6973d9468a16cb to your computer and use it in GitHub Desktop.
Save DevopsVlogger/3196245fd10b4e86fa6973d9468a16cb to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: webapp-rs
labels:
app: webapp
spec:
template:
metadata:
name: webapp-pods
labels:
app: webapp
tier: front-end
spec:
containers:
- name: httpd
image: httpd
imagePullPolicy: IfNotPresent
ports:
- containerPort: 80
replicas: 5
selector:
matchLabels:
tier: front-end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment