Created
August 26, 2020 15:44
-
-
Save DevopsVlogger/3196245fd10b4e86fa6973d9468a16cb to your computer and use it in GitHub Desktop.
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: 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