We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Feature-flag enable-kubernetes-sidecar: "true" should enable native sidecar feature on k8s versions 1.29+
enable-kubernetes-sidecar: "true"
On AWS EKS cluster running version 1.30 enabling this flag doesn't affect pipeline controller.
1.30
Server Version: v1.30.6-eks-7f9249a
v0.65.2
The problem is here and here
svMinorInt, _ := strconv.Atoi(sv.Minor)
In our case sv.Minor string has value 30+ and as a result svMinorInt has value 0. According to this + is expected.
sv.Minor
30+
svMinorInt
0
+
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Expected Behavior
Feature-flag
enable-kubernetes-sidecar: "true"
should enable native sidecar feature on k8s versions 1.29+Actual Behavior
On AWS EKS cluster running version
1.30
enabling this flag doesn't affect pipeline controller.Steps to Reproduce the Problem
Additional Info
The problem is here and here
In our case
sv.Minor
string has value30+
and as a resultsvMinorInt
has value0
. According to this+
is expected.The text was updated successfully, but these errors were encountered: