kubeapps: bump chart version to 0.9.2

This commit is contained in:
kubernetes-bitnami
2018-10-23 16:01:58 +00:00
parent bc5bbe0465
commit e136da10c7
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: kubeapps
version: 0.9.1
version: 0.9.2
appVersion: v1.0.0-beta.3
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
+4 -4
View File
@@ -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 }}