Files
charts/bitnami/dataplatform-bp1/templates/NOTES.txt
2021-10-22 16:04:39 +02:00

56 lines
1.7 KiB
Plaintext

CHART NAME: {{ .Chart.Name }}
CHART VERSION: {{ .Chart.Version }}
APP VERSION: {{ .Chart.AppVersion }}
** Please be patient while the chart is being deployed **
The following components are being deployed to your cluster:
{{- if .Values.kafka.enabled }}
***********
** Kafka **
***********
To access the Kafka service from your local machine execute the following:
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ include "subcomponent.service.name" ( dict "componentName" "kafka" "context" $ ) }} 9092:9092 &
echo "Kafka service available at : http://127.0.0.1:9092"
{{- end -}}
{{- if .Values.solr.enabled }}
**********
** Solr **
**********
To access the Solr service from your local machine execute the following:
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ include "subcomponent.service.name" ( dict "componentName" "solr" "context" $ ) }} 8983:8983 &
echo "Solr service available at : http://127.0.0.1:8983"
{{- end -}}
{{- if .Values.spark.enabled }}
***********
** Spark **
***********
To access the Spark service from your local machine execute the following:
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ include "subcomponent.service.name" ( dict "componentName" "spark" "context" $ ) }} 8080:80 &
echo "Spark service available at : http://127.0.0.1:8080"
{{- end -}}
{{- if .Values.zookeeper.enabled }}
***************
** Zookeeper **
***************
To access the Zookeeper service from your local machine execute the following:
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ include "subcomponent.service.name" ( dict "componentName" "zookeeper" "context" $ ) }} 2181:2181 &
echo "Zookeeper service available at : http://127.0.0.1:2181"
{{- end -}}