Your Solr cluster has now been installed, and can be accessed in the following ways:

  * Internally, within the kubernetes cluster on:

{{ template "solr.service-name" . }}.{{ .Release.Namespace }}:{{ .Values.port }}

  * External to the kubernetes cluster:

export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "solr.name" . }},component=server,release={{ .Release.Name }}" -o jsonpath="{ .items[0].metadata.name }")
echo "Visit http://127.0.0.1:{{ .Values.port }} to access Solr"
kubectl port-forward --namespace {{ .Release.Namespace }} $POD_NAME {{ .Values.port }}:{{ .Values.port }}
