@crossdelta/infrastructure 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1133,6 +1133,8 @@ function createDOKSCluster(config) {
|
|
|
1133
1133
|
maxNodes: config.nodePool.autoScale?.maxNodes,
|
|
1134
1134
|
labels: config.nodePool.labels
|
|
1135
1135
|
}
|
|
1136
|
+
}, {
|
|
1137
|
+
ignoreChanges: ["version"]
|
|
1136
1138
|
});
|
|
1137
1139
|
const kubeconfig = cluster.kubeConfigs.apply((configs) => {
|
|
1138
1140
|
const firstConfig = configs?.[0];
|
package/dist/index.js
CHANGED
|
@@ -1039,6 +1039,8 @@ function createDOKSCluster(config) {
|
|
|
1039
1039
|
maxNodes: config.nodePool.autoScale?.maxNodes,
|
|
1040
1040
|
labels: config.nodePool.labels
|
|
1041
1041
|
}
|
|
1042
|
+
}, {
|
|
1043
|
+
ignoreChanges: ["version"]
|
|
1042
1044
|
});
|
|
1043
1045
|
const kubeconfig = cluster.kubeConfigs.apply((configs) => {
|
|
1044
1046
|
const firstConfig = configs?.[0];
|