Skip to content
Snippets Groups Projects
Commit 806f2a61 authored by derrabauke's avatar derrabauke
Browse files

Configure Health check port via values definition

parent e96caaab
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
containerPort: 80
containerPort: {{ .Values.service.port }}
protocol: TCP
livenessProbe:
httpGet:
......
......@@ -5,7 +5,7 @@ image:
repository: backend #! change to container registry if possible
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "v0.0.1"
tag: "v0.0.2"
imagePullSecrets: []
nameOverride: ""
......@@ -35,7 +35,7 @@ securityContext: {}
service:
type: ClusterIP
port: 8080
port: 3002
ingress:
enabled: false
......@@ -51,10 +51,6 @@ ingress:
# - chart-example.local
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
......@@ -83,7 +79,7 @@ mongodb:
repository: 'bitnami/mongodb'
tag: '10.10.2'
service:
port: 3002
port: 27017
# auth:
# rootPassword: mongodb
# persistence:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment