From 04fc17a71934a0d13bb866731e74084d7c76fba5 Mon Sep 17 00:00:00 2001 From: TrueCharts-Bot Date: Wed, 29 Sep 2021 13:13:11 +0000 Subject: [PATCH] Commit released Helm Chart and docs for TrueCharts Signed-off-by: TrueCharts-Bot --- charts/library/common/CHANGELOG.md | 5 +++++ charts/library/common/SCALE/CHANGELOG.md | 4 ++-- charts/library/common/helm-values.md | 8 ++++---- docs/apps/common/helm-values.md | 8 ++++---- docs/index.yaml | 23 ++++++++++++++++++++++- 5 files changed, 37 insertions(+), 11 deletions(-) diff --git a/charts/library/common/CHANGELOG.md b/charts/library/common/CHANGELOG.md index 8e6327d7b8d..e00c8f80f54 100644 --- a/charts/library/common/CHANGELOG.md +++ b/charts/library/common/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog
+ +### [common-8.0.12](https://github.com/truecharts/apps/compare/common-8.0.11...common-8.0.12) (2021-09-29) + + + ### [common-8.0.10](https://github.com/truecharts/apps/compare/common-8.0.9...common-8.0.10) (2021-09-29) diff --git a/charts/library/common/SCALE/CHANGELOG.md b/charts/library/common/SCALE/CHANGELOG.md index b22a6dc0770..412c6e5ef07 100644 --- a/charts/library/common/SCALE/CHANGELOG.md +++ b/charts/library/common/SCALE/CHANGELOG.md @@ -1,3 +1,3 @@ - -### [common-8.0.10](https://github.com/truecharts/apps/compare/common-8.0.9...common-8.0.10) (2021-09-29) + +### [common-8.0.12](https://github.com/truecharts/apps/compare/common-8.0.11...common-8.0.12) (2021-09-29) diff --git a/charts/library/common/helm-values.md b/charts/library/common/helm-values.md index 2708b301cbd..209527ef692 100644 --- a/charts/library/common/helm-values.md +++ b/charts/library/common/helm-values.md @@ -13,24 +13,24 @@ This chart is used by a lot of our Apps to provide sane defaults and logic. | addons.codeserver | object | See values.yaml | The common library supports adding a code-server add-on to access files. It can be configured under this key. For more info, check out [our docs](http://docs.k8s-at-home.com/our-helm-charts/common-library-add-ons/#code-server) | | addons.codeserver.enabled | bool | `false` | Enable running a code-server container in the pod | | addons.codeserver.env | object | `{}` | Set any environment variables for code-server here | +| addons.codeserver.envList | list | `[]` | All variables specified here will be added to the codeserver sidecar container See the documentation of the codeserver image for all config values | | addons.codeserver.git | object | See below | Optionally allow access a Git repository by passing in a private SSH key | | addons.codeserver.git.deployKey | string | `""` | Raw SSH private key | | addons.codeserver.git.deployKeyBase64 | string | `""` | Base64-encoded SSH private key. When both variables are set, the raw SSH key takes precedence. | | addons.codeserver.git.deployKeySecret | string | `""` | Existing secret containing SSH private key The chart expects it to be present under the `id_rsa` key. | | addons.codeserver.ingress.enabled | bool | `false` | Enable an ingress for the code-server add-on. | | addons.codeserver.service.enabled | bool | `true` | Enable a service for the code-server add-on. | -| addons.codeserver.volumeMounts | list | `[]` | Specify a list of volumes that get mounted in the code-server container. At least 1 volumeMount is required! | -| addons.codeserver.workingDir | string | `""` | Specify the working dir that will be opened when code-server starts If not given, the app will default to the mountpah of the first specified volumeMount | +| addons.codeserver.workingDir | string | `"/"` | Specify the working dir that will be opened when code-server starts If not given, the app will default to the mountpah of the first specified volumeMount | | addons.netshoot | object | See values.yaml | The common library supports adding a netshoot add-on to troubleshoot network issues within a Pod. It can be configured under this key. | | addons.netshoot.enabled | bool | `false` | Enable running a netshoot container in the pod | | addons.netshoot.env | object | `{}` | Set any environment variables for netshoot here | +| addons.netshoot.envList | list | `[]` | All variables specified here will be added to the netshoot sidecar container See the documentation of the netshoot image for all config values | | addons.promtail | object | See values.yaml | The common library supports adding a promtail add-on to to access logs and ship them to loki. It can be configured under this key. | -| addons.promtail.args | list | `[]` | Set promtail command line arguments | | addons.promtail.enabled | bool | `false` | Enable running a promtail container in the pod | | addons.promtail.env | object | `{}` | Set any environment variables for promtail here | +| addons.promtail.envList | list | `[]` | All variables specified here will be added to the promtail sidecar container See the documentation of the promtail image for all config values | | addons.promtail.logs | list | `[]` | The paths to logs on the volume | | addons.promtail.loki | string | `""` | The URL to Loki | -| addons.promtail.volumeMounts | list | `[]` | Specify a list of volumes that get mounted in the promtail container. At least 1 volumeMount is required! | | addons.vpn | object | See values.yaml | The common chart supports adding a VPN add-on. It can be configured under this key. For more info, check out [our docs](http://docs.k8s-at-home.com/our-helm-charts/common-library-add-ons/#wireguard-vpn) | | addons.vpn.configFile | object | `{"enabled":true,"hostPath":"/vpn/vpn.conf","hostPathType":"File","noMount":true,"type":"hostPath"}` | Provide a customized vpn configuration file to be used by the VPN. | | addons.vpn.configFile.hostPath | string | `"/vpn/vpn.conf"` | Which path on the host should be mounted. | diff --git a/docs/apps/common/helm-values.md b/docs/apps/common/helm-values.md index 2708b301cbd..209527ef692 100644 --- a/docs/apps/common/helm-values.md +++ b/docs/apps/common/helm-values.md @@ -13,24 +13,24 @@ This chart is used by a lot of our Apps to provide sane defaults and logic. | addons.codeserver | object | See values.yaml | The common library supports adding a code-server add-on to access files. It can be configured under this key. For more info, check out [our docs](http://docs.k8s-at-home.com/our-helm-charts/common-library-add-ons/#code-server) | | addons.codeserver.enabled | bool | `false` | Enable running a code-server container in the pod | | addons.codeserver.env | object | `{}` | Set any environment variables for code-server here | +| addons.codeserver.envList | list | `[]` | All variables specified here will be added to the codeserver sidecar container See the documentation of the codeserver image for all config values | | addons.codeserver.git | object | See below | Optionally allow access a Git repository by passing in a private SSH key | | addons.codeserver.git.deployKey | string | `""` | Raw SSH private key | | addons.codeserver.git.deployKeyBase64 | string | `""` | Base64-encoded SSH private key. When both variables are set, the raw SSH key takes precedence. | | addons.codeserver.git.deployKeySecret | string | `""` | Existing secret containing SSH private key The chart expects it to be present under the `id_rsa` key. | | addons.codeserver.ingress.enabled | bool | `false` | Enable an ingress for the code-server add-on. | | addons.codeserver.service.enabled | bool | `true` | Enable a service for the code-server add-on. | -| addons.codeserver.volumeMounts | list | `[]` | Specify a list of volumes that get mounted in the code-server container. At least 1 volumeMount is required! | -| addons.codeserver.workingDir | string | `""` | Specify the working dir that will be opened when code-server starts If not given, the app will default to the mountpah of the first specified volumeMount | +| addons.codeserver.workingDir | string | `"/"` | Specify the working dir that will be opened when code-server starts If not given, the app will default to the mountpah of the first specified volumeMount | | addons.netshoot | object | See values.yaml | The common library supports adding a netshoot add-on to troubleshoot network issues within a Pod. It can be configured under this key. | | addons.netshoot.enabled | bool | `false` | Enable running a netshoot container in the pod | | addons.netshoot.env | object | `{}` | Set any environment variables for netshoot here | +| addons.netshoot.envList | list | `[]` | All variables specified here will be added to the netshoot sidecar container See the documentation of the netshoot image for all config values | | addons.promtail | object | See values.yaml | The common library supports adding a promtail add-on to to access logs and ship them to loki. It can be configured under this key. | -| addons.promtail.args | list | `[]` | Set promtail command line arguments | | addons.promtail.enabled | bool | `false` | Enable running a promtail container in the pod | | addons.promtail.env | object | `{}` | Set any environment variables for promtail here | +| addons.promtail.envList | list | `[]` | All variables specified here will be added to the promtail sidecar container See the documentation of the promtail image for all config values | | addons.promtail.logs | list | `[]` | The paths to logs on the volume | | addons.promtail.loki | string | `""` | The URL to Loki | -| addons.promtail.volumeMounts | list | `[]` | Specify a list of volumes that get mounted in the promtail container. At least 1 volumeMount is required! | | addons.vpn | object | See values.yaml | The common chart supports adding a VPN add-on. It can be configured under this key. For more info, check out [our docs](http://docs.k8s-at-home.com/our-helm-charts/common-library-add-ons/#wireguard-vpn) | | addons.vpn.configFile | object | `{"enabled":true,"hostPath":"/vpn/vpn.conf","hostPathType":"File","noMount":true,"type":"hostPath"}` | Provide a customized vpn configuration file to be used by the VPN. | | addons.vpn.configFile.hostPath | string | `"/vpn/vpn.conf"` | Which path on the host should be mounted. | diff --git a/docs/index.yaml b/docs/index.yaml index b56ef2761ec..47beedda5e3 100644 --- a/docs/index.yaml +++ b/docs/index.yaml @@ -18260,6 +18260,27 @@ entries: - https://github.com/truecharts/apps/releases/download/collabora-online-3.1.5/collabora-online-3.1.5.tgz version: 3.1.5 common: + - apiVersion: v2 + appVersion: latest + created: "2021-09-29T13:13:09.90298072Z" + description: Function library for TrueCharts + digest: 227be77fbdc058191d03594d71aca4939442796c649d7fb1b42e9779d86f2e4d + home: https://github.com/truecharts/apps/tree/master/charts/common + icon: https://avatars.githubusercontent.com/u/76400755 + keywords: + - truecharts + - library-chart + - common + kubeVersion: '>=1.16.0-0' + maintainers: + - email: info@truecharts.org + name: TrueCharts + url: truecharts.org + name: common + type: library + urls: + - https://github.com/truecharts/apps/releases/download/common-8.0.12/common-8.0.12.tgz + version: 8.0.12 - apiVersion: v2 appVersion: latest created: "2021-09-29T11:47:10.774758733Z" @@ -192559,4 +192580,4 @@ entries: urls: - https://github.com/truecharts/apps/releases/download/zwavejs2mqtt-3.1.5/zwavejs2mqtt-3.1.5.tgz version: 3.1.5 -generated: "2021-09-29T11:47:10.835309897Z" +generated: "2021-09-29T13:13:09.956536606Z"