diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b93aab6c..857fdb9f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,6 @@ jobs: # install kubectl curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.31.0/bin/linux/amd64/kubectl chmod +x ./kubectl - sudo mv ./kubectl /usr/local/bin/kubectl - name: Run checks run: | diff --git a/.github/workflows/cve-report.yml b/.github/workflows/cve-report.yml index 4bce84393..5481d5dcb 100644 --- a/.github/workflows/cve-report.yml +++ b/.github/workflows/cve-report.yml @@ -37,11 +37,8 @@ jobs: - name: Install image packer run: | - cd /tmp - curl -fsSL -O https://github.com/kmodules/image-packer/releases/latest/download/image-packer-linux-amd64.tar.gz - tar -xvf image-packer-linux-amd64.tar.gz - chmod +x image-packer-linux-amd64 - sudo mv image-packer-linux-amd64 /usr/local/bin/image-packer + make install-image-packer + echo "$(pwd)/bin/linux_amd64" >> "$GITHUB_PATH" - name: Generate report run: | diff --git a/.github/workflows/publish-oci.yml b/.github/workflows/publish-oci.yml index 2853d39f3..24948ce86 100644 --- a/.github/workflows/publish-oci.yml +++ b/.github/workflows/publish-oci.yml @@ -59,5 +59,5 @@ jobs: CHART_REPOSITORY: ${{ secrets.CHART_REPOSITORY }} run: | export REGISTRY_0=oci://ghcr.io/appscode-charts - ./hack/scripts/update-chart-dependencies.sh + make update-chart-dependencies $RUNNER_WORKSPACE/$(basename $CHART_REPOSITORY)/hack/scripts/publish-oci-charts.sh $(pwd) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bf7359b47..6e8bdd4cb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,7 +53,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.LGTM_GITHUB_TOKEN }} CHART_REPOSITORY: ${{ secrets.CHART_REPOSITORY }} run: | - ./hack/scripts/update-chart-dependencies.sh + make update-chart-dependencies cd $RUNNER_WORKSPACE/$(basename $CHART_REPOSITORY) GIT_TAG=${GITHUB_REF#"refs/tags/"} if [[ $GIT_TAG =~ "-alpha." ]] || [[ $GIT_TAG =~ "-beta." ]]; then diff --git a/Makefile b/Makefile index e212fdb81..afc359fbc 100644 --- a/Makefile +++ b/Makefile @@ -227,6 +227,50 @@ manifests: gen-crds gen-schema patch-schema gen-chart-doc .PHONY: gen gen: codegen manifests +BIN_DIR ?= $(CURDIR)/bin/$(OS)_$(ARCH) + +.PHONY: install-image-packer +install-image-packer: + @mkdir -p $(BIN_DIR) + curl -fsSL -o $(BIN_DIR)/image-packer.tar.gz https://github.com/kmodules/image-packer/releases/latest/download/image-packer-$(OS)-$(ARCH).tar.gz + tar -xzf $(BIN_DIR)/image-packer.tar.gz -C $(BIN_DIR) + chmod +x $(BIN_DIR)/image-packer-$(OS)-$(ARCH) + mv $(BIN_DIR)/image-packer-$(OS)-$(ARCH) $(BIN_DIR)/image-packer + rm -f $(BIN_DIR)/image-packer.tar.gz + +.PHONY: install-chart-packer +install-chart-packer: + @mkdir -p $(BIN_DIR) + curl -fsSL -o $(BIN_DIR)/chart-packer.tar.gz https://github.com/kmodules/chart-packer/releases/latest/download/chart-packer-$(OS)-$(ARCH).tar.gz + tar -xzf $(BIN_DIR)/chart-packer.tar.gz -C $(BIN_DIR) + chmod +x $(BIN_DIR)/chart-packer-$(OS)-$(ARCH) + mv $(BIN_DIR)/chart-packer-$(OS)-$(ARCH) $(BIN_DIR)/chart-packer + rm -f $(BIN_DIR)/chart-packer.tar.gz + +.PHONY: update-chart-dependencies +update-chart-dependencies: + ./hack/scripts/update-chart-dependencies.sh + +.PHONY: update-certified-charts +update-certified-charts: update-chart-dependencies install-chart-packer + rm -rf charts/ace-installer-certified charts/ace-installer-certified-crds + PATH="$(BIN_DIR):$$PATH" chart-packer crd-less --input charts/ace-installer --output charts + PATH="$(BIN_DIR):$$PATH" chart-packer crd-only --input charts/ace-installer --output charts + @$(MAKE) gen-chart-doc --no-print-directory + helm dependency update charts/ace-installer-certified + @# Revert Chart.lock if the only change is the `generated:` timestamp line + @if ! git diff --quiet -- charts/ace-installer-certified/Chart.lock; then \ + changed=$$(git diff -U0 -- charts/ace-installer-certified/Chart.lock | grep -E '^[+-]' | grep -vE '^(\+\+\+|---)' | grep -vE '^[+-]generated:'); \ + if [ -z "$$changed" ]; then \ + echo "Reverting charts/ace-installer-certified/Chart.lock (only generated: timestamp changed)"; \ + git checkout -- charts/ace-installer-certified/Chart.lock; \ + fi; \ + fi + +.PHONY: update-catalog +update-catalog: update-certified-charts install-image-packer + PATH="$(BIN_DIR):$$PATH" ./hack/scripts/update-catalog.sh + CHART_REGISTRY ?= appscode CHART_REGISTRY_URL ?= https://charts.appscode.com/stable/ CHART_VERSION ?= @@ -398,7 +442,7 @@ $(BUILD_DIRS): dev: gen fmt .PHONY: verify -verify: verify-gen verify-modules +verify: verify-gen verify-modules verify-catalog .PHONY: verify-modules verify-modules: @@ -414,6 +458,12 @@ verify-gen: gen fmt echo "generated files are out of date, run make gen"; exit 1; \ fi +.PHONY: verify-catalog +verify-catalog: update-catalog + @if !(git diff --exit-code HEAD); then \ + echo "catalog image lists are out of date, run ./hack/scripts/update-catalog.sh"; exit 1; \ + fi + .PHONY: add-license add-license: @echo "Adding license header" diff --git a/catalog/copy-images.sh b/catalog/copy-images.sh index 14e0b519b..a7acba03f 100755 --- a/catalog/copy-images.sh +++ b/catalog/copy-images.sh @@ -39,29 +39,6 @@ $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ac $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ace:v2026.6.19 $IMAGE_REGISTRY/appscode-charts/ace:v2026.6.19 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/aceshifter:v2026.6.19 $IMAGE_REGISTRY/appscode-charts/aceshifter:v2026.6.19 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/appscode-otel-stack:v2026.6.2 $IMAGE_REGISTRY/appscode-charts/appscode-otel-stack:v2026.6.2 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-cassandraautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-cassandraautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-clickhouseautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-clickhouseautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-druidautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-druidautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-elasticsearchautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-elasticsearchautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-etcdautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-etcdautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-ferretdbautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-ferretdbautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-kafkaautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-kafkaautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mariadbautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mariadbautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-memcachedautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-memcachedautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mongodbautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mongodbautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mssqlserverautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mssqlserverautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mysqlautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mysqlautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-perconaxtradbautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-perconaxtradbautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-pgbouncerautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-pgbouncerautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-pgpoolautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-pgpoolautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-postgresautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-postgresautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-proxysqlautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-proxysqlautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-rabbitmqautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-rabbitmqautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-redisautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-redisautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-redissentinelautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-redissentinelautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-singlestoreautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-singlestoreautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-solrautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-solrautoscaler-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-zookeeperautoscaler-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-zookeeperautoscaler-editor:v0.29.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/aws-credential-manager:v2026.1.20 $IMAGE_REGISTRY/appscode-charts/aws-credential-manager:v2026.1.20 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/aws-ebs-csi-driver:2.23.0 $IMAGE_REGISTRY/appscode-charts/aws-ebs-csi-driver:2.23.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/aws-load-balancer-controller:1.11.0 $IMAGE_REGISTRY/appscode-charts/aws-load-balancer-controller:1.11.0 @@ -72,29 +49,15 @@ $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ca $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/catalog-manager:v2026.6.19 $IMAGE_REGISTRY/appscode-charts/catalog-manager:v2026.6.19 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cert-manager-csi-driver-cacerts:v2026.1.15 $IMAGE_REGISTRY/appscode-charts/cert-manager-csi-driver-cacerts:v2026.1.15 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cert-manager:v1.19.3 $IMAGE_REGISTRY/appscode-charts/cert-manager:v1.19.3 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/chartsxhelmdev-chartpreset-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/chartsxhelmdev-chartpreset-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/chartsxhelmdev-clusterchartpreset-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/chartsxhelmdev-clusterchartpreset-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/chartsxhelmdev-clusterchartpreset-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/chartsxhelmdev-clusterchartpreset-editor:v0.29.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-auth-manager:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/cluster-auth-manager:v2026.2.16 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-autoscaler:9.29.0 $IMAGE_REGISTRY/appscode-charts/cluster-autoscaler:9.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-gateway-manager:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/cluster-gateway-manager:v2026.2.16 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-gateway-manager:v2026.6.26 $IMAGE_REGISTRY/appscode-charts/cluster-gateway-manager:v2026.6.26 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-manager-hub:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/cluster-manager-hub:v2026.2.16 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-manager-spoke:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/cluster-manager-spoke:v2026.2.16 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-presets:v2026.6.19 $IMAGE_REGISTRY/appscode-charts/cluster-presets:v2026.6.19 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-profile-manager:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/cluster-profile-manager:v2026.2.16 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-proxy-manager:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/cluster-proxy-manager:v2026.2.16 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-profile-manager:v2026.6.26 $IMAGE_REGISTRY/appscode-charts/cluster-profile-manager:v2026.6.26 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-proxy-manager:v2026.6.26 $IMAGE_REGISTRY/appscode-charts/cluster-proxy-manager:v2026.6.26 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/config-syncer:v0.15.4 $IMAGE_REGISTRY/appscode-charts/config-syncer:v0.15.4 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupbatch-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupbatch-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupblueprint-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupblueprint-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupconfiguration-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupconfiguration-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupconfiguration-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupconfiguration-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupsession-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupsession-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupsession-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupsession-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupverificationsession-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupverificationsession-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupverifier-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupverifier-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-hooktemplate-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-hooktemplate-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-restoresession-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-restoresession-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-restoresession-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-restoresession-editor:v0.29.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/crossplane:1.14.0 $IMAGE_REGISTRY/appscode-charts/crossplane:1.14.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/csi-driver-nfs:v4.7.0 $IMAGE_REGISTRY/appscode-charts/csi-driver-nfs:v4.7.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/csi-secrets-store-provider-azure:1.5.2 $IMAGE_REGISTRY/appscode-charts/csi-secrets-store-provider-azure:1.5.2 @@ -125,56 +88,6 @@ $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ku $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedb-provider-gcp:v2024.1.31 $IMAGE_REGISTRY/appscode-charts/kubedb-provider-gcp:v2024.1.31 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedb-ui-presets:v2026.6.19 $IMAGE_REGISTRY/appscode-charts/kubedb-ui-presets:v2026.6.19 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedb:v2026.6.19 $IMAGE_REGISTRY/appscode-charts/kubedb:v2026.6.19 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-cassandra-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-cassandra-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-cassandra-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-cassandra-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-clickhouse-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-clickhouse-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-clickhouse-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-clickhouse-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-druid-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-druid-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-druid-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-druid-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-elasticsearch-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-elasticsearch-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-elasticsearch-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-elasticsearch-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-etcd-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-etcd-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ferretdb-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-ferretdb-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ferretdb-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-ferretdb-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-hazelcast-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-hazelcast-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-hazelcast-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-hazelcast-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ignite-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-ignite-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ignite-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-ignite-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-kafka-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-kafka-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-kafka-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-kafka-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mariadb-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mariadb-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mariadb-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mariadb-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-memcached-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-memcached-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-memcached-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-memcached-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mongodb-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mongodb-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mongodb-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mongodb-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mssqlserver-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mssqlserver-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mssqlserver-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mssqlserver-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mysql-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mysql-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mysql-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mysql-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-oracle-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-oracle-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-oracle-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-oracle-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-perconaxtradb-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-perconaxtradb-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-perconaxtradb-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-perconaxtradb-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgbouncer-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgbouncer-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgbouncer-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgbouncer-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgpool-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgpool-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgpool-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgpool-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-postgres-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-postgres-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-postgres-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-postgres-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-proxysql-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-proxysql-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-proxysql-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-proxysql-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-rabbitmq-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-rabbitmq-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-rabbitmq-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-rabbitmq-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-redis-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-redis-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-redis-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-redis-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-redissentinel-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-redissentinel-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-singlestore-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-singlestore-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-singlestore-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-singlestore-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-solr-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-solr-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-solr-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-solr-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-zookeeper-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-zookeeper-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-zookeeper-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-zookeeper-editor:v0.29.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubestash:v2026.6.19 $IMAGE_REGISTRY/appscode-charts/kubestash:v2026.6.19 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubevault-opscenter:v2026.2.27 $IMAGE_REGISTRY/appscode-charts/kubevault-opscenter:v2026.2.27 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubevault:v2026.2.27 $IMAGE_REGISTRY/appscode-charts/kubevault:v2026.2.27 @@ -190,32 +103,6 @@ $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/op $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opencost:1.18.1 $IMAGE_REGISTRY/appscode-charts/opencost:1.18.1 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/operator-shard-manager:v2026.6.22 $IMAGE_REGISTRY/appscode-charts/operator-shard-manager:v2026.6.22 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opscenter-features:v2026.6.19 $IMAGE_REGISTRY/appscode-charts/opscenter-features:v2026.6.19 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-cassandraopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-cassandraopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-clickhouseopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-clickhouseopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-druidopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-druidopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-elasticsearchopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-elasticsearchopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-etcdopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-etcdopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-ferretdbopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-ferretdbopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-hazelcastopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-hazelcastopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-igniteopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-igniteopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-kafkaopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-kafkaopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mariadbopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mariadbopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-memcachedopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-memcachedopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mongodbopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mongodbopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mssqlserveropsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mssqlserveropsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mysqlopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mysqlopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-oracleopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-oracleopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-perconaxtradbopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-perconaxtradbopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-pgbounceropsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-pgbounceropsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-pgpoolopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-pgpoolopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-postgresopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-postgresopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-proxysqlopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-proxysqlopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-rabbitmqopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-rabbitmqopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-redisopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-redisopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-redissentinelopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-redissentinelopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-singlestoreopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-singlestoreopsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-solropsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-solropsrequest-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-zookeeperopsrequest-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-zookeeperopsrequest-editor:v0.29.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/panopticon:v2026.6.22 $IMAGE_REGISTRY/appscode-charts/panopticon:v2026.6.22 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/prepare-cluster:v2023.12.21 $IMAGE_REGISTRY/appscode-charts/prepare-cluster:v2023.12.21 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/prom-label-proxy:v2026.6.2 $IMAGE_REGISTRY/appscode-charts/prom-label-proxy:v2026.6.2 @@ -236,12 +123,7 @@ $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/sn $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/stash-opscenter:v2025.7.31 $IMAGE_REGISTRY/appscode-charts/stash-opscenter:v2025.7.31 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/stash-presets:v2026.6.19 $IMAGE_REGISTRY/appscode-charts/stash-presets:v2026.6.19 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/stash:v2025.7.31 $IMAGE_REGISTRY/appscode-charts/stash:v2025.7.31 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-backupstorage-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-backupstorage-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-backupstorage-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-backupstorage-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-repository-editor-options:v0.29.0 $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-repository-editor-options:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-repository-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-repository-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-retentionpolicy-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-retentionpolicy-editor:v0.29.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-snapshot-editor:v0.29.0 $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-snapshot-editor:v0.29.0 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storage-metrics-server:v0.1.0 $IMAGE_REGISTRY/appscode-charts/storage-metrics-server:v0.1.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/supervisor:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/supervisor:v2026.2.16 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/tenant-operator:v2026.6.2 $IMAGE_REGISTRY/appscode-charts/tenant-operator:v2026.6.2 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/thanos-operator:v2026.6.2 $IMAGE_REGISTRY/appscode-charts/thanos-operator:v2026.6.2 diff --git a/catalog/editor-charts.yaml b/catalog/editor-charts.yaml index 39eb63a6a..fe51488c7 100644 --- a/catalog/editor-charts.yaml +++ b/catalog/editor-charts.yaml @@ -1,119 +1 @@ -- ghcr.io/appscode-charts/autoscalingkubedbcom-cassandraautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-clickhouseautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-druidautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-elasticsearchautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-etcdautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-ferretdbautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-kafkaautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-mariadbautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-memcachedautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-mongodbautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-mssqlserverautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-mysqlautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-perconaxtradbautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-pgbouncerautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-pgpoolautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-postgresautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-proxysqlautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-rabbitmqautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-redisautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-redissentinelautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-singlestoreautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-solrautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-zookeeperautoscaler-editor:v0.29.0 -- ghcr.io/appscode-charts/chartsxhelmdev-chartpreset-editor:v0.29.0 -- ghcr.io/appscode-charts/chartsxhelmdev-clusterchartpreset-editor-options:v0.29.0 -- ghcr.io/appscode-charts/chartsxhelmdev-clusterchartpreset-editor:v0.29.0 -- ghcr.io/appscode-charts/corekubestashcom-backupbatch-editor:v0.29.0 -- ghcr.io/appscode-charts/corekubestashcom-backupblueprint-editor:v0.29.0 -- ghcr.io/appscode-charts/corekubestashcom-backupconfiguration-editor-options:v0.29.0 -- ghcr.io/appscode-charts/corekubestashcom-backupconfiguration-editor:v0.29.0 -- ghcr.io/appscode-charts/corekubestashcom-backupsession-editor-options:v0.29.0 -- ghcr.io/appscode-charts/corekubestashcom-backupsession-editor:v0.29.0 -- ghcr.io/appscode-charts/corekubestashcom-backupverificationsession-editor:v0.29.0 -- ghcr.io/appscode-charts/corekubestashcom-backupverifier-editor:v0.29.0 -- ghcr.io/appscode-charts/corekubestashcom-hooktemplate-editor:v0.29.0 -- ghcr.io/appscode-charts/corekubestashcom-restoresession-editor-options:v0.29.0 -- ghcr.io/appscode-charts/corekubestashcom-restoresession-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-cassandra-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-cassandra-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-clickhouse-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-clickhouse-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-druid-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-druid-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-elasticsearch-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-elasticsearch-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-etcd-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-ferretdb-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-ferretdb-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-hazelcast-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-hazelcast-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-ignite-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-ignite-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-kafka-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-kafka-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-mariadb-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-mariadb-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-memcached-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-memcached-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-mongodb-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-mongodb-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-mssqlserver-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-mssqlserver-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-mysql-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-mysql-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-oracle-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-oracle-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-perconaxtradb-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-perconaxtradb-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-pgbouncer-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-pgbouncer-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-pgpool-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-pgpool-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-postgres-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-postgres-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-proxysql-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-proxysql-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-rabbitmq-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-rabbitmq-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-redis-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-redis-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-redissentinel-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-singlestore-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-singlestore-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-solr-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-solr-editor:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-zookeeper-editor-options:v0.29.0 -- ghcr.io/appscode-charts/kubedbcom-zookeeper-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-cassandraopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-clickhouseopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-druidopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-elasticsearchopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-etcdopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-ferretdbopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-hazelcastopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-igniteopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-kafkaopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-mariadbopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-memcachedopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-mongodbopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-mssqlserveropsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-mysqlopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-oracleopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-perconaxtradbopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-pgbounceropsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-pgpoolopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-postgresopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-proxysqlopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-rabbitmqopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-redisopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-redissentinelopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-singlestoreopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-solropsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/opskubedbcom-zookeeperopsrequest-editor:v0.29.0 -- ghcr.io/appscode-charts/storagekubestashcom-backupstorage-editor-options:v0.29.0 -- ghcr.io/appscode-charts/storagekubestashcom-backupstorage-editor:v0.29.0 -- ghcr.io/appscode-charts/storagekubestashcom-repository-editor-options:v0.29.0 -- ghcr.io/appscode-charts/storagekubestashcom-repository-editor:v0.29.0 -- ghcr.io/appscode-charts/storagekubestashcom-retentionpolicy-editor:v0.29.0 -- ghcr.io/appscode-charts/storagekubestashcom-snapshot-editor:v0.29.0 +[] diff --git a/catalog/export-images.sh b/catalog/export-images.sh index b5e7a1fa2..7c60af89a 100755 --- a/catalog/export-images.sh +++ b/catalog/export-images.sh @@ -36,29 +36,6 @@ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ace:v2026.6.19 images/appscode-charts-ace-v2026.6.19.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/aceshifter:v2026.6.19 images/appscode-charts-aceshifter-v2026.6.19.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/appscode-otel-stack:v2026.6.2 images/appscode-charts-appscode-otel-stack-v2026.6.2.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-cassandraautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-cassandraautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-clickhouseautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-clickhouseautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-druidautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-druidautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-elasticsearchautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-elasticsearchautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-etcdautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-etcdautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-ferretdbautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-ferretdbautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-kafkaautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-kafkaautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mariadbautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-mariadbautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-memcachedautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-memcachedautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mongodbautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-mongodbautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mssqlserverautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-mssqlserverautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mysqlautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-mysqlautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-perconaxtradbautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-perconaxtradbautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-pgbouncerautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-pgbouncerautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-pgpoolautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-pgpoolautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-postgresautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-postgresautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-proxysqlautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-proxysqlautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-rabbitmqautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-rabbitmqautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-redisautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-redisautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-redissentinelautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-redissentinelautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-singlestoreautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-singlestoreautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-solrautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-solrautoscaler-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-zookeeperautoscaler-editor:v0.29.0 images/appscode-charts-autoscalingkubedbcom-zookeeperautoscaler-editor-v0.29.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/aws-credential-manager:v2026.1.20 images/appscode-charts-aws-credential-manager-v2026.1.20.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/aws-ebs-csi-driver:2.23.0 images/appscode-charts-aws-ebs-csi-driver-2.23.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/aws-load-balancer-controller:1.11.0 images/appscode-charts-aws-load-balancer-controller-1.11.0.tar @@ -69,29 +46,15 @@ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/catalog-manager:v2026.6.19 images/appscode-charts-catalog-manager-v2026.6.19.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cert-manager-csi-driver-cacerts:v2026.1.15 images/appscode-charts-cert-manager-csi-driver-cacerts-v2026.1.15.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cert-manager:v1.19.3 images/appscode-charts-cert-manager-v1.19.3.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/chartsxhelmdev-chartpreset-editor:v0.29.0 images/appscode-charts-chartsxhelmdev-chartpreset-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/chartsxhelmdev-clusterchartpreset-editor-options:v0.29.0 images/appscode-charts-chartsxhelmdev-clusterchartpreset-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/chartsxhelmdev-clusterchartpreset-editor:v0.29.0 images/appscode-charts-chartsxhelmdev-clusterchartpreset-editor-v0.29.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-auth-manager:v2026.2.16 images/appscode-charts-cluster-auth-manager-v2026.2.16.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-autoscaler:9.29.0 images/appscode-charts-cluster-autoscaler-9.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-gateway-manager:v2026.2.16 images/appscode-charts-cluster-gateway-manager-v2026.2.16.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-gateway-manager:v2026.6.26 images/appscode-charts-cluster-gateway-manager-v2026.6.26.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-manager-hub:v2026.2.16 images/appscode-charts-cluster-manager-hub-v2026.2.16.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-manager-spoke:v2026.2.16 images/appscode-charts-cluster-manager-spoke-v2026.2.16.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-presets:v2026.6.19 images/appscode-charts-cluster-presets-v2026.6.19.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-profile-manager:v2026.2.16 images/appscode-charts-cluster-profile-manager-v2026.2.16.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-proxy-manager:v2026.2.16 images/appscode-charts-cluster-proxy-manager-v2026.2.16.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-profile-manager:v2026.6.26 images/appscode-charts-cluster-profile-manager-v2026.6.26.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-proxy-manager:v2026.6.26 images/appscode-charts-cluster-proxy-manager-v2026.6.26.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/config-syncer:v0.15.4 images/appscode-charts-config-syncer-v0.15.4.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupbatch-editor:v0.29.0 images/appscode-charts-corekubestashcom-backupbatch-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupblueprint-editor:v0.29.0 images/appscode-charts-corekubestashcom-backupblueprint-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupconfiguration-editor-options:v0.29.0 images/appscode-charts-corekubestashcom-backupconfiguration-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupconfiguration-editor:v0.29.0 images/appscode-charts-corekubestashcom-backupconfiguration-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupsession-editor-options:v0.29.0 images/appscode-charts-corekubestashcom-backupsession-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupsession-editor:v0.29.0 images/appscode-charts-corekubestashcom-backupsession-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupverificationsession-editor:v0.29.0 images/appscode-charts-corekubestashcom-backupverificationsession-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupverifier-editor:v0.29.0 images/appscode-charts-corekubestashcom-backupverifier-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-hooktemplate-editor:v0.29.0 images/appscode-charts-corekubestashcom-hooktemplate-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-restoresession-editor-options:v0.29.0 images/appscode-charts-corekubestashcom-restoresession-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-restoresession-editor:v0.29.0 images/appscode-charts-corekubestashcom-restoresession-editor-v0.29.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/crossplane:1.14.0 images/appscode-charts-crossplane-1.14.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/csi-driver-nfs:v4.7.0 images/appscode-charts-csi-driver-nfs-v4.7.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/csi-secrets-store-provider-azure:1.5.2 images/appscode-charts-csi-secrets-store-provider-azure-1.5.2.tar @@ -122,56 +85,6 @@ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedb-provider-gcp:v2024.1.31 images/appscode-charts-kubedb-provider-gcp-v2024.1.31.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedb-ui-presets:v2026.6.19 images/appscode-charts-kubedb-ui-presets-v2026.6.19.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedb:v2026.6.19 images/appscode-charts-kubedb-v2026.6.19.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-cassandra-editor-options:v0.29.0 images/appscode-charts-kubedbcom-cassandra-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-cassandra-editor:v0.29.0 images/appscode-charts-kubedbcom-cassandra-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-clickhouse-editor-options:v0.29.0 images/appscode-charts-kubedbcom-clickhouse-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-clickhouse-editor:v0.29.0 images/appscode-charts-kubedbcom-clickhouse-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-druid-editor-options:v0.29.0 images/appscode-charts-kubedbcom-druid-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-druid-editor:v0.29.0 images/appscode-charts-kubedbcom-druid-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-elasticsearch-editor-options:v0.29.0 images/appscode-charts-kubedbcom-elasticsearch-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-elasticsearch-editor:v0.29.0 images/appscode-charts-kubedbcom-elasticsearch-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-etcd-editor:v0.29.0 images/appscode-charts-kubedbcom-etcd-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ferretdb-editor-options:v0.29.0 images/appscode-charts-kubedbcom-ferretdb-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ferretdb-editor:v0.29.0 images/appscode-charts-kubedbcom-ferretdb-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-hazelcast-editor-options:v0.29.0 images/appscode-charts-kubedbcom-hazelcast-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-hazelcast-editor:v0.29.0 images/appscode-charts-kubedbcom-hazelcast-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ignite-editor-options:v0.29.0 images/appscode-charts-kubedbcom-ignite-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ignite-editor:v0.29.0 images/appscode-charts-kubedbcom-ignite-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-kafka-editor-options:v0.29.0 images/appscode-charts-kubedbcom-kafka-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-kafka-editor:v0.29.0 images/appscode-charts-kubedbcom-kafka-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mariadb-editor-options:v0.29.0 images/appscode-charts-kubedbcom-mariadb-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mariadb-editor:v0.29.0 images/appscode-charts-kubedbcom-mariadb-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-memcached-editor-options:v0.29.0 images/appscode-charts-kubedbcom-memcached-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-memcached-editor:v0.29.0 images/appscode-charts-kubedbcom-memcached-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mongodb-editor-options:v0.29.0 images/appscode-charts-kubedbcom-mongodb-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mongodb-editor:v0.29.0 images/appscode-charts-kubedbcom-mongodb-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mssqlserver-editor-options:v0.29.0 images/appscode-charts-kubedbcom-mssqlserver-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mssqlserver-editor:v0.29.0 images/appscode-charts-kubedbcom-mssqlserver-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mysql-editor-options:v0.29.0 images/appscode-charts-kubedbcom-mysql-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mysql-editor:v0.29.0 images/appscode-charts-kubedbcom-mysql-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-oracle-editor-options:v0.29.0 images/appscode-charts-kubedbcom-oracle-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-oracle-editor:v0.29.0 images/appscode-charts-kubedbcom-oracle-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-perconaxtradb-editor-options:v0.29.0 images/appscode-charts-kubedbcom-perconaxtradb-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-perconaxtradb-editor:v0.29.0 images/appscode-charts-kubedbcom-perconaxtradb-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgbouncer-editor-options:v0.29.0 images/appscode-charts-kubedbcom-pgbouncer-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgbouncer-editor:v0.29.0 images/appscode-charts-kubedbcom-pgbouncer-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgpool-editor-options:v0.29.0 images/appscode-charts-kubedbcom-pgpool-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgpool-editor:v0.29.0 images/appscode-charts-kubedbcom-pgpool-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-postgres-editor-options:v0.29.0 images/appscode-charts-kubedbcom-postgres-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-postgres-editor:v0.29.0 images/appscode-charts-kubedbcom-postgres-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-proxysql-editor-options:v0.29.0 images/appscode-charts-kubedbcom-proxysql-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-proxysql-editor:v0.29.0 images/appscode-charts-kubedbcom-proxysql-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-rabbitmq-editor-options:v0.29.0 images/appscode-charts-kubedbcom-rabbitmq-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-rabbitmq-editor:v0.29.0 images/appscode-charts-kubedbcom-rabbitmq-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-redis-editor-options:v0.29.0 images/appscode-charts-kubedbcom-redis-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-redis-editor:v0.29.0 images/appscode-charts-kubedbcom-redis-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-redissentinel-editor:v0.29.0 images/appscode-charts-kubedbcom-redissentinel-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-singlestore-editor-options:v0.29.0 images/appscode-charts-kubedbcom-singlestore-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-singlestore-editor:v0.29.0 images/appscode-charts-kubedbcom-singlestore-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-solr-editor-options:v0.29.0 images/appscode-charts-kubedbcom-solr-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-solr-editor:v0.29.0 images/appscode-charts-kubedbcom-solr-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-zookeeper-editor-options:v0.29.0 images/appscode-charts-kubedbcom-zookeeper-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-zookeeper-editor:v0.29.0 images/appscode-charts-kubedbcom-zookeeper-editor-v0.29.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubestash:v2026.6.19 images/appscode-charts-kubestash-v2026.6.19.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubevault-opscenter:v2026.2.27 images/appscode-charts-kubevault-opscenter-v2026.2.27.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubevault:v2026.2.27 images/appscode-charts-kubevault-v2026.2.27.tar @@ -187,32 +100,6 @@ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opencost:1.18.1 images/appscode-charts-opencost-1.18.1.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/operator-shard-manager:v2026.6.22 images/appscode-charts-operator-shard-manager-v2026.6.22.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opscenter-features:v2026.6.19 images/appscode-charts-opscenter-features-v2026.6.19.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-cassandraopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-cassandraopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-clickhouseopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-clickhouseopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-druidopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-druidopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-elasticsearchopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-elasticsearchopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-etcdopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-etcdopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-ferretdbopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-ferretdbopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-hazelcastopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-hazelcastopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-igniteopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-igniteopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-kafkaopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-kafkaopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mariadbopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-mariadbopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-memcachedopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-memcachedopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mongodbopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-mongodbopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mssqlserveropsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-mssqlserveropsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mysqlopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-mysqlopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-oracleopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-oracleopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-perconaxtradbopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-perconaxtradbopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-pgbounceropsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-pgbounceropsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-pgpoolopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-pgpoolopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-postgresopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-postgresopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-proxysqlopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-proxysqlopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-rabbitmqopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-rabbitmqopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-redisopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-redisopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-redissentinelopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-redissentinelopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-singlestoreopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-singlestoreopsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-solropsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-solropsrequest-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-zookeeperopsrequest-editor:v0.29.0 images/appscode-charts-opskubedbcom-zookeeperopsrequest-editor-v0.29.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/panopticon:v2026.6.22 images/appscode-charts-panopticon-v2026.6.22.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/prepare-cluster:v2023.12.21 images/appscode-charts-prepare-cluster-v2023.12.21.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/prom-label-proxy:v2026.6.2 images/appscode-charts-prom-label-proxy-v2026.6.2.tar @@ -233,12 +120,7 @@ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/stash-opscenter:v2025.7.31 images/appscode-charts-stash-opscenter-v2025.7.31.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/stash-presets:v2026.6.19 images/appscode-charts-stash-presets-v2026.6.19.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/stash:v2025.7.31 images/appscode-charts-stash-v2025.7.31.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-backupstorage-editor-options:v0.29.0 images/appscode-charts-storagekubestashcom-backupstorage-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-backupstorage-editor:v0.29.0 images/appscode-charts-storagekubestashcom-backupstorage-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-repository-editor-options:v0.29.0 images/appscode-charts-storagekubestashcom-repository-editor-options-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-repository-editor:v0.29.0 images/appscode-charts-storagekubestashcom-repository-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-retentionpolicy-editor:v0.29.0 images/appscode-charts-storagekubestashcom-retentionpolicy-editor-v0.29.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-snapshot-editor:v0.29.0 images/appscode-charts-storagekubestashcom-snapshot-editor-v0.29.0.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storage-metrics-server:v0.1.0 images/appscode-charts-storage-metrics-server-v0.1.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/supervisor:v2026.2.16 images/appscode-charts-supervisor-v2026.2.16.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/tenant-operator:v2026.6.2 images/appscode-charts-tenant-operator-v2026.6.2.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/thanos-operator:v2026.6.2 images/appscode-charts-thanos-operator-v2026.6.2.tar diff --git a/catalog/feature-charts.yaml b/catalog/feature-charts.yaml index ef694f7cf..8eb17b4c4 100644 --- a/catalog/feature-charts.yaml +++ b/catalog/feature-charts.yaml @@ -12,12 +12,12 @@ - ghcr.io/appscode-charts/cert-manager:v1.19.3 - ghcr.io/appscode-charts/cluster-auth-manager:v2026.2.16 - ghcr.io/appscode-charts/cluster-autoscaler:9.29.0 -- ghcr.io/appscode-charts/cluster-gateway-manager:v2026.2.16 +- ghcr.io/appscode-charts/cluster-gateway-manager:v2026.6.26 - ghcr.io/appscode-charts/cluster-manager-hub:v2026.2.16 - ghcr.io/appscode-charts/cluster-manager-spoke:v2026.2.16 - ghcr.io/appscode-charts/cluster-presets:v2026.6.19 -- ghcr.io/appscode-charts/cluster-profile-manager:v2026.2.16 -- ghcr.io/appscode-charts/cluster-proxy-manager:v2026.2.16 +- ghcr.io/appscode-charts/cluster-profile-manager:v2026.6.26 +- ghcr.io/appscode-charts/cluster-proxy-manager:v2026.6.26 - ghcr.io/appscode-charts/config-syncer:v0.15.4 - ghcr.io/appscode-charts/crossplane:1.14.0 - ghcr.io/appscode-charts/csi-driver-nfs:v4.7.0 diff --git a/catalog/import-images.sh b/catalog/import-images.sh index 4a95bd8ca..ad3dc331f 100755 --- a/catalog/import-images.sh +++ b/catalog/import-images.sh @@ -30,29 +30,6 @@ $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-a $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-ace-v2026.6.19.tar $IMAGE_REGISTRY/appscode-charts/ace:v2026.6.19 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-aceshifter-v2026.6.19.tar $IMAGE_REGISTRY/appscode-charts/aceshifter:v2026.6.19 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-appscode-otel-stack-v2026.6.2.tar $IMAGE_REGISTRY/appscode-charts/appscode-otel-stack:v2026.6.2 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-cassandraautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-cassandraautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-clickhouseautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-clickhouseautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-druidautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-druidautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-elasticsearchautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-elasticsearchautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-etcdautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-etcdautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-ferretdbautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-ferretdbautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-kafkaautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-kafkaautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-mariadbautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mariadbautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-memcachedautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-memcachedautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-mongodbautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mongodbautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-mssqlserverautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mssqlserverautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-mysqlautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mysqlautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-perconaxtradbautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-perconaxtradbautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-pgbouncerautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-pgbouncerautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-pgpoolautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-pgpoolautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-postgresautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-postgresautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-proxysqlautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-proxysqlautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-rabbitmqautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-rabbitmqautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-redisautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-redisautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-redissentinelautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-redissentinelautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-singlestoreautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-singlestoreautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-solrautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-solrautoscaler-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-zookeeperautoscaler-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-zookeeperautoscaler-editor:v0.29.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-aws-credential-manager-v2026.1.20.tar $IMAGE_REGISTRY/appscode-charts/aws-credential-manager:v2026.1.20 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-aws-ebs-csi-driver-2.23.0.tar $IMAGE_REGISTRY/appscode-charts/aws-ebs-csi-driver:2.23.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-aws-load-balancer-controller-1.11.0.tar $IMAGE_REGISTRY/appscode-charts/aws-load-balancer-controller:1.11.0 @@ -63,29 +40,15 @@ $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-c $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-catalog-manager-v2026.6.19.tar $IMAGE_REGISTRY/appscode-charts/catalog-manager:v2026.6.19 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cert-manager-csi-driver-cacerts-v2026.1.15.tar $IMAGE_REGISTRY/appscode-charts/cert-manager-csi-driver-cacerts:v2026.1.15 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cert-manager-v1.19.3.tar $IMAGE_REGISTRY/appscode-charts/cert-manager:v1.19.3 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-chartsxhelmdev-chartpreset-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/chartsxhelmdev-chartpreset-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-chartsxhelmdev-clusterchartpreset-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/chartsxhelmdev-clusterchartpreset-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-chartsxhelmdev-clusterchartpreset-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/chartsxhelmdev-clusterchartpreset-editor:v0.29.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-auth-manager-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/cluster-auth-manager:v2026.2.16 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-autoscaler-9.29.0.tar $IMAGE_REGISTRY/appscode-charts/cluster-autoscaler:9.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-gateway-manager-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/cluster-gateway-manager:v2026.2.16 +$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-gateway-manager-v2026.6.26.tar $IMAGE_REGISTRY/appscode-charts/cluster-gateway-manager:v2026.6.26 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-manager-hub-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/cluster-manager-hub:v2026.2.16 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-manager-spoke-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/cluster-manager-spoke:v2026.2.16 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-presets-v2026.6.19.tar $IMAGE_REGISTRY/appscode-charts/cluster-presets:v2026.6.19 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-profile-manager-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/cluster-profile-manager:v2026.2.16 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-proxy-manager-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/cluster-proxy-manager:v2026.2.16 +$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-profile-manager-v2026.6.26.tar $IMAGE_REGISTRY/appscode-charts/cluster-profile-manager:v2026.6.26 +$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-proxy-manager-v2026.6.26.tar $IMAGE_REGISTRY/appscode-charts/cluster-proxy-manager:v2026.6.26 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-config-syncer-v0.15.4.tar $IMAGE_REGISTRY/appscode-charts/config-syncer:v0.15.4 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupbatch-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupbatch-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupblueprint-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupblueprint-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupconfiguration-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupconfiguration-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupconfiguration-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupconfiguration-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupsession-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupsession-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupsession-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupsession-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupverificationsession-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupverificationsession-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupverifier-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupverifier-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-hooktemplate-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-hooktemplate-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-restoresession-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-restoresession-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-restoresession-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-restoresession-editor:v0.29.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-crossplane-1.14.0.tar $IMAGE_REGISTRY/appscode-charts/crossplane:1.14.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-csi-driver-nfs-v4.7.0.tar $IMAGE_REGISTRY/appscode-charts/csi-driver-nfs:v4.7.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-csi-secrets-store-provider-azure-1.5.2.tar $IMAGE_REGISTRY/appscode-charts/csi-secrets-store-provider-azure:1.5.2 @@ -116,56 +79,6 @@ $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-k $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedb-provider-gcp-v2024.1.31.tar $IMAGE_REGISTRY/appscode-charts/kubedb-provider-gcp:v2024.1.31 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedb-ui-presets-v2026.6.19.tar $IMAGE_REGISTRY/appscode-charts/kubedb-ui-presets:v2026.6.19 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedb-v2026.6.19.tar $IMAGE_REGISTRY/appscode-charts/kubedb:v2026.6.19 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-cassandra-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-cassandra-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-cassandra-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-cassandra-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-clickhouse-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-clickhouse-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-clickhouse-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-clickhouse-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-druid-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-druid-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-druid-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-druid-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-elasticsearch-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-elasticsearch-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-elasticsearch-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-elasticsearch-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-etcd-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-etcd-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-ferretdb-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-ferretdb-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-ferretdb-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-ferretdb-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-hazelcast-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-hazelcast-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-hazelcast-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-hazelcast-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-ignite-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-ignite-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-ignite-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-ignite-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-kafka-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-kafka-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-kafka-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-kafka-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mariadb-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mariadb-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mariadb-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mariadb-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-memcached-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-memcached-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-memcached-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-memcached-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mongodb-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mongodb-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mongodb-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mongodb-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mssqlserver-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mssqlserver-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mssqlserver-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mssqlserver-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mysql-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mysql-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mysql-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mysql-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-oracle-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-oracle-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-oracle-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-oracle-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-perconaxtradb-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-perconaxtradb-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-perconaxtradb-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-perconaxtradb-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-pgbouncer-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgbouncer-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-pgbouncer-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgbouncer-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-pgpool-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgpool-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-pgpool-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgpool-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-postgres-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-postgres-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-postgres-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-postgres-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-proxysql-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-proxysql-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-proxysql-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-proxysql-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-rabbitmq-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-rabbitmq-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-rabbitmq-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-rabbitmq-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-redis-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-redis-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-redis-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-redis-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-redissentinel-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-redissentinel-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-singlestore-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-singlestore-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-singlestore-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-singlestore-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-solr-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-solr-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-solr-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-solr-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-zookeeper-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-zookeeper-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-zookeeper-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-zookeeper-editor:v0.29.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubestash-v2026.6.19.tar $IMAGE_REGISTRY/appscode-charts/kubestash:v2026.6.19 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubevault-opscenter-v2026.2.27.tar $IMAGE_REGISTRY/appscode-charts/kubevault-opscenter:v2026.2.27 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubevault-v2026.2.27.tar $IMAGE_REGISTRY/appscode-charts/kubevault:v2026.2.27 @@ -181,32 +94,6 @@ $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-o $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opencost-1.18.1.tar $IMAGE_REGISTRY/appscode-charts/opencost:1.18.1 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-operator-shard-manager-v2026.6.22.tar $IMAGE_REGISTRY/appscode-charts/operator-shard-manager:v2026.6.22 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opscenter-features-v2026.6.19.tar $IMAGE_REGISTRY/appscode-charts/opscenter-features:v2026.6.19 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-cassandraopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-cassandraopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-clickhouseopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-clickhouseopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-druidopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-druidopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-elasticsearchopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-elasticsearchopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-etcdopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-etcdopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-ferretdbopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-ferretdbopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-hazelcastopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-hazelcastopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-igniteopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-igniteopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-kafkaopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-kafkaopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-mariadbopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mariadbopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-memcachedopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-memcachedopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-mongodbopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mongodbopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-mssqlserveropsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mssqlserveropsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-mysqlopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mysqlopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-oracleopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-oracleopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-perconaxtradbopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-perconaxtradbopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-pgbounceropsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-pgbounceropsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-pgpoolopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-pgpoolopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-postgresopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-postgresopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-proxysqlopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-proxysqlopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-rabbitmqopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-rabbitmqopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-redisopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-redisopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-redissentinelopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-redissentinelopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-singlestoreopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-singlestoreopsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-solropsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-solropsrequest-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-zookeeperopsrequest-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-zookeeperopsrequest-editor:v0.29.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-panopticon-v2026.6.22.tar $IMAGE_REGISTRY/appscode-charts/panopticon:v2026.6.22 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-prepare-cluster-v2023.12.21.tar $IMAGE_REGISTRY/appscode-charts/prepare-cluster:v2023.12.21 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-prom-label-proxy-v2026.6.2.tar $IMAGE_REGISTRY/appscode-charts/prom-label-proxy:v2026.6.2 @@ -227,12 +114,7 @@ $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-s $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-stash-opscenter-v2025.7.31.tar $IMAGE_REGISTRY/appscode-charts/stash-opscenter:v2025.7.31 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-stash-presets-v2026.6.19.tar $IMAGE_REGISTRY/appscode-charts/stash-presets:v2026.6.19 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-stash-v2025.7.31.tar $IMAGE_REGISTRY/appscode-charts/stash:v2025.7.31 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-storagekubestashcom-backupstorage-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-backupstorage-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-storagekubestashcom-backupstorage-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-backupstorage-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-storagekubestashcom-repository-editor-options-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-repository-editor-options:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-storagekubestashcom-repository-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-repository-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-storagekubestashcom-retentionpolicy-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-retentionpolicy-editor:v0.29.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-storagekubestashcom-snapshot-editor-v0.29.0.tar $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-snapshot-editor:v0.29.0 +$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-storage-metrics-server-v0.1.0.tar $IMAGE_REGISTRY/appscode-charts/storage-metrics-server:v0.1.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-supervisor-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/supervisor:v2026.2.16 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-tenant-operator-v2026.6.2.tar $IMAGE_REGISTRY/appscode-charts/tenant-operator:v2026.6.2 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-thanos-operator-v2026.6.2.tar $IMAGE_REGISTRY/appscode-charts/thanos-operator:v2026.6.2 diff --git a/catalog/import-into-k3s.sh b/catalog/import-into-k3s.sh index 2c3b1340d..7deb48d9e 100755 --- a/catalog/import-into-k3s.sh +++ b/catalog/import-into-k3s.sh @@ -28,29 +28,6 @@ k3s ctr images import images/appscode-charts-ace-installer-v2026.6.19.tar k3s ctr images import images/appscode-charts-ace-v2026.6.19.tar k3s ctr images import images/appscode-charts-aceshifter-v2026.6.19.tar k3s ctr images import images/appscode-charts-appscode-otel-stack-v2026.6.2.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-cassandraautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-clickhouseautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-druidautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-elasticsearchautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-etcdautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-ferretdbautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-kafkaautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-mariadbautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-memcachedautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-mongodbautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-mssqlserverautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-mysqlautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-perconaxtradbautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-pgbouncerautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-pgpoolautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-postgresautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-proxysqlautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-rabbitmqautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-redisautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-redissentinelautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-singlestoreautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-solrautoscaler-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-zookeeperautoscaler-editor-v0.29.0.tar k3s ctr images import images/appscode-charts-aws-credential-manager-v2026.1.20.tar k3s ctr images import images/appscode-charts-aws-ebs-csi-driver-2.23.0.tar k3s ctr images import images/appscode-charts-aws-load-balancer-controller-1.11.0.tar @@ -61,29 +38,15 @@ k3s ctr images import images/appscode-charts-capi-ops-manager-v2024.8.14.tar k3s ctr images import images/appscode-charts-catalog-manager-v2026.6.19.tar k3s ctr images import images/appscode-charts-cert-manager-csi-driver-cacerts-v2026.1.15.tar k3s ctr images import images/appscode-charts-cert-manager-v1.19.3.tar -k3s ctr images import images/appscode-charts-chartsxhelmdev-chartpreset-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-chartsxhelmdev-clusterchartpreset-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-chartsxhelmdev-clusterchartpreset-editor-v0.29.0.tar k3s ctr images import images/appscode-charts-cluster-auth-manager-v2026.2.16.tar k3s ctr images import images/appscode-charts-cluster-autoscaler-9.29.0.tar -k3s ctr images import images/appscode-charts-cluster-gateway-manager-v2026.2.16.tar +k3s ctr images import images/appscode-charts-cluster-gateway-manager-v2026.6.26.tar k3s ctr images import images/appscode-charts-cluster-manager-hub-v2026.2.16.tar k3s ctr images import images/appscode-charts-cluster-manager-spoke-v2026.2.16.tar k3s ctr images import images/appscode-charts-cluster-presets-v2026.6.19.tar -k3s ctr images import images/appscode-charts-cluster-profile-manager-v2026.2.16.tar -k3s ctr images import images/appscode-charts-cluster-proxy-manager-v2026.2.16.tar +k3s ctr images import images/appscode-charts-cluster-profile-manager-v2026.6.26.tar +k3s ctr images import images/appscode-charts-cluster-proxy-manager-v2026.6.26.tar k3s ctr images import images/appscode-charts-config-syncer-v0.15.4.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupbatch-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupblueprint-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupconfiguration-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupconfiguration-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupsession-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupsession-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupverificationsession-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupverifier-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-hooktemplate-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-restoresession-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-restoresession-editor-v0.29.0.tar k3s ctr images import images/appscode-charts-crossplane-1.14.0.tar k3s ctr images import images/appscode-charts-csi-driver-nfs-v4.7.0.tar k3s ctr images import images/appscode-charts-csi-secrets-store-provider-azure-1.5.2.tar @@ -114,56 +77,6 @@ k3s ctr images import images/appscode-charts-kubedb-provider-azure-v2024.1.31.ta k3s ctr images import images/appscode-charts-kubedb-provider-gcp-v2024.1.31.tar k3s ctr images import images/appscode-charts-kubedb-ui-presets-v2026.6.19.tar k3s ctr images import images/appscode-charts-kubedb-v2026.6.19.tar -k3s ctr images import images/appscode-charts-kubedbcom-cassandra-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-cassandra-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-clickhouse-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-clickhouse-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-druid-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-druid-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-elasticsearch-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-elasticsearch-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-etcd-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-ferretdb-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-ferretdb-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-hazelcast-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-hazelcast-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-ignite-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-ignite-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-kafka-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-kafka-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mariadb-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mariadb-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-memcached-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-memcached-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mongodb-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mongodb-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mssqlserver-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mssqlserver-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mysql-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mysql-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-oracle-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-oracle-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-perconaxtradb-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-perconaxtradb-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-pgbouncer-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-pgbouncer-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-pgpool-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-pgpool-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-postgres-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-postgres-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-proxysql-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-proxysql-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-rabbitmq-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-rabbitmq-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-redis-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-redis-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-redissentinel-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-singlestore-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-singlestore-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-solr-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-solr-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-zookeeper-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-zookeeper-editor-v0.29.0.tar k3s ctr images import images/appscode-charts-kubestash-v2026.6.19.tar k3s ctr images import images/appscode-charts-kubevault-opscenter-v2026.2.27.tar k3s ctr images import images/appscode-charts-kubevault-v2026.2.27.tar @@ -179,32 +92,6 @@ k3s ctr images import images/appscode-charts-opencost-grafana-dashboards-v2023.1 k3s ctr images import images/appscode-charts-opencost-1.18.1.tar k3s ctr images import images/appscode-charts-operator-shard-manager-v2026.6.22.tar k3s ctr images import images/appscode-charts-opscenter-features-v2026.6.19.tar -k3s ctr images import images/appscode-charts-opskubedbcom-cassandraopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-clickhouseopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-druidopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-elasticsearchopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-etcdopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-ferretdbopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-hazelcastopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-igniteopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-kafkaopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-mariadbopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-memcachedopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-mongodbopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-mssqlserveropsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-mysqlopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-oracleopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-perconaxtradbopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-pgbounceropsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-pgpoolopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-postgresopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-proxysqlopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-rabbitmqopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-redisopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-redissentinelopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-singlestoreopsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-solropsrequest-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-zookeeperopsrequest-editor-v0.29.0.tar k3s ctr images import images/appscode-charts-panopticon-v2026.6.22.tar k3s ctr images import images/appscode-charts-prepare-cluster-v2023.12.21.tar k3s ctr images import images/appscode-charts-prom-label-proxy-v2026.6.2.tar @@ -225,12 +112,7 @@ k3s ctr images import images/appscode-charts-snapshot-controller-3.0.6.tar k3s ctr images import images/appscode-charts-stash-opscenter-v2025.7.31.tar k3s ctr images import images/appscode-charts-stash-presets-v2026.6.19.tar k3s ctr images import images/appscode-charts-stash-v2025.7.31.tar -k3s ctr images import images/appscode-charts-storagekubestashcom-backupstorage-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-storagekubestashcom-backupstorage-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-storagekubestashcom-repository-editor-options-v0.29.0.tar -k3s ctr images import images/appscode-charts-storagekubestashcom-repository-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-storagekubestashcom-retentionpolicy-editor-v0.29.0.tar -k3s ctr images import images/appscode-charts-storagekubestashcom-snapshot-editor-v0.29.0.tar +k3s ctr images import images/appscode-charts-storage-metrics-server-v0.1.0.tar k3s ctr images import images/appscode-charts-supervisor-v2026.2.16.tar k3s ctr images import images/appscode-charts-tenant-operator-v2026.6.2.tar k3s ctr images import images/appscode-charts-thanos-operator-v2026.6.2.tar diff --git a/charts/ace-installer-certified/Chart.lock b/charts/ace-installer-certified/Chart.lock new file mode 100644 index 000000000..31f89aeb7 --- /dev/null +++ b/charts/ace-installer-certified/Chart.lock @@ -0,0 +1,6 @@ +dependencies: +- name: regcache + repository: file://../regcache + version: v2026.6.19 +digest: sha256:c3846e0d5296be63cb14f818ad89c69be300b012289dfb53a9ed9d95ee4e3ff8 +generated: "2026-07-13T05:01:55.603634+06:00"