We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TerminationGracePeriodSeconds: 0
The docs are pretty vocal about not doing this https://kubernetes.io/docs/tasks/run-application/force-delete-stateful-set-pod/#statefulset-considerations
inspect_k8s_sandbox/src/k8s_sandbox/resources/helm/agent-env/templates/services.yaml
Line 34 in f585459
The practice of setting a pod.Spec.TerminationGracePeriodSeconds of 0 seconds is unsafe and strongly discouraged for StatefulSet Pods
We do this because most containers we run don't respect signals properly. Ideally we'd have an init feature like Docker does.
init
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The docs are pretty vocal about not doing this
https://kubernetes.io/docs/tasks/run-application/force-delete-stateful-set-pod/#statefulset-considerations
inspect_k8s_sandbox/src/k8s_sandbox/resources/helm/agent-env/templates/services.yaml
Line 34 in f585459
We do this because most containers we run don't respect signals properly. Ideally we'd have an
init
feature like Docker does.The text was updated successfully, but these errors were encountered: