github.com/replicatedhq/ship@v0.55.0/integration/failing/init/jaeger-helm/expected/.ship/upstream/templates/NOTES.txt (about)

     1  You can log into the Jaeger Query UI here:
     2  
     3  {{- if contains "NodePort" .Values.query.service.type }}
     4  
     5    export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "jaeger.fullname" . }}-query)
     6    export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
     7    echo http://$NODE_IP:$NODE_PORT/
     8  
     9  {{- else if contains "LoadBalancer" .Values.query.service.type }}
    10  
    11    NOTE: It may take a few minutes for the LoadBalancer IP to be available.
    12          Watch the status with: 'kubectl get svc --namespace {{ .Release.Namespace }} -w {{ template "jaeger.fullname" . }}-query'
    13  
    14    export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "jaeger.fullname" . }}-query -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
    15    echo http://$SERVICE_IP/
    16  {{- else if contains "ClusterIP"  .Values.query.service.type }}
    17  
    18    export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "release={{ .Release.Name }},component=query" -o jsonpath="{.items[0].metadata.name}")
    19    echo http://127.0.0.1:8080/
    20    kubectl port-forward --namespace {{ .Release.Namespace }} $POD_NAME 8080:16686
    21  {{- end }}