apiVersion: apps/v1 kind: Deployment metadata: namespace: wyoming name: wyoming-piper labels: app: wyoming-piper spec: replicas: 1 selector: matchLabels: app: wyoming-piper template: metadata: labels: app: wyoming-piper spec: nodeSelector: role: worker-node containers: - name: wyoming-piper ### Maintained by flux - Image Update Automation image: rhasspy/wyoming-piper # {"$imagepolicy": "wyoming:piper"} ### volumeMounts: - mountPath: /data name: data args: - --voice - en-gb-southern_english_female-low ports: - containerPort: 10200 volumes: - name: data persistentVolumeClaim: claimName: wyoming-piper --- apiVersion: v1 kind: PersistentVolumeClaim metadata: name: wyoming-piper namespace: wyoming spec: accessModes: - ReadWriteOnce resources: requests: storage: 2Gi