diff --git a/examples/cronjobs/chart/README.md b/examples/cronjobs/chart/README.md deleted file mode 100644 index 7da7cf1..0000000 --- a/examples/cronjobs/chart/README.md +++ /dev/null @@ -1,49 +0,0 @@ -# cronjobs - -A Helm chart for cronjobs - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```bash -# Standard Helm install -$ helm install my-release cronjobs - -# To use a custom namespace and force the creation of the namespace -$ helm install my-release --namespace my-namespace --create-namespace cronjobs - -# To use a custom values file -$ helm install my-release -f my-values.yaml cronjobs -``` - -See the [Helm documentation](https://helm.sh/docs/intro/using_helm/) for more information on installing and managing the chart. - -## Configuration - -The following table lists the configurable parameters of the cronjobs chart and their default values. - -| Parameter | Default | -| ----------------------------------- | -------------- | -| `app.imagePullPolicy` | `IfNotPresent` | -| `app.replicas` | `1` | -| `app.repository.image` | `nginx` | -| `app.repository.tag` | `` | -| `backup.cronjob.imagePullPolicy` | `IfNotPresent` | -| `backup.cronjob.repository.image` | `alpine` | -| `backup.cronjob.repository.tag` | `1` | -| `backup.cronjob.schedule` | `@hourly` | -| `backup.imagePullPolicy` | `IfNotPresent` | -| `backup.replicas` | `1` | -| `backup.repository.image` | `alpine` | -| `backup.repository.tag` | `1` | -| `withrbac.cronjob.imagePullPolicy` | `IfNotPresent` | -| `withrbac.cronjob.repository.image` | `busybox` | -| `withrbac.cronjob.repository.tag` | `` | -| `withrbac.cronjob.schedule` | `@daily` | -| `withrbac.imagePullPolicy` | `IfNotPresent` | -| `withrbac.replicas` | `1` | -| `withrbac.repository.image` | `busybox` | -| `withrbac.repository.tag` | `` | - - diff --git a/examples/cronjobs/chart/templates/NOTES.txt b/examples/cronjobs/chart/templates/NOTES.txt deleted file mode 100644 index 3121a00..0000000 --- a/examples/cronjobs/chart/templates/NOTES.txt +++ /dev/null @@ -1,27 +0,0 @@ -Your release is named {{ .Release.Name }}. - -To learn more about the release, try: - - $ helm -n {{ .Release.Namespace }} status {{ .Release.Name }} - $ helm -n {{ .Release.Namespace }} get all {{ .Release.Name }} - -To delete the release, run: - - $ helm -n {{ .Release.Namespace }} delete {{ .Release.Name }} - -You can see this notes again by running: - - $ helm -n {{ .Release.Namespace }} get notes {{ .Release.Name }} - -{{- $count := 0 -}} -{{- range $s, $v := .Values -}} -{{- if and $v $v.ingress -}} -{{- $count = add $count 1 -}} -{{- if eq $count 1 }} - -The ingress list is: -{{ end }} - - {{ $s }}: http://{{ $v.ingress.host }}{{ $v.ingress.path }} -{{- end -}} -{{ end -}} - diff --git a/examples/cronjobs/chart/templates/_helpers.tpl b/examples/cronjobs/chart/templates/_helpers.tpl deleted file mode 100644 index 2bba0e2..0000000 --- a/examples/cronjobs/chart/templates/_helpers.tpl +++ /dev/null @@ -1,36 +0,0 @@ -{{- define "cronjobs.fullname" -}} -{{- if .Values.fullnameOverride -}} -{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- if contains $name .Release.Name -}} -{{- .Release.Name | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} -{{- end -}} -{{- end -}} - -{{- define "cronjobs.name" -}} -{{- if .Values.nameOverride -}} -{{- .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} -{{- end -}} - -{{- define "cronjobs.labels" -}} -{{ include "cronjobs.selectorLabels" .}} -{{ if .Chart.Version -}} -{{ printf "katenary.v3/chart-version: %s" .Chart.Version }} -{{- end }} -{{ if .Chart.AppVersion -}} -{{ printf "katenary.v3/app-version: %s" .Chart.AppVersion }} -{{- end }} -{{- end -}} - -{{- define "cronjobs.selectorLabels" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{ printf "katenary.v3/name: %s" $name }} -{{ printf "katenary.v3/instance: %s" .Release.Name }} -{{- end -}} diff --git a/examples/multidir/chart/README.md b/examples/multidir/chart/README.md deleted file mode 100644 index 93ed0ac..0000000 --- a/examples/multidir/chart/README.md +++ /dev/null @@ -1,37 +0,0 @@ -# multidir - -A Helm chart for multidir - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```bash -# Standard Helm install -$ helm install my-release multidir - -# To use a custom namespace and force the creation of the namespace -$ helm install my-release --namespace my-namespace --create-namespace multidir - -# To use a custom values file -$ helm install my-release -f my-values.yaml multidir -``` - -See the [Helm documentation](https://helm.sh/docs/intro/using_helm/) for more information on installing and managing the chart. - -## Configuration - -The following table lists the configurable parameters of the multidir chart and their default values. - -| Parameter | Default | -| ---------------------- | -------------- | -| `bar.imagePullPolicy` | `IfNotPresent` | -| `bar.replicas` | `1` | -| `bar.repository.image` | `alpine` | -| `bar.repository.tag` | `` | -| `foo.imagePullPolicy` | `IfNotPresent` | -| `foo.replicas` | `1` | -| `foo.repository.image` | `alpine` | -| `foo.repository.tag` | `` | - - diff --git a/examples/multidir/chart/templates/NOTES.txt b/examples/multidir/chart/templates/NOTES.txt deleted file mode 100644 index 3121a00..0000000 --- a/examples/multidir/chart/templates/NOTES.txt +++ /dev/null @@ -1,27 +0,0 @@ -Your release is named {{ .Release.Name }}. - -To learn more about the release, try: - - $ helm -n {{ .Release.Namespace }} status {{ .Release.Name }} - $ helm -n {{ .Release.Namespace }} get all {{ .Release.Name }} - -To delete the release, run: - - $ helm -n {{ .Release.Namespace }} delete {{ .Release.Name }} - -You can see this notes again by running: - - $ helm -n {{ .Release.Namespace }} get notes {{ .Release.Name }} - -{{- $count := 0 -}} -{{- range $s, $v := .Values -}} -{{- if and $v $v.ingress -}} -{{- $count = add $count 1 -}} -{{- if eq $count 1 }} - -The ingress list is: -{{ end }} - - {{ $s }}: http://{{ $v.ingress.host }}{{ $v.ingress.path }} -{{- end -}} -{{ end -}} - diff --git a/examples/multidir/chart/templates/_helpers.tpl b/examples/multidir/chart/templates/_helpers.tpl deleted file mode 100644 index a0db3ab..0000000 --- a/examples/multidir/chart/templates/_helpers.tpl +++ /dev/null @@ -1,36 +0,0 @@ -{{- define "multidir.fullname" -}} -{{- if .Values.fullnameOverride -}} -{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- if contains $name .Release.Name -}} -{{- .Release.Name | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} -{{- end -}} -{{- end -}} - -{{- define "multidir.name" -}} -{{- if .Values.nameOverride -}} -{{- .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} -{{- end -}} - -{{- define "multidir.labels" -}} -{{ include "multidir.selectorLabels" .}} -{{ if .Chart.Version -}} -{{ printf "katenary.v3/chart-version: %s" .Chart.Version }} -{{- end }} -{{ if .Chart.AppVersion -}} -{{ printf "katenary.v3/app-version: %s" .Chart.AppVersion }} -{{- end }} -{{- end -}} - -{{- define "multidir.selectorLabels" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{ printf "katenary.v3/name: %s" $name }} -{{ printf "katenary.v3/instance: %s" .Release.Name }} -{{- end -}} diff --git a/examples/multidir/conf/example1.conf b/examples/multidir/conf/example1.conf deleted file mode 100644 index 1ce1e1f..0000000 --- a/examples/multidir/conf/example1.conf +++ /dev/null @@ -1 +0,0 @@ -A file containing configuration here diff --git a/examples/multidir/conf/otherdir/example.conf b/examples/multidir/conf/otherdir/example.conf deleted file mode 100644 index a34c637..0000000 --- a/examples/multidir/conf/otherdir/example.conf +++ /dev/null @@ -1,2 +0,0 @@ -variable: foo -example: bar diff --git a/examples/shareenv/chart/README.md b/examples/shareenv/chart/README.md deleted file mode 100644 index db87974..0000000 --- a/examples/shareenv/chart/README.md +++ /dev/null @@ -1,37 +0,0 @@ -# shareenv - -A Helm chart for shareenv - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```bash -# Standard Helm install -$ helm install my-release shareenv - -# To use a custom namespace and force the creation of the namespace -$ helm install my-release --namespace my-namespace --create-namespace shareenv - -# To use a custom values file -$ helm install my-release -f my-values.yaml shareenv -``` - -See the [Helm documentation](https://helm.sh/docs/intro/using_helm/) for more information on installing and managing the chart. - -## Configuration - -The following table lists the configurable parameters of the shareenv chart and their default values. - -| Parameter | Default | -| ----------------------- | -------------- | -| `app1.imagePullPolicy` | `IfNotPresent` | -| `app1.replicas` | `1` | -| `app1.repository.image` | `nginx` | -| `app1.repository.tag` | `1` | -| `app2.imagePullPolicy` | `IfNotPresent` | -| `app2.replicas` | `1` | -| `app2.repository.image` | `nginx` | -| `app2.repository.tag` | `1` | - - diff --git a/examples/shareenv/chart/templates/NOTES.txt b/examples/shareenv/chart/templates/NOTES.txt deleted file mode 100644 index 3121a00..0000000 --- a/examples/shareenv/chart/templates/NOTES.txt +++ /dev/null @@ -1,27 +0,0 @@ -Your release is named {{ .Release.Name }}. - -To learn more about the release, try: - - $ helm -n {{ .Release.Namespace }} status {{ .Release.Name }} - $ helm -n {{ .Release.Namespace }} get all {{ .Release.Name }} - -To delete the release, run: - - $ helm -n {{ .Release.Namespace }} delete {{ .Release.Name }} - -You can see this notes again by running: - - $ helm -n {{ .Release.Namespace }} get notes {{ .Release.Name }} - -{{- $count := 0 -}} -{{- range $s, $v := .Values -}} -{{- if and $v $v.ingress -}} -{{- $count = add $count 1 -}} -{{- if eq $count 1 }} - -The ingress list is: -{{ end }} - - {{ $s }}: http://{{ $v.ingress.host }}{{ $v.ingress.path }} -{{- end -}} -{{ end -}} - diff --git a/examples/shareenv/chart/templates/_helpers.tpl b/examples/shareenv/chart/templates/_helpers.tpl deleted file mode 100644 index e51ea07..0000000 --- a/examples/shareenv/chart/templates/_helpers.tpl +++ /dev/null @@ -1,36 +0,0 @@ -{{- define "shareenv.fullname" -}} -{{- if .Values.fullnameOverride -}} -{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- if contains $name .Release.Name -}} -{{- .Release.Name | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} -{{- end -}} -{{- end -}} - -{{- define "shareenv.name" -}} -{{- if .Values.nameOverride -}} -{{- .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} -{{- end -}} - -{{- define "shareenv.labels" -}} -{{ include "shareenv.selectorLabels" .}} -{{ if .Chart.Version -}} -{{ printf "katenary.v3/chart-version: %s" .Chart.Version }} -{{- end }} -{{ if .Chart.AppVersion -}} -{{ printf "katenary.v3/app-version: %s" .Chart.AppVersion }} -{{- end }} -{{- end -}} - -{{- define "shareenv.selectorLabels" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{ printf "katenary.v3/name: %s" $name }} -{{ printf "katenary.v3/instance: %s" .Release.Name }} -{{- end -}} diff --git a/examples/somevolumes/chart/README.md b/examples/somevolumes/chart/README.md deleted file mode 100644 index edf4198..0000000 --- a/examples/somevolumes/chart/README.md +++ /dev/null @@ -1,37 +0,0 @@ -# somevolumes - -A Helm chart for somevolumes - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```bash -# Standard Helm install -$ helm install my-release somevolumes - -# To use a custom namespace and force the creation of the namespace -$ helm install my-release --namespace my-namespace --create-namespace somevolumes - -# To use a custom values file -$ helm install my-release -f my-values.yaml somevolumes -``` - -See the [Helm documentation](https://helm.sh/docs/intro/using_helm/) for more information on installing and managing the chart. - -## Configuration - -The following table lists the configurable parameters of the somevolumes chart and their default values. - -| Parameter | Default | -| ----------------------------------------------- | ----------------- | -| `site1.imagePullPolicy` | `IfNotPresent` | -| `site1.persistence.statics.accessMode[0].value` | `ReadWriteOnce` | -| `site1.persistence.statics.enabled` | `true` | -| `site1.persistence.statics.size` | `1Gi` | -| `site1.persistence.statics.storageClass` | `-` | -| `site1.replicas` | `1` | -| `site1.repository.image` | `docker.io/nginx` | -| `site1.repository.tag` | `1` | - - diff --git a/examples/somevolumes/chart/templates/NOTES.txt b/examples/somevolumes/chart/templates/NOTES.txt deleted file mode 100644 index 3121a00..0000000 --- a/examples/somevolumes/chart/templates/NOTES.txt +++ /dev/null @@ -1,27 +0,0 @@ -Your release is named {{ .Release.Name }}. - -To learn more about the release, try: - - $ helm -n {{ .Release.Namespace }} status {{ .Release.Name }} - $ helm -n {{ .Release.Namespace }} get all {{ .Release.Name }} - -To delete the release, run: - - $ helm -n {{ .Release.Namespace }} delete {{ .Release.Name }} - -You can see this notes again by running: - - $ helm -n {{ .Release.Namespace }} get notes {{ .Release.Name }} - -{{- $count := 0 -}} -{{- range $s, $v := .Values -}} -{{- if and $v $v.ingress -}} -{{- $count = add $count 1 -}} -{{- if eq $count 1 }} - -The ingress list is: -{{ end }} - - {{ $s }}: http://{{ $v.ingress.host }}{{ $v.ingress.path }} -{{- end -}} -{{ end -}} - diff --git a/examples/somevolumes/chart/templates/_helpers.tpl b/examples/somevolumes/chart/templates/_helpers.tpl deleted file mode 100644 index 978ffc8..0000000 --- a/examples/somevolumes/chart/templates/_helpers.tpl +++ /dev/null @@ -1,36 +0,0 @@ -{{- define "somevolumes.fullname" -}} -{{- if .Values.fullnameOverride -}} -{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- if contains $name .Release.Name -}} -{{- .Release.Name | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} -{{- end -}} -{{- end -}} - -{{- define "somevolumes.name" -}} -{{- if .Values.nameOverride -}} -{{- .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} -{{- end -}} - -{{- define "somevolumes.labels" -}} -{{ include "somevolumes.selectorLabels" .}} -{{ if .Chart.Version -}} -{{ printf "katenary.v3/chart-version: %s" .Chart.Version }} -{{- end }} -{{ if .Chart.AppVersion -}} -{{ printf "katenary.v3/app-version: %s" .Chart.AppVersion }} -{{- end }} -{{- end -}} - -{{- define "somevolumes.selectorLabels" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{ printf "katenary.v3/name: %s" $name }} -{{ printf "katenary.v3/instance: %s" .Release.Name }} -{{- end -}}