Skip to content

Commit

Permalink
[K8S][HELM] Address some PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dnskr committed Jan 15, 2023
1 parent 36b5fc6 commit 65e1f59
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion charts/kyuubi/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/}}

{{/*
A comma separated string of enabled frontend protocols, e.g. "MYSQL,REST,THRIFT_BINARY".
A comma separated string of enabled frontend protocols, e.g. "REST,THRIFT_BINARY".
For details, see 'kyuubi.frontend.protocols': https://kyuubi.readthedocs.io/en/master/deployment/settings.html#frontend
*/}}
{{- define "kyuubi.frontend.protocols" -}}
Expand Down
4 changes: 2 additions & 2 deletions charts/kyuubi/templates/kyuubi-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ spec:
{{- if .Values.probe.liveness.enabled }}
livenessProbe:
exec:
command: ["/bin/sh", "-c", "bin/kyuubi status"]
command: ["/bin/bash", "-c", "bin/kyuubi status"]
initialDelaySeconds: {{ .Values.probe.liveness.initialDelaySeconds }}
periodSeconds: {{ .Values.probe.liveness.periodSeconds }}
timeoutSeconds: {{ .Values.probe.liveness.timeoutSeconds }}
Expand All @@ -76,7 +76,7 @@ spec:
{{- if .Values.probe.readiness.enabled }}
readinessProbe:
exec:
command: [ "/bin/sh", "-c", "$KYUUBI_HOME/bin/kyuubi status" ]
command: ["/bin/bash", "-c", "$KYUUBI_HOME/bin/kyuubi status"]
initialDelaySeconds: {{ .Values.probe.readiness.initialDelaySeconds }}
periodSeconds: {{ .Values.probe.readiness.periodSeconds }}
timeoutSeconds: {{ .Values.probe.readiness.timeoutSeconds }}
Expand Down
18 changes: 9 additions & 9 deletions charts/kyuubi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,17 +111,17 @@ frontend:

kyuubiConfDir: /opt/kyuubi/conf
kyuubiConf:
# The value (templated string) is used for kyuubi-env.sh file
# See https://kyuubi.apache.org/docs/latest/deployment/settings.html#environments for more details
kyuubiEnv: ~
# The value (templated string) is used for kyuubi-env.sh file
# See https://kyuubi.apache.org/docs/latest/deployment/settings.html#environments for more details
kyuubiEnv: ~

# The value (templated string) is used for kyuubi-defaults.conf file
# See https://kyuubi.apache.org/docs/latest/deployment/settings.html#kyuubi-configurations for more details
kyuubiDefaults: ~
# The value (templated string) is used for kyuubi-defaults.conf file
# See https://kyuubi.apache.org/docs/latest/deployment/settings.html#kyuubi-configurations for more details
kyuubiDefaults: ~

# The value (templated string) is used for log4j2.xml file
# See https://kyuubi.apache.org/docs/latest/deployment/settings.html#logging for more details
log4j2: ~
# The value (templated string) is used for log4j2.xml file
# See https://kyuubi.apache.org/docs/latest/deployment/settings.html#logging for more details
log4j2: ~

# Environment variables (templated)
env: []
Expand Down

0 comments on commit 65e1f59

Please sign in to comment.