add job-initialize-user
This commit is contained in:
parent
3f0d6dc0fd
commit
8a89f94ec0
3 changed files with 82 additions and 4 deletions
|
|
@ -1,17 +1,38 @@
|
|||
# Values you will likely want to override. See values.yaml for their meanings
|
||||
|
||||
dashboard:
|
||||
host: dashboard.oas.example.com
|
||||
host: dashboard.stackspin.example.com
|
||||
|
||||
backend:
|
||||
secretKey: My random secret key
|
||||
# OIDC connection details
|
||||
#
|
||||
# oidc:
|
||||
# clientSecret: ReplaceWithSecret
|
||||
# baseUrl: https://sso.stackspin.example.org
|
||||
# authorizationBaseUrl: https://sso.stackspin.example.org/oauth2/auth
|
||||
# tokenUrl: https://sso.stackspin.example.org/oauth2/token
|
||||
|
||||
# Where to find the Kratos public url
|
||||
kratos:
|
||||
publicUrl: https://sso.stackspin.example.org/kratos
|
||||
|
||||
# Public URL of login panel
|
||||
loginPanelUrl: https://dashboard.stackspin.example.org/web/
|
||||
|
||||
# Database connection
|
||||
# databaseUrl: mysql+pymysql://stackspin:password@single-sign-on-database-mariadb/stackspin
|
||||
|
||||
initialUser:
|
||||
email: admin@example.com
|
||||
# password: Set a pasword for the initial user!
|
||||
|
||||
ingress:
|
||||
enabled: true
|
||||
hostname: dashboard.oas.example.com
|
||||
hostname: dashboard.stackspin.example.com
|
||||
# Get certificates with cert-manager
|
||||
certManager: true
|
||||
tls:
|
||||
- hosts:
|
||||
- dashboard.oas.example.com
|
||||
secretName: oas-dashboard
|
||||
- dashboard.stackspin.example.com
|
||||
secretName: stackspin-dashboard
|
||||
|
|
|
|||
Reference in a new issue