diff --git a/incubator/tasmocompiler/3.0.0/app-changelog.md b/incubator/tasmocompiler/3.0.0/app-changelog.md deleted file mode 100644 index ad6f081be22..00000000000 --- a/incubator/tasmocompiler/3.0.0/app-changelog.md +++ /dev/null @@ -1,9 +0,0 @@ - - -## [tasmocompiler-3.0.0](https://github.com/truecharts/charts/compare/tasmocompiler-2.0.14...tasmocompiler-3.0.0) (2023-07-03) - -### Fix - -- fix mistakes on questions.yaml - - \ No newline at end of file diff --git a/incubator/tasmocompiler/3.0.0/CHANGELOG.md b/incubator/tasmocompiler/3.0.1/CHANGELOG.md similarity index 94% rename from incubator/tasmocompiler/3.0.0/CHANGELOG.md rename to incubator/tasmocompiler/3.0.1/CHANGELOG.md index 0191a0d52d0..81055b66351 100644 --- a/incubator/tasmocompiler/3.0.0/CHANGELOG.md +++ b/incubator/tasmocompiler/3.0.1/CHANGELOG.md @@ -4,6 +4,11 @@ +## [tasmocompiler-3.0.1](https://github.com/truecharts/charts/compare/tasmocompiler-3.0.0...tasmocompiler-3.0.1) (2023-07-04) + + + + ## [tasmocompiler-3.0.0](https://github.com/truecharts/charts/compare/tasmocompiler-2.0.14...tasmocompiler-3.0.0) (2023-07-03) ### Fix @@ -92,8 +97,3 @@ ## [tasmocompiler-2.0.6](https://github.com/truecharts/charts/compare/tasmocompiler-2.0.5...tasmocompiler-2.0.6) (2022-12-25) ### Chore - -- update helm general non-major - - - diff --git a/incubator/tasmocompiler/3.0.0/Chart.yaml b/incubator/tasmocompiler/3.0.1/Chart.yaml similarity index 98% rename from incubator/tasmocompiler/3.0.0/Chart.yaml rename to incubator/tasmocompiler/3.0.1/Chart.yaml index 163326c0b38..a7d85b7b484 100644 --- a/incubator/tasmocompiler/3.0.0/Chart.yaml +++ b/incubator/tasmocompiler/3.0.1/Chart.yaml @@ -22,7 +22,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/incubator/tasmocompiler - https://github.com/benzino77/tasmocompiler type: application -version: 3.0.0 +version: 3.0.1 annotations: truecharts.org/catagories: | - HomeAutomation diff --git a/incubator/tasmocompiler/3.0.0/README.md b/incubator/tasmocompiler/3.0.1/README.md similarity index 100% rename from incubator/tasmocompiler/3.0.0/README.md rename to incubator/tasmocompiler/3.0.1/README.md diff --git a/incubator/tasmocompiler/3.0.1/app-changelog.md b/incubator/tasmocompiler/3.0.1/app-changelog.md new file mode 100644 index 00000000000..589cf4a4f80 --- /dev/null +++ b/incubator/tasmocompiler/3.0.1/app-changelog.md @@ -0,0 +1,4 @@ + + +## [tasmocompiler-3.0.1](https://github.com/truecharts/charts/compare/tasmocompiler-3.0.0...tasmocompiler-3.0.1) (2023-07-04) + diff --git a/incubator/tasmocompiler/3.0.0/app-readme.md b/incubator/tasmocompiler/3.0.1/app-readme.md similarity index 100% rename from incubator/tasmocompiler/3.0.0/app-readme.md rename to incubator/tasmocompiler/3.0.1/app-readme.md diff --git a/incubator/tasmocompiler/3.0.0/charts/common-12.14.6.tgz b/incubator/tasmocompiler/3.0.1/charts/common-12.14.6.tgz similarity index 100% rename from incubator/tasmocompiler/3.0.0/charts/common-12.14.6.tgz rename to incubator/tasmocompiler/3.0.1/charts/common-12.14.6.tgz diff --git a/incubator/tasmocompiler/3.0.0/ix_values.yaml b/incubator/tasmocompiler/3.0.1/ix_values.yaml similarity index 100% rename from incubator/tasmocompiler/3.0.0/ix_values.yaml rename to incubator/tasmocompiler/3.0.1/ix_values.yaml diff --git a/incubator/tasmocompiler/3.0.0/questions.yaml b/incubator/tasmocompiler/3.0.1/questions.yaml similarity index 95% rename from incubator/tasmocompiler/3.0.0/questions.yaml rename to incubator/tasmocompiler/3.0.1/questions.yaml index 93b3aec2f1f..371ea15462b 100644 --- a/incubator/tasmocompiler/3.0.0/questions.yaml +++ b/incubator/tasmocompiler/3.0.1/questions.yaml @@ -503,107 +503,6 @@ questions: schema: type: int required: true - - variable: persistence - label: Integrated Persistent Storage - description: Integrated Persistent Storage - group: Storage and Persistence - schema: - additional_attrs: true - type: dict - attrs: - - variable: type - label: Type of Storage - description: Sets the persistence type, Anything other than PVC could break rollback! - schema: - type: string - default: pvc - enum: - - value: pvc - description: PVC - - value: hostPath - description: Host Path - - value: emptyDir - description: emptyDir - - value: nfs - description: NFS Share - - variable: server - label: NFS Server - schema: - show_if: [["type", "=", "nfs"]] - type: string - default: "" - - variable: path - label: Path on NFS Server - schema: - show_if: [["type", "=", "nfs"]] - type: string - default: "" - - variable: setPermissions - label: Automatic Permissions - description: Automatically set permissions on install - schema: - show_if: [["type", "=", "hostPath"]] - hidden: true - type: boolean - default: false - - variable: autoPermissions - label: Automatic Permissions Configuration - description: Automatically set permissions - schema: - show_if: [["type", "!=", "pvc"]] - type: dict - additional_attrs: true - attrs: - - 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 - schema: - type: string - default: "775" - - variable: recursive - label: Recursive - description: | - It will run CHOWN and CHMOD recursively - schema: - type: boolean - default: false - - variable: readOnly - label: Read Only - schema: - type: boolean - default: false - - variable: hostPath - label: Host Path - description: Path inside the container the storage is mounted - schema: - show_if: [["type", "=", "hostPath"]] - type: hostpath - - variable: medium - label: EmptyDir Medium - schema: - show_if: [["type", "=", "emptyDir"]] - type: string - default: "" - enum: - - value: "" - description: Default - - value: Memory - description: Memory - - variable: size - label: Size quotum of Storage (Do NOT REDUCE after installation) - description: This value can ONLY be INCREASED after the installation - schema: - show_if: [["type", "=", "pvc"]] - type: string - default: 256Gi - variable: persistenceList label: Additional App Storage group: Storage and Persistence diff --git a/incubator/tasmocompiler/3.0.0/templates/common.yaml b/incubator/tasmocompiler/3.0.1/templates/common.yaml similarity index 100% rename from incubator/tasmocompiler/3.0.0/templates/common.yaml rename to incubator/tasmocompiler/3.0.1/templates/common.yaml diff --git a/incubator/tasmocompiler/3.0.0/values.yaml b/incubator/tasmocompiler/3.0.1/values.yaml similarity index 100% rename from incubator/tasmocompiler/3.0.0/values.yaml rename to incubator/tasmocompiler/3.0.1/values.yaml