Skip to content

Commit

Permalink
Fix controller deployment args
Browse files Browse the repository at this point in the history
Now it works not correct.
```Helm
  set_list {
    name  = "tink.controller.args"
    value = ["--log-level=1"]  # debug
  }
```
Resulted pod:
```yaml
      args:
        - '--namespace=tink-system - --log-level=1'
```

Signed-off-by: Zubarev Alexander <[email protected]>
  • Loading branch information
strike committed Nov 9, 2024
1 parent 1369d73 commit 46b01b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tinkerbell/tink/templates/tink-controller/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
- --namespace={{ .Release.Namespace }}
{{- end }}
{{- range .Values.controller.args }}
- {{ . }}
- {{ . }}
{{- end }}
name: {{ .Values.controller.name }}
resources:
Expand Down

0 comments on commit 46b01b2

Please sign in to comment.