support-bot-saas/k8s/host-fix-pod.yaml
ed0ss cca3457f52
Some checks are pending
CI / lint-backend (push) Waiting to run
CI / lint-frontend (push) Waiting to run
CI / build-backend (push) Blocked by required conditions
CI / build-frontend (push) Blocked by required conditions
docs, proxy support, k8s fixes, test scripts
2026-06-29 15:57:30 +03:00

23 lines
460 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: host-fix
namespace: support-bot
spec:
hostPID: true
hostNetwork: true
containers:
- name: host-fix
image: cr-internal.twcstorage.ru/k0sproject/calico-node:v3.32.0-0
command: ["sleep", "3600"]
securityContext:
privileged: true
runAsUser: 0
volumeMounts:
- name: host-root
mountPath: /host
volumes:
- name: host-root
hostPath:
path: /
type: Directory