2021-01-20 22:06:50 +00:00
|
|
|
#! Copyright 2020-2021 the Pinniped contributors. All Rights Reserved.
|
2020-10-13 21:09:13 +00:00
|
|
|
#! 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
|
|
|
|
|
2020-11-16 16:40:18 +00:00
|
|
|
#! Kubernetes NodePort that should be forwarded to the proxy service.
|
2020-10-13 21:09:13 +00:00
|
|
|
#! Used to create a Service of type: NodePort
|
|
|
|
node: 31235
|
|
|
|
|
2020-11-16 16:40:18 +00:00
|
|
|
#! 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.
|
2020-10-13 21:09:13 +00:00
|
|
|
local: 12346
|
2020-12-03 18:45:56 +00:00
|
|
|
|
2021-01-20 22:06:50 +00:00
|
|
|
#! 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: []
|
2021-03-25 22:12:17 +00:00
|
|
|
|
|
|
|
#! The bcrypt-hashed password of the pinny test user account.
|
|
|
|
pinny_bcrypt_passwd_hash:
|
2021-04-05 22:01:17 +00:00
|
|
|
|
|
|
|
#! The plaintext password of the LDAP test account user.
|
|
|
|
pinny_ldap_password:
|
2021-06-03 18:24:26 +00:00
|
|
|
|
|
|
|
#! Images for each of the deployed test components.
|
2021-07-21 14:17:24 +00:00
|
|
|
dex_image: ghcr.io/pinniped-ci-bot/test-dex:latest
|
|
|
|
ldap_image: ghcr.io/pinniped-ci-bot/test-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
|