diff --git a/stable/rickroll/3.0.18/app-changelog.md b/stable/rickroll/3.0.18/app-changelog.md deleted file mode 100644 index 453e3225f7..0000000000 --- a/stable/rickroll/3.0.18/app-changelog.md +++ /dev/null @@ -1,9 +0,0 @@ - - -## [rickroll-3.0.18](https://github.com/truecharts/charts/compare/rickroll-3.0.17...rickroll-3.0.18) (2023-11-08) - -### Chore - -- update helm general non-major ([#14465](https://github.com/truecharts/charts/issues/14465)) - - \ No newline at end of file diff --git a/stable/rickroll/3.0.18/CHANGELOG.md b/stable/rickroll/3.0.19/CHANGELOG.md similarity index 87% rename from stable/rickroll/3.0.18/CHANGELOG.md rename to stable/rickroll/3.0.19/CHANGELOG.md index 1f1fa3b318..83d387cb8d 100644 --- a/stable/rickroll/3.0.18/CHANGELOG.md +++ b/stable/rickroll/3.0.19/CHANGELOG.md @@ -4,6 +4,15 @@ +## [rickroll-3.0.19](https://github.com/truecharts/charts/compare/rickroll-3.0.18...rickroll-3.0.19) (2023-11-15) + +### Chore + +- update container image tccr.io/truecharts/rickroll to vlatest ([#14664](https://github.com/truecharts/charts/issues/14664)) + + + + ## [rickroll-3.0.18](https://github.com/truecharts/charts/compare/rickroll-3.0.17...rickroll-3.0.18) (2023-11-08) ### Chore diff --git a/stable/rickroll/3.0.18/Chart.yaml b/stable/rickroll/3.0.19/Chart.yaml similarity index 97% rename from stable/rickroll/3.0.18/Chart.yaml rename to stable/rickroll/3.0.19/Chart.yaml index faf968338e..e135fa98cd 100644 --- a/stable/rickroll/3.0.18/Chart.yaml +++ b/stable/rickroll/3.0.19/Chart.yaml @@ -21,7 +21,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/rickroll - https://github.com/modem7/docker-rickroll type: application -version: 3.0.18 +version: 3.0.19 annotations: truecharts.org/category: media truecharts.org/SCALE-support: "true" diff --git a/stable/rickroll/3.0.18/README.md b/stable/rickroll/3.0.19/README.md similarity index 100% rename from stable/rickroll/3.0.18/README.md rename to stable/rickroll/3.0.19/README.md diff --git a/stable/rickroll/3.0.19/app-changelog.md b/stable/rickroll/3.0.19/app-changelog.md new file mode 100644 index 0000000000..73217f0711 --- /dev/null +++ b/stable/rickroll/3.0.19/app-changelog.md @@ -0,0 +1,9 @@ + + +## [rickroll-3.0.19](https://github.com/truecharts/charts/compare/rickroll-3.0.18...rickroll-3.0.19) (2023-11-15) + +### Chore + +- update container image tccr.io/truecharts/rickroll to vlatest ([#14664](https://github.com/truecharts/charts/issues/14664)) + + \ No newline at end of file diff --git a/stable/rickroll/3.0.18/app-readme.md b/stable/rickroll/3.0.19/app-readme.md similarity index 100% rename from stable/rickroll/3.0.18/app-readme.md rename to stable/rickroll/3.0.19/app-readme.md diff --git a/stable/rickroll/3.0.18/charts/common-14.3.5.tgz b/stable/rickroll/3.0.19/charts/common-14.3.5.tgz similarity index 100% rename from stable/rickroll/3.0.18/charts/common-14.3.5.tgz rename to stable/rickroll/3.0.19/charts/common-14.3.5.tgz diff --git a/stable/rickroll/3.0.18/ix_values.yaml b/stable/rickroll/3.0.19/ix_values.yaml similarity index 89% rename from stable/rickroll/3.0.18/ix_values.yaml rename to stable/rickroll/3.0.19/ix_values.yaml index 360ac5f877..e0fe379d8d 100644 --- a/stable/rickroll/3.0.18/ix_values.yaml +++ b/stable/rickroll/3.0.19/ix_values.yaml @@ -1,7 +1,7 @@ image: repository: tccr.io/truecharts/rickroll pullPolicy: IfNotPresent - tag: vlatest@sha256:cdfe17754b1e0cf3cb84b55ac727b8dcedb4764c6d66103558b9527672177f4c + tag: vlatest@sha256:92e3df5b7b877a60b00592a79462111f3b86620b912335b6498dad38568462e4 securityContext: container: diff --git a/stable/rickroll/3.0.18/questions.yaml b/stable/rickroll/3.0.19/questions.yaml similarity index 95% rename from stable/rickroll/3.0.18/questions.yaml rename to stable/rickroll/3.0.19/questions.yaml index 609189b272..92ba62103c 100644 --- a/stable/rickroll/3.0.18/questions.yaml +++ b/stable/rickroll/3.0.19/questions.yaml @@ -586,6 +586,99 @@ questions: show_if: [["type", "=", "pvc"]] type: string default: 256Gi + - variable: storageClass + label: 'storageClass (Advanced)' + description: 'sets the storageClass to something other than iX default. Only for advanced usecases!' + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "" + - variable: static + label: 'Static Fixed PVC Bindings (Experimental)' + description: Link a PVC to a specific storage location + schema: + show_if: [["type", "=", "pvc"]] + type: dict + additional_attrs: true + attrs: + - variable: mode + label: mode + description: | + disabled: use normal dynamic PVCs + smb: connect to an SMB share + nfs: connect to an NFS share + schema: + type: string + default: "disabled" + enum: + - value: "disabled" + description: disabled + - value: smb + description: smb + - value: nfs + description: nfs + - variable: server + label: Server + description: server to connect to + schema: + type: string + show_if: [["mode", "!=", "disabled"]] + default: "myserver" + - variable: share + label: Share + description: share to connect to + schema: + type: string + show_if: [["mode", "!=", "disabled"]] + default: "/myshare" + - variable: user + label: User + description: connecting user + schema: + type: string + show_if: [["mode", "=", "smb"]] + default: "myuser" + - variable: domain + label: Domain + description: user domain + schema: + type: string + show_if: [["mode", "=", "smb"]] + default: "" + - variable: password + label: Password + description: connecting password + schema: + type: string + show_if: [["mode", "=", "smb"]] + default: "" + - variable: volumeSnapshots + label: 'Volume Snapshots (Experimental)' + description: Add an entry to the list to force creation of a volumeSnapshot of this PVC + schema: + show_if: [["type", "=", "pvc"]] + type: list + default: [] + items: + - variable: volumeSnapshotEntry + label: Custom volumeSnapshot + schema: + additional_attrs: true + type: dict + attrs: + - variable: name + label: Name + description: 'WARNING: renaming this, means deletion of the snapshot with the old name!' + schema: + type: string + default: "mysnapshot" + required: true + - variable: volumeSnapshotClassName + label: 'volumeSnapshot Class Name (Advanced)' + description: For use with PVCs using a non-default storageClass + schema: + type: string + default: "" - variable: ingress label: "" group: Ingress @@ -628,7 +721,7 @@ questions: label: Paths schema: type: list - default: [] + default: [{path: "/", pathType: "Prefix"}] items: - variable: pathEntry label: Host diff --git a/stable/rickroll/3.0.18/templates/NOTES.txt b/stable/rickroll/3.0.19/templates/NOTES.txt similarity index 100% rename from stable/rickroll/3.0.18/templates/NOTES.txt rename to stable/rickroll/3.0.19/templates/NOTES.txt diff --git a/stable/rickroll/3.0.18/templates/common.yaml b/stable/rickroll/3.0.19/templates/common.yaml similarity index 100% rename from stable/rickroll/3.0.18/templates/common.yaml rename to stable/rickroll/3.0.19/templates/common.yaml diff --git a/stable/rickroll/3.0.18/values.yaml b/stable/rickroll/3.0.19/values.yaml similarity index 100% rename from stable/rickroll/3.0.18/values.yaml rename to stable/rickroll/3.0.19/values.yaml