1234567891011121314151617181920 |
- apiVersion: v1
- kind: Pod
- metadata:
- name: kali
- annotations:
- # Setting spec.force to true will make Flux recreate the Pod when any
- # immutable field is changed, forcing the Pod to run every time the
- # container image tag changes.
- kustomize.toolkit.fluxcd.io/force: enabled
- spec:
- restartPolicy: Never
- automountServiceAccountToken: false
- hostNetwork: true
- containers:
- - image: kalilinux/kali-rolling
- name: kali
- command:
- - /bin/sleep
- - infinity
|