Skip to content

Instantly share code, notes, and snippets.

@timhberry
Created June 22, 2022 08:22
Show Gist options
  • Save timhberry/26b14eeb8e0856c9ac27e1487fc78393 to your computer and use it in GitHub Desktop.
Save timhberry/26b14eeb8e0856c9ac27e1487fc78393 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: myapp-deployment
labels:
app: myapp
spec:
replicas: 3
selector:
matchLabels:
app: myapp
template:
metadata:
labels:
app: myapp
spec:
containers:
- name: myapp
image: myapp
imagePullPolicy: Never
ports:
- containerPort: 8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment