mirror of
https://github.com/helm/charts.git
synced 2026-08-22 13:57:51 +00:00
* corrected healthcheck port (#76) Signed-off-by: devOpsHelm <devops+1@hazelcast.com> * added apiVersion into stable/hazelcast chart Signed-off-by: hasancelik <hasan@hazelcast.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
396c9d4384
commit
d4a1484cfe
@@ -1,6 +1,7 @@
|
||||
apiVersion: v1
|
||||
name: hazelcast
|
||||
version: 2.7.0
|
||||
appVersion: "3.12.3"
|
||||
version: 2.8.0
|
||||
appVersion: "3.12.4"
|
||||
tillerVersion: ">=2.7.2"
|
||||
kubeVersion: ">=1.9.0-0"
|
||||
description: Hazelcast IMDG is the most widely used in-memory data grid with hundreds of thousands of installed clusters around the world. It offers caching solutions ensuring that data is in the right place when it’s needed for optimal performance.
|
||||
|
||||
@@ -63,7 +63,7 @@ spec:
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /hazelcast-mancenter/health
|
||||
port: 8080
|
||||
port: 8081
|
||||
initialDelaySeconds: {{ .Values.mancenter.livenessProbe.initialDelaySeconds }}
|
||||
periodSeconds: {{ .Values.mancenter.livenessProbe.periodSeconds }}
|
||||
timeoutSeconds: {{ .Values.mancenter.livenessProbe.timeoutSeconds }}
|
||||
@@ -74,7 +74,7 @@ spec:
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /hazelcast-mancenter/health
|
||||
port: 8080
|
||||
port: 8081
|
||||
initialDelaySeconds: {{ .Values.mancenter.readinessProbe.initialDelaySeconds }}
|
||||
periodSeconds: {{ .Values.mancenter.readinessProbe.periodSeconds }}
|
||||
timeoutSeconds: {{ .Values.mancenter.readinessProbe.timeoutSeconds }}
|
||||
@@ -95,7 +95,7 @@ spec:
|
||||
value: {{ .Values.mancenter.licenseKey }}
|
||||
{{- end }}
|
||||
- name: JAVA_OPTS
|
||||
value: "{{ if or .Values.mancenter.licenseKey .Values.mancenter.licenseKeySecretName }}-Dhazelcast.mc.license=$(MC_LICENSE_KEY){{ end }} {{ .Values.mancenter.javaOpts }}"
|
||||
value: "{{ if or .Values.mancenter.licenseKey .Values.mancenter.licenseKeySecretName }}-Dhazelcast.mc.license=$(MC_LICENSE_KEY){{ end }} {{ if or .Values.mancenter.readinessProbe.enabled .Values.mancenter.livenessProbe.enabled }}-Dhazelcast.mc.healthCheck.enable=true{{ end }} {{ .Values.mancenter.javaOpts }}"
|
||||
serviceAccountName: {{ template "hazelcast.serviceAccountName" . }}
|
||||
{{- if .Values.securityContext.enabled }}
|
||||
securityContext:
|
||||
|
||||
@@ -5,7 +5,7 @@ image:
|
||||
# repository is the Hazelcast image name
|
||||
repository: "hazelcast/hazelcast"
|
||||
# tag is the Hazelcast image tag
|
||||
tag: "3.12.3"
|
||||
tag: "3.12.4"
|
||||
# pullPolicy is the Docker image pull policy
|
||||
# It's recommended to change this to 'Always' if the image tag is 'latest'
|
||||
# ref: http://kubernetes.io/docs/user-guide/images/#updating-images
|
||||
|
||||
Reference in New Issue
Block a user