diff --git a/k8s/diagrammer.yaml b/k8s/diagrammer.yaml index af342f1..b81c203 100644 --- a/k8s/diagrammer.yaml +++ b/k8s/diagrammer.yaml @@ -7,21 +7,21 @@ spec: replicas: 1 selector: matchLabels: - app: django + app: kroki template: metadata: labels: - app: django + app: kroki spec: containers: - - name: web + - name: kroki image: docker.io/yuzutech/kroki:latest ports: - - containerPort: 80 + - containerPort: 8000 readinessProbe: httpGet: path: / - port: 80 + port: 8000 initialDelaySeconds: 5 periodSeconds: 10 timeoutSeconds: 2 @@ -29,11 +29,23 @@ spec: livenessProbe: httpGet: path: / - port: 80 + port: 8000 initialDelaySeconds: 20 periodSeconds: 20 timeoutSeconds: 2 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 kind: Service @@ -42,8 +54,7 @@ metadata: namespace: vorgabenui spec: selector: - app: django + app: kroki ports: - - port: 80 - targetPort: 80 - + - port: 8000 + targetPort: 8000 \ No newline at end of file