From a084544f08aa36d9c3209801a6fc4770fd5e4849 Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Fri, 26 Mar 2021 08:02:45 -0700 Subject: [PATCH] Add hasExternalLoadBalancerProvider to AKS/EKS capabilities files --- test/cluster_capabilities/aks.yaml | 3 +++ test/cluster_capabilities/eks.yaml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/test/cluster_capabilities/aks.yaml b/test/cluster_capabilities/aks.yaml index cf8a1186..cc3f68ed 100644 --- a/test/cluster_capabilities/aks.yaml +++ b/test/cluster_capabilities/aks.yaml @@ -7,6 +7,9 @@ capabilities: # Is it possible to borrow the cluster's signing key from the kube API server? clusterSigningKeyIsAvailable: false + # Will the cluster successfully provision a load balancer if requested? + hasExternalLoadBalancerProvider: true + # Does the cluster allow requests without authentication? # https://kubernetes.io/docs/reference/access-authn-authz/authentication/#anonymous-requests anonymousAuthenticationSupported: false diff --git a/test/cluster_capabilities/eks.yaml b/test/cluster_capabilities/eks.yaml index 67fa6bbc..6d545f2f 100644 --- a/test/cluster_capabilities/eks.yaml +++ b/test/cluster_capabilities/eks.yaml @@ -7,6 +7,9 @@ capabilities: # Is it possible to borrow the cluster's signing key from the kube API server? clusterSigningKeyIsAvailable: false + # Will the cluster successfully provision a load balancer if requested? + hasExternalLoadBalancerProvider: true + # Does the cluster allow requests without authentication? # https://kubernetes.io/docs/reference/access-authn-authz/authentication/#anonymous-requests anonymousAuthenticationSupported: true