Skip to content

Commit 3757efd

Browse files
authored
fix: Increase version and metrics enablement (#219)
1 parent fd6ebee commit 3757efd

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

charts/datafold-manager/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: datafold-manager
33
description: Helm chart for Datafold Operator
44
type: application
5-
version: 0.1.23
5+
version: 0.1.24
66
appVersion: "1.0.0"
77
icon: https://www.datafold.com/logo.png
88

charts/datafold-manager/templates/crds.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1363,6 +1363,14 @@ spec:
13631363
- monitorPostgres
13641364
- npm
13651365
type: object
1366+
loggingEnabled:
1367+
default: true
1368+
description: LoggingEnabled enables logging functionality
1369+
type: boolean
1370+
metricsEnabled:
1371+
default: true
1372+
description: MetricsEnabled enables metrics collection
1373+
type: boolean
13661374
monitoringApiKey:
13671375
default:
13681376
keyName: monitoringApiKey
@@ -1400,6 +1408,8 @@ spec:
14001408
- signoz
14011409
type: string
14021410
required:
1411+
- loggingEnabled
1412+
- metricsEnabled
14031413
- monitoringApiKey
14041414
type: object
14051415
nginx:
@@ -1422,7 +1432,7 @@ spec:
14221432
description: Operator contains configuration for the operator component
14231433
properties:
14241434
version:
1425-
default: 1.2.8
1435+
default: 1.2.10
14261436
description: Version specifies the version/tag of the operator
14271437
image
14281438
type: string

charts/datafold-manager/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ operator:
66
# Operator image configuration
77
image:
88
repository: us-docker.pkg.dev/datadiff-mm/datafold/datafold-operator
9-
tag: "1.1.2"
9+
tag: "1.1.3"
1010
pullPolicy: Always
1111

1212
# Operator deployment configuration

charts/datafold/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: datafold
33
description: Helm chart package to deploy Datafold on kubernetes.
44
type: application
5-
version: 0.10.15
5+
version: 0.10.16
66
appVersion: "1.0.0"
77
icon: https://www.datafold.com/logo.png
88

charts/datafold/templates/configmap.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ data:
1818
DATAFOLD_LINEAGE_TESTING_DB: "{{ .Values.config.lineageTestingDb }}"
1919
DATAFOLD_LOG_LEVEL: "{{ .Values.config.logLevel }}"
2020
DATAFOLD_LOGGING_ENABLED: "{{ .Values.config.loggingEnabled }}"
21-
DATAFOLD_LOGGING_PROVIDER: "{{ .Values.config.loggingProvider }}"
21+
DATAFOLD_MONITORING_PROVIDER: "{{ .Values.config.monitoringProvider }}"
22+
DATAFOLD_METRICS_ENABLED: "{{ .Values.config.metricsEnabled }}"
2223
DATAFOLD_SIGNOZ_ENDPOINT: "{{ .Values.global.signoz.endpoint }}"
2324
{{- if .Values.global.signoz.ingestionKey }}
2425
DATAFOLD_SIGNOZ_INGESTION_KEY: "{{ .Values.global.signoz.ingestionKey }}"

charts/datafold/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ config:
9999
ratelimitEnabled: "true"
100100
rateLimitHighLoadPerMinute: "120"
101101
loggingEnabled: "true"
102-
loggingProvider: "datadog"
102+
monitoringProvider: "datadog"
103+
metricsEnabled: "true"
103104
singleTenantDeploy: "true"
104105
mailPort: "587"
105106
mailUseTls: "true"

0 commit comments

Comments
 (0)