Files
Jonathan Perret 14f9d42889 ⬆️ (oidc-test-client) create Helm chart for test client
This helps running tests with the app running in a
Kubernetes cluster.
2026-03-20 15:32:08 +01:00

24 lines
598 B
Python

load('ext://uibutton', 'cmd_button', 'bool_input', 'location')
load('ext://namespace', 'namespace_create', 'namespace_inject')
namespace_create('oidc2fer')
docker_build(
'localhost:5001/oidc2fer:latest',
context='.',
dockerfile='./Dockerfile',
only=['./src/satosa', './docker', './env.d'],
target = 'development',
live_update=[
sync('./src/satosa', '/app'),
]
)
docker_build(
'localhost:5001/oidc-test-client:latest',
context='docker/oidc-test-client'
)
watch_file('src/helm')
k8s_yaml(local('cd src/helm && helmfile -n oidc2fer -e dev template .'))