diff --git a/charts/incubator/testrc2/CHANGELOG.md b/charts/incubator/testrc2/CHANGELOG.md index a0904c2e574..19f97f193e6 100644 --- a/charts/incubator/testrc2/CHANGELOG.md +++ b/charts/incubator/testrc2/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [testrc2-0.0.3](https://github.com/truecharts/apps/compare/testrc2-0.0.2...testrc2-0.0.3) (2021-11-06) + +#### Chore + +* add additional aliasses for simple hostpath persistence ([#1287](https://github.com/truecharts/apps/issues/1287)) + + + ### [testrc2-0.0.2](https://github.com/truecharts/apps/compare/testrc2-0.0.1...testrc2-0.0.2) (2021-11-06) diff --git a/charts/library/common/CHANGELOG.md b/charts/library/common/CHANGELOG.md index f7ce8cd5b31..2aa96cb8bcd 100644 --- a/charts/library/common/CHANGELOG.md +++ b/charts/library/common/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [common-8.5.1](https://github.com/truecharts/apps/compare/common-8.5.0...common-8.5.1) (2021-11-06) + +#### Chore + +* add additional aliasses for simple hostpath persistence ([#1287](https://github.com/truecharts/apps/issues/1287)) + + + ### [common-8.5.0](https://github.com/truecharts/apps/compare/common-8.4.0...common-8.5.0) (2021-11-06) diff --git a/charts/library/common/helm-values.md b/charts/library/common/helm-values.md index 4bb9fe391c8..c53ff614d68 100644 --- a/charts/library/common/helm-values.md +++ b/charts/library/common/helm-values.md @@ -132,8 +132,15 @@ This chart is used by a lot of our Apps to provide sane defaults and logic. | persistence.host-dev | object | See below | Example of a hostPath mount [[ref]]https://kubernetes.io/docs/concepts/storage/volumes/#hostpath) | | persistence.host-dev.hostPath | string | `"/dev"` | Which path on the host should be mounted. | | persistence.host-dev.hostPathType | string | `""` | Specifying a hostPathType adds a check before trying to mount the path. See Kubernetes documentation for options. | -| persistence.host-dev.mountPath | string | `nil` | Where to mount the path in the main container. Defaults to the value of `hostPath` | +| persistence.host-dev.mountPath | string | `""` | Where to mount the path in the main container. Defaults to the value of `hostPath` | | persistence.host-dev.readOnly | bool | `true` | Specify if the path should be mounted read-only. | +| persistence.host-dev.setPermissions | bool | `false` | Automatic set permissions using chown and chmod | +| persistence.host-simple-dev | object | See below | Example of a Simple hostPath mount [[ref]]https://kubernetes.io/docs/concepts/storage/volumes/#hostpath) | +| persistence.host-simple-dev.hostPathSimple | string | `"/dev"` | Which path on the host should be mounted. | +| persistence.host-simple-dev.hostPathType | string | `""` | Specifying a hostPathType adds a check before trying to mount the path. See Kubernetes documentation for options. | +| persistence.host-simple-dev.mountPath | string | `""` | Where to mount the path in the main container. Defaults to the value of `hostPath` | +| persistence.host-simple-dev.readOnly | bool | `true` | Specify if the path should be mounted read-only. | +| persistence.host-simple-dev.setPermissionsSimple | bool | `false` | Automatic set permissions using chown and chmod | | persistence.shared | object | See below | Create an emptyDir volume to share between all containers [[ref]]https://kubernetes.io/docs/concepts/storage/volumes/#emptydir) | | persistence.shared.medium | string | `nil` | Set the medium to "Memory" to mount a tmpfs (RAM-backed filesystem) instead of the storage medium that backs the node. | | persistence.shared.sizeLimit | string | `nil` | If the `SizeMemoryBackedVolumes` feature gate is enabled, you can specify a size for memory backed volumes. | diff --git a/docs/apps/common/helm-values.md b/docs/apps/common/helm-values.md index 4bb9fe391c8..c53ff614d68 100644 --- a/docs/apps/common/helm-values.md +++ b/docs/apps/common/helm-values.md @@ -132,8 +132,15 @@ This chart is used by a lot of our Apps to provide sane defaults and logic. | persistence.host-dev | object | See below | Example of a hostPath mount [[ref]]https://kubernetes.io/docs/concepts/storage/volumes/#hostpath) | | persistence.host-dev.hostPath | string | `"/dev"` | Which path on the host should be mounted. | | persistence.host-dev.hostPathType | string | `""` | Specifying a hostPathType adds a check before trying to mount the path. See Kubernetes documentation for options. | -| persistence.host-dev.mountPath | string | `nil` | Where to mount the path in the main container. Defaults to the value of `hostPath` | +| persistence.host-dev.mountPath | string | `""` | Where to mount the path in the main container. Defaults to the value of `hostPath` | | persistence.host-dev.readOnly | bool | `true` | Specify if the path should be mounted read-only. | +| persistence.host-dev.setPermissions | bool | `false` | Automatic set permissions using chown and chmod | +| persistence.host-simple-dev | object | See below | Example of a Simple hostPath mount [[ref]]https://kubernetes.io/docs/concepts/storage/volumes/#hostpath) | +| persistence.host-simple-dev.hostPathSimple | string | `"/dev"` | Which path on the host should be mounted. | +| persistence.host-simple-dev.hostPathType | string | `""` | Specifying a hostPathType adds a check before trying to mount the path. See Kubernetes documentation for options. | +| persistence.host-simple-dev.mountPath | string | `""` | Where to mount the path in the main container. Defaults to the value of `hostPath` | +| persistence.host-simple-dev.readOnly | bool | `true` | Specify if the path should be mounted read-only. | +| persistence.host-simple-dev.setPermissionsSimple | bool | `false` | Automatic set permissions using chown and chmod | | persistence.shared | object | See below | Create an emptyDir volume to share between all containers [[ref]]https://kubernetes.io/docs/concepts/storage/volumes/#emptydir) | | persistence.shared.medium | string | `nil` | Set the medium to "Memory" to mount a tmpfs (RAM-backed filesystem) instead of the storage medium that backs the node. | | persistence.shared.sizeLimit | string | `nil` | If the `SizeMemoryBackedVolumes` feature gate is enabled, you can specify a size for memory backed volumes. | diff --git a/docs/apps/incubator/testrc2/CHANGELOG.md b/docs/apps/incubator/testrc2/CHANGELOG.md index a0904c2e574..19f97f193e6 100644 --- a/docs/apps/incubator/testrc2/CHANGELOG.md +++ b/docs/apps/incubator/testrc2/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [testrc2-0.0.3](https://github.com/truecharts/apps/compare/testrc2-0.0.2...testrc2-0.0.3) (2021-11-06) + +#### Chore + +* add additional aliasses for simple hostpath persistence ([#1287](https://github.com/truecharts/apps/issues/1287)) + + + ### [testrc2-0.0.2](https://github.com/truecharts/apps/compare/testrc2-0.0.1...testrc2-0.0.2) (2021-11-06) diff --git a/docs/index.yaml b/docs/index.yaml index da4b48daab2..98089b66dec 100644 --- a/docs/index.yaml +++ b/docs/index.yaml @@ -23334,6 +23334,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-11-06T18:01:12.128415667Z" + description: Function library for TrueCharts + digest: f04db3e40cb3f019cb8ad8cc7f37305cedcf313975a8d8534c9cc2f568563312 + 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.5.1/common-8.5.1.tgz + version: 8.5.1 - apiVersion: v2 appVersion: latest created: "2021-11-06T15:43:51.251846933Z" @@ -209769,6 +209790,39 @@ entries: - https://github.com/truecharts/apps/releases/download/testbed-6.11.21/testbed-6.11.21.tgz version: 6.11.21 testrc2: + - annotations: + truecharts.org/SCALE-support: "true" + truecharts.org/catagories: | + - media + - test + truecharts.org/grade: U + apiVersion: v2 + appVersion: 0.19.124 + created: "2021-11-06T18:01:12.261299883Z" + dependencies: + - name: common + repository: https://truecharts.org + version: 8.5.0 + description: API Support for your favorite torrent trackers. + digest: 4782468cf4f0c622eadb376a054fe008efffdcc979b6e63f3f387e70113df16e + home: https://github.com/truecharts/apps/tree/master/charts/stable/jackett + icon: https://truecharts.org/_static/img/jackett-icon.png + keywords: + - jackett + - torrent + - usenet + kubeVersion: '>=1.16.0-0' + maintainers: + - email: info@truecharts.org + name: TrueCharts + url: truecharts.org + name: testrc2 + sources: + - https://github.com/Jackett/Jackett + type: application + urls: + - https://github.com/truecharts/apps/releases/download/testrc2-0.0.3/testrc2-0.0.3.tgz + version: 0.0.3 - annotations: truecharts.org/SCALE-support: "true" truecharts.org/catagories: | @@ -242056,4 +242110,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-11-06T16:32:35.639725161Z" +generated: "2021-11-06T18:01:12.340114693Z"