red-area-47037
09/09/2020, 9:00 PM//config.ts file
export const masterVersion = "1.17.9-gke.1503";
//cluster.ts file
import * as config from "./config";
...
export const gkeCluster = new gcp.container.Cluster(clusterName, {
initialNodeCount: config.clusterNodeCount,
nodeVersion: config.masterVersion,
minMasterVersion: config.masterVersion,
releaseChannel: {channel: "RAPID" },
masterAuth: { username: config.clusterUsername, password: config.clusterPassword },
nodeConfig: {
machineType: config.clusterNodeMachineType,
imageType: config.imageType,
oauthScopes: [
"<https://www.googleapis.com/auth/compute>",
"<https://www.googleapis.com/auth/devstorage.read_only>",
"<https://www.googleapis.com/auth/logging.write>",
"<https://www.googleapis.com/auth/monitoring>",
],
},
});
I get the following error message:
error: googleapi: Error 400: Unable to update to releaseChannel RAPID. Master version 1.18.6-gke.3503 cannot be upgraded to releaseChannel RAPID default version 1.17.9-gke.1503: specified version is not newer than the current version., badRequest
gentle-diamond-70147
09/09/2020, 9:14 PMreleaseChannel: {channel: "RAPID" }
.
https://www.pulumi.com/docs/reference/pkg/gcp/container/cluster/#releasechannel_nodejsred-area-47037
09/09/2020, 9:15 PMgentle-diamond-70147
09/09/2020, 9:15 PMred-area-47037
09/09/2020, 9:18 PMgentle-diamond-70147
09/09/2020, 10:35 PM1.17.9-gke.1503
cluster, but I get the same error as you do when trying 1.18.6-gke.3503
. From Pulumi's perspective there's no difference in behavior between the two different versions.red-area-47037
09/10/2020, 2:53 PM