diff --git a/charts/minio/2.0.4/.helmignore b/charts/minio/2.0.5/.helmignore similarity index 100% rename from charts/minio/2.0.4/.helmignore rename to charts/minio/2.0.5/.helmignore diff --git a/charts/minio/2.0.4/CHANGELOG.md b/charts/minio/2.0.5/CHANGELOG.md similarity index 100% rename from charts/minio/2.0.4/CHANGELOG.md rename to charts/minio/2.0.5/CHANGELOG.md diff --git a/charts/minio/2.0.4/Chart.lock b/charts/minio/2.0.5/Chart.lock similarity index 100% rename from charts/minio/2.0.4/Chart.lock rename to charts/minio/2.0.5/Chart.lock diff --git a/charts/minio/2.0.4/Chart.yaml b/charts/minio/2.0.5/Chart.yaml similarity index 97% rename from charts/minio/2.0.4/Chart.yaml rename to charts/minio/2.0.5/Chart.yaml index 2e3c108a1b..a3225afe7d 100644 --- a/charts/minio/2.0.4/Chart.yaml +++ b/charts/minio/2.0.5/Chart.yaml @@ -3,7 +3,7 @@ description: High Performance, Kubernetes Native Object Storage annotations: title: MinIO type: application -version: 2.0.4 +version: 2.0.5 apiVersion: v2 appVersion: "2023-03-13" kubeVersion: ">=1.16.0-0" diff --git a/charts/minio/2.0.4/README.md b/charts/minio/2.0.5/README.md similarity index 100% rename from charts/minio/2.0.4/README.md rename to charts/minio/2.0.5/README.md diff --git a/charts/minio/2.0.4/app-readme.md b/charts/minio/2.0.5/app-readme.md similarity index 100% rename from charts/minio/2.0.4/app-readme.md rename to charts/minio/2.0.5/app-readme.md diff --git a/charts/minio/2.0.4/charts/common-1.2.9.tgz b/charts/minio/2.0.5/charts/common-1.2.9.tgz similarity index 100% rename from charts/minio/2.0.4/charts/common-1.2.9.tgz rename to charts/minio/2.0.5/charts/common-1.2.9.tgz diff --git a/charts/minio/2.0.4/ci/basic-values.yaml b/charts/minio/2.0.5/ci/basic-values.yaml similarity index 100% rename from charts/minio/2.0.4/ci/basic-values.yaml rename to charts/minio/2.0.5/ci/basic-values.yaml diff --git a/charts/minio/2.0.4/ci/https-values.yaml b/charts/minio/2.0.5/ci/https-values.yaml similarity index 100% rename from charts/minio/2.0.4/ci/https-values.yaml rename to charts/minio/2.0.5/ci/https-values.yaml diff --git a/charts/minio/2.0.4/ci/no-logsearch-values.yaml b/charts/minio/2.0.5/ci/no-logsearch-values.yaml similarity index 100% rename from charts/minio/2.0.4/ci/no-logsearch-values.yaml rename to charts/minio/2.0.5/ci/no-logsearch-values.yaml diff --git a/charts/minio/2.0.4/ix_values.yaml b/charts/minio/2.0.5/ix_values.yaml similarity index 100% rename from charts/minio/2.0.4/ix_values.yaml rename to charts/minio/2.0.5/ix_values.yaml diff --git a/charts/minio/2.0.4/migrations/migrate b/charts/minio/2.0.5/migrations/migrate similarity index 92% rename from charts/minio/2.0.4/migrations/migrate rename to charts/minio/2.0.5/migrations/migrate index f729f2eebd..a1d943686e 100755 --- a/charts/minio/2.0.4/migrations/migrate +++ b/charts/minio/2.0.5/migrations/migrate @@ -26,8 +26,11 @@ def migrate_common_lib(values): 'appVolumeMounts', 'extraAppVolumeMounts', 'postgresAppVolumeMounts', 'runAsUser', 'runAsGroup', ] - exportVol = migrate_volume(values['appVolumeMounts']['export']) - exportVol['mountPath'] = values['appVolumeMounts']['export']['mountPath'] + exportVol = {} + if not values['distributedMode']: + exportVol = migrate_volume(values['appVolumeMounts']['export']) + exportVol['mountPath'] = values['appVolumeMounts']['export']['mountPath'] + values.update({ # Migrate Config 'minioConfig': { @@ -87,7 +90,7 @@ def migrate_common_lib(values): def migrate(values): # If this missing, we have already migrated - if not 'appVolumeMounts' in values.keys(): + if not 'accessKey' in values.keys(): return values return migrate_common_lib(values) diff --git a/charts/minio/2.0.4/questions.yaml b/charts/minio/2.0.5/questions.yaml similarity index 100% rename from charts/minio/2.0.4/questions.yaml rename to charts/minio/2.0.5/questions.yaml diff --git a/charts/minio/2.0.4/templates/NOTES.txt b/charts/minio/2.0.5/templates/NOTES.txt similarity index 100% rename from charts/minio/2.0.4/templates/NOTES.txt rename to charts/minio/2.0.5/templates/NOTES.txt diff --git a/charts/minio/2.0.4/templates/_configuration.tpl b/charts/minio/2.0.5/templates/_configuration.tpl similarity index 100% rename from charts/minio/2.0.4/templates/_configuration.tpl rename to charts/minio/2.0.5/templates/_configuration.tpl diff --git a/charts/minio/2.0.4/templates/_logsearch.tpl b/charts/minio/2.0.5/templates/_logsearch.tpl similarity index 100% rename from charts/minio/2.0.4/templates/_logsearch.tpl rename to charts/minio/2.0.5/templates/_logsearch.tpl diff --git a/charts/minio/2.0.4/templates/_migration.tpl b/charts/minio/2.0.5/templates/_migration.tpl similarity index 100% rename from charts/minio/2.0.4/templates/_migration.tpl rename to charts/minio/2.0.5/templates/_migration.tpl diff --git a/charts/minio/2.0.4/templates/_minio.tpl b/charts/minio/2.0.5/templates/_minio.tpl similarity index 100% rename from charts/minio/2.0.4/templates/_minio.tpl rename to charts/minio/2.0.5/templates/_minio.tpl diff --git a/charts/minio/2.0.4/templates/_persistence.tpl b/charts/minio/2.0.5/templates/_persistence.tpl similarity index 100% rename from charts/minio/2.0.4/templates/_persistence.tpl rename to charts/minio/2.0.5/templates/_persistence.tpl diff --git a/charts/minio/2.0.4/templates/_portal.tpl b/charts/minio/2.0.5/templates/_portal.tpl similarity index 100% rename from charts/minio/2.0.4/templates/_portal.tpl rename to charts/minio/2.0.5/templates/_portal.tpl diff --git a/charts/minio/2.0.4/templates/_postgres.tpl b/charts/minio/2.0.5/templates/_postgres.tpl similarity index 100% rename from charts/minio/2.0.4/templates/_postgres.tpl rename to charts/minio/2.0.5/templates/_postgres.tpl diff --git a/charts/minio/2.0.4/templates/_service.tpl b/charts/minio/2.0.5/templates/_service.tpl similarity index 100% rename from charts/minio/2.0.4/templates/_service.tpl rename to charts/minio/2.0.5/templates/_service.tpl diff --git a/charts/minio/2.0.4/templates/common.yaml b/charts/minio/2.0.5/templates/common.yaml similarity index 100% rename from charts/minio/2.0.4/templates/common.yaml rename to charts/minio/2.0.5/templates/common.yaml diff --git a/charts/minio/2.0.4/to_keep_versions.md b/charts/minio/2.0.5/to_keep_versions.md similarity index 100% rename from charts/minio/2.0.4/to_keep_versions.md rename to charts/minio/2.0.5/to_keep_versions.md diff --git a/community/netbootxyz/1.0.4/Chart.lock b/community/netbootxyz/1.0.5/Chart.lock similarity index 100% rename from community/netbootxyz/1.0.4/Chart.lock rename to community/netbootxyz/1.0.5/Chart.lock diff --git a/community/netbootxyz/1.0.4/Chart.yaml b/community/netbootxyz/1.0.5/Chart.yaml similarity index 90% rename from community/netbootxyz/1.0.4/Chart.yaml rename to community/netbootxyz/1.0.5/Chart.yaml index 8d02b8fd54..a84c5bc0db 100644 --- a/community/netbootxyz/1.0.4/Chart.yaml +++ b/community/netbootxyz/1.0.5/Chart.yaml @@ -4,7 +4,7 @@ description: netboot.xyz lets you PXE boot various operating system installers o annotations: title: netbootxyz type: application -version: 1.0.4 +version: 1.0.5 apiVersion: v2 appVersion: 0.7.1.1 kubeVersion: '>=1.16.0-0' @@ -17,7 +17,7 @@ dependencies: repository: file://../../../common version: 1.2.9 home: https://github.com/truenas/charts/tree/master/community/netbootxyz -icon: https://media.sys.truenas.net/apps/netbootxyz/icons/icon.svg +icon: https://media.sys.truenas.net/apps/netbootxyz/icons/icon.png sources: - https://github.com/truenas/charts/tree/master/community/netbootxyz - https://github.com/netbootxyz/docker-netbootxyz diff --git a/community/netbootxyz/1.0.4/README.md b/community/netbootxyz/1.0.5/README.md similarity index 100% rename from community/netbootxyz/1.0.4/README.md rename to community/netbootxyz/1.0.5/README.md diff --git a/community/netbootxyz/1.0.4/app-readme.md b/community/netbootxyz/1.0.5/app-readme.md similarity index 100% rename from community/netbootxyz/1.0.4/app-readme.md rename to community/netbootxyz/1.0.5/app-readme.md diff --git a/community/netbootxyz/1.0.4/charts/common-1.2.9.tgz b/community/netbootxyz/1.0.5/charts/common-1.2.9.tgz similarity index 100% rename from community/netbootxyz/1.0.4/charts/common-1.2.9.tgz rename to community/netbootxyz/1.0.5/charts/common-1.2.9.tgz diff --git a/community/netbootxyz/1.0.4/ci/basic-values.yaml b/community/netbootxyz/1.0.5/ci/basic-values.yaml similarity index 100% rename from community/netbootxyz/1.0.4/ci/basic-values.yaml rename to community/netbootxyz/1.0.5/ci/basic-values.yaml diff --git a/community/netbootxyz/1.0.4/ix_values.yaml b/community/netbootxyz/1.0.5/ix_values.yaml similarity index 100% rename from community/netbootxyz/1.0.4/ix_values.yaml rename to community/netbootxyz/1.0.5/ix_values.yaml diff --git a/community/netbootxyz/1.0.4/metadata.yaml b/community/netbootxyz/1.0.5/metadata.yaml similarity index 100% rename from community/netbootxyz/1.0.4/metadata.yaml rename to community/netbootxyz/1.0.5/metadata.yaml diff --git a/community/netbootxyz/1.0.4/questions.yaml b/community/netbootxyz/1.0.5/questions.yaml similarity index 100% rename from community/netbootxyz/1.0.4/questions.yaml rename to community/netbootxyz/1.0.5/questions.yaml diff --git a/community/netbootxyz/1.0.4/templates/NOTES.txt b/community/netbootxyz/1.0.5/templates/NOTES.txt similarity index 100% rename from community/netbootxyz/1.0.4/templates/NOTES.txt rename to community/netbootxyz/1.0.5/templates/NOTES.txt diff --git a/community/netbootxyz/1.0.4/templates/_netboot.tpl b/community/netbootxyz/1.0.5/templates/_netboot.tpl similarity index 100% rename from community/netbootxyz/1.0.4/templates/_netboot.tpl rename to community/netbootxyz/1.0.5/templates/_netboot.tpl diff --git a/community/netbootxyz/1.0.4/templates/_persistence.tpl b/community/netbootxyz/1.0.5/templates/_persistence.tpl similarity index 100% rename from community/netbootxyz/1.0.4/templates/_persistence.tpl rename to community/netbootxyz/1.0.5/templates/_persistence.tpl diff --git a/community/netbootxyz/1.0.4/templates/_portal.tpl b/community/netbootxyz/1.0.5/templates/_portal.tpl similarity index 100% rename from community/netbootxyz/1.0.4/templates/_portal.tpl rename to community/netbootxyz/1.0.5/templates/_portal.tpl diff --git a/community/netbootxyz/1.0.4/templates/_service.tpl b/community/netbootxyz/1.0.5/templates/_service.tpl similarity index 100% rename from community/netbootxyz/1.0.4/templates/_service.tpl rename to community/netbootxyz/1.0.5/templates/_service.tpl diff --git a/community/netbootxyz/1.0.4/templates/common.yaml b/community/netbootxyz/1.0.5/templates/common.yaml similarity index 100% rename from community/netbootxyz/1.0.4/templates/common.yaml rename to community/netbootxyz/1.0.5/templates/common.yaml diff --git a/community/netbootxyz/item.yaml b/community/netbootxyz/item.yaml index 6a79cdd5ad..0ef8ffeeb9 100644 --- a/community/netbootxyz/item.yaml +++ b/community/netbootxyz/item.yaml @@ -1,4 +1,4 @@ -icon_url: https://media.sys.truenas.net/apps/netbootxyz/icons/icon.svg +icon_url: https://media.sys.truenas.net/apps/netbootxyz/icons/icon.png categories: - network screenshots: diff --git a/community/unifi-protect-backup/1.2.7/Chart.lock b/community/unifi-protect-backup/1.2.8/Chart.lock similarity index 100% rename from community/unifi-protect-backup/1.2.7/Chart.lock rename to community/unifi-protect-backup/1.2.8/Chart.lock diff --git a/community/unifi-protect-backup/1.2.7/Chart.yaml b/community/unifi-protect-backup/1.2.8/Chart.yaml similarity index 96% rename from community/unifi-protect-backup/1.2.7/Chart.yaml rename to community/unifi-protect-backup/1.2.8/Chart.yaml index 024605a821..a0c7705498 100644 --- a/community/unifi-protect-backup/1.2.7/Chart.yaml +++ b/community/unifi-protect-backup/1.2.8/Chart.yaml @@ -4,7 +4,7 @@ description: Unifi Protect Backup is a python based tool for backing up UniFi Pr annotations: title: Unifi Protect Backup type: application -version: 1.2.7 +version: 1.2.8 apiVersion: v2 appVersion: 0.10.7 kubeVersion: '>=1.16.0-0' @@ -17,7 +17,7 @@ dependencies: repository: file://../../../common version: 1.2.9 home: https://github.com/ep1cman/unifi-protect-backup -icon: https://media.sys.truenas.net/apps/unifi-protect-backup/icons/icon.png +icon: https://media.sys.truenas.net/apps/unifi-protect-backup/icons/icon.svg sources: - https://github.com/ep1cman/unifi-protect-backup - https://github.com/truenas/charts/tree/master/community/unifi-protect-backup diff --git a/community/unifi-protect-backup/1.2.7/README.md b/community/unifi-protect-backup/1.2.8/README.md similarity index 100% rename from community/unifi-protect-backup/1.2.7/README.md rename to community/unifi-protect-backup/1.2.8/README.md diff --git a/community/unifi-protect-backup/1.2.7/app-readme.md b/community/unifi-protect-backup/1.2.8/app-readme.md similarity index 100% rename from community/unifi-protect-backup/1.2.7/app-readme.md rename to community/unifi-protect-backup/1.2.8/app-readme.md diff --git a/community/unifi-protect-backup/1.2.7/charts/common-1.2.9.tgz b/community/unifi-protect-backup/1.2.8/charts/common-1.2.9.tgz similarity index 100% rename from community/unifi-protect-backup/1.2.7/charts/common-1.2.9.tgz rename to community/unifi-protect-backup/1.2.8/charts/common-1.2.9.tgz diff --git a/community/unifi-protect-backup/1.2.7/ci/basic-values.yaml b/community/unifi-protect-backup/1.2.8/ci/basic-values.yaml similarity index 100% rename from community/unifi-protect-backup/1.2.7/ci/basic-values.yaml rename to community/unifi-protect-backup/1.2.8/ci/basic-values.yaml diff --git a/community/unifi-protect-backup/1.2.7/ci/extra-values.yaml b/community/unifi-protect-backup/1.2.8/ci/extra-values.yaml similarity index 100% rename from community/unifi-protect-backup/1.2.7/ci/extra-values.yaml rename to community/unifi-protect-backup/1.2.8/ci/extra-values.yaml diff --git a/community/unifi-protect-backup/1.2.7/ix_values.yaml b/community/unifi-protect-backup/1.2.8/ix_values.yaml similarity index 100% rename from community/unifi-protect-backup/1.2.7/ix_values.yaml rename to community/unifi-protect-backup/1.2.8/ix_values.yaml diff --git a/community/unifi-protect-backup/1.2.7/metadata.yaml b/community/unifi-protect-backup/1.2.8/metadata.yaml similarity index 100% rename from community/unifi-protect-backup/1.2.7/metadata.yaml rename to community/unifi-protect-backup/1.2.8/metadata.yaml diff --git a/community/unifi-protect-backup/1.2.7/migrations/migrate b/community/unifi-protect-backup/1.2.8/migrations/migrate similarity index 100% rename from community/unifi-protect-backup/1.2.7/migrations/migrate rename to community/unifi-protect-backup/1.2.8/migrations/migrate diff --git a/community/unifi-protect-backup/1.2.7/questions.yaml b/community/unifi-protect-backup/1.2.8/questions.yaml similarity index 100% rename from community/unifi-protect-backup/1.2.7/questions.yaml rename to community/unifi-protect-backup/1.2.8/questions.yaml diff --git a/community/unifi-protect-backup/1.2.7/templates/NOTES.txt b/community/unifi-protect-backup/1.2.8/templates/NOTES.txt similarity index 100% rename from community/unifi-protect-backup/1.2.7/templates/NOTES.txt rename to community/unifi-protect-backup/1.2.8/templates/NOTES.txt diff --git a/community/unifi-protect-backup/1.2.7/templates/_configuration.tpl b/community/unifi-protect-backup/1.2.8/templates/_configuration.tpl similarity index 100% rename from community/unifi-protect-backup/1.2.7/templates/_configuration.tpl rename to community/unifi-protect-backup/1.2.8/templates/_configuration.tpl diff --git a/community/unifi-protect-backup/1.2.7/templates/_persistence.tpl b/community/unifi-protect-backup/1.2.8/templates/_persistence.tpl similarity index 100% rename from community/unifi-protect-backup/1.2.7/templates/_persistence.tpl rename to community/unifi-protect-backup/1.2.8/templates/_persistence.tpl diff --git a/community/unifi-protect-backup/1.2.7/templates/_unifi-protect-backup.tpl b/community/unifi-protect-backup/1.2.8/templates/_unifi-protect-backup.tpl similarity index 100% rename from community/unifi-protect-backup/1.2.7/templates/_unifi-protect-backup.tpl rename to community/unifi-protect-backup/1.2.8/templates/_unifi-protect-backup.tpl diff --git a/community/unifi-protect-backup/1.2.7/templates/_validation.tpl b/community/unifi-protect-backup/1.2.8/templates/_validation.tpl similarity index 100% rename from community/unifi-protect-backup/1.2.7/templates/_validation.tpl rename to community/unifi-protect-backup/1.2.8/templates/_validation.tpl diff --git a/community/unifi-protect-backup/1.2.7/templates/common.yaml b/community/unifi-protect-backup/1.2.8/templates/common.yaml similarity index 100% rename from community/unifi-protect-backup/1.2.7/templates/common.yaml rename to community/unifi-protect-backup/1.2.8/templates/common.yaml diff --git a/community/unifi-protect-backup/item.yaml b/community/unifi-protect-backup/item.yaml index 1ea380e43a..87f36b44d9 100644 --- a/community/unifi-protect-backup/item.yaml +++ b/community/unifi-protect-backup/item.yaml @@ -1,4 +1,4 @@ -icon_url: https://media.sys.truenas.net/apps/unifi-protect-backup/icons/icon.png +icon_url: https://media.sys.truenas.net/apps/unifi-protect-backup/icons/icon.svg categories: - storage screenshots: []