mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
- Single server consolidations - Update Skipper to 2.0 - Remove metrics - Add ability to use Kafka or RabbitMQ - Remove deprecated functionality Signed-off-by: Chris Schaefer <cschaefer@pivotal.io>
21 lines
1.6 KiB
Plaintext
21 lines
1.6 KiB
Plaintext
1. Get the application URL by running these commands:
|
|
{{- if contains "NodePort" .Values.server.service.type }}
|
|
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "scdf.fullname" . }}-server)
|
|
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
|
|
echo http://$NODE_IP:$NODE_PORT
|
|
{{- else if contains "LoadBalancer" .Values.server.service.type }}
|
|
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
|
|
You can watch the status of the server by running 'kubectl get svc -w {{ template "scdf.fullname" . }}-server'
|
|
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "scdf.fullname" . }}-server -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
|
|
echo http://$SERVICE_IP:{{ .Values.server.service.externalPort }}
|
|
{{- else if contains "ClusterIP" .Values.server.service.type }}
|
|
export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "scdf.fullname" . }}-server" -> -l "app={{ template "scdf.name" . }},release={{ .Release.Name }},component=server"
|
|
echo "Visit http://127.0.0.1:8080 to use your application"
|
|
kubectl port-forward $POD_NAME 8080:{{ .Values.server.service.externalPort }}
|
|
{{- end }}
|
|
{{ if and .Values.rabbitmq.enabled .Values.kafka.enabled -}}
|
|
WARNING: both RabbitMQ and Kafka are enabled and will be installed as
|
|
part of this chart, but only RabbitMQ is being used. Only one middleware
|
|
should be enabled at a given time. See the README.md for more details.
|
|
{{ end -}}
|