Skip to content
Snippets Groups Projects
Commit a66444b9 authored by Mart van Santen's avatar Mart van Santen
Browse files

Remove references in config files

parent 5cd35ba0
No related branches found
No related tags found
2 merge requests!68Merge loginpanel into main and release 0.5.0,!56Resolve "Remove old panel from code"
Pipeline #9717 failed with stage
in 5 seconds
......@@ -27,15 +27,6 @@ services:
- LOG_LEVEL=debug
- LOG_LEAK_SENSITIVE_VALUES=true
restart: unless-stopped
login:
build: login_provider/
environment:
- HYDRA_ADMIN_URL=http://hydra:4445
- GRAPHQL_URL=http://backend:5000/graphql
- FLASK_ENV=development
ports:
- "5000:5000"
restart: unless-stopped
psql:
image: postgres:11
environment:
......
consentProvider:
image:
# consentProvider.image.tag and consentProvider.image.pullPolicy should be the same as
# loginProvider.image.tag and loginProvider.image.pullPolicy as the images are released
# together in order to guarantee compatibility
tag: "main"
pullPolicy: "Always"
repository: "open.greenhost.net:4567/stackspin/single-sign-on/consent_provider"
podAnnotations: {}
loginProvider:
image:
tag: "main"
pullPolicy: "Always"
repository: "open.greenhost.net:4567/stackspin/single-sign-on/login_provider"
podAnnotations: {}
# singleSignOnHost is the FQDN that will be used by the ingress to make the consent and
# the login provider accessible by user agents. For now it is recommended to set it to the
# same value as hydra.ingress.public.hosts[0].host
singleSignOnHost: sso.stackspin.example.net
userpanel:
# userpanel.applicationName is the name of the application. This is a duplicate of
# userbackend.applications[0].name but helm < 3.0 doesn't supprt direct references to
# list items in template files so we need to keep it for now
applicationName: user-panel
image:
# userpanel.image.tag and userpanel.image.pullPolicy should be the same as
# userbackend.image.tag and userpanel.image.pullPolicy as the images are released
# together in order to guarantee compatibility
tag: "main"
pullPolicy: "Always"
repository: "open.greenhost.net:4567/stackspin/user-panel/frontend"
ingress:
# userpanel.ingress.host is the FQDN of the userpanel application
host: admin.stackspin.example.net
podAnnotations: {}
userbackend:
image:
tag: "main"
pullPolicy: "Always"
repository: "open.greenhost.net:4567/stackspin/user-panel/backend"
# userbackend.username is the username of the admin user that will be create
# after the installation of the user backend.
username: "admin"
applications:
- name: user-panel
description: Administration interface to manage user accounts
# username.password is the password of the admin user
password: "YouReallyNeedToChangeThis"
# username.email is email address of the admin user
email: "admin@example.net"
postgres:
image:
repository: postgres
tag: 11
pullPolicy: Always
# userbackend.postgres.password is the root password of the
# postgress db that is created and used by the userbackend
password: "postgres"
persistence:
enabled: true
size: 1Gi
storageClass: "-"
annotations: {}
deploymentLabels: {}
podLabels: {}
podAnnotations: {}
postgresql:
persistence:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment