mirror of
https://github.com/bitnami/charts.git
synced 2026-03-05 06:47:25 +08:00
Fix chart name at Chart.yaml and service names at NOTES.txt (#5531)
This commit is contained in:
committed by
GitHub
parent
aa31ef6b4f
commit
cb1f72182f
@@ -37,7 +37,7 @@ keywords:
|
||||
maintainers:
|
||||
- email: containers@bitnami.com
|
||||
name: Bitnami
|
||||
name: dataplatform
|
||||
name: dataplatform-bp1
|
||||
sources:
|
||||
- https://github.com/bitnami/bitnami-docker-kafka
|
||||
- https://kafka.apache.org/
|
||||
|
||||
@@ -10,7 +10,7 @@ The following components are being deployed to your cluster:
|
||||
|
||||
To access the Kafka service from your local machine execute the following:
|
||||
|
||||
kubectl port-forward --namespace {{ .Release.Namespace }} svc/kafka-{{ include "common.names.fullname" . }} 9092:9092 &
|
||||
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 -}}
|
||||
|
||||
@@ -22,7 +22,7 @@ To access the Kafka service from your local machine execute the following:
|
||||
|
||||
To access the Solr service from your local machine execute the following:
|
||||
|
||||
kubectl port-forward --namespace {{ .Release.Namespace }} svc/solr-{{ include "common.names.fullname" . }} 8983:8983 &
|
||||
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 -}}
|
||||
|
||||
@@ -34,7 +34,7 @@ To access the Solr service from your local machine execute the following:
|
||||
|
||||
To access the Spark service from your local machine execute the following:
|
||||
|
||||
kubectl port-forward --namespace {{ .Release.Namespace }} svc/spark-{{ include "common.names.fullname" . }} 8080:80 &
|
||||
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 -}}
|
||||
|
||||
@@ -46,6 +46,6 @@ To access the Spark service from your local machine execute the following:
|
||||
|
||||
To access the Zookeeper service from your local machine execute the following:
|
||||
|
||||
kubectl port-forward --namespace {{ .Release.Namespace }} svc/zookeeper-{{ include "common.names.fullname" . }} 2181:2181 &
|
||||
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 -}}
|
||||
|
||||
8
bitnami/dataplatform-bp1/templates/_helpers.tpl
Normal file
8
bitnami/dataplatform-bp1/templates/_helpers.tpl
Normal file
@@ -0,0 +1,8 @@
|
||||
{{/*
|
||||
Return the proper service name for a subcomponent
|
||||
Usage:
|
||||
{{ include "subcomponent.service.name" ( dict "componentName" "name" "context" $ ) }}
|
||||
*/}}
|
||||
{{- define "subcomponent.service.name" -}}
|
||||
{{- printf "%s-%s" .context.Release.Name .componentName -}}
|
||||
{{- end -}}
|
||||
Reference in New Issue
Block a user