Files
dancefinder-app/k8s/deploy.yaml
T

74 lines
1.7 KiB
YAML
Raw Normal View History

2020-04-03 14:22:56 +02:00
apiVersion: apps/v1
2019-01-15 13:21:24 +01:00
kind: Deployment
metadata:
name: dancefinder-app
labels:
app.kubernetes.io/name: dancefinder-app
2019-01-15 13:21:24 +01:00
annotations:
kubernetes.io/change-cause: "${TIMESTAMP} Deployed commit id: ${COMMIT}"
spec:
replicas: 1
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
minReadySeconds: 30
selector:
matchLabels:
app.kubernetes.io/name: dancefinder-app
2019-01-15 13:21:24 +01:00
template:
metadata:
labels:
app.kubernetes.io/name: dancefinder-app
2019-01-15 13:21:24 +01:00
spec:
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
labelSelector:
matchExpressions:
- key: "app.kubernetes.io/name"
2019-01-15 13:21:24 +01:00
operator: In
values:
- dancefinder-app
topologyKey: kubernetes.io/hostname
containers:
- name: dancefinder-app
readinessProbe:
httpGet:
path: /health
port: 80
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 5
imagePullPolicy: Always
image: oci.unbound.se/dancefinder/dancefinder-app:${COMMIT}
2019-01-15 13:21:24 +01:00
ports:
- containerPort: 80
2021-10-04 15:01:45 +02:00
resources:
requests:
cpu: 10m
memory: 10Mi
limits:
cpu: 300m
memory: 300Mi
2019-01-15 13:21:24 +01:00
---
apiVersion: v1
kind: Service
metadata:
name: dancefinder-app
labels:
app.kubernetes.io/name: dancefinder-app
2019-01-15 13:21:24 +01:00
spec:
type: NodePort
selector:
app.kubernetes.io/name: dancefinder-app
2019-01-15 13:21:24 +01:00
ports:
- port: 80
targetPort: 80