From 4aa2ef845f43ce37ef4a90cd6f2308672be0cf3e Mon Sep 17 00:00:00 2001 From: William P Date: Fri, 28 Feb 2025 06:12:09 -0500 Subject: [PATCH] add cert-manager --- system-apps/cert-manager/Chart.yaml | 28 ++++++++++++++++++++++++++++ system-apps/cert-manager/values.yaml | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 system-apps/cert-manager/Chart.yaml create mode 100644 system-apps/cert-manager/values.yaml diff --git a/system-apps/cert-manager/Chart.yaml b/system-apps/cert-manager/Chart.yaml new file mode 100644 index 0000000..edacdde --- /dev/null +++ b/system-apps/cert-manager/Chart.yaml @@ -0,0 +1,28 @@ +apiVersion: v2 +name: cert-manager +description: A Helm chart for Kubernetes + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 0.1.0 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +appVersion: "1.0" + +dependencies: +- name: cert-manager + version: v1.17.0 + repository: https://charts.jetstack.io \ No newline at end of file diff --git a/system-apps/cert-manager/values.yaml b/system-apps/cert-manager/values.yaml new file mode 100644 index 0000000..fcda975 --- /dev/null +++ b/system-apps/cert-manager/values.yaml @@ -0,0 +1,2 @@ +cert-manager: + namespace: cert-manager \ No newline at end of file