From a04d25c17b4041b7e79dba0a68c73537887f5f63 Mon Sep 17 00:00:00 2001 From: Talmai Oliveira Date: Fri, 8 Nov 2024 16:19:46 -0500 Subject: [PATCH] default behavior when creating new child clusters should match what existed before we enabled IPACL (in other words: disabled by default) --- .../src/features/Kubernetes/CreateCluster/CreateCluster.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/manager/src/features/Kubernetes/CreateCluster/CreateCluster.tsx b/packages/manager/src/features/Kubernetes/CreateCluster/CreateCluster.tsx index f77e7250caa..8fccfcf7fd9 100644 --- a/packages/manager/src/features/Kubernetes/CreateCluster/CreateCluster.tsx +++ b/packages/manager/src/features/Kubernetes/CreateCluster/CreateCluster.tsx @@ -79,7 +79,7 @@ export const CreateCluster = () => { const formContainerRef = React.useRef(null); const { mutateAsync: updateAccountAgreements } = useMutateAccountAgreements(); const [highAvailability, setHighAvailability] = React.useState(); - const [controlPlaneACL, setControlPlaneACL] = React.useState(true); + const [controlPlaneACL, setControlPlaneACL] = React.useState(false); const [apl_enabled, setApl_enabled] = React.useState(false); const { data, error: regionsError } = useRegionsQuery();