We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e8085ac + 1fb012e commit 1b15343Copy full SHA for 1b15343
test/run-k8s-integration-ci.sh
@@ -93,11 +93,18 @@ else
93
fi
94
95
if [ "$deployment_strategy" = "gke" ]; then
96
- if [ "$gke_release_channel" ]; then
+ # To leverage old cluster versions, we need set both the release channel and
97
+ # the cluster version.
98
+ if [ "$gke_release_channel" = "extended" ]; then
99
+ base_cmd="${base_cmd} --gke-release-channel=${gke_release_channel}"
100
+ base_cmd="${base_cmd} --gke-cluster-version=${gke_cluster_version}"
101
+ elif [ -n "$gke_release_channel" ]; then
102
base_cmd="${base_cmd} --gke-release-channel=${gke_release_channel}"
103
else
104
base_cmd="${base_cmd} --gke-cluster-version=${gke_cluster_version}"
105
106
+fi
107
+
108
109
base_cmd="${base_cmd} --kube-version=${kube_version}"
110
0 commit comments