Last active
April 7, 2021 22:25
-
-
Save alperen-selcuk/68e4564e85b839e4f37cb83b02a8366c to your computer and use it in GitHub Desktop.
replicaset
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: 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