Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
6f4b79ca77
commit
8505c0f0a2
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [impostor-server-4.0.27](https://github.com/truecharts/charts/compare/impostor-server-4.0.26...impostor-server-4.0.27) (2023-07-01)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#10069](https://github.com/truecharts/charts/issues/10069))
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [impostor-server-4.0.28](https://github.com/truecharts/charts/compare/impostor-server-4.0.27...impostor-server-4.0.28) (2023-07-20)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/impostor-server to v1.8.4 ([#10582](https://github.com/truecharts/charts/issues/10582))
|
||||
|
||||
|
||||
|
||||
|
||||
## [impostor-server-4.0.27](https://github.com/truecharts/charts/compare/impostor-server-4.0.26...impostor-server-4.0.27) (2023-07-01)
|
||||
|
||||
### Chore
|
||||
|
@ -88,12 +97,3 @@
|
|||
|
||||
## [impostor-server-4.0.18](https://github.com/truecharts/charts/compare/impostor-server-4.0.17...impostor-server-4.0.18) (2023-05-26)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#9156](https://github.com/truecharts/charts/issues/9156))
|
||||
|
||||
|
||||
|
||||
|
||||
## [impostor-server-4.0.17](https://github.com/truecharts/charts/compare/impostor-server-4.0.16...impostor-server-4.0.17) (2023-05-24)
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v2
|
||||
appVersion: "1.8.3"
|
||||
appVersion: "1.8.4"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
|
@ -19,7 +19,7 @@ name: impostor-server
|
|||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/impostor-server
|
||||
type: application
|
||||
version: 4.0.27
|
||||
version: 4.0.28
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- games
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [impostor-server-4.0.28](https://github.com/truecharts/charts/compare/impostor-server-4.0.27...impostor-server-4.0.28) (2023-07-20)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/impostor-server to v1.8.4 ([#10582](https://github.com/truecharts/charts/issues/10582))
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/impostor-server
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v1.8.3@sha256:4a3ca1a1a536770db84f5de10e749f558cd011787ba2fed18b90a95750500526
|
||||
tag: v1.8.4@sha256:358fe61d204be13419c8140124bb9d8bfbc8d699361a090a7de5b08b07397dbd
|
||||
nightlyImage:
|
||||
repository: tccr.io/truecharts/impostor-server-nightly
|
||||
pullPolicy: IfNotPresent
|
|
@ -604,11 +604,42 @@ questions:
|
|||
show_if: [["type", "=", "nfs"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: setPermissions
|
||||
label: Automatic Permissions
|
||||
description: Automatically set permissions on install
|
||||
- variable: autoPermissions
|
||||
label: Automatic Permissions Configuration
|
||||
description: Automatically set permissions
|
||||
schema:
|
||||
show_if: [["type", "!=", "pvc"]]
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: enabled
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: chown
|
||||
label: Run CHOWN
|
||||
description: |
|
||||
It will run CHOWN on the path with the given fsGroup
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: chmod
|
||||
label: Run CHMOD
|
||||
description: |
|
||||
It will run CHMOD on the path with the given value</br>
|
||||
Format should be 3 digits, e.g. 770
|
||||
schema:
|
||||
type: string
|
||||
valid_chars: '[0-9]{3}'
|
||||
default: ""
|
||||
- variable: recursive
|
||||
label: Recursive
|
||||
description: |
|
||||
It will run CHOWN and CHMOD recursively
|
||||
schema:
|
||||
show_if: [["type", "=", "hostPath"]]
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: readOnly
|
Loading…
Reference in New Issue