-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsecret-values.yaml.template
42 lines (37 loc) · 1.32 KB
/
secret-values.yaml.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
oauth2-proxy:
# IRIS IAM CLIENT CREDENTIALS
config:
clientID: iris-iam-client-id
clientSecret: iris-iam-secret
# Create a new secret with the following command
# openssl rand -base64 32 | head -c 32 | base64
cookieSecret: "XXXXXXXXXXXXXXXX"
# if you want to setup galaxy where only specific emails have access
# USE EITHER THIS OR RESTRICT BY OIDC GROUP
authenticatedEmailsFile:
# if you're using oidc - set this to false
enabled: true
restricted_access: |-
# if you want to setup galaxy where only a specific IAM group has access
# USE EITHER THIS OR RESTRICT BY EMAILS ABOVE
# extraArgs:
# allowed-group: "stfc-cloud/admins"
galaxy:
postgresql:
# a random consistent password for postgres galaxydbuser
# can't auto-generate a password because of argo-helm issues when it tries to reconcile
galaxyDatabasePassword: <random-password>
configs:
galaxy.yml:
galaxy:
# comma spaced list of admin emails
admin_users: "[email protected],[email protected]"
# any git repo deploy keys - to access private repos
gitRepos:
- name: first-repo
deployKey: |-
-----BEGIN OPENSSH PRIVATE KEY-----
... private key content for repo1 ...
-----END OPENSSH PRIVATE KEY-----