Skip to content

Commit b70e451

Browse files
add ability to specify output sample rates
1 parent 5efa445 commit b70e451

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

charts/doggo/templates/statefulset.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ spec:
5353
{{ if .Values.doggo.configureInput }}
5454
- "--configure-input"
5555
{{ end }}
56+
{{ if .Values.doggo.outputSampleRate }}
57+
- "--output-sample-rate={{ .Values.doggo.outputSampleRate }}"
58+
{{ end }}
5659
{{- with .Values.resources }}
5760
resources:
5861
{{- toYaml . | nindent 12 }}

charts/doggo/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ doggo:
99
robotIp: "192.168.1.100"
1010
# Whether to configure the input device
1111
configureInput: false
12+
# explicitly set the output sample rate for the speaker device
13+
outputSampleRate: ~
1214

1315
# This is a YAML-formatted file.
1416
# Declare variables to be passed into your templates.

0 commit comments

Comments
 (0)