@@ -17,20 +17,12 @@ development: false
17
17
GKEMonitoring :
18
18
enabled : false
19
19
20
- # # @param sentry.enabled Enable sentry.io alerting
21
- # # @param sentry.dsn DSN endpoint https://docs.sentry.io/product/sentry-basics/dsn-explainer/
22
- # # @param sentry.environment Environment tag
23
- sentry :
24
- enabled : false
25
- dsn : " "
26
- environment : production
27
-
28
20
# # @section Secrets Backend
29
21
# #
30
22
31
23
# # Location where to store sensitive data. If development.true? and no overrides provided, the setup will connect to a development instance of Vault
32
24
secretsBackend :
33
- # # @param secretsBackend.backend Secrets backend type ("vault", "awsSecretManager" or "gcpSecretManager")
25
+ # # @param secretsBackend.backend Secrets backend type ("vault", "awsSecretManager" or "gcpSecretManager")
34
26
# #
35
27
backend : " vault" # "awsSecretManager"
36
28
# # @param secretsBackend.secretPrefix Prefix that will be pre-pended to all secrets in the storage backend
@@ -90,7 +82,7 @@ casJWTPublicKey: ""
90
82
91
83
# # @section Control Plane
92
84
# ##################################
93
- # # CONTROL PLANE #
85
+ # # CONTROL PLANE #
94
86
# ##################################
95
87
controlplane :
96
88
# # @param controlplane.replicaCount Number of replicas
@@ -103,7 +95,7 @@ controlplane:
103
95
# Overrides the image tag whose default is the chart appVersion.
104
96
# tag: latest
105
97
106
- # # @param controlplane.secret.name name of a secret containing TLS certificate to be used by the controlplane grpc server.
98
+ # # @param controlplane.tlsConfig. secret.name name of a secret containing TLS certificate to be used by the controlplane grpc server.
107
99
tlsConfig :
108
100
secret :
109
101
# the secret must contains 2 keys: tls.crt and tls.key respectively containing the certificate and private key.
@@ -151,7 +143,7 @@ controlplane:
151
143
sqlProxy :
152
144
# # @param controlplane.sqlProxy.enabled Enable sidecar to connect to DB via Google Cloud SQL proxy
153
145
enabled : false
154
- # # @param controlplane.sqlProxy.connectionName Google Cloud SQL connection name
146
+ # # @param controlplane.sqlProxy.connectionName Google Cloud SQL connection name
155
147
connectionName : " "
156
148
# # @param controlplane.sqlProxy.resources Sidecar container resources
157
149
resources : {}
@@ -169,7 +161,7 @@ controlplane:
169
161
url : " "
170
162
clientID : " "
171
163
clientSecret : " "
172
-
164
+
173
165
# # @section Control Plane Networking
174
166
service :
175
167
# # @param controlplane.service.type Service type
@@ -181,7 +173,8 @@ controlplane:
181
173
# # @extra controlplane.service.nodePorts.http Node port for HTTP. NOTE: choose port between <30000-32767>
182
174
# nodePorts:
183
175
# http: "30800"
184
- annotations : {}
176
+ annotations :
177
+ {}
185
178
# # @skip controlplane.service.annotations
186
179
187
180
serviceAPI :
@@ -332,7 +325,7 @@ controlplane:
332
325
# # @skip controlplane.ingressAPI.annotations.nginx.ingress.kubernetes.io/backend-protocol
333
326
# # Tell Nginx Ingress Controller to expect gRPC traffic
334
327
nginx.ingress.kubernetes.io/backend-protocol : " GRPC"
335
-
328
+
336
329
# # @param controlplane.ingressAPI.tls Enable TLS configuration for the host defined at `controlplane.ingress.hostname` parameter
337
330
# # TLS certificates will be retrieved from a TLS secret with name: `{{- printf "%s-tls" .Values.controlplane.ingress.hostname }}`
338
331
# # You can:
@@ -433,10 +426,18 @@ controlplane:
433
426
maxReplicas : 100
434
427
targetCPUUtilizationPercentage : 80
435
428
targetMemoryUtilizationPercentage : 80
436
-
429
+
430
+ # # @param controlplane.sentry.enabled Enable sentry.io alerting
431
+ # # @param controlplane.sentry.dsn DSN endpoint https://docs.sentry.io/product/sentry-basics/dsn-explainer/
432
+ # # @param controlplane.sentry.environment Environment tag
433
+ sentry :
434
+ enabled : false
435
+ dsn : " "
436
+ environment : production
437
+
437
438
# # @section Artifact Content Addressable (CAS) API
438
439
# #################################
439
- # Artifacts CAS #
440
+ # Artifacts CAS #
440
441
# #################################
441
442
cas :
442
443
# # @param cas.replicaCount Number of replicas
476
477
# # @extra cas.service.nodePorts.http Node port for HTTP. NOTE: choose port between <30000-32767>
477
478
# nodePorts:
478
479
# http: "30800"
479
- annotations : {}
480
+ annotations :
481
+ {}
480
482
# # @skip cas.service.annotations
481
483
482
484
serviceAPI :
@@ -626,13 +628,13 @@ cas:
626
628
annotations :
627
629
# Nginx Ingress settings
628
630
# # @skip cas.ingressAPI.annotations.nginx.ingress.kubernetes.io/proxy-body-size
629
- # Limit file uploads/downloads to 100MB. Alternatively you can disable this limitation by setting it to 0
631
+ # Limit file uploads/downloads to 100MB. Alternatively you can disable this limitation by setting it to 0
630
632
# Even though we send data in chunks of 1MB, this size refers to all the data sent during the whole streaming session
631
633
nginx.ingress.kubernetes.io/proxy-body-size : " 100m"
632
634
# # @skip cas.ingressAPI.annotations.nginx.ingress.kubernetes.io/backend-protocol
633
635
# # Tell Nginx Ingress Controller to expect gRPC traffic
634
636
nginx.ingress.kubernetes.io/backend-protocol : " GRPC"
635
-
637
+
636
638
# # @param cas.ingressAPI.tls Enable TLS configuration for the host defined at `controlplane.ingress.hostname` parameter
637
639
# # TLS certificates will be retrieved from a TLS secret with name: `{{- printf "%s-tls" .Values.controlplane.ingress.hostname }}`
638
640
# # You can:
@@ -733,10 +735,18 @@ cas:
733
735
targetCPUUtilizationPercentage : 80
734
736
targetMemoryUtilizationPercentage : 80
735
737
736
- # # @section Dependencies
737
- # ##################################
738
- # # Dependencies #
738
+ # # @param cas.sentry.enabled Enable sentry.io alerting
739
+ # # @param cas.sentry.dsn DSN endpoint https://docs.sentry.io/product/sentry-basics/dsn-explainer/
740
+ # # @param cas.sentry.environment Environment tag
741
+ sentry :
742
+ enabled : false
743
+ dsn : " "
744
+ environment : production
745
+
746
+ # # @section Dependencies
739
747
# ##################################
748
+ # # Dependencies #
749
+ # #################################
740
750
741
751
# # PostgreSQL chart configuration
742
752
# # ref: https://github.com/bitnami/charts/blob/main/bitnami/postgresql/values.yaml
@@ -755,7 +765,6 @@ postgresql:
755
765
database : " chainloop-cp"
756
766
existingSecret : " "
757
767
758
-
759
768
# Vault server running in development mode --set development=true
760
769
# IMPORTANT: This is not meant to run in production
761
770
0 commit comments