Skip to content

Commit

Permalink
Adapt Notes.txt to new Ingress configuration (#760)
Browse files Browse the repository at this point in the history
  • Loading branch information
juan131 authored and andresmgot committed Oct 23, 2018
1 parent 447d3c5 commit a7eb018
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion chart/kubeapps/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: kubeapps
version: 0.9.1
version: 0.9.2
appVersion: DEVEL
description: Kubeapps is a dashboard for your Kubernetes cluster that makes it easy to deploy and manage applications in your cluster using Helm
icon: https://raw.githubusercontent.com/kubeapps/kubeapps/master/docs/img/logo.png
Expand Down
8 changes: 4 additions & 4 deletions chart/kubeapps/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ To access Kubeapps from outside your K8s cluster, follow the steps below:

1. Get the Kubeapps URL and associate Kubeapps hostname to your cluster external IP:

{{- range .Values.ingress.hosts }}
export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters
echo "Kubeapps URL: http{{ if $.Values.ingress.tls }}s{{ end }}://{{ . }}{{ $.Values.ingress.path }}"
echo "$CLUSTER_IP {{ . }}" | sudo tee -a /etc/hosts
{{- end }}
{{- range .Values.ingress.hosts }}
echo "Kubeapps URL: http{{ if .tls }}s{{ end }}://{{ .name }}{{ default "/" .path }}"
echo "$CLUSTER_IP {{ .name }}" | sudo tee -a /etc/hosts
{{- end }}

{{- else }}

Expand Down

0 comments on commit a7eb018

Please sign in to comment.