[bitnami/several] Adapt templating format (#8562)

Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
This commit is contained in:
Carlos Rodríguez Hernández
2022-01-05 18:10:31 +01:00
committed by GitHub
parent c77641fd7e
commit 8cad18aed9
284 changed files with 465 additions and 465 deletions

View File

@@ -27,4 +27,4 @@ name: solr
sources:
- https://github.com/bitnami/bitnami-docker-solr
- https://lucene.apache.org/solr/
version: 2.1.9
version: 2.2.0

View File

@@ -43,7 +43,7 @@ To connect to your Solr from outside the cluster execute the following commands:
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
Watch the status with: 'kubectl get svc --namespace {{ .Release.Namespace }} -w {{ include "common.names.fullname" . }}'
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "common.names.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}")
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "common.names.fullname" . }} --template "{{ "{{ range (index .status.loadBalancer.ingress 0) }}{{ . }}{{ end }}" }}")
echo "Go to ${SERVICE_IP}:{{ .Values.service.port }}"
{{- else if contains "ClusterIP" .Values.service.type }}

View File

@@ -84,7 +84,7 @@ spec:
{{- if .Values.initContainers }}
{{- include "common.tplvalues.render" (dict "value" .Values.initContainers "context" $) | nindent 8 }}
{{- end }}
{{- if .Values.tls.enabled}}
{{- if .Values.tls.enabled }}
{{- $fullname := include "solr.fullname" . }}
- name: init-certs
image: {{ include "solr.image" . }}
@@ -310,7 +310,7 @@ spec:
{{- range .Values.persistence.extraVolumeClaimTemplates }}
- name: {{ .name }}
mountPath: {{ .mountPath }}
{{- end}}
{{- end }}
{{- if .Values.sidecars }}
{{- include "common.tplvalues.render" (dict "value" .Values.sidecars "context" $) | nindent 8 }}
{{- end }}