File tree Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 5
5
/.github /workflows /backport.yaml @ Piotr1215
6
6
netlify.toml @ loft-sh/Eng-Docs-Admin
7
7
8
+ /.github /workflows /e2e.yaml @ FabianKramm
9
+ /.github /workflows /release.yaml @ FabianKramm
8
10
/pkg /syncer / @ FabianKramm
9
11
/pkg /controllers /resources /pods / @ FabianKramm
10
12
/pkg /controllers /resources /services / @ FabianKramm
Original file line number Diff line number Diff line change 9
9
{ {/* Bump $defaultTag value whenever k8s version is bumped */} }
10
10
{ {- define " vcluster.k8s.image.tag" -} }
11
11
{ {- if not (empty .Values.controlPlane.distro.k8s.version) -} }
12
+ { {- if and .Values.privateNodes.enabled .Values.privateNodes.importNodeBinaries -} }
13
+ { { .Values.controlPlane.distro.k8s.version } }-full
14
+ { {- else -} }
12
15
{ { .Values.controlPlane.distro.k8s.version } }
16
+ { {- end -} }
13
17
{ {- else -} }
14
18
{ {- if and .Values.privateNodes.enabled .Values.privateNodes.importNodeBinaries -} }
15
19
{ { .Values.controlPlane.distro.k8s.image.tag } }-full
Original file line number Diff line number Diff line change @@ -804,4 +804,32 @@ tests:
804
804
- equal :
805
805
path : spec.template.spec.initContainers[0].image
806
806
value : ghcr.io/loft-sh/kubernetes:v1.35.999
807
+
808
+ - it : private nodes k8s full image version
809
+ set :
810
+ controlPlane :
811
+ distro :
812
+ k8s :
813
+ version : v1.35.999
814
+ privateNodes :
815
+ enabled : true
816
+ asserts :
817
+ - equal :
818
+ path : spec.template.spec.initContainers[0].image
819
+ value : ghcr.io/loft-sh/kubernetes:v1.35.999-full
820
+
821
+ - it : private nodes k8s full image disabled version
822
+ set :
823
+ controlPlane :
824
+ distro :
825
+ k8s :
826
+ image :
827
+ tag : v1.35.999
828
+ privateNodes :
829
+ enabled : true
830
+ importNodeBinaries : false
831
+ asserts :
832
+ - equal :
833
+ path : spec.template.spec.initContainers[0].image
834
+ value : ghcr.io/loft-sh/kubernetes:v1.35.999
807
835
You can’t perform that action at this time.
0 commit comments