Files
schemas/k8s/deploy.yaml
T

81 lines
1.8 KiB
YAML
Raw Normal View History

2022-10-09 15:23:52 +02:00
apiVersion: v1
kind: ServiceAccount
metadata:
name: schemas
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app.kubernetes.io/name: schemas
2022-10-09 15:23:52 +02:00
name: schemas
annotations:
kubernetes.io/change-cause: "${TIMESTAMP} Deployed commit id: ${COMMIT}"
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: schemas
2022-10-09 15:23:52 +02:00
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
type: RollingUpdate
template:
metadata:
labels:
app.kubernetes.io/name: schemas
2022-10-09 15:23:52 +02:00
spec:
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
labelSelector:
matchExpressions:
- key: "app.kubernetes.io/name"
2022-10-09 15:23:52 +02:00
operator: In
values:
- schemas
topologyKey: kubernetes.io/hostname
containers:
- name: schemas
resources:
requests:
cpu: "20m"
2024-03-24 09:20:48 +01:00
memory: "20Mi"
2022-10-09 15:23:52 +02:00
readinessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 5
imagePullPolicy: IfNotPresent
image: registry.gitlab.com/unboundsoftware/schemas:${COMMIT}
2022-10-09 15:23:52 +02:00
ports:
- name: api
containerPort: 8080
envFrom:
- configMapRef:
name: schemas
2022-10-09 15:23:52 +02:00
- secretRef:
name: schemas
restartPolicy: Always
serviceAccountName: schemas
---
apiVersion: v1
kind: Service
metadata:
name: schemas
spec:
ports:
- port: 80
name: api
protocol: TCP
targetPort: 8080
selector:
app.kubernetes.io/name: schemas
2022-10-09 15:23:52 +02:00
type: NodePort