Skip to content

Commit

Permalink
fix(pci-kubernetes): reset cluster (#14731)
Browse files Browse the repository at this point in the history
Reset cluster with public network
ref: TAPC-2080, TAPC-2083, TAPC-2441

Signed-off-by: Pierre-Philippe <[email protected]>
  • Loading branch information
ppprevost authored Jan 17, 2025
1 parent 90c5bcb commit f9b1f64
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ export default function ResetClusterPage() {
const [formState, setFormState] = useState({
workerNodesPolicy: WORKER_NODE_POLICIES.DELETE,
selectedVersion: getFormatedKubeVersion(kubernetesCluster?.version || ''),
privateNetworkId: kubernetesCluster?.privateNetworkId,
...(!!kubernetesCluster?.privateNetworkId && {
privateNetworkId: kubernetesCluster?.privateNetworkId,
}),
subnet: null,
loadBalancersSubnet: null,
gateway: {
Expand Down

0 comments on commit f9b1f64

Please sign in to comment.