chore: Add Kubernetes deployment and service files for oc-workflow component

This commit is contained in:
na
2024-09-12 14:36:17 +02:00
parent c058bb389c
commit 85e7c8197c
6 changed files with 183 additions and 0 deletions

22
helm/values.yaml Normal file
View File

@@ -0,0 +1,22 @@
replicaCount: 1
image:
repository: registry.dev.svc.cluster.local:5000/oc-workflow
tag: latest
pullPolicy: IfNotPresent
env:
mongoDatabase: DC_myDC
service:
type: ClusterIP # Le type de service
port: 8088 # Port exposé
targetPort: 8080 # Port interne du conteneur
resources:
limits:
cpu: "500m"
memory: "512Mi"
requests:
cpu: "250m"
memory: "256Mi"