File tree 3 files changed +18
-9
lines changed
services/builder/internal
3 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -57,18 +57,18 @@ apiVersion: kustomize.config.k8s.io/v1beta1
57
57
kind : Kustomization
58
58
images :
59
59
- name : ghcr.io/berops/claudie/ansibler
60
- newTag : bd26f53-3179
60
+ newTag : 06cb96b-3180
61
61
- name : ghcr.io/berops/claudie/autoscaler-adapter
62
- newTag : f95dd2b-3176
62
+ newTag : 06cb96b-3180
63
63
- name : ghcr.io/berops/claudie/builder
64
- newTag : f95dd2b-3176
64
+ newTag : 06cb96b-3180
65
65
- name : ghcr.io/berops/claudie/claudie-operator
66
- newTag : f95dd2b-3176
66
+ newTag : 06cb96b-3180
67
67
- name : ghcr.io/berops/claudie/kube-eleven
68
- newTag : bd26f53-3179
68
+ newTag : 06cb96b-3180
69
69
- name : ghcr.io/berops/claudie/kuber
70
- newTag : f95dd2b-3176
70
+ newTag : 06cb96b-3180
71
71
- name : ghcr.io/berops/claudie/manager
72
- newTag : f95dd2b-3176
72
+ newTag : 06cb96b-3180
73
73
- name : ghcr.io/berops/claudie/terraformer
74
- newTag : f95dd2b-3176
74
+ newTag : 06cb96b-3180
Original file line number Diff line number Diff line change @@ -91,4 +91,4 @@ secretGenerator:
91
91
92
92
images :
93
93
- name : ghcr.io/berops/claudie/testing-framework
94
- newTag : f95dd2b-3176
94
+ newTag : 06cb96b-3180
Original file line number Diff line number Diff line change @@ -106,6 +106,15 @@ func (ctx *Context) DetermineProxyUpdate() bool {
106
106
hetznerInDesired := HasHetznerNode (ctx .DesiredCluster .ClusterInfo )
107
107
hetznerInCurrent := HasHetznerNode (ctx .CurrentCluster .ClusterInfo )
108
108
109
+ // For clusters build before the changes to the proxy setting
110
+ // the InstallationProxy field will be nil, to avoid panic
111
+ // we set it to the default mode.
112
+ // TODO: in future releases, remove this.
113
+ if ctx .CurrentCluster .InstallationProxy == nil {
114
+ ctx .CurrentCluster .InstallationProxy = & spec.InstallationProxy {
115
+ Mode : "default" ,
116
+ }
117
+ }
109
118
currProxySettings := ctx .CurrentCluster .InstallationProxy
110
119
desiredProxySettings := ctx .DesiredCluster .InstallationProxy
111
120
You can’t perform that action at this time.
0 commit comments