Updated documentation

This commit is contained in:
Mart van Santen 2022-04-01 14:31:03 +08:00
parent 4b8eba9b92
commit e7d3ddb9b0
3 changed files with 25 additions and 23 deletions

View file

@ -39,9 +39,20 @@ commonAnnotations: {}
## @section Stackspin parameters
## @param imagePullSecrets Specify docker-registry secret names as an array
## @param imagePullPolicy Policy on pulling images on container start
##
image:
imagePullSecrets: []
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
## Same policy for all containers is used.
##
# TODO: Set to Always for developoment purposes, should be reverted to
# 'IfNotPresent'
# pullPolicy: IfNotPresent
pullPolicy: Always
## Dashboard configuration parameters
@ -61,11 +72,6 @@ dashboard:
registry: open.greenhost.net:4567
repository: stackspin/dashboard/dashboard
tag: 0-1-6
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
@ -226,7 +232,6 @@ backend:
## @param image.registry Stackspin image registry
## @param image.repository Stackspin image repository
## @param image.tag Stackspin image tag
## @param image.pullPolicy Stackspin image pull policy
## @param image.pullSecrets Stackspin image pull secrets
## @param image.debug Specify if debug logs should be enabled
##
@ -234,11 +239,6 @@ backend:
registry: open.greenhost.net:4567
repository: stackspin/dashboard-backend/dashboard-backend
tag: 19-integrate-flask-sso-panel-into-dashboard-flask-backend
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: Always
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
@ -257,12 +257,17 @@ backend:
authorizationBaseUrl: https://sso.stackspin.example.org/oauth2/auth
tokenUrl: https://sso.stackspin.example.org/oauth2/token
# Where to find the Kratos ADMIN and PUBLIC url
kratos:
publicUrl: https://sso.stackspin.example.org/kratos
adminUrl: http://single-sign-on-kratos-admin:80
# Where to find the Hydra ADMIN url
hydra:
adminUrl: http://single-sign-on-hydra-admin:4445
publicUrl: https://sso.stackspin.example.org/web/
# Public URL of login panel
publicUrl: https://dashboard.stackspin.example.org/web/
databaseUrl: mysql+pymysql://stackspin:stackspin@single-sign-on-database-mariadb/stackspin
## Kubernetes service configuration. For minikube, set this to NodePort, elsewhere use LoadBalancer or ClusterIP