From 18e66937ce59e6f17de990e199c4c07671316c0f Mon Sep 17 00:00:00 2001 From: Balakoteswara Panchakshari Date: Wed, 12 Feb 2025 15:42:01 +0530 Subject: [PATCH 1/2] fix update k8s values file --- .../nim/deploy/kubernetes/deploy-using-helm.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/content/nim/deploy/kubernetes/deploy-using-helm.md b/content/nim/deploy/kubernetes/deploy-using-helm.md index 0bc12fdc..0c35000e 100644 --- a/content/nim/deploy/kubernetes/deploy-using-helm.md +++ b/content/nim/deploy/kubernetes/deploy-using-helm.md @@ -132,27 +132,31 @@ The `values.yaml` file customizes the Helm chart installation without modifying - name: regcred apigw: image: - repository: private-registry.nginx.com/nms-apigw + repository: private-registry.nginx.com/nms/apigw tag: core: image: - repository: private-registry.nginx.com/nms-core + repository: private-registry.nginx.com/nms/core tag: dpm: image: - repository: private-registry.nginx.com/nms-dpm + repository: private-registry.nginx.com/nms/dpm tag: ingestion: image: - repository: private-registry.nginx.com/nms-ingestion + repository: private-registry.nginx.com/nms/ingestion tag: integrations: image: - repository: private-registry.nginx.com/nms-integrations + repository: private-registry.nginx.com/nms/integrations + tag: + secmon: + image: + repository: private-registry.nginx.com/nms/secmon tag: utility: image: - repository: private-registry.nginx.com/nms-utility + repository: private-registry.nginx.com/nms/utility tag: ``` From 21b1baa07af2e1e507682b59eba76d48de7870bc Mon Sep 17 00:00:00 2001 From: Balakoteswara Panchakshari Date: Wed, 12 Feb 2025 16:19:02 +0530 Subject: [PATCH 2/2] fix: update network policies with secmon --- content/nim/deploy/kubernetes/deploy-using-helm.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/nim/deploy/kubernetes/deploy-using-helm.md b/content/nim/deploy/kubernetes/deploy-using-helm.md index 0c35000e..2e17d59b 100644 --- a/content/nim/deploy/kubernetes/deploy-using-helm.md +++ b/content/nim/deploy/kubernetes/deploy-using-helm.md @@ -216,6 +216,7 @@ By default, the following network policies will be created in the release namesp dpm app.kubernetes.io/name=dpm 4m47s ingestion app.kubernetes.io/name=ingestion 4m47s integrations app.kubernetes.io/name=integrations 4m47s + secmon app.kubernetes.io/name=secmon 4m47s utility app.kubernetes.io/name=integrations 4m47s ```