-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redo v1.15.1 release again #85
Conversation
1f68bfa
to
46c8407
Compare
Signed-off-by: Michi Mutsuzaki <[email protected]>
cilium/cilium#19565 removed hubble-ui-proxy from the Helm chart. Remove all the references to hubble-ui-proxy in the OLM templates. Signed-off-by: Michi Mutsuzaki <[email protected]>
afcb36d didn't quite work because it missed a couple of places that referenced clustermeshEtcdImage. Use the same pattern as f2f792f to conditionally include quay.io/coreos/etcd in the related image list depending on Cilium version. Fixes: afcb36d ("Exclude quay.io/coreos/etcd for Cilium >=v1.15") Signed-off-by: Michi Mutsuzaki <[email protected]>
Signed-off-by: Michi Mutsuzaki <[email protected]>
46c8407
to
aeaa0e8
Compare
// quay.io/coreos/etcd is not included in Cilium >= 1.15 Helm charts. | ||
// Ref: https://github.com/cilium/cilium/blob/v1.15.1/install/kubernetes/cilium/values.yaml | ||
if strings.HasPrefix(parameters.ciliumVersion, "1.12") || strings.HasPrefix(parameters.ciliumVersion, "1.13") || strings.HasPrefix(parameters.ciliumVersion, "1.14") { | ||
_related_images: _related_images + [{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this didn't work, i guess cue doesn't allow mutating lists, i got this error: cue: marshal error: template.items.14.spec.relatedImages: cycle detected
}] | ||
|
||
if parameters.hubbleUIProxyImage != "nothing" { | ||
_related_images_env_vars: _related_images_env_vars + [{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto
@@ -24,7 +24,7 @@ spec: | |||
clusterPoolIPv4PodCIDRList: | |||
- "10.128.0.0/14" | |||
clusterPoolIPv4MaskSize: "23" | |||
nativeRoutingCIDR: "10.128.0.0/14" | |||
ipv4NativeRoutingCIDR: "10.128.0.0/14" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ipv4NativeRoutingCIDR
is the correct setting: https://docs.cilium.io/en/stable/helm-reference/ not sure where i initially got nativeRoutingCIDR
from.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nativeRoutingCIDR has been deprecated and removed see #74
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh yeah i guess i made the prior PR before #74 π‘
@@ -24,7 +24,7 @@ spec: | |||
clusterPoolIPv4PodCIDRList: | |||
- "10.128.0.0/14" | |||
clusterPoolIPv4MaskSize: "23" | |||
nativeRoutingCIDR: "10.128.0.0/14" | |||
ipv4NativeRoutingCIDR: "10.128.0.0/14" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nativeRoutingCIDR has been deprecated and removed see #74
#84 didn't work. please review 8f2c895 ππ
β manually tested with v1.15.1 and v1.14.7.