mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-07-22 16:02:50 +00:00
27 lines
1016 B
YAML
27 lines
1016 B
YAML
# Copyright 2021-2026 the Pinniped contributors. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# The name of the cluster type.
|
|
kubernetesDistribution: EKS
|
|
|
|
# Describe the capabilities of the cluster against which the integration tests will run.
|
|
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
|
|
|
|
# Are LDAP ports on the Internet reachable without interference from network firewalls or proxies?
|
|
canReachInternetLDAPPorts: true
|
|
|
|
# Does the cluster allow requests without authentication?
|
|
# https://kubernetes.io/docs/reference/access-authn-authz/authentication/#anonymous-requests
|
|
# Amazon disabled anonymous authentication in EKS clusters starting with k8s 1.32.
|
|
anonymousAuthentication:
|
|
healthEndpoints:
|
|
allowed: true
|
|
otherEndpoints:
|
|
allowedIfK8sMinorVersionLessThan: 32
|