File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22apiVersion : v1
33kind : Service
44metadata :
5+ annotations :
6+ prometheus.io/port : {{ .Values.customIssuerGo.service.targetPort | quote }}
7+ prometheus.io/scrape : " true"
8+ prometheus.io/path : " /metrics"
59 name : custom-issuer-go-{{ .Values.environment }}
610 namespace : {{ .Values.namespace }}
711spec :
5256 cpu : {{ .Values.customIssuerGo.deployment.cpuLimit }}
5357 ports :
5458 - containerPort : {{ .Values.customIssuerGo.deployment.port }}
59+ livenessProbe :
60+ httpGet :
61+ path : /livez
62+ port : {{ .Values.customIssuerGo.deployment.port }}
63+ initialDelaySeconds : 10
64+ timeoutSeconds : 10
65+ periodSeconds : 30
66+ readinessProbe :
67+ httpGet :
68+ path : /readyz
69+ port : {{ .Values.customIssuerGo.deployment.port }}
70+ initialDelaySeconds : 10
71+ timeoutSeconds : 10
72+ periodSeconds : 30
5573 volumeMounts :
5674 - name : custom-issuer-go-secrets
5775 mountPath : " /mnt/secrets"
You can’t perform that action at this time.
0 commit comments