Last active
August 1, 2023 02:54
-
-
Save initcron/11ac44e45d94b8efc2fa7ca31e2162f7 to your computer and use it in GitHub Desktop.
Simple Deployment Spec for Vote App
This file contains 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: Deployment | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: vote | |
name: vote | |
spec: | |
replicas: 2 | |
selector: | |
matchLabels: | |
app: vote | |
strategy: {} | |
template: | |
metadata: | |
creationTimestamp: null | |
labels: | |
app: vote | |
spec: | |
containers: | |
- image: schoolofdevops/vote:v1 | |
name: vote | |
resources: {} | |
status: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment