diff --git a/dev/config/monitored-pod/deployment-register.yaml b/dev/config/monitored-pod/deployment-register.yaml deleted file mode 100644 index 8062fa1d..00000000 --- a/dev/config/monitored-pod/deployment-register.yaml +++ /dev/null @@ -1,29 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - labels: - run: nginx - name: nginx -spec: - replicas: 2 - selector: - matchLabels: - run: nginx - template: - metadata: - labels: - run: nginx - annotations: - pod-agent.k8s.tarian.dev/register: "processes,files" - spec: - containers: - - image: nginx - name: nginx - volumeMounts: - - name: nginx-html - mountPath: /usr/share/nginx/html - volumes: - - name: nginx-html - configMap: - name: nginx-html - diff --git a/dev/config/monitored-pod/deployment.yaml b/dev/config/monitored-pod/deployment.yaml deleted file mode 100644 index f2712207..00000000 --- a/dev/config/monitored-pod/deployment.yaml +++ /dev/null @@ -1,27 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - labels: - run: nginx - name: web -spec: - replicas: 2 - selector: - matchLabels: - run: web - template: - metadata: - labels: - run: web - spec: - containers: - - image: nginx - name: nginx - volumeMounts: - - name: nginx-html - mountPath: /usr/share/nginx/html - volumes: - - name: nginx-html - configMap: - name: nginx-html -