Skip to content

Commit

Permalink
add support for controlling JSON log output in operator (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
aviramha authored Apr 14, 2024
1 parent 1e797ce commit 539c7fc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mirrord-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: 1.3.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "3.78.1"
appVersion: "3.79.0"
2 changes: 2 additions & 0 deletions mirrord-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ spec:
value: mirrord-operator
- name: OPERATOR_TELEMETRY_ENABLED
value: {{ .Values.operator.disableTelemetries | ternary "false" "true" | quote }}
- name: OPERATOR_JSON_LOG
value: {{ .Values.operator.jsonLog | ternary "true" "false" | quote }}
- name: OPERATOR_AGENT_CONFIG
value: /mirrord-config/agent-config.yaml
{{- if or (index .Values.tls.data "tls.key") .Values.tls.certManager.enabled }}
Expand Down
2 changes: 2 additions & 0 deletions mirrord-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ roleNamespaces: []

operator:
image: ghcr.io/metalbear-co/operator

jsonLog: false
# imagePullSecrets:
# - name: value

Expand Down

0 comments on commit 539c7fc

Please sign in to comment.