Diagrammer from ArgoCD added to k8s

This commit is contained in:
2025-10-01 00:08:57 +02:00
parent 2e5d44ff8b
commit b4add0a333

View File

@@ -7,21 +7,21 @@ spec:
replicas: 1 replicas: 1
selector: selector:
matchLabels: matchLabels:
app: django app: kroki
template: template:
metadata: metadata:
labels: labels:
app: django app: kroki
spec: spec:
containers: containers:
- name: web - name: kroki
image: docker.io/yuzutech/kroki:latest image: docker.io/yuzutech/kroki:latest
ports: ports:
- containerPort: 80 - containerPort: 8000
readinessProbe: readinessProbe:
httpGet: httpGet:
path: / path: /
port: 80 port: 8000
initialDelaySeconds: 5 initialDelaySeconds: 5
periodSeconds: 10 periodSeconds: 10
timeoutSeconds: 2 timeoutSeconds: 2
@@ -29,11 +29,23 @@ spec:
livenessProbe: livenessProbe:
httpGet: httpGet:
path: / path: /
port: 80 port: 8000
initialDelaySeconds: 20 initialDelaySeconds: 20
periodSeconds: 20 periodSeconds: 20
timeoutSeconds: 2 timeoutSeconds: 2
failureThreshold: 3 failureThreshold: 3
- name: mermaid
image: docker.io/yuzutech/kroki-mermaid:latest
ports:
- containerPort: 8002
- name: bpmn
image: docker.io/yuzutech/kroki-bpmn:latest
ports:
- containerPort: 8003
- name: excalidraw
image: docker.io/yuzutech/kroki-excalidraw:latest
ports:
- containerPort: 8004
--- ---
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
@@ -42,8 +54,7 @@ metadata:
namespace: vorgabenui namespace: vorgabenui
spec: spec:
selector: selector:
app: django app: kroki
ports: ports:
- port: 80 - port: 8000
targetPort: 80 targetPort: 8000