Last active
August 26, 2020 15:39
-
-
Save DevopsVlogger/04d030d01417ce320616752539426639 to your computer and use it in GitHub Desktop.
Replication Controller Definition File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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