Задеплоен тестирующий модуль

This commit is contained in:
2025-10-27 23:57:03 +03:00
parent 0bf26af326
commit 6b84adbed2
9 changed files with 96 additions and 44 deletions

View File

@@ -0,0 +1,26 @@
{{ if .Values.testingModule.enable }}
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ .Release.Name }}-testing-module-worker-deployment
labels:
app: {{ .Release.Name }}-testing-module-worker
spec:
replicas: 1
selector:
matchLabels:
app: {{ .Release.Name }}-testing-module-worker
template:
metadata:
labels:
app: {{ .Release.Name }}-testing-module-worker
annotations:
redeploy-timestamp: "{{ now | unixEpoch }}"
spec:
containers:
- name: {{ .Release.Name }}-testing-module-worker
image: git.nullptr.top/liquidcode/liquidcode-tester-worker:latest
imagePullPolicy: Always
ports:
- containerPort: 8080
{{ end }}