c5b784465b
This new capability describes whether a cluster is expected to allow anonymous requests (most do since k8s 1.6.x, but AKS has it disabled). This commit also contains new capability YAML files for AKS and EKS, mostly to document publicly how we expect our tests to function in those environments. Signed-off-by: Matt Moyer <moyerm@vmware.com>
13 lines
528 B
YAML
13 lines
528 B
YAML
# Copyright 2020-2021 the Pinniped contributors. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# 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
|
|
|
|
# Does the cluster allow requests without authentication?
|
|
# https://kubernetes.io/docs/reference/access-authn-authz/authentication/#anonymous-requests
|
|
anonymousAuthenticationSupported: true
|