mirror of https://github.com/sgoudham/k8s
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
840 B
YAML
41 lines
840 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: website-preview
|
|
name: website-preview
|
|
namespace: website
|
|
annotations:
|
|
keel.sh/policy: force
|
|
keel.sh/trigger: poll
|
|
keel.sh/match-tag: "true"
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: website-preview
|
|
strategy:
|
|
rollingUpdate:
|
|
maxSurge: 25%
|
|
maxUnavailable: 25%
|
|
type: RollingUpdate
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: website-preview
|
|
spec:
|
|
containers:
|
|
- image: sgoudham/website:preview
|
|
imagePullPolicy: IfNotPresent
|
|
name: website-preview
|
|
ports:
|
|
- containerPort: 3000
|
|
protocol: TCP
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 3000
|
|
resources: {}
|
|
dnsPolicy: ClusterFirst
|
|
restartPolicy: Always
|