Skip to content

Commit e375dfb

Browse files
authored
Fixes k3s edge (#23)
* Fix hostIP address, tls-san and advertise should be the same Signed-off-by: Alexandre Peixoto Ferreira <[email protected]> * Update chart for smarter-k3s-edge Signed-off-by: Alexandre Peixoto Ferreira <[email protected]> --------- Signed-off-by: Alexandre Peixoto Ferreira <[email protected]>
1 parent 8cde6ca commit e375dfb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

charts/smarter-k3s-edge/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: smarter-k3s-edge
3-
version: 0.0.1
3+
version: 0.0.2
44
appVersion: v1.25.3-k3s1
55
description: K3s server on kubernetes
66
home: https://k3s.io/

charts/smarter-k3s-edge/templates/common.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ spec:
151151
image: {{ .Values.image.repository }}:{{ default .Chart.AppVersion .Values.image.tag }}
152152
command: [ "/bin/k3s",
153153
"server",
154-
"--tls-san","{{ .Values.configuration.hostip }}",
155-
"--advertise-address", "{{ default .Values.configuration.hostIP .Values.configuration.externalHostIP}}",
154+
"--tls-san","{{ default .Values.configuration.hostIP .Values.configuration.externalHostIP }}",
155+
"--advertise-address", "{{ default .Values.configuration.hostIP .Values.configuration.externalHostIP }}",
156156
"--https-listen-port", "{{ .Values.configuration.port }}",
157157
"--disable-agent",
158158
"--disable","traefik",

0 commit comments

Comments
 (0)