diff --git a/configs/nvme-storage-configurator/staging/kustomization.yaml b/configs/nvme-storage-configurator/staging/kustomization.yaml index ebd64652950..0fc998fb2f6 100644 --- a/configs/nvme-storage-configurator/staging/kustomization.yaml +++ b/configs/nvme-storage-configurator/staging/kustomization.yaml @@ -3,3 +3,10 @@ kind: Kustomization namespace: nvme-storage-config resources: - ../base +patches: + - target: + group: apps + version: v1 + kind: DaemonSet + name: nvme-storage-configurator + path: patch.yaml diff --git a/configs/nvme-storage-configurator/staging/patch.yaml b/configs/nvme-storage-configurator/staging/patch.yaml new file mode 100644 index 00000000000..cfe4ae91e74 --- /dev/null +++ b/configs/nvme-storage-configurator/staging/patch.yaml @@ -0,0 +1,13 @@ +- op: replace + path: "/spec/template/spec/nodeSelector" + value: + konflux-ci.dev/workload: konflux-tenants + + +- op: replace + path: "/spec/template/spec/tolerations/0" + value: + key: konflux-ci.dev/workload + operator: Equal + value: konflux-tenants + effect: NoSchedule