core/k8s/base/api.yml
Dawid Wysokiński 9d5987f74c
All checks were successful
ci/woodpecker/push/govulncheck Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/tag/release Pipeline was successful
ci/woodpecker/tag/deployment Pipeline was successful
ci/woodpecker/cron/govulncheck Pipeline was successful
feat: new endpoint GET /api/v2/versions/{versionCode}/servers/{serverKey}/snapshots (#52)
Reviewed-on: #52
2024-05-13 05:12:05 +00:00

74 lines
1.8 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: twhelp-api-v2-deployment
spec:
selector:
matchLabels:
app: twhelp-api-v2
template:
metadata:
labels:
app: twhelp-api-v2
spec:
containers:
- name: twhelp-api-v2
image: twhelp
args: [serve]
ports:
- name: container-port
containerPort: 9234
env:
- name: APP_MODE
value: development
- name: LOG_LEVEL
value: debug
- name: DB_CONNECTION_STRING
valueFrom:
secretKeyRef:
name: twhelp-secret
key: db-connection-string
- name: DB_MAX_OPEN_CONNS
value: "10"
- name: DB_MAX_IDLE_CONNS
value: "3"
- name: RABBITMQ_CONNECTION_STRING
valueFrom:
secretKeyRef:
name: twhelp-secret
key: rabbitmq-connection-string
- name: AUTO_MAX_PROCS
value: "true"
resources:
requests:
cpu: 20m
memory: 300Mi
limits:
cpu: 200m
memory: 300Mi
livenessProbe:
httpGet:
path: /_meta/livez
port: container-port
initialDelaySeconds: 5
periodSeconds: 5
readinessProbe:
httpGet:
path: /_meta/readyz
port: container-port
initialDelaySeconds: 5
periodSeconds: 10
---
apiVersion: v1
kind: Service
metadata:
name: twhelp-api-v2-service
spec:
ports:
- port: 9234
targetPort: 9234
protocol: TCP
name: http
selector:
app: twhelp-api-v2