[deconz] Fix externalIPs logic, bump app version (#339)

This commit is contained in:
Bernd Schörgers 2020-08-28 14:49:21 +02:00 committed by GitHub
parent 83bb21d987
commit 4c79130198
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 10 deletions

View File

@ -1,8 +1,8 @@
apiVersion: v2 apiVersion: v2
name: deconz name: deconz
description: A Helm chart for deploying deCONZ description: A Helm chart for deploying deCONZ
version: 1.0.1 version: 1.0.2
appVersion: 2.05.79 appVersion: 2.05.80
keywords: keywords:
- deconz - deconz
- home-automation - home-automation

View File

@ -14,7 +14,7 @@
NOTE: It may take a few minutes for the LoadBalancer IP to be available. NOTE: It may take a few minutes for the LoadBalancer IP to be available.
You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "deconz.fullname" . }}' You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "deconz.fullname" . }}'
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "deconz.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "deconz.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}")
echo http://$SERVICE_IP:{{ .Values.service.port }} echo http://$SERVICE_IP:{{ $svcPort }}
{{- else if contains "ClusterIP" .Values.service.type }} {{- else if contains "ClusterIP" .Values.service.type }}
export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "deconz.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "deconz.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
echo "Visit http://127.0.0.1:8080 to use your application" echo "Visit http://127.0.0.1:8080 to use your application"

View File

@ -4,6 +4,13 @@ metadata:
name: {{ include "deconz.fullname" . }} name: {{ include "deconz.fullname" . }}
labels: labels:
{{- include "deconz.labels" . | nindent 4 }} {{- include "deconz.labels" . | nindent 4 }}
{{- if .Values.service.labels }}
{{ toYaml .Values.service.labels | nindent 4 }}
{{- end }}
{{- with .Values.service.annotations }}
annotations:
{{ toYaml . | nindent 4 }}
{{- end }}
spec: spec:
{{- if (or (eq .Values.service.type "ClusterIP") (empty .Values.service.type)) }} {{- if (or (eq .Values.service.type "ClusterIP") (empty .Values.service.type)) }}
type: ClusterIP type: ClusterIP
@ -20,16 +27,25 @@ spec:
{{- end }} {{- end }}
{{- if .Values.service.loadBalancerSourceRanges }} {{- if .Values.service.loadBalancerSourceRanges }}
loadBalancerSourceRanges: loadBalancerSourceRanges:
{{ toYaml .Values.service.loadBalancerSourceRanges | indent 4 }} {{ toYaml .Values.service.loadBalancerSourceRanges | nindent 4 }}
{{- end -}} {{- end -}}
{{- else }} {{- else }}
{{- if .Values.service.externalIPs }}
externalIPs:
{{ toYaml .Values.service.externalIPs | indent 4 }}
{{- end }}
publishNotReadyAddresses: {{ .Values.service.publishNotReadyAddresses }}
type: {{ .Values.service.type }} type: {{ .Values.service.type }}
{{- end }} {{- end }}
{{- if .Values.service.sessionAffinity }}
sessionAffinity: {{ .Values.service.sessionAffinity }}
{{- if .Values.service.sessionAffinityConfig }}
sessionAffinityConfig:
{{ toYaml .Values.service.sessionAffinityConfig | nindent 4 }}
{{- end -}}
{{- end }}
{{- with .Values.service.externalIPs }}
externalIPs:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- if .Values.service.publishNotReadyAddresses }}
publishNotReadyAddresses: {{ .Values.service.publishNotReadyAddresses }}
{{- end }}
ports: ports:
- port: {{ .Values.service.httpPort }} - port: {{ .Values.service.httpPort }}
targetPort: http targetPort: http

View File

@ -13,7 +13,7 @@ image:
repository: marthoc/deconz repository: marthoc/deconz
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
tag: "amd64-2.05.79" tag: "amd64-2.05.80"
imagePullSecrets: [] imagePullSecrets: []