sparse-intern-71089
11/07/2019, 1:37 PMgray-city-50684
11/07/2019, 1:37 PMgray-city-50684
11/07/2019, 1:38 PMnew docean.KubernetesCluster(`${coreConfig.applicationName}-K8S`.toLowerCase(),
{
region: doConfig.region as docean.Region,
version: "latest",
nodePool: {
name: `${coreConfig.applicationName}-K8S-default`.toLowerCase(),
size: doConfig.nodeSize,
nodeCount:doConfig.nodeCount
}
},
{
provider: doProvider,
parent: this
}
);
gray-city-50684
11/07/2019, 1:42 PMversion: "latest"
part, on any subsequent pulumi up
updates it wants to replace the cluster, because the version saved will be the actual version (1.16.2-do.0
right now) and not latest
.gray-city-50684
11/07/2019, 1:49 PMwhite-balloon-205
ignoreChanges
which can be used for this.white-balloon-205
gray-city-50684
11/07/2019, 3:37 PM