mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-01-04 20:24:26 +00:00
42 lines
1.7 KiB
YAML
42 lines
1.7 KiB
YAML
#! Copyright 2020-2025 the Pinniped contributors. All Rights Reserved.
|
|
#! SPDX-License-Identifier: Apache-2.0
|
|
|
|
#@data/values
|
|
---
|
|
ports:
|
|
#! Port on which the Pinniped CLI is listening for a callback (`--listen-port` flag value)
|
|
#! Used in the Dex configuration to form the valid redirect URIs for our test client.
|
|
cli: 48095
|
|
|
|
#! Kubernetes NodePort that should be forwarded to the proxy service.
|
|
#! Used to create a Service of type: NodePort
|
|
node: 31235
|
|
|
|
#! External port where the proxy ends up exposed on localhost during tests. This value comes from
|
|
#! our Kind configuration which maps 127.0.0.1:12346 to port 31235 on the Kind worker node.
|
|
local: 12346
|
|
|
|
#! deploy_proxy deploys the proxy server when true.
|
|
deploy_proxy: true
|
|
|
|
#! dex_issuer_hostname can be used to provide Dex with a DNS record or IP address for its hostname,
|
|
#! which is used to construct an issuer uri and create a certificate to serve TLS.
|
|
dex_issuer_hostname: dex.tools.svc.cluster.local
|
|
|
|
#! supervisor_redirect_uris is an array of redirect uris that dex will use for its pinniped-supervisor client.
|
|
#! usage: --data-value-yaml "supervisor_redirect_uris=[some-redirect.com,some-other-redirect.com]"
|
|
supervisor_redirect_uris: []
|
|
|
|
#! The bcrypt-hashed password of the pinny test user account.
|
|
pinny_bcrypt_passwd_hash:
|
|
|
|
#! The plaintext password of the LDAP test account user.
|
|
pinny_ldap_password:
|
|
|
|
#! Images for each of the deployed test components.
|
|
dex_image: ghcr.io/pinniped-ci-bot/test-dex:latest
|
|
ldap_image: ghcr.io/pinniped-ci-bot/test-bitnami-ldap:latest
|
|
proxy_image: ghcr.io/pinniped-ci-bot/test-forward-proxy:latest
|
|
cfssl_image: ghcr.io/pinniped-ci-bot/test-cfssl:latest
|
|
kubectl_image: ghcr.io/pinniped-ci-bot/test-kubectl:latest
|