We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5efa445 commit b70e451Copy full SHA for b70e451
charts/doggo/templates/statefulset.yaml
@@ -53,6 +53,9 @@ spec:
53
{{ if .Values.doggo.configureInput }}
54
- "--configure-input"
55
{{ end }}
56
+ {{ if .Values.doggo.outputSampleRate }}
57
+ - "--output-sample-rate={{ .Values.doggo.outputSampleRate }}"
58
+ {{ end }}
59
{{- with .Values.resources }}
60
resources:
61
{{- toYaml . | nindent 12 }}
charts/doggo/values.yaml
@@ -9,6 +9,8 @@ doggo:
9
robotIp: "192.168.1.100"
10
# Whether to configure the input device
11
configureInput: false
12
+ # explicitly set the output sample rate for the speaker device
13
+ outputSampleRate: ~
14
15
# This is a YAML-formatted file.
16
# Declare variables to be passed into your templates.
0 commit comments