-
Notifications
You must be signed in to change notification settings - Fork 1
/
values.yaml
183 lines (160 loc) · 4.69 KB
/
values.yaml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
---
global:
# Configuration shared by all services.
aserto:
# Kubernetes pull secret for private Aserto images.
# imagePullSecrets:
# - name: ghcr-creds
# [REQUIRED] OpenID Connect configuration.
oidc:
domain: ""
audience: ""
# Port configuration.
ports:
grpc: 8282
https: 8383
health: 8484
mertics: 8585
# # gRPC configuration.
# grpc:
# connectionTimeoutSec: 2
# # HTTPS configuration.
https:
# read_timeout: 2s
# read_header_timeout: 2s
# write_timeout: 2s
# idle_timeout: 30s
# [REQUIRED] Specify the ingress address of the
# conosle service.
allowed_origins:
# - https://console.aserto.example.com
# # Metrics configuration.
# metrics:
# zpages: false
# grpc:
# counters: false
# durations: false
# gateway: false
rootDirectory:
# Disable TLS verification on
disableTLSVerification: true
directory:
disableTLSVerification: true
directory:
# Kubernetes pull secret for private Aserto images.
# imagePullSecrets:
# - name: ghcr-creds
# Override the directory image and tag.
# image:
# repository: ghcr.io/aserto-dev/directory
# tag: x.y.z
# pullPolicy: IfNotPresent
# Required: Provide one or more SSH public keys to be granted admin access.
# sshAdminKeys: |
# # Add your authorized SSH public keys here
# ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDf6
# ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDa7
# Configuration for the root directory.
rootDirectory:
# Database configuration.
database:
# [REQUIRED] Host name of the root directory PostgreSQL instance.
host: ""
port: 5432
# Set to 'disable` if the PostgreSQL instance does not use SSL.
sslMode: require
admin:
# Kubernetes secret containing credentials for the root database's owner.
credentialsSecret: pg-ds-credentials
# Configuration for the tenant directory.
tenantDirectory:
# Database configuration.
database:
# [REQUIRED] Host name of the tenant directory PostgreSQL instance.
host: ""
port: 5432
# Set to 'disable` if the PostgreSQL instance does not use SSL.
sslMode: require
admin:
# Kubernetes secret containing credentials for the tenant database's owner.
credentialsSecret: pg-ds-credentials
discovery:
# Kubernetes pull secret for private Aserto images.
# imagePullSecrets:
# - name: ghcr-creds
# Override the discovery image and tag.
# image:
# repository: ghcr.io/aserto-dev/self-hosted-discovery
# tag: x.y.z
# pullPolicy: IfNotPresent
registries:
# [REQUIRED] At least one policy registry must be configured.
# ghcr.io:
# scheme: bearer
# tokenSecretName: discovery-ghcr-token
# tokenSecretKey: token
console:
# Kubernetes pull secret for private Aserto images.
# imagePullSecrets:
# - name: ghcr-creds
# Override the console image and tag.
# image:
# repository: ghcr.io/aserto-dev/multi-tenant-console
# tag: x.y.z
# pullPolicy: IfNotPresent
# Internal HTTP port for the console service.
# port: 3000
# [REQUIRED] Ingress address of the authorizer service.
# e.g. https://authorizer.aserto.example.com
authorizerURL: ""
# [REQUIRED] Ingress address of the directory service.
# e.g. https://directory.aserto.example.com
directoryURL: ""
# authorizer:
# # Kubernetes pull secret for private Aserto images.
# imagePullSecrets:
# - name: ghcr-creds
#
# # Override the authorizer image and tag.
# image:
# repository: ghcr.io/aserto-dev/directory
# tag: x.y.z
# pullPolicy: IfNotPresent
# scim:
# # Kubernetes pull secret for private Aserto images.
# imagePullSecrets:
# - name: ghcr-creds
#
# # Override the SCIM service image and tag.
# image:
# repository: ghcr.io/aserto-dev/scim
# tag: x.y.z
# pullPolicy: IfNotPresent
#
# # SCIM authentication configuration.
# auth:
# # Kubernetes secret containing the SCIM service's password.
# # If the secret does not exist, it is created with a random
# # value on first install.
# secretName: scim-password
# secretKey: password
#
# # Basic HTTP Auth configuration.
# basic:
# # Enable basic HTTP Auth.
# enabled: true
# # Basic auth user name.
# username: scim
# bearer:
# # Enable bearer token auth.
# enabled: true
#
# createEmailIdentities: true
# createRoleGroups: false
# userObjectType: user
# identityObjectType: identity
# identityRelation: identifier
# groupObjectType: group
# groupMemberRelation: memeber
# groupMappings: []
# userMappings: []