Skip to content

Instantly share code, notes, and snippets.

@initcron
Last active August 1, 2023 02:54
Show Gist options
  • Save initcron/11ac44e45d94b8efc2fa7ca31e2162f7 to your computer and use it in GitHub Desktop.
Save initcron/11ac44e45d94b8efc2fa7ca31e2162f7 to your computer and use it in GitHub Desktop.
Simple Deployment Spec for Vote App
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