diff --git a/compose.yaml b/compose.yaml deleted file mode 100644 index 131c2fde..00000000 --- a/compose.yaml +++ /dev/null @@ -1,8 +0,0 @@ -services: - demo: - image: docker.io/lanthora/candy:latest - network_mode: host - privileged: true - volumes: - - /var/lib/candy:/var/lib/candy - restart: always diff --git a/daemonset.yaml b/daemonset.yaml deleted file mode 100644 index ce02a5ef..00000000 --- a/daemonset.yaml +++ /dev/null @@ -1,26 +0,0 @@ -apiVersion: apps/v1 -kind: DaemonSet -metadata: - name: candy-daemonset -spec: - selector: - matchLabels: - app: candy - template: - metadata: - labels: - app: candy - spec: - hostNetwork: true - containers: - - name: candy-demo - image: docker.io/lanthora/candy:latest - securityContext: - privileged: true - volumeMounts: - - name: var-lib-candy - mountPath: /var/lib/candy - volumes: - - name: var-lib-candy - hostPath: - path: /var/lib/candy