@@ -19,7 +19,8 @@ licenseServer:
19
19
# - name: regcred
20
20
21
21
# Environment: set to 'production', 'develop', 'demo', 'staging' or 'acceptance'.
22
- # Set to 'true' if this is a private deployment.
22
+ # Change the environment to 'staging' or 'acceptance' will add a banner on the
23
+ # front-end, to indicate the environment.
23
24
environment : " production"
24
25
25
26
# Set to 'true' if this is a private deployment.
@@ -65,17 +66,17 @@ queueName: "kcloud-event-queue" # This is the topic to which all events are send
65
66
# RabbitMQ can be installed in the same cluster using a helm chart, or you can
66
67
# use a service on cloud provider like AWS, GCP, Azure, etc.
67
68
rabbitmq :
68
- host : " rabbitmq.rabbitmq:5672" # can be internal dns name or external
69
+ host : " < rabbitmq.rabbitmq:5672> " # can be internal dns name or external
69
70
# host: "amqps://b-xxx-xxx-xxx-xxx-xxx.mq.eu-central-1.amazonaws.com:5671"
70
- username : " yourusername"
71
- password : " yourpassword"
71
+ username : " < yourusername> "
72
+ password : " < yourpassword> "
72
73
exchange : " "
73
74
74
75
# If you already have a Kafka cluster you might use this instead of RabbitMQ.
75
76
kafka :
76
- broker : " kafka1.yourdomain.com:9094" # can be internal dns name or external
77
- username : " yourusername"
78
- password : " yourpassword"
77
+ broker : " < kafka1.yourdomain.com:9094> " # can be internal dns name or external
78
+ username : " < yourusername> "
79
+ password : " < yourpassword> "
79
80
mechanism : " PLAIN"
80
81
security : " SASL_PLAINTEXT"
81
82
@@ -150,8 +151,6 @@ email:
150
151
# Kerberos hub properly working.
151
152
152
153
kerberoshub :
153
- # Enables the support environment.
154
- support : false
155
154
api :
156
155
repository : kerberos/hub-api
157
156
pullPolicy : IfNotPresent
@@ -178,37 +177,37 @@ kerberoshub:
178
177
# legacyUrl: "api.legacy.yourdomain.com"
179
178
180
179
# MFA issuer name
181
- mfaIssuer : " Kerberos.io "
180
+ mfaIssuer : " <yourdomain.com> "
182
181
183
182
# Admin API's are made available for automation of Kerberos Hub.
184
183
# To access those API's (e.g. creation of owner users), an API key needs to be provided.
185
- apiKey : " a-random-admin-api-key"
184
+ apiKey : " < a-random-admin-api-key> "
186
185
187
186
# # Certificates
188
187
tls :
189
188
- hosts :
190
- - " api.yourdomain.com"
189
+ - " < api.yourdomain.com> "
191
190
secretName : kerberoshub-api
192
191
# - hosts:
193
192
# - "api.legacy.yourdomain.com"
194
193
# secretName: kerberoshub-api-legacy
195
194
- hosts :
196
- - " admin.api.yourdomain.com"
195
+ - " < admin.api.yourdomain.com> "
197
196
secretName : kerberoshub-admin
198
197
language : " english"
199
198
fallbackLanguage : " english"
200
199
# Legacy (reseller) it is possible to link to AWS S3 and IAM (however Kerberos Vault is now the recommended option).
201
200
# This is primarily used for creation of subscriptions, and not needed if you are using mainly Kerberos Vault.
202
201
aws :
203
- region : " xxx"
204
- bucket : " xxx"
205
- accessKey : " xxx"
206
- secretKey : " xxx"
202
+ region : " < xxx> "
203
+ bucket : " < xxx> "
204
+ accessKey : " < xxx> "
205
+ secretKey : " < xxx> "
207
206
stripe : # We use stripe for billing, so it's possible to resell Kerberos Hub if agreed.
208
- privateKey : " xxx"
207
+ privateKey : " < xxx> "
209
208
slack : # Slack is used in the api, to send logs to a specific Slack channel.
210
209
enabled : " true"
211
- hook : " yourslackhook" # https://hooks.slack.com/services/T08Q2Q9V5/xxKT/JALxxAk26bHtuqTfZ
210
+ hook : " < yourslackhook> " # https://hooks.slack.com/services/T08Q2Q9V5/xxKT/JALxxAk26bHtuqTfZ
212
211
username : " Kerberos Hub" # The slack username
213
212
elasticsearch : # Logs of the kerberos hub will be send to an elastic search cluster.
214
213
enabled : " false"
@@ -347,6 +346,18 @@ kerberoshub:
347
346
navigationLinkTitle5 : " "
348
347
navigationLinkUrl5 : " "
349
348
349
+ support :
350
+ enabled : false
351
+
352
+ oauth2Proxy :
353
+ enabled : false
354
+ github :
355
+ clientId : " <github-client-id>"
356
+ clientSecret : " <github-client-secret>"
357
+ cookieSecret : " <generate-a-random-cookie-secret>"
358
+ organization : " <github-organization>"
359
+ team : " <github-team>"
360
+
350
361
cleanup :
351
362
repository : kerberos/hub-cleanup
352
363
pullPolicy : IfNotPresent
0 commit comments