709c10227f
TestSimultaneousLDAPRequestsOnSingleProvider proved to be unreliable on AKS due to some kind of kubectl port-forward issue, so only run the LDAP client's integration tests on Kind. They are testing the integration between the client code and the OpenLDAP test server, not testing anything about Kubernetes, so running only on Kind should give us sufficient test coverage.
22 lines
842 B
YAML
22 lines
842 B
YAML
# Copyright 2020-2021 the Pinniped contributors. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# The name of the cluster type.
|
|
kubernetesDistribution: Kind
|
|
|
|
# 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: true
|
|
|
|
# Will the cluster successfully provision a load balancer if requested?
|
|
hasExternalLoadBalancerProvider: false
|
|
|
|
# Does the cluster allow requests without authentication?
|
|
# https://kubernetes.io/docs/reference/access-authn-authz/authentication/#anonymous-requests
|
|
anonymousAuthenticationSupported: true
|
|
|
|
# Are LDAP ports on the Internet reachable without interference from network firewalls or proxies?
|
|
canReachInternetLDAPPorts: true
|