dashboard icon indicating copy to clipboard operation
dashboard copied to clipboard

[SURE-7846] GKE operator does not load the latest version of K8s; inconsistency in the 'Cluster Options' and 'Node Details' k8s version

Open valaparthvi opened this issue 1 year ago • 16 comments

Setup

  • Rancher version: v2.7.6-68bd3be1b794cc9ec5473e4187b31dd92eeebb6a-head, v2.8.1-rc1
  • Rancher UI Extensions:
  • Browser type & version: Firefox

Describe the bug

When creating a GKE cluster, the K8s version in 'Cluster Options' is 1.26.7-gke-500, but the K8s version in 'Node Details' is 1.27.3-gke.100.

To Reproduce

  1. Go to 'Cluster Management' and click on 'Create', and select 'Google GKE'.
  2. Enter the appropriate details to 'Google Account Access' and 'Cluster Location', and move to 'Cluster Options'.
  3. The K8s version selected by default is '1.26.7-gke.500'.
  4. Go to 'Node Pools', and check the Kubernetes Version in Node Details. This is 1.27.3-gke.100.
  5. (Optional) Click on 'Create' and create the cluster. Result
  6. The K8s version the cluster uses is 1.27.3-gke.100. Expected Result
  1. The K8s version selected by default should be 1.27.3-gke.100.
  2. (Or the K8s version displayed here should be 1.26.7-gke.500)
  3. The K8s version used by the cluster should be whatever is displayed in step 3. Screenshots

Screenshot from 2023-08-09 15-33-05-cropped Screenshot from 2023-08-09 15-22-09 Screenshot from 2023-08-09 15-32-42 Screenshot from 2023-08-09 15-56-09

Additional context

Changing the 'Cluster Options' K8s version updates the 'Node Details' K8s version as well.

valaparthvi avatar Aug 09 '23 10:08 valaparthvi

@kkaempf to confirm, this is needed as part of k8s 1.27+?

gaktive avatar Aug 09 '23 16:08 gaktive

@kkaempf to confirm, this is needed as part of k8s 1.27+?

Looking at the bug report, the inconsistency appeared with 1.27+ but might also happen with older versions.

kkaempf avatar Aug 10 '23 06:08 kkaempf

First thing to check is to see if the version list is hard coded or where this info is coming from since we're not consistent here.

gaktive avatar Aug 16 '23 15:08 gaktive

For reference, this is what we've done around EKS: https://github.com/rancher/dashboard/issues/8721

File: lib/shared/addon/utils/amazon.js

gaktive avatar Aug 16 '23 15:08 gaktive

Place to investigate lib/shared/addon/components/cluster-driver/driver-gke/component.js

  • kube version (i think( serviceVersions: service('version-choices'),
    • versionChoices (will remove versions from kube list)
  • node version
    • addNodePool() {
        const config = get(this, `primaryResource.gkeConfig`);
        const kubernetesVersion = get(config, 'kubernetesVersion');
      

Fix might be similar to https://github.com/rancher/ui/pull/5018/files

richard-cox avatar Aug 16 '23 15:08 richard-cox

cc: @kkaempf @mbologna

GKE 1.27 is not to be made available for Rancher Q3 release and user should not be allowed to select/use it. With that in mind, it would be helpful if this issue is resolved in Q3.

@cpinjani please correct me if I am wrong.

valaparthvi avatar Aug 23 '23 10:08 valaparthvi

This is where we filter the versions to be in a valid range: https://github.com/rancher/ui/blob/master/lib/shared/addon/version-choices/service.js#L47

The max version is based on the value of ui-k8s-default-version-range coming from the API v3/settings?limit=-1&sort=name:

 // Response:
   ...
  {
    "baseType": "setting",
    "created": "2023-08-17T19:02:49Z",
    "createdTS": 1692298969000,
    "creatorId": null,
    "customized": true,
    "default": "<=1.14.x",
    "id": "ui-k8s-default-version-range",
    "links": {
      "remove": "https://localhost:8005/v3/settings/ui-k8s-default-version-range",
      "self": "https://localhost:8005/v3/settings/ui-k8s-default-version-range",
      "update": "https://localhost:8005/v3/settings/ui-k8s-default-version-range"
    },
    "name": "ui-k8s-default-version-range",
    "source": "db",
    "type": "setting",
    "uuid": "3c2e8480-2522-47af-83e3-1e517257f8b2",
    "value": "<=v1.26.x"
  },
  {
   ...

As you can see in the response^ the value is "<=v1.26.x" which causes all the versions above it get filtered. Note that this endpoint gets called before creating any RKE1 cluster, not just GKE.

FYI @richard-cox @gaktive @nwmac

momesgin avatar Aug 28 '23 23:08 momesgin

We need to make sure that both kube version's display the same value, probably by using the same process.

Next, if 1.27 is supported in 2.8.0, we need to track down what is applying the setting value for both ui-k8s-default-version-range and ui-k8s-supported-versions-range. The defaults for both are very old, so something in the Rancher build process (?) is be setting them

Edit: This default values from from https://github.com/rancher/rancher/blame/release/v2.8/pkg/settings/setting.go#L225

richard-cox avatar Aug 29 '23 08:08 richard-cox

The bug is present on Rancher 2.8.1-rc1. Screenshot from 2024-01-11 17-29-55 image

image

valaparthvi avatar Jan 11 '24 12:01 valaparthvi

@momesgin The issue was closed via PR and was not re-opened. This didn't go through QA.

Can you take a look?

richard-cox avatar Jan 11 '24 13:01 richard-cox

@nwmac this may need to be backported to 2.8.x and early.

gaktive avatar Jan 12 '24 19:01 gaktive

/backport v2.8.next1

gaktive avatar Jan 12 '24 19:01 gaktive

@momesgin You have moved the issue to To Test but I am not sure how to test this. Do you want me to clone the UI repo and run the latest UI or should I wait for the next release? I tested this on v2.8-head but the issue still exists there.

I installed the latest UI as instructed in the README since the PR is merged there, the bug does not appear there.

valaparthvi avatar Jan 15 '24 08:01 valaparthvi

@valaparthvi This is the 2.9.0 issue (and should be in v2.9-head), there's another for 2.8 (which when done will be in v2.8-head)

richard-cox avatar Jan 15 '24 09:01 richard-cox

the bug is present in v2.7.9, which does NOT actually support k8s 1.27

pgonin avatar Mar 11 '24 07:03 pgonin

Since this was tested in 2.8.next1, I'll defer to QA if they need to retest this or confirm that automation is possible (or done).

gaktive avatar Mar 15 '24 20:03 gaktive

AFAIT, since we do not have a UI automation, this being a UI bug, we will rely on manual test. I can confirm that it works as expected on 2.8-head and 2.9-head.

But as @pgonin stated in https://github.com/rancher/dashboard/issues/9507#issuecomment-1987759972, the issue is still seen on 2.7.9. Screenshot from 2024-03-18 11-55-59

With the default values, it provisions 1.27.8 GKE on 2.7.9.

  gkeConfig:
    clusterAddons:
      horizontalPodAutoscaling: true
      httpLoadBalancing: true
    clusterIpv4Cidr: ''
    clusterName: pvala-gke
    description: ''
    enableKubernetesAlpha: false
    googleCredentialSecret: cattle-global-data:cc-75wlg
    imported: false
    ipAllocationPolicy:
      useIpAliases: true
    kubernetesVersion: 1.27.8-gke.1067004
    labels: {}
    locations: []
    loggingService: logging.googleapis.com/kubernetes
    maintenanceWindow: ''
    masterAuthorizedNetworks: {}
    monitoringService: monitoring.googleapis.com/kubernetes
    network: default
    networkPolicyEnabled: false
    nodePools:
      - autoscaling: {}
        config:
          diskSizeGb: 100
          diskType: pd-standard
          imageType: COS_CONTAINERD
          machineType: n1-standard-2
          oauthScopes:
            - https://www.googleapis.com/auth/devstorage.read_only
            - https://www.googleapis.com/auth/logging.write
            - https://www.googleapis.com/auth/monitoring
            - https://www.googleapis.com/auth/servicecontrol
            - https://www.googleapis.com/auth/service.management.readonly
            - https://www.googleapis.com/auth/trace.append
        initialNodeCount: 1
        management:
          autoRepair: true
          autoUpgrade: true
        maxPodsConstraint: 110
        name: dp
        version: 1.27.8-gke.1067004
Note that /meta/gkeVersions returns the following: "defaultClusterVersion=1.27.8-gke.1067004" on 2.7.9 and 2.9-head.

{
    "channels": [
        {
            "channel": "RAPID",
            "defaultVersion": "1.29.1-gke.1589017",
            "validVersions": [
                "1.29.2-gke.1217000",
                "1.29.1-gke.1589017",
                "1.28.7-gke.1026000",
                "1.28.3-gke.1286000",
                "1.27.11-gke.1118000",
                "1.27.11-gke.1062000",
                "1.26.14-gke.1076000",
                "1.26.14-gke.1044000",
                "1.25.16-gke.1596000",
                "1.25.16-gke.1570000"
            ]
        },
        {
            "channel": "REGULAR",
            "defaultVersion": "1.27.8-gke.1067004",
            "validVersions": [
                "1.29.1-gke.1589017",
                "1.28.5-gke.1217000",
                "1.28.3-gke.1286000",
                "1.27.10-gke.1055000",
                "1.27.9-gke.1092000",
                "1.27.8-gke.1067004",
                "1.26.14-gke.1006000",
                "1.26.13-gke.1144000",
                "1.26.8-gke.200",
                "1.25.16-gke.1537000",
                "1.25.16-gke.1460000"
            ]
        },
        {
            "channel": "STABLE",
            "defaultVersion": "1.27.8-gke.1067004",
            "validVersions": [
                "1.28.3-gke.1286000",
                "1.28.3-gke.1203001",
                "1.28.3-gke.1118000",
                "1.27.8-gke.1067004",
                "1.27.7-gke.1121002",
                "1.26.11-gke.1055000",
                "1.26.10-gke.1101000",
                "1.26.8-gke.200",
                "1.25.16-gke.1041000",
                "1.25.15-gke.1115000"
            ]
        }
    ],
    "defaultClusterVersion": "1.27.8-gke.1067004",
    "defaultImageType": "COS_CONTAINERD",
    "validImageTypes": [
        "COS_CONTAINERD",
        "COS",
        "UBUNTU",
        "UBUNTU_CONTAINERD",
        "WINDOWS_LTSC",
        "WINDOWS_LTSC_CONTAINERD",
        "WINDOWS_SAC",
        "WINDOWS_SAC_CONTAINERD"
    ],
    "validMasterVersions": [
        "1.29.2-gke.1217000",
        "1.29.1-gke.1589017",
        "1.29.0-gke.1381000",
        "1.28.7-gke.1026000",
        "1.28.5-gke.1217000",
        "1.28.3-gke.1286000",
        "1.28.3-gke.1203001",
        "1.28.3-gke.1118000",
        "1.27.11-gke.1118000",
        "1.27.11-gke.1062000",
        "1.27.10-gke.1055000",
        "1.27.9-gke.1092000",
        "1.27.8-gke.1067004",
        "1.27.7-gke.1121002",
        "1.27.3-gke.100",
        "1.26.14-gke.1076000",
        "1.26.14-gke.1044000",
        "1.26.14-gke.1006000",
        "1.26.13-gke.1144000",
        "1.26.11-gke.1055000",
        "1.26.10-gke.1101000",
        "1.26.8-gke.200",
        "1.25.16-gke.1596000",
        "1.25.16-gke.1570000",
        "1.25.16-gke.1537000",
        "1.25.16-gke.1460000",
        "1.25.16-gke.1041000",
        "1.25.15-gke.1115000"
    ],
    "validNodeVersions": [
        "1.29.2-gke.1217000",
        "1.29.2-gke.1060000",
        "1.29.1-gke.1589017",
        "1.29.1-gke.1589000",
        "1.29.1-gke.1575000",
        "1.29.1-gke.1425000",
        "1.29.1-gke.1016000",
        "1.29.0-gke.1381000",
        "1.28.7-gke.1026000",
        "1.28.6-gke.1456000",
        "1.28.6-gke.1369000",
        "1.28.6-gke.1289000",
        "1.28.6-gke.1095000",
        "1.28.5-gke.1217000",
        "1.28.4-gke.1083000",
        "1.28.3-gke.1286000",
        "1.28.3-gke.1203001",
        "1.28.3-gke.1203000",
        "1.28.3-gke.1118000",
        "1.28.3-gke.1098000",
        "1.28.3-gke.1090000",
        "1.28.2-gke.1157000",
        "1.27.11-gke.1118000",
        "1.27.11-gke.1062000",
        "1.27.11-gke.1018000",
        "1.27.10-gke.1207000",
        "1.27.10-gke.1152000",
        "1.27.10-gke.1055000",
        "1.27.9-gke.1092000",
        "1.27.8-gke.1067004",
        "1.27.8-gke.1067000",
        "1.27.7-gke.1293000",
        "1.27.7-gke.1121002",
        "1.27.7-gke.1121000",
        "1.27.7-gke.1088000",
        "1.27.7-gke.1056000",
        "1.27.7-gke.1038000",
        "1.27.6-gke.1506000",
        "1.27.6-gke.1445000",
        "1.27.6-gke.1248000",
        "1.27.5-gke.200",
        "1.27.4-gke.900",
        "1.27.3-gke.1700",
        "1.27.3-gke.100",
        "1.27.2-gke.2100",
        "1.27.2-gke.1200",
        "1.26.14-gke.1076000",
        "1.26.14-gke.1044000",
        "1.26.14-gke.1006000",
        "1.26.13-gke.1189000",
        "1.26.13-gke.1144000",
        "1.26.13-gke.1052000",
        "1.26.12-gke.1111000",
        "1.26.11-gke.1055000",
        "1.26.10-gke.1235000",
        "1.26.10-gke.1101000",
        "1.26.10-gke.1073000",
        "1.26.10-gke.1038000",
        "1.26.10-gke.1024000",
        "1.26.9-gke.1507000",
        "1.26.9-gke.1437000",
        "1.26.8-gke.200",
        "1.26.7-gke.500",
        "1.26.6-gke.1700",
        "1.26.5-gke.2700",
        "1.26.5-gke.2100",
        "1.26.5-gke.1400",
        "1.26.5-gke.1200",
        "1.26.4-gke.1400",
        "1.26.4-gke.500",
        "1.26.3-gke.1000",
        "1.26.3-gke.400",
        "1.26.2-gke.1000",
        "1.26.1-gke.1500",
        "1.25.16-gke.1596000",
        "1.25.16-gke.1570000",
        "1.25.16-gke.1537000",
        "1.25.16-gke.1497000",
        "1.25.16-gke.1460000",
        "1.25.16-gke.1360000",
        "1.25.16-gke.1268000",
        "1.25.16-gke.1041000",
        "1.25.16-gke.1020000",
        "1.25.15-gke.1115000",
        "1.25.15-gke.1083000",
        "1.25.15-gke.1049000",
        "1.25.15-gke.1033000",
        "1.25.14-gke.1474000",
        "1.25.14-gke.1421000",
        "1.25.13-gke.200",
        "1.25.12-gke.500",
        "1.25.11-gke.1700",
        "1.25.10-gke.2700",
        "1.25.10-gke.2100",
        "1.25.10-gke.1400",
        "1.25.10-gke.1200",
        "1.25.9-gke.2300",
        "1.25.9-gke.400",
        "1.25.8-gke.1000",
        "1.25.8-gke.500",
        "1.25.7-gke.1000",
        "1.25.6-gke.1000",
        "1.25.6-gke.200",
        "1.25.5-gke.2000",
        "1.25.5-gke.1500",
        "1.25.4-gke.2100",
        "1.25.3-gke.800",
        "1.24.17-gke.2472000",
        "1.24.17-gke.2364000",
        "1.24.17-gke.2347000",
        "1.24.17-gke.2266000",
        "1.24.17-gke.2230000",
        "1.24.17-gke.2211000",
        "1.24.17-gke.2198000",
        "1.24.17-gke.2155000",
        "1.24.17-gke.2113000",
        "1.24.17-gke.200",
        "1.24.16-gke.500",
        "1.24.15-gke.1700",
        "1.24.14-gke.2700",
        "1.24.14-gke.2100",
        "1.24.14-gke.1400",
        "1.24.14-gke.1200",
        "1.24.13-gke.2500",
        "1.24.13-gke.500",
        "1.24.12-gke.1000",
        "1.24.12-gke.500",
        "1.24.11-gke.1000",
        "1.24.10-gke.2300",
        "1.24.10-gke.1200",
        "1.24.9-gke.3200",
        "1.24.9-gke.2000",
        "1.24.9-gke.1500",
        "1.24.8-gke.2000",
        "1.24.8-gke.401",
        "1.24.7-gke.900",
        "1.24.6-gke.1500",
        "1.24.5-gke.600",
        "1.24.4-gke.800",
        "1.24.3-gke.2100",
        "1.24.3-gke.900",
        "1.24.3-gke.200",
        "1.24.2-gke.1900",
        "1.24.2-gke.300",
        "1.24.1-gke.1800",
        "1.24.1-gke.1400",
        "1.23.17-gke.10700",
        "1.23.17-gke.10000",
        "1.23.17-gke.8400",
        "1.23.17-gke.7700",
        "1.23.17-gke.7000",
        "1.23.17-gke.6800",
        "1.23.17-gke.5600",
        "1.23.17-gke.3600",
        "1.23.17-gke.2000",
        "1.23.17-gke.1700",
        "1.23.17-gke.300",
        "1.23.16-gke.2500",
        "1.23.16-gke.1400",
        "1.23.16-gke.1100",
        "1.23.16-gke.200",
        "1.23.15-gke.1900",
        "1.23.15-gke.1400",
        "1.23.14-gke.1800",
        "1.23.14-gke.401",
        "1.23.13-gke.900",
        "1.23.12-gke.1600",
        "1.23.12-gke.100",
        "1.23.11-gke.300",
        "1.23.10-gke.1000",
        "1.23.9-gke.2100",
        "1.23.9-gke.900",
        "1.23.8-gke.1900",
        "1.23.8-gke.400",
        "1.23.7-gke.1400",
        "1.23.6-gke.2200",
        "1.23.6-gke.1700",
        "1.23.6-gke.1501",
        "1.23.6-gke.1500",
        "1.23.5-gke.2400",
        "1.23.5-gke.1503",
        "1.23.5-gke.1501",
        "1.22.17-gke.14100",
        "1.22.17-gke.13400",
        "1.22.17-gke.12700",
        "1.22.17-gke.11400",
        "1.22.17-gke.9400",
        "1.22.17-gke.8000",
        "1.22.17-gke.7500",
        "1.22.17-gke.6100",
        "1.22.17-gke.5400",
        "1.22.17-gke.4300",
        "1.22.17-gke.4000",
        "1.22.17-gke.3100",
        "1.22.17-gke.1900",
        "1.22.17-gke.1400",
        "1.22.16-gke.2000",
        "1.22.16-gke.1300",
        "1.22.15-gke.2500",
        "1.22.15-gke.1000",
        "1.22.15-gke.100",
        "1.22.14-gke.300",
        "1.22.13-gke.1000",
        "1.22.12-gke.2300",
        "1.22.12-gke.1200",
        "1.22.12-gke.500",
        "1.22.12-gke.300",
        "1.22.11-gke.400",
        "1.22.10-gke.600",
        "1.22.9-gke.2000",
        "1.22.9-gke.1500",
        "1.22.9-gke.1300",
        "1.22.8-gke.2200",
        "1.22.8-gke.202",
        "1.22.8-gke.201",
        "1.22.8-gke.200",
        "1.22.7-gke.1500",
        "1.22.7-gke.1300",
        "1.22.7-gke.900",
        "1.22.7-gke.300",
        "1.22.6-gke.1000",
        "1.22.6-gke.300",
        "1.22.4-gke.1501",
        "1.22.3-gke.1500",
        "1.21.14-gke.18800",
        "1.21.14-gke.18100",
        "1.21.14-gke.15800",
        "1.21.14-gke.14600",
        "1.21.14-gke.14100",
        "1.21.14-gke.8500",
        "1.21.14-gke.7100",
        "1.21.14-gke.5300",
        "1.21.14-gke.4300",
        "1.21.14-gke.3000",
        "1.21.14-gke.2700",
        "1.21.14-gke.2100",
        "1.21.14-gke.700",
        "1.21.13-gke.900",
        "1.21.12-gke.2200",
        "1.21.12-gke.1700",
        "1.21.12-gke.1500",
        "1.21.11-gke.1900",
        "1.21.11-gke.1100",
        "1.21.11-gke.900",
        "1.21.10-gke.2000",
        "1.21.10-gke.1500",
        "1.21.10-gke.1300",
        "1.21.10-gke.400",
        "1.21.9-gke.1002",
        "1.21.9-gke.1001",
        "1.21.9-gke.1000",
        "1.21.9-gke.300",
        "1.21.6-gke.1503",
        "1.21.6-gke.1501",
        "1.21.6-gke.1500",
        "1.21.5-gke.1805",
        "1.21.5-gke.1802",
        "1.21.5-gke.1302",
        "1.21.5-gke.1300",
        "1.21.4-gke.2302",
        "1.21.4-gke.2300",
        "1.21.3-gke.2003",
        "1.21.3-gke.2001",
        "1.20.15-gke.13700",
        "1.20.15-gke.13400",
        "1.20.15-gke.12800",
        "1.20.15-gke.11400",
        "1.20.15-gke.9900",
        "1.20.15-gke.8700",
        "1.20.15-gke.8200",
        "1.20.15-gke.8000",
        "1.20.15-gke.6000",
        "1.20.15-gke.5200",
        "1.20.15-gke.5000",
        "1.20.15-gke.4100",
        "1.20.15-gke.3600",
        "1.20.15-gke.3400",
        "1.20.15-gke.2500",
        "1.20.15-gke.1000",
        "1.20.15-gke.300",
        "1.20.12-gke.1500",
        "1.20.11-gke.1801",
        "1.20.11-gke.1300",
        "1.20.10-gke.2100",
        "1.20.10-gke.1600",
        "1.20.10-gke.301",
        "1.20.9-gke.2100",
        "1.20.9-gke.1001",
        "1.20.9-gke.1000",
        "1.20.9-gke.701",
        "1.20.9-gke.700",
        "1.20.8-gke.2101",
        "1.20.8-gke.2100",
        "1.20.8-gke.900",
        "1.20.8-gke.700",
        "1.20.7-gke.2200",
        "1.20.7-gke.1800",
        "1.20.6-gke.1400",
        "1.20.6-gke.1000",
        "1.19.16-gke.15700",
        "1.19.16-gke.14500",
        "1.19.16-gke.14000",
        "1.19.16-gke.13800",
        "1.19.16-gke.11800",
        "1.19.16-gke.11000",
        "1.19.16-gke.10800",
        "1.19.16-gke.9900",
        "1.19.16-gke.9400",
        "1.19.16-gke.9200",
        "1.19.16-gke.8300",
        "1.19.16-gke.6800",
        "1.19.16-gke.6100",
        "1.19.16-gke.3600",
        "1.19.15-gke.1801",
        "1.19.15-gke.1300",
        "1.19.15-gke.500",
        "1.19.14-gke.2300",
        "1.19.14-gke.1900",
        "1.19.14-gke.301",
        "1.19.14-gke.300",
        "1.19.13-gke.1900",
        "1.19.13-gke.1200",
        "1.19.13-gke.701",
        "1.19.13-gke.700",
        "1.19.12-gke.2101",
        "1.19.12-gke.2100",
        "1.19.12-gke.1100",
        "1.19.12-gke.900",
        "1.19.12-gke.700",
        "1.19.11-gke.2101",
        "1.19.11-gke.2100",
        "1.19.11-gke.1701",
        "1.19.11-gke.1700",
        "1.19.10-gke.1701",
        "1.19.10-gke.1700",
        "1.19.10-gke.1601",
        "1.19.10-gke.1600",
        "1.19.10-gke.1001",
        "1.19.10-gke.1000",
        "1.19.9-gke.1900",
        "1.19.9-gke.1400",
        "1.19.9-gke.700",
        "1.19.9-gke.100",
        "1.19.8-gke.2000",
        "1.19.8-gke.1600",
        "1.19.8-gke.1000",
        "1.19.7-gke.2503",
        "1.19.7-gke.1500",
        "1.19.7-gke.1302",
        "1.19.7-gke.800",
        "1.19.6-gke.1700",
        "1.19.6-gke.1100",
        "1.19.6-gke.600",
        "1.18.20-gke.6101",
        "1.18.20-gke.6000",
        "1.18.20-gke.4501",
        "1.18.20-gke.4500",
        "1.18.20-gke.4100",
        "1.18.20-gke.3300",
        "1.18.20-gke.3001",
        "1.18.20-gke.3000",
        "1.18.20-gke.2300",
        "1.18.20-gke.901",
        "1.18.20-gke.900",
        "1.18.20-gke.501",
        "1.18.19-gke.2101",
        "1.18.19-gke.2100",
        "1.18.19-gke.1701",
        "1.18.19-gke.1700",
        "1.18.18-gke.1701",
        "1.18.18-gke.1700",
        "1.18.18-gke.1101",
        "1.18.18-gke.1100",
        "1.18.17-gke.1901",
        "1.18.17-gke.1900",
        "1.18.17-gke.1201",
        "1.18.17-gke.1200",
        "1.18.17-gke.700",
        "1.18.17-gke.100",
        "1.18.16-gke.2100",
        "1.18.16-gke.1201",
        "1.18.16-gke.1200",
        "1.18.16-gke.502",
        "1.18.16-gke.500",
        "1.18.16-gke.302",
        "1.18.16-gke.300",
        "1.18.15-gke.2500",
        "1.18.15-gke.1502",
        "1.18.15-gke.1501",
        "1.18.15-gke.1500",
        "1.18.15-gke.1102",
        "1.18.15-gke.1100",
        "1.18.15-gke.800",
        "1.18.14-gke.1600",
        "1.18.14-gke.1200",
        "1.18.12-gke.1210",
        "1.18.12-gke.1206",
        "1.18.12-gke.1205",
        "1.18.12-gke.1201",
        "1.18.12-gke.1200",
        "1.18.12-gke.300",
        "1.18.10-gke.2701",
        "1.18.10-gke.2101",
        "1.18.10-gke.1500",
        "1.18.10-gke.601",
        "1.18.9-gke.2501",
        "1.18.9-gke.1501",
        "1.18.9-gke.801",
        "1.18.6-gke.4801",
        "1.18.6-gke.3504",
        "1.18.6-gke.3503",
        "1.17.17-gke.9100",
        "1.17.17-gke.8500",
        "1.17.17-gke.8200",
        "1.17.17-gke.7800",
        "1.17.17-gke.7200",
        "1.17.17-gke.6700",
        "1.17.17-gke.6000",
        "1.17.17-gke.5400",
        "1.17.17-gke.4900",
        "1.17.17-gke.4400",
        "1.17.17-gke.3700",
        "1.17.17-gke.3000",
        "1.17.17-gke.2800",
        "1.17.17-gke.2500",
        "1.17.17-gke.1500",
        "1.17.17-gke.1101",
        "1.17.17-gke.1100",
        "1.17.17-gke.600",
        "1.17.16-gke.1600",
        "1.17.16-gke.1300",
        "1.17.15-gke.800",
        "1.17.15-gke.300",
        "1.17.14-gke.1600",
        "1.17.14-gke.1200",
        "1.17.14-gke.400",
        "1.17.13-gke.2600",
        "1.17.13-gke.2001",
        "1.17.13-gke.1401",
        "1.17.13-gke.1400",
        "1.17.13-gke.600",
        "1.17.12-gke.2502",
        "1.17.12-gke.1504",
        "1.17.12-gke.1501",
        "1.17.12-gke.500",
        "1.17.9-gke.6300",
        "1.17.9-gke.1504",
        "1.16.15-gke.14800",
        "1.16.15-gke.12500",
        "1.16.15-gke.11800",
        "1.16.15-gke.10600",
        "1.16.15-gke.7801",
        "1.16.15-gke.7800",
        "1.16.15-gke.7300",
        "1.16.15-gke.6900",
        "1.16.15-gke.6000",
        "1.16.15-gke.5500",
        "1.16.15-gke.4901",
        "1.16.15-gke.4301",
        "1.16.15-gke.4300",
        "1.16.15-gke.3500",
        "1.16.15-gke.2601",
        "1.16.15-gke.1600",
        "1.16.15-gke.500",
        "1.16.13-gke.404",
        "1.16.13-gke.403",
        "1.16.13-gke.401",
        "1.16.13-gke.400",
        "1.16.13-gke.1",
        "1.16.11-gke.5",
        "1.16.10-gke.8",
        "1.16.9-gke.6",
        "1.16.9-gke.2",
        "1.16.8-gke.15",
        "1.16.8-gke.12",
        "1.16.8-gke.9",
        "1.15.12-gke.6002",
        "1.15.12-gke.6001",
        "1.15.12-gke.5000",
        "1.15.12-gke.4002",
        "1.15.12-gke.4000",
        "1.15.12-gke.20",
        "1.15.12-gke.17",
        "1.15.12-gke.16",
        "1.15.12-gke.13",
        "1.15.12-gke.9",
        "1.15.12-gke.6",
        "1.15.12-gke.3",
        "1.15.12-gke.2",
        "1.15.11-gke.17",
        "1.15.11-gke.15",
        "1.15.11-gke.13",
        "1.15.11-gke.12",
        "1.15.11-gke.11",
        "1.15.11-gke.9",
        "1.15.11-gke.5",
        "1.15.11-gke.3",
        "1.15.11-gke.1",
        "1.15.9-gke.26",
        "1.15.9-gke.24",
        "1.15.9-gke.22",
        "1.15.9-gke.12",
        "1.15.9-gke.9",
        "1.15.9-gke.8",
        "1.15.8-gke.3",
        "1.15.8-gke.2",
        "1.15.7-gke.23",
        "1.15.7-gke.2",
        "1.15.4-gke.22",
        "1.14.10-gke.1504",
        "1.14.10-gke.902",
        "1.14.10-gke.50",
        "1.14.10-gke.46",
        "1.14.10-gke.45",
        "1.14.10-gke.42",
        "1.14.10-gke.41",
        "1.14.10-gke.40",
        "1.14.10-gke.37",
        "1.14.10-gke.36",
        "1.14.10-gke.34",
        "1.14.10-gke.32",
        "1.14.10-gke.31",
        "1.14.10-gke.27",
        "1.14.10-gke.24",
        "1.14.10-gke.22",
        "1.14.10-gke.21",
        "1.14.10-gke.17",
        "1.14.10-gke.0",
        "1.14.9-gke.23",
        "1.14.9-gke.2",
        "1.14.9-gke.0",
        "1.14.8-gke.33",
        "1.14.8-gke.21",
        "1.14.8-gke.18",
        "1.14.8-gke.17",
        "1.14.8-gke.14",
        "1.14.8-gke.12",
        "1.14.8-gke.7",
        "1.14.8-gke.2",
        "1.14.7-gke.40",
        "1.14.7-gke.25",
        "1.14.7-gke.23",
        "1.14.7-gke.17",
        "1.14.7-gke.14",
        "1.14.7-gke.10",
        "1.14.6-gke.13",
        "1.14.6-gke.2",
        "1.14.6-gke.1",
        "1.14.3-gke.11",
        "1.14.3-gke.10",
        "1.14.3-gke.9",
        "1.14.2-gke.9",
        "1.14.1-gke.5",
        "1.13.12-gke.30",
        "1.13.12-gke.25",
        "1.13.12-gke.17",
        "1.13.12-gke.16",
        "1.13.12-gke.14",
        "1.13.12-gke.13",
        "1.13.12-gke.10",
        "1.13.12-gke.8",
        "1.13.12-gke.4",
        "1.13.12-gke.2",
        "1.13.11-gke.23",
        "1.13.11-gke.15",
        "1.13.11-gke.14",
        "1.13.11-gke.12",
        "1.13.11-gke.11",
        "1.13.11-gke.9",
        "1.13.11-gke.5",
        "1.13.10-gke.7",
        "1.13.10-gke.0",
        "1.13.9-gke.11",
        "1.13.9-gke.3",
        "1.13.7-gke.24",
        "1.13.7-gke.19",
        "1.13.7-gke.15",
        "1.13.7-gke.8",
        "1.13.7-gke.0",
        "1.13.6-gke.13",
        "1.13.6-gke.6",
        "1.13.6-gke.5",
        "1.13.6-gke.0",
        "1.13.5-gke.10",
        "1.12.10-gke.22",
        "1.12.10-gke.20",
        "1.12.10-gke.19",
        "1.12.10-gke.18",
        "1.12.10-gke.17",
        "1.12.10-gke.15",
        "1.12.10-gke.13",
        "1.12.10-gke.11",
        "1.12.10-gke.5",
        "1.12.9-gke.16",
        "1.12.9-gke.15",
        "1.12.9-gke.13",
        "1.12.9-gke.10",
        "1.12.9-gke.7",
        "1.12.9-gke.3",
        "1.12.8-gke.12",
        "1.12.8-gke.10",
        "1.12.8-gke.7",
        "1.12.8-gke.6",
        "1.12.7-gke.26",
        "1.12.7-gke.25",
        "1.12.7-gke.24",
        "1.12.7-gke.22",
        "1.12.7-gke.21",
        "1.12.7-gke.17",
        "1.12.7-gke.10",
        "1.12.7-gke.7",
        "1.12.6-gke.11",
        "1.12.6-gke.10",
        "1.12.6-gke.7",
        "1.12.5-gke.10",
        "1.12.5-gke.5",
        "1.11.10-gke.6",
        "1.11.10-gke.5"
    ]
}

valaparthvi avatar Mar 18 '24 06:03 valaparthvi

Since this has been fixed on 2.9-head, I will close the issue. I will create another issue for the issue we are seeing on 2.7.9.

valaparthvi avatar Mar 19 '24 11:03 valaparthvi

Can this be backported to 2.7?

valaparthvi avatar Mar 19 '24 11:03 valaparthvi

Issue occurs on v2.7.13-alpha1

cpinjani avatar May 02 '24 10:05 cpinjani

Confirmed this with Klaus, this is not to be backported. He also mentioned that as a general rule an issue will not be backported unless requested by the customer, in cases where they cannot upgrade.

valaparthvi avatar May 02 '24 10:05 valaparthvi