diff --git a/docker-compose.yml b/docker-compose.yml index 2b72fd29b619fee3978064bd425d2bd23f4c6c6c..0fe11ba7ec989037a0942ffc89cfbd04f03cfcf6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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: diff --git a/helmchart/single-sign-on/values.yaml b/helmchart/single-sign-on/values.yaml index 406c4a1b09c96d24f1dbadb5cd583b5c6508bb47..a05e84729c58f89d7fc6174c6327fda81a7693b7 100644 --- a/helmchart/single-sign-on/values.yaml +++ b/helmchart/single-sign-on/values.yaml @@ -1,74 +1,9 @@ -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: