diff --git a/charts/common-chart/.helmignore b/charts/common-chart/.helmignore new file mode 100644 index 0000000..4379e2b --- /dev/null +++ b/charts/common-chart/.helmignore @@ -0,0 +1,26 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl diff --git a/charts/common-chart/Chart.yaml b/charts/common-chart/Chart.yaml new file mode 100644 index 0000000..a90e126 --- /dev/null +++ b/charts/common-chart/Chart.yaml @@ -0,0 +1,11 @@ +--- +apiVersion: v2 +description: A simple wrapper chart around the common chart +name: common-chart +version: 1.2.2 +maintainers: + - name: nikdoof +dependencies: + - name: common + repository: https://nikdoof.github.io/helm-charts/ + version: 4.5.2 diff --git a/charts/common-chart/templates/common.yaml b/charts/common-chart/templates/common.yaml new file mode 100644 index 0000000..7a9d036 --- /dev/null +++ b/charts/common-chart/templates/common.yaml @@ -0,0 +1,2 @@ +--- +{{ include "common.all" . }} diff --git a/charts/common-chart/values.yaml b/charts/common-chart/values.yaml new file mode 100644 index 0000000..ed97d53 --- /dev/null +++ b/charts/common-chart/values.yaml @@ -0,0 +1 @@ +---