update chart icon (#1210)

This commit is contained in:
Rimas Mocevicius
2019-05-08 22:06:35 +01:00
committed by Aaron Schlesinger
parent abcc0a6ac1
commit e7d7749e14
2 changed files with 7 additions and 4 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
name: athens-proxy
version: 0.2.3
version: 0.2.4
appVersion: 0.3.1
description: The proxy server for Go modules
icon: https://bitnami.com/assets/stacks/wordpress/img/wordpress-stack-220x234.png
icon: https://raw.githubusercontent.com/gomods/athens/master/docs/static/banner.png
keywords:
- Golang
- Package Management
+5 -2
View File
@@ -1,7 +1,11 @@
{{- if .Values.ingress.enabled }}
{{- if (and .Values.ingress.enabled .Values.ingress.tls) }}
{{- range .Values.ingress.hosts }}
https://{{ . }}
{{- end }}
{{- else if .Values.ingress.enabled }}
{{- range .Values.ingress.hosts }}
http://{{ . }}
{{- end }}
{{- else if contains "NodePort" .Values.service.type }}
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }})
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
@@ -16,4 +20,3 @@
echo "Visit http://127.0.0.1:8080 to use your application"
kubectl port-forward $POD_NAME 8080:3000
{{- end }}