From f6d6f340778e56bc5964dc00dbe1185f242326f0 Mon Sep 17 00:00:00 2001 From: David Xia Date: Mon, 11 Dec 2023 08:32:54 -0500 Subject: [PATCH] chore: add `kuberay-` name prefix to validating webhook Service and ValidatingWebhookConfiguration so they have more specific names of `kuberay-webhook-service` and `kuberay-validating-webhook-configuration` instead of the generic `webhook-service` and `validating-webhook-configuration`, respectively. The Service is in the `ray-system` namespace so it's unlikely to conflict with another Service's name in this namespace. But `ValidatingWebhookConfigurations` are cluster-scoped, so it's likely to conflict with another one that's also named `validating-webhook-configuration`. --- ray-operator/config/webhook/kustomization.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ray-operator/config/webhook/kustomization.yaml b/ray-operator/config/webhook/kustomization.yaml index b156e26125..9750d9630d 100644 --- a/ray-operator/config/webhook/kustomization.yaml +++ b/ray-operator/config/webhook/kustomization.yaml @@ -2,6 +2,8 @@ resources: - manifests.yaml - service.yaml +namePrefix: kuberay- + configurations: - kustomizeconfig.yaml