Disabling SpeechSense
Written by
Updated at April 8, 2026
You can disable the SpeechSense component in a Stackland cluster. If you do so, the controller will automatically delete all the component's resources.
Disabling a component
-
Create the
speechsense-disable.yamlmanifest file:apiVersion: stackland.yandex.cloud/v1alpha1
kind: SpeechsenseConfig
metadata:
name: default
spec:
enabled: false -
Apply the manifest:
kubectl apply -f speechsense-disable.yaml -
Make sure the resources were deleted:
kubectl get pods -n stackland-speechsenseThe command should not be returning any pods.
The controller will automatically delete the following:
- Helm release named
stackland-speechsense. - Database clusters, if not used by other components.
- Secrets and certificates.
Warning
PVCs with the database data are retained to make recovery possible. For complete deletion, delete the PVCs manually:
kubectl delete pvc --all -n stackland-speechsense
What's next
- Configuring and activating SpeechSense: Re-enabling SpeechSense.
- SpeechSense: Component description.