From 14cb9e00d2cb55f772cdce96924a4ff9c0a53ac4 Mon Sep 17 00:00:00 2001 From: Tim Ramlot <42113979+inteon@users.noreply.github.com> Date: Mon, 8 Jul 2024 16:18:57 +0200 Subject: [PATCH] apply changes proposed in PR review comments Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com> --- deploy/charts/openshift-routes/Chart.yaml | 2 +- deploy/charts/openshift-routes/README.md | 3 +-- deploy/charts/openshift-routes/values.schema.json | 4 ++-- deploy/charts/openshift-routes/values.yaml | 3 +-- make/00_mod.mk | 2 +- 5 files changed, 6 insertions(+), 8 deletions(-) diff --git a/deploy/charts/openshift-routes/Chart.yaml b/deploy/charts/openshift-routes/Chart.yaml index a2d1101..9b5d51d 100644 --- a/deploy/charts/openshift-routes/Chart.yaml +++ b/deploy/charts/openshift-routes/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 -name: cert-manager-openshift-routes +name: openshift-routes type: application description: A Helm chart to deploy openshift-routes adapter for cert-manager on Kubernetes diff --git a/deploy/charts/openshift-routes/README.md b/deploy/charts/openshift-routes/README.md index 7991543..acf23b1 100644 --- a/deploy/charts/openshift-routes/README.md +++ b/deploy/charts/openshift-routes/README.md @@ -44,7 +44,7 @@ repository: jetstack/cert-manager-openshift-routes #### **image.repository** ~ `string` > Default value: > ```yaml -> quay.io/jetstack/cert-manager-openshift-routes +> ghcr.io/cert-manager/cert-manager-openshift-routes > ``` Target image repository. @@ -142,7 +142,6 @@ For example: ```yaml resources: limits: - cpu: 100m memory: 128Mi requests: cpu: 100m diff --git a/deploy/charts/openshift-routes/values.schema.json b/deploy/charts/openshift-routes/values.schema.json index d0e711f..27cb457 100644 --- a/deploy/charts/openshift-routes/values.schema.json +++ b/deploy/charts/openshift-routes/values.schema.json @@ -107,7 +107,7 @@ "type": "string" }, "helm-values.image.repository": { - "default": "quay.io/jetstack/cert-manager-openshift-routes", + "default": "ghcr.io/cert-manager/cert-manager-openshift-routes", "description": "Target image repository.", "type": "string" }, @@ -215,7 +215,7 @@ }, "helm-values.resources": { "default": {}, - "description": "Kubernetes pod resources\nref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n\nFor example:\nresources:\n limits:\n cpu: 100m\n memory: 128Mi\n requests:\n cpu: 100m\n memory: 128Mi", + "description": "Kubernetes pod resources\nref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n\nFor example:\nresources:\n limits:\n memory: 128Mi\n requests:\n cpu: 100m\n memory: 128Mi", "type": "object" }, "helm-values.securityContext": { diff --git a/deploy/charts/openshift-routes/values.yaml b/deploy/charts/openshift-routes/values.yaml index 5b0c800..0995474 100644 --- a/deploy/charts/openshift-routes/values.yaml +++ b/deploy/charts/openshift-routes/values.yaml @@ -30,7 +30,7 @@ image: # registry: quay.io # Target image repository. - repository: quay.io/jetstack/cert-manager-openshift-routes + repository: ghcr.io/cert-manager/cert-manager-openshift-routes # Override the image tag to deploy by setting this variable. # If no value is set, the chart's appVersion is used. @@ -93,7 +93,6 @@ securityContext: # For example: # resources: # limits: -# cpu: 100m # memory: 128Mi # requests: # cpu: 100m diff --git a/make/00_mod.mk b/make/00_mod.mk index 8198027..caecfb5 100644 --- a/make/00_mod.mk +++ b/make/00_mod.mk @@ -31,7 +31,7 @@ deploy_name := openshift-routes deploy_namespace := cert-manager helm_chart_source_dir := deploy/charts/openshift-routes -helm_chart_name := cert-manager-openshift-routes +helm_chart_name := openshift-routes helm_chart_version := $(VERSION:v%=%) helm_labels_template_name := cert-manager-openshift-routes.labels helm_docs_use_helm_tool := 1