Skip to content

Instantly share code, notes, and snippets.

@DevopsVlogger
Last active August 26, 2020 15:39
Show Gist options
  • Save DevopsVlogger/04d030d01417ce320616752539426639 to your computer and use it in GitHub Desktop.
Save DevopsVlogger/04d030d01417ce320616752539426639 to your computer and use it in GitHub Desktop.
Replication Controller Definition File
apiVersion: v1
kind: ReplicationController
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment