File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -139,13 +139,23 @@ func (k *k3sProvider) UpdateChartValues(values map[string]interface{}) {
139139 values ["apiServer" ] = map [string ]interface {}{
140140 "address" : k .apiServer ,
141141 }
142+ values ["auth" ] = map [string ]interface {}{
143+ "service" : map [string ]interface {}{
144+ "type" : "NodePort" ,
145+ },
146+ }
142147 values ["networkManager" ] = map [string ]interface {}{
143148 "config" : map [string ]interface {}{
144149 "serviceCIDR" : k .serviceCIDR ,
145150 "podCIDR" : k .podCIDR ,
146151 "reservedSubnets" : installutils .GetInterfaceSlice (k .ReservedSubnets ),
147152 },
148153 }
154+ values ["gateway" ] = map [string ]interface {}{
155+ "service" : map [string ]interface {}{
156+ "type" : "NodePort" ,
157+ },
158+ }
149159 values ["discovery" ] = map [string ]interface {}{
150160 "config" : map [string ]interface {}{
151161 "clusterLabels" : installutils .GetInterfaceMap (k .ClusterLabels ),
You can’t perform that action at this time.
0 commit comments