mirror of
https://github.com/bitnami/charts.git
synced 2026-03-16 06:47:30 +08:00
* [bitnami/solr] feat: ✨ 🔒 Add warning when original images are replaced Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> * Update CHANGELOG.md Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> --------- Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
77 lines
3.6 KiB
Plaintext
77 lines
3.6 KiB
Plaintext
CHART NAME: {{ .Chart.Name }}
|
|
CHART VERSION: {{ .Chart.Version }}
|
|
APP VERSION: {{ .Chart.AppVersion }}
|
|
|
|
{{- if (eq .Values.service.type "LoadBalancer") }}
|
|
|
|
---------------------------------------------------------------------------------------------
|
|
WARNING
|
|
|
|
By specifying "serviceType=LoadBalancer" and not configuring the authentication
|
|
you have most likely exposed the solr externally without any
|
|
authentication mechanism.
|
|
|
|
For security reasons, we strongly suggest that you switch to "ClusterIP" or
|
|
"NodePort". As alternative, you can also configure the Solr authentication.
|
|
|
|
---------------------------------------------------------------------------------------------
|
|
{{- end }}
|
|
|
|
** Please be patient while the chart is being deployed **
|
|
|
|
Solr can be accessed via port {{ .Values.service.ports.http }} on the following DNS name from within your cluster:
|
|
|
|
{{ include "common.names.fullname" . }}.{{ include "common.names.namespace" . }}.svc.{{ .Values.clusterDomain }}:{{ .Values.service.ports.http }}
|
|
|
|
{{- if .Values.auth.enabled }}
|
|
|
|
To get the Solr credentials execute the following commands:
|
|
|
|
echo Username: {{ .Values.auth.adminUsername }}
|
|
echo Password: $(kubectl get secret --namespace {{ include "common.names.namespace" . }} {{ include "solr.secretName" . }} -o jsonpath="{.data.solr-password}" | base64 -d)
|
|
|
|
{{- end }}
|
|
|
|
To connect to your Solr cluster from outside the cluster, perform the following steps:
|
|
|
|
{{- if contains "NodePort" .Values.service.type }}
|
|
|
|
1. Obtain the NodePort IP and ports:
|
|
|
|
export NODE_IP=$(kubectl get nodes --namespace {{ include "common.names.namespace" . }} -o jsonpath="{.items[0].status.addresses[0].address}")
|
|
export NODE_PORT=$(kubectl get --namespace {{ include "common.names.namespace" . }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "common.names.fullname" . }})
|
|
echo "Solr URL: ${NODE_IP}:${NODE_PORT}"
|
|
|
|
{{- else if contains "LoadBalancer" .Values.service.type }}
|
|
|
|
1. Obtain the LoadBalancer IP
|
|
|
|
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
|
|
Watch the status with: 'kubectl get svc --namespace {{ include "common.names.namespace" . }} -w {{ include "common.names.fullname" . }}'
|
|
|
|
export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.names.namespace" . }} {{ include "common.names.fullname" . }} --template "{{ "{{ range (index .status.loadBalancer.ingress 0) }}{{ . }}{{ end }}" }}")
|
|
echo "Solr URL: ${SERVICE_IP}:{{ .Values.service.ports.http }}"
|
|
|
|
{{- else if contains "ClusterIP" .Values.service.type }}
|
|
|
|
1. Create a port-forward to the Solr client port:
|
|
|
|
kubectl port-forward --namespace {{ include "common.names.namespace" . }} svc/{{ include "common.names.fullname" . }} {{ .Values.service.ports.http }}:{{ .Values.service.ports.http }} &
|
|
echo "Solr URL: 127.0.0.1:{{ .Values.service.ports.http }}"
|
|
|
|
{{- end }}
|
|
|
|
2. Access the Solr cluster using using the obtained URL.
|
|
|
|
{{- if .Values.metrics.enabled }}
|
|
|
|
Solr Prometheus metrics can be accessed via port {{ .Values.metrics.service.ports.http }} on the following DNS name from within your cluster:
|
|
|
|
{{ printf "%s-exporter" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }}.{{ include "common.names.namespace" . }}.svc.{{ .Values.clusterDomain }}:{{ .Values.metrics.service.ports.http }}/metrics
|
|
|
|
{{- end }}
|
|
|
|
{{- include "solr.checkRollingTags" . }}
|
|
{{- include "solr.validateValues" . }}
|
|
{{- include "common.warnings.resources" (dict "sections" (list "metrics" "" "tls" "volumePermissions") "context" $) }}
|
|
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.volumePermissions.image) "context" $) }} |