You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: stackgres-k8s/src/common/src/main/resources/crds/SGConfig.yaml
+76-46Lines changed: 76 additions & 46 deletions
Original file line number
Diff line number
Diff line change
@@ -385,6 +385,55 @@ spec:
385
385
a configured target (by default will expose a Prometheus exporter).
386
386
387
387
See receivers section to scale this architecture to a set of OpenTelemetry Collectors.
388
+
default:
389
+
service:
390
+
spec:
391
+
type: ClusterIP
392
+
ports:
393
+
- name: prom-http
394
+
protocol: TCP
395
+
port: 9464
396
+
targetPort: prom-http
397
+
ports:
398
+
- name: prom-http
399
+
protocol: TCP
400
+
containerPort: 9464
401
+
config:
402
+
receivers:
403
+
otlp:
404
+
protocols:
405
+
grpc:
406
+
endpoint: "0.0.0.0:4317"
407
+
tls:
408
+
ca_file: "/etc/operator/certs/tls.crt"
409
+
cert_file: "/etc/operator/certs/tls.crt"
410
+
key_file: "/etc/operator/certs/tls.key"
411
+
exporters:
412
+
prometheus:
413
+
endpoint: "0.0.0.0:9464"
414
+
tls:
415
+
ca_file: "/etc/operator/certs/tls.crt"
416
+
cert_file: "/etc/operator/certs/tls.crt"
417
+
key_file: "/etc/operator/certs/tls.key"
418
+
reload_interval: 10m
419
+
send_timestamps: true
420
+
metric_expiration: 180m
421
+
enable_open_metrics: false
422
+
resource_to_telemetry_conversion:
423
+
enabled: false
424
+
otlp:
425
+
endpoint: stackgres-collector:4317
426
+
tls:
427
+
ca_file: "/etc/operator/certs/tls.crt"
428
+
service:
429
+
pipelines:
430
+
metrics:
431
+
receivers:
432
+
- prometheus
433
+
exporters:
434
+
- prometheus
435
+
prometheusOperator:
436
+
allowDiscovery: true
388
437
properties:
389
438
name:
390
439
type: string
@@ -526,20 +575,9 @@ spec:
526
575
type: object
527
576
x-kubernetes-preserve-unknown-fields: true
528
577
description: Section to configure OpenTelemetry Collector Service specs. See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.29/#servicespec-v1-core
529
-
default:
530
-
type: ClusterIP
531
-
ports:
532
-
- name: prom-http
533
-
protocol: TCP
534
-
port: 9464
535
-
targetPort: prom-http
536
578
ports:
537
579
type: array
538
580
description: Section to configure OpenTelemetry Collector ports. See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.29/#containerport-v1-core
539
-
default:
540
-
- name: prom-http
541
-
protocol: TCP
542
-
containerPort: 9464
543
581
items:
544
582
type: object
545
583
x-kubernetes-preserve-unknown-fields: true
@@ -559,41 +597,6 @@ spec:
559
597
type: object
560
598
x-kubernetes-preserve-unknown-fields: true
561
599
description: Section to configure OpenTelemetry Collector Configuration. See https://opentelemetry.io/docs/collector/configuration
562
-
default:
563
-
config:
564
-
receivers:
565
-
otlp:
566
-
protocols:
567
-
grpc:
568
-
endpoint: "0.0.0.0:4317"
569
-
tls:
570
-
ca_file: "/etc/operator/certs/tls.crt"
571
-
cert_file: "/etc/operator/certs/tls.crt"
572
-
key_file: "/etc/operator/certs/tls.key"
573
-
exporters:
574
-
prometheus:
575
-
endpoint: "0.0.0.0:9464"
576
-
tls:
577
-
ca_file: "/etc/operator/certs/tls.crt"
578
-
cert_file: "/etc/operator/certs/tls.crt"
579
-
key_file: "/etc/operator/certs/tls.key"
580
-
reload_interval: 10m
581
-
send_timestamps: true
582
-
metric_expiration: 180m
583
-
enable_open_metrics: false
584
-
resource_to_telemetry_conversion:
585
-
enabled: false
586
-
otlp:
587
-
endpoint: stackgres-collector:4317
588
-
tls:
589
-
ca_file: "/etc/operator/certs/tls.crt"
590
-
service:
591
-
pipelines:
592
-
metrics:
593
-
receivers:
594
-
- prometheus
595
-
exporters:
596
-
- prometheus
597
600
prometheusOperator:
598
601
type: object
599
602
description: Section to configure OpenTelemetry Collector integration with Prometheus Operator.
@@ -1079,6 +1082,27 @@ spec:
1079
1082
description: |
1080
1083
If set, will use a host path volume with the specified path for the extensions cache
1081
1084
instead of a PersistentVolume
1085
+
pga:
1086
+
type: object
1087
+
description: Section to configure PGA
1088
+
properties:
1089
+
repositoryUrls:
1090
+
type: array
1091
+
default:
1092
+
- https://pga.sh
1093
+
description: |
1094
+
A list of PGA repository URLs used to retrieve images
1095
+
1096
+
To set a proxy for PGA repository add parameter proxyUrl to the URL:
0 commit comments