This message was deleted.
# general
s
This message was deleted.
b
@best-xylophone-83824 I would suggest to use a named version - it’s something we have moved to do in Pulumi/examples repo because of these spurious differences :(
b
I am changing to
Copy code
minMasterVersion: "latest",
        nodeVersion: "~", // means same as master version
and changing "description" to make update "meaningful" from GCP API point of view, lets see how it goes
Ha replace, not good 🙂
Copy code
+-gcp:container/cluster:Cluster: (replace)
        [id=gke01-london]
        [urn=urn:pulumi:gke01-london::gcp-gke::gcp:container/cluster:Cluster::gke01-london]
        [provider=urn:pulumi:gke01-london::gcp-gke::pulumi:providers:gcp::default_1_0_0_beta_1::1a4df25a-af6f-4fda-80df-2c8bd047655a]
      + description     : "xxx"
      ~ minMasterVersion: "1.13.7-gke.19" => "latest"
      ~ nodeVersion     : "1.13.7-gke.19" => "~"
b
I am actually not sure what ~ will mean for us - because that’s evaluated at the gcp level not Pulumi level
b
turned out
~
is not supported by TF provider on cluster creation 🙂 leaving it out completely then, it seems to affect only default nodepool which gets deleted anyway
b
👌