Skip to content

Commit

Permalink
fix gke provisioning form stale data
Browse files Browse the repository at this point in the history
  • Loading branch information
mantis-toboggan-md committed Oct 16, 2024
1 parent 614826f commit 6f8aa14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/gke/components/CruGKE.vue
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export default defineComponent({
syncUpstreamConfig('gke', this.normanCluster);
}
if (!this.normanCluster.gkeConfig) {
this.normanCluster['gkeConfig'] = { ...defaultGkeConfig };
this.normanCluster['gkeConfig'] = cloneDeep(defaultGkeConfig);
}
if (!this.normanCluster.gkeConfig.nodePools) {
this.normanCluster.gkeConfig['nodePools'] = [{ ...cloneDeep(defaultNodePool), name: 'group-1' }];
Expand Down

0 comments on commit 6f8aa14

Please sign in to comment.