From 7684e59d15717754afee1d6c20d3c72c26732d61 Mon Sep 17 00:00:00 2001 From: Ross Guarino Date: Tue, 29 May 2018 17:22:17 -0700 Subject: [PATCH] fix typo in daemonset labelSelector The label on the pod is `app: node-problem-detector` while the label in the `labelSelector` was `name: node-problem-detector`. This CL updates the `labelSelector` to use `app` rather than `name`. --- deployment/node-problem-detector.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/node-problem-detector.yaml b/deployment/node-problem-detector.yaml index 95dcadc9..52634f18 100644 --- a/deployment/node-problem-detector.yaml +++ b/deployment/node-problem-detector.yaml @@ -5,7 +5,7 @@ metadata: spec: selector: matchLabels: - name: node-problem-detector + app: node-problem-detector template: metadata: labels: