Last active
December 15, 2023 07:51
-
-
Save bpradipt/971b2423e183839ae2f73e3bfa3670eb to your computer and use it in GitHub Desktop.
Daemonset to replace Kata shim in a CoCo install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 | |
kind: DaemonSet | |
metadata: | |
name: shim-copy-daemonset | |
namespace: confidential-containers-system | |
spec: | |
selector: | |
matchLabels: | |
app: shim-copy | |
template: | |
metadata: | |
labels: | |
app: shim-copy | |
spec: | |
serviceAccountName: default | |
nodeSelector: | |
node.kubernetes.io/worker: "" | |
containers: | |
- name: file-copy-container | |
image: quay.io/bpradipt/kata-shim | |
command: ["/bin/sh", "-c"] | |
args: | |
- | | |
mv /opt/kata/bin/containerd-shim-kata-v2 /opt/kata/bin/containerd-shim-kata-v2.org | |
cp /containerd-shim-kata-v2-coco /opt/kata/bin/containerd-shim-kata-v2 | |
chmod 0755 /opt/kata/bin/containerd-shim-kata-v2 | |
sleep infinity | |
lifecycle: | |
preStop: | |
exec: | |
command: ["/bin/sh", "-c", "mv /opt/kata/bin/containerd-shim-kata-v2.org /opt/kata/bin/containerd-shim-kata-v2"] | |
volumeMounts: | |
- name: host-volume | |
mountPath: /opt | |
securityContext: | |
privileged: true | |
volumes: | |
- name: host-volume | |
hostPath: | |
path: /opt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment