From ec0e55f87cbe514f26b4991c5283f13a9eee776b Mon Sep 17 00:00:00 2001 From: Arnob kumar saha Date: Wed, 17 Dec 2025 19:34:19 +0600 Subject: [PATCH 1/9] Convert ingress to gateway Signed-off-by: Arnob kumar saha --- charts/ace-installer/README.md | 4 + .../saas-core/catalog-manager.yaml | 53 +++++++++++ .../saas-core/service-gateway-presets.yaml | 53 +++++++++++ charts/ace-installer/values.yaml | 7 ++ charts/ace/templates/gateway/gateway.yaml | 23 +++++ charts/ace/templates/gateway/route-home.yaml | 34 +++++++ charts/ace/templates/gateway/route-main.yaml | 93 +++++++++++++++++++ charts/ace/templates/gateway/route-nats.yaml | 34 +++++++ charts/ace/templates/ingress/issuer.yaml | 7 ++ 9 files changed, 308 insertions(+) create mode 100644 charts/ace-installer/templates/featuresets/saas-core/catalog-manager.yaml create mode 100644 charts/ace-installer/templates/featuresets/saas-core/service-gateway-presets.yaml create mode 100644 charts/ace/templates/gateway/gateway.yaml create mode 100644 charts/ace/templates/gateway/route-home.yaml create mode 100644 charts/ace/templates/gateway/route-main.yaml create mode 100644 charts/ace/templates/gateway/route-nats.yaml diff --git a/charts/ace-installer/README.md b/charts/ace-installer/README.md index 6e27d46be..418d5bdd9 100644 --- a/charts/ace-installer/README.md +++ b/charts/ace-installer/README.md @@ -73,6 +73,8 @@ The following table lists the configurable parameters of the `ace-installer` cha | helm.releases.aceshifter.version | | "v2026.2.16" | | helm.releases.capi-catalog.enabled | | false | | helm.releases.capi-catalog.version | | "v2024.10.24" | +| helm.releases.catalog-manager.enabled | | false | +| helm.releases.catalog-manager.version | | "v2025.12.15" | | helm.releases.cert-manager.enabled | | true | | helm.releases.cert-manager.version | | "v1.19.3" | | helm.releases.cert-manager-csi-driver-cacerts.enabled | | true | @@ -99,6 +101,8 @@ The following table lists the configurable parameters of the `ace-installer` cha | helm.releases.panopticon.values | | {"monitoring":{"agent":"prometheus.io/operator","enabled":true,"serviceMonitor":{"labels":{"release":"kube-prometheus-stack"}}}} | | helm.releases.reloader.enabled | | true | | helm.releases.reloader.version | | "1.0.79" | +| helm.releases.service-gateway-presets.enabled | | false | +| helm.releases.service-gateway-presets.version | | "v2025.12.15" | | helm.releases.stash-presets.enabled | | false | | helm.releases.stash-presets.version | | "v2026.2.16" | | helm.releases.cluster-manager-spoke.enabled | | false | diff --git a/charts/ace-installer/templates/featuresets/saas-core/catalog-manager.yaml b/charts/ace-installer/templates/featuresets/saas-core/catalog-manager.yaml new file mode 100644 index 000000000..370728e71 --- /dev/null +++ b/charts/ace-installer/templates/featuresets/saas-core/catalog-manager.yaml @@ -0,0 +1,53 @@ +{{- with (index .Values "helm" "releases" "catalog-manager") }} +{{- if .enabled }} + +{{ $defaults := dict "registryFQDN" (include "registry.ghcr" $) }} + +{{ $vals := dig "values" dict . }} +{{ $vals = mergeOverwrite $defaults $vals }} + +apiVersion: helm.toolkit.fluxcd.io/v2 +kind: HelmRelease +metadata: + name: catalog-manager + namespace: {{ $.Release.Namespace }} + labels: + app.kubernetes.io/component: catalog-manager + app.kubernetes.io/part-of: saas-core +spec: + interval: 5m + timeout: 30m + releaseName: catalog-manager + targetNamespace: envoy-gateway-system + storageNamespace: envoy-gateway-system + install: + createNamespace: {{ $.Values.helm.createNamespace }} + remediation: + retries: -1 + upgrade: + crds: CreateReplace + remediation: + retries: -1 + dependsOn: + - name: kubedb + namespace: {{ $.Release.Namespace }} + {{- if (dig "cert-manager" "enabled" false $.Values.helm.releases) }} + - name: cert-manager + namespace: {{ $.Release.Namespace }} + {{- end }} + chart: + spec: + chart: catalog-manager + version: {{ .version | quote }} + interval: 60m + sourceRef: + kind: HelmRepository + name: appscode-charts-oci + namespace: {{ $.Release.Namespace }} + +{{- with $vals }} + {{- dict "values" . | toYaml | nindent 2 }} +{{- end }} + +{{- end }} +{{- end }} diff --git a/charts/ace-installer/templates/featuresets/saas-core/service-gateway-presets.yaml b/charts/ace-installer/templates/featuresets/saas-core/service-gateway-presets.yaml new file mode 100644 index 000000000..39d13345d --- /dev/null +++ b/charts/ace-installer/templates/featuresets/saas-core/service-gateway-presets.yaml @@ -0,0 +1,53 @@ +{{- with (index .Values "helm" "releases" "service-gateway-presets") }} +{{- if .enabled }} + +{{ $defaults := dict "registryFQDN" (include "registry.ghcr" $) }} + +{{ $vals := dig "values" dict . }} +{{ $vals = mergeOverwrite $defaults $vals }} + +apiVersion: helm.toolkit.fluxcd.io/v2 +kind: HelmRelease +metadata: + name: service-gateway-presets + namespace: {{ $.Release.Namespace }} + labels: + app.kubernetes.io/component: service-gateway-presets + app.kubernetes.io/part-of: saas-core +spec: + interval: 5m + timeout: 30m + releaseName: service-gateway-presets + targetNamespace: ace-gw + storageNamespace: ace-gw + install: + createNamespace: {{ $.Values.helm.createNamespace }} + remediation: + retries: -1 + upgrade: + crds: CreateReplace + remediation: + retries: -1 + dependsOn: + - name: catalog-manager + namespace: {{ $.Release.Namespace }} + {{- if (dig "cert-manager" "enabled" false $.Values.helm.releases) }} + - name: cert-manager + namespace: {{ $.Release.Namespace }} + {{- end }} + chart: + spec: + chart: service-gateway-presets + version: {{ .version | quote }} + interval: 60m + sourceRef: + kind: HelmRepository + name: appscode-charts-oci + namespace: {{ $.Release.Namespace }} + +{{- with $vals }} + {{- dict "values" . | toYaml | nindent 2 }} +{{- end }} + +{{- end }} +{{- end }} diff --git a/charts/ace-installer/values.yaml b/charts/ace-installer/values.yaml index d393f8187..51a98867c 100644 --- a/charts/ace-installer/values.yaml +++ b/charts/ace-installer/values.yaml @@ -59,6 +59,9 @@ helm: capi-catalog: enabled: false version: "v2024.10.24" + catalog-manager: + enabled: false + version: "v2025.12.15" cert-manager: enabled: true version: "v1.19.3" @@ -119,6 +122,9 @@ helm: reloader: enabled: true version: "1.0.79" + service-gateway-presets: + enabled: false + version: "v2025.12.15" stash-presets: enabled: false version: "v2026.2.16" @@ -143,6 +149,7 @@ selfManagement: enableFeatures: [] disableFeatures: [] useGateway: false + precheck: enabled: true # Docker registry containing app image diff --git a/charts/ace/templates/gateway/gateway.yaml b/charts/ace/templates/gateway/gateway.yaml new file mode 100644 index 000000000..b95585075 --- /dev/null +++ b/charts/ace/templates/gateway/gateway.yaml @@ -0,0 +1,23 @@ +apiVersion: gateway.networking.k8s.io/v1 +kind: Gateway +metadata: + name: {{ include "ace.fullname" . }} + namespace: {{ .Release.Namespace }} + labels: + {{- include "ace.labels" . | nindent 4 }} +spec: + gatewayClassName: ace + listeners: + - name: https + protocol: HTTPS + port: 443 + tls: + mode: Terminate + certificateRefs: + - group: "" + kind: Secret + name: {{ include "ace.fullname" . }}-cert + namespace: {{ .Release.Namespace }} + allowedRoutes: + namespaces: + from: Same \ No newline at end of file diff --git a/charts/ace/templates/gateway/route-home.yaml b/charts/ace/templates/gateway/route-home.yaml new file mode 100644 index 000000000..b8d90e307 --- /dev/null +++ b/charts/ace/templates/gateway/route-home.yaml @@ -0,0 +1,34 @@ +{{ if and (index .Values "setupJob" "config" "selfManagement" "useGateway") (index .Values "platform-ui" "enabled") (not (eq .Values.global.platform.deploymentType "Hosted")) }} + +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: {{ include "ace.fullname" . }}-home + namespace: {{ .Release.Namespace }} +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: {{ include "ace.fullname" . }} + namespace: {{ .Release.Namespace }} + sectionName: https + rules: + - matches: + - path: + type: PathPrefix + value: / + filters: + - type: URLRewrite + urlRewrite: + path: + type: ReplaceFullPath + replaceFullPath: /accounts/selfhost-home + backendRefs: + - group: "" + kind: Service + name: {{ include "ace.fullname" . }}-platform-api + namespace: {{ .Release.Namespace }} + port: 80 + weight: 1 + +{{- end }} diff --git a/charts/ace/templates/gateway/route-main.yaml b/charts/ace/templates/gateway/route-main.yaml new file mode 100644 index 000000000..c84d015ca --- /dev/null +++ b/charts/ace/templates/gateway/route-main.yaml @@ -0,0 +1,93 @@ +{{ if (index .Values "setupJob" "config" "selfManagement" "useGateway") }} + +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: {{ include "ace.fullname" . }} + namespace: {{ .Release.Namespace }} +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: {{ include "ace.fullname" . }} + namespace: {{ .Release.Namespace }} + sectionName: https + rules: + - matches: + - path: + type: PathPrefix + value: /api + backendRefs: + - group: "" + kind: Service + name: {{ include "ace.fullname" . }}-platform-api + namespace: {{ .Release.Namespace }} + port: 80 + weight: 1 + - matches: + - path: + type: PathPrefix + value: /accounts + backendRefs: + - group: "" + kind: Service + name: {{ include "ace.fullname" . }}-platform-api + namespace: {{ .Release.Namespace }} + port: 80 + weight: 1 + - matches: + - path: + type: PathPrefix + value: /console + backendRefs: + - group: "" + kind: Service + name: {{ include "ace.fullname" . }}-cluster-ui + namespace: {{ .Release.Namespace }} + port: 80 + weight: 1 + - matches: + - path: + type: PathPrefix + value: /db + backendRefs: + - group: "" + kind: Service + name: {{ include "ace.fullname" . }}-kubedb-ui + namespace: {{ .Release.Namespace }} + port: 80 + weight: 1 + - matches: + - path: + type: PathPrefix + value: /id + backendRefs: + - group: "" + kind: Service + name: {{ include "ace.fullname" . }}-platform-ui + namespace: {{ .Release.Namespace }} + port: 80 + weight: 1 + - matches: + - path: + type: PathPrefix + value: /grafana + backendRefs: + - group: "" + kind: Service + name: {{ include "ace.fullname" . }}-grafana + namespace: {{ .Release.Namespace }} + port: 80 + weight: 1 + - matches: + - path: + type: PathPrefix + value: /prometheus + backendRefs: + - group: "" + kind: Service + name: {{ include "ace.fullname" . }}-trickster + namespace: {{ .Release.Namespace }} + port: 4000 + weight: 1 +{{- end }} diff --git a/charts/ace/templates/gateway/route-nats.yaml b/charts/ace/templates/gateway/route-nats.yaml new file mode 100644 index 000000000..5b822c7d4 --- /dev/null +++ b/charts/ace/templates/gateway/route-nats.yaml @@ -0,0 +1,34 @@ +{{ if (and (index .Values "setupJob" "config" "selfManagement" "useGateway") (and .Values.nats.enabled (not .Values.nats.nats.externalAccess))) }} + +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: {{ include "ace.fullname" . }}-nats + namespace: {{ .Release.Namespace }} +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: {{ include "ace.fullname" . }} + namespace: {{ .Release.Namespace }} + sectionName: https + rules: + - matches: + - path: + type: PathPrefix + value: /nats # /nats(/|$)(.*) + filters: + - type: URLRewrite + urlRewrite: + path: + type: ReplacePrefixMatch + replacePrefixMatch: / + backendRefs: + - group: "" + kind: Service + name: {{ include "ace.fullname" . }}-nats + namespace: {{ .Release.Namespace }} + port: 443 + weight: 1 + +{{- end }} diff --git a/charts/ace/templates/ingress/issuer.yaml b/charts/ace/templates/ingress/issuer.yaml index c032ed6a6..9c5c48be7 100644 --- a/charts/ace/templates/ingress/issuer.yaml +++ b/charts/ace/templates/ingress/issuer.yaml @@ -70,6 +70,13 @@ spec: {{- else }} # Use ACEM http challenge for everything else http01: + gatewayHTTPRoute: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: {{ include "ace.fullname" . }} + namespace: {{ .Release.Namespace }} + sectionName: api ingress: ingressClassName: {{ index .Values "ingress-nginx" "controller" "ingressClassResource" "name" }} serviceType: ClusterIP From 92b7e521df4bfc3f04c65f22fa1ddcdae042c62c Mon Sep 17 00:00:00 2001 From: Arnob Kumar Saha Date: Fri, 26 Dec 2025 11:12:19 +0600 Subject: [PATCH 2/9] update Signed-off-by: Arnob Kumar Saha --- charts/ace/templates/ingress/issuer.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/charts/ace/templates/ingress/issuer.yaml b/charts/ace/templates/ingress/issuer.yaml index 9c5c48be7..d6cbce37e 100644 --- a/charts/ace/templates/ingress/issuer.yaml +++ b/charts/ace/templates/ingress/issuer.yaml @@ -70,6 +70,7 @@ spec: {{- else }} # Use ACEM http challenge for everything else http01: + {{ if (index .Values "setupJob" "config" "selfManagement" "useGateway") }} gatewayHTTPRoute: parentRefs: - group: gateway.networking.k8s.io @@ -77,9 +78,11 @@ spec: name: {{ include "ace.fullname" . }} namespace: {{ .Release.Namespace }} sectionName: api + {{- else }} ingress: ingressClassName: {{ index .Values "ingress-nginx" "controller" "ingressClassResource" "name" }} serviceType: ClusterIP + {{- end }} {{- end }} {{- end }} {{- end }} From f2249c696ba52031f4f05fde41027c59cd4d81b0 Mon Sep 17 00:00:00 2001 From: Tamal Saha Date: Tue, 27 Jan 2026 10:29:05 +0600 Subject: [PATCH 3/9] Update Signed-off-by: Tamal Saha --- charts/ace-installer/README.md | 4 ++-- charts/ace-installer/values.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/ace-installer/README.md b/charts/ace-installer/README.md index 418d5bdd9..5b1577daf 100644 --- a/charts/ace-installer/README.md +++ b/charts/ace-installer/README.md @@ -74,7 +74,7 @@ The following table lists the configurable parameters of the `ace-installer` cha | helm.releases.capi-catalog.enabled | | false | | helm.releases.capi-catalog.version | | "v2024.10.24" | | helm.releases.catalog-manager.enabled | | false | -| helm.releases.catalog-manager.version | | "v2025.12.15" | +| helm.releases.catalog-manager.version | | "v2026.1.15" | | helm.releases.cert-manager.enabled | | true | | helm.releases.cert-manager.version | | "v1.19.3" | | helm.releases.cert-manager-csi-driver-cacerts.enabled | | true | @@ -102,7 +102,7 @@ The following table lists the configurable parameters of the `ace-installer` cha | helm.releases.reloader.enabled | | true | | helm.releases.reloader.version | | "1.0.79" | | helm.releases.service-gateway-presets.enabled | | false | -| helm.releases.service-gateway-presets.version | | "v2025.12.15" | +| helm.releases.service-gateway-presets.version | | "v2026.1.15" | | helm.releases.stash-presets.enabled | | false | | helm.releases.stash-presets.version | | "v2026.2.16" | | helm.releases.cluster-manager-spoke.enabled | | false | diff --git a/charts/ace-installer/values.yaml b/charts/ace-installer/values.yaml index 51a98867c..4d90fb819 100644 --- a/charts/ace-installer/values.yaml +++ b/charts/ace-installer/values.yaml @@ -61,7 +61,7 @@ helm: version: "v2024.10.24" catalog-manager: enabled: false - version: "v2025.12.15" + version: "v2026.1.15" cert-manager: enabled: true version: "v1.19.3" @@ -124,7 +124,7 @@ helm: version: "1.0.79" service-gateway-presets: enabled: false - version: "v2025.12.15" + version: "v2026.1.15" stash-presets: enabled: false version: "v2026.2.16" From 382d88399f956540ee36152aa88adc0ad41b4518 Mon Sep 17 00:00:00 2001 From: Arnob Kumar Saha Date: Thu, 29 Jan 2026 13:13:49 +0600 Subject: [PATCH 4/9] Updated acaas chart Signed-off-by: Arnob Kumar Saha --- charts/acaas/templates/blog/ingress.yaml | 2 + charts/acaas/templates/blog/route.yaml | 32 +++++++ charts/acaas/templates/docs/ingress.yaml | 2 + charts/acaas/templates/docs/route.yaml | 30 +++++++ charts/acaas/templates/gateway.yaml | 25 ++++++ .../templates/ingress/ingress-hosted.yaml | 2 + .../acaas/templates/ingress/route-hosted.yaml | 88 +++++++++++++++++++ charts/acaas/templates/learn/ingress.yaml | 2 + charts/acaas/templates/learn/route.yaml | 30 +++++++ charts/acaas/templates/license/ingress.yaml | 2 + charts/acaas/templates/license/route.yaml | 30 +++++++ charts/acaas/templates/selfhost/ingress.yaml | 2 + charts/acaas/templates/selfhost/route.yaml | 30 +++++++ charts/acaas/values.yaml | 10 +++ charts/ace/templates/gateway/gateway.yaml | 6 +- charts/ace/templates/gateway/route-home.yaml | 10 ++- charts/ace/templates/gateway/route-main.yaml | 10 ++- charts/ace/templates/gateway/route-nats.yaml | 10 ++- charts/ace/templates/ingress/issuer.yaml | 2 +- charts/ace/values.yaml | 9 ++ 20 files changed, 328 insertions(+), 6 deletions(-) create mode 100644 charts/acaas/templates/blog/route.yaml create mode 100644 charts/acaas/templates/docs/route.yaml create mode 100644 charts/acaas/templates/gateway.yaml create mode 100644 charts/acaas/templates/ingress/route-hosted.yaml create mode 100644 charts/acaas/templates/learn/route.yaml create mode 100644 charts/acaas/templates/license/route.yaml create mode 100644 charts/acaas/templates/selfhost/route.yaml diff --git a/charts/acaas/templates/blog/ingress.yaml b/charts/acaas/templates/blog/ingress.yaml index 82ca449c5..e9999312e 100644 --- a/charts/acaas/templates/blog/ingress.yaml +++ b/charts/acaas/templates/blog/ingress.yaml @@ -1,3 +1,4 @@ +{{ if .Values "ingress" "enabled" }} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: @@ -25,3 +26,4 @@ spec: - '{{ .Values.global.platform.host }}' secretName: {{ default (printf "%s-cert" (include "acaas.fullname" .)) .Values.ingress.tls.secret.name }} {{- end }} +{{- end }} diff --git a/charts/acaas/templates/blog/route.yaml b/charts/acaas/templates/blog/route.yaml new file mode 100644 index 000000000..9901965ee --- /dev/null +++ b/charts/acaas/templates/blog/route.yaml @@ -0,0 +1,32 @@ +{{ if .Values "httpRoute" "enabled" }} +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + name: blog + namespace: {{ .Release.Namespace }} +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: {{ .Release.Namespace }} + sectionName: https + hostnames: + - {{ .Values.global.platform.host }} + rules: + - matches: + - path: + type: PathPrefix + value: /blog + backendRefs: + - group: "" + kind: Service + name: blog + namespace: {{ .Release.Namespace }} + port: 443 + weight: 1 +{{- end }} diff --git a/charts/acaas/templates/docs/ingress.yaml b/charts/acaas/templates/docs/ingress.yaml index 38196e436..819c4f67a 100644 --- a/charts/acaas/templates/docs/ingress.yaml +++ b/charts/acaas/templates/docs/ingress.yaml @@ -1,3 +1,4 @@ +{{ if .Values "ingress" "enabled" }} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: @@ -25,3 +26,4 @@ spec: - '{{ .Values.global.platform.host }}' secretName: {{ default (printf "%s-cert" (include "acaas.fullname" .)) .Values.ingress.tls.secret.name }} {{- end }} +{{- end }} diff --git a/charts/acaas/templates/docs/route.yaml b/charts/acaas/templates/docs/route.yaml new file mode 100644 index 000000000..d61f20548 --- /dev/null +++ b/charts/acaas/templates/docs/route.yaml @@ -0,0 +1,30 @@ +{{ if .Values "httpRoute" "enabled" }} +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + name: docs + namespace: {{ .Release.Namespace }} +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: {{ .Release.Namespace }} + sectionName: https + hostnames: + - {{ .Values.global.platform.host }} + rules: + - matches: + - path: + type: PathPrefix + value: /docs + backendRefs: + - kind: Service + name: docs + namespace: {{ .Release.Namespace }} + port: 443 +{{- end }} diff --git a/charts/acaas/templates/gateway.yaml b/charts/acaas/templates/gateway.yaml new file mode 100644 index 000000000..1c1d7a090 --- /dev/null +++ b/charts/acaas/templates/gateway.yaml @@ -0,0 +1,25 @@ +{{ if .Values "httpRoute" "enabled" }} +apiVersion: gateway.networking.k8s.io/v1 +kind: Gateway +metadata: + name: ace + namespace: {{ .Release.Namespace }} +spec: + gatewayClassName: {{ .Values.httpRoute.gatewayClassName }} + listeners: + - name: https + protocol: HTTPS + port: 443 + {{ if .Values.httpRoute.tls.enable }} + tls: + mode: Terminate + certificateRefs: + - group: "" + kind: Secret + name: {{ default (printf "%s-cert" (include "acaas.fullname" .)) .Values.httpRoute.tls.secret.name }} + namespace: {{ .Release.Namespace }} + {{- end }} + allowedRoutes: + namespaces: + from: Same +{{- end }} diff --git a/charts/acaas/templates/ingress/ingress-hosted.yaml b/charts/acaas/templates/ingress/ingress-hosted.yaml index 422e156db..c846d9644 100644 --- a/charts/acaas/templates/ingress/ingress-hosted.yaml +++ b/charts/acaas/templates/ingress/ingress-hosted.yaml @@ -1,3 +1,4 @@ +{{ if .Values "ingress" "enabled" }} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: @@ -69,3 +70,4 @@ spec: - secretName: {{ default (printf "%s-cert" (include "acaas.fullname" .)) .Values.ingress.tls.secret.name }} hosts: - '{{ .Values.global.platform.host }}' +{{- end }} diff --git a/charts/acaas/templates/ingress/route-hosted.yaml b/charts/acaas/templates/ingress/route-hosted.yaml new file mode 100644 index 000000000..3a7e9ff9a --- /dev/null +++ b/charts/acaas/templates/ingress/route-hosted.yaml @@ -0,0 +1,88 @@ +{{ if .Values "httpRoute" "enabled" }} +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + name: ace-hosted + namespace: {{ .Release.Namespace }} + labels: + {{- include "acaas.labels" . | nindent 4 }} +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: {{ .Release.Namespace }} + sectionName: https + hostnames: + - {{ .Values.global.platform.host }} + rules: + {{- if (index .Values "billing-ui" "enabled") }} + - matches: + - path: + type: PathPrefix + value: /billing + backendRefs: + - kind: Service + name: {{ .Release.Name }}-billing-ui + port: 80 + {{- end }} + + {{- if (index .Values "deploy-ui" "enabled") }} + - matches: + - path: + type: PathPrefix + value: /deploy + backendRefs: + - kind: Service + name: {{ .Release.Name }}-deploy-ui + port: 80 + {{- end }} + + {{- if (index .Values "marketplace-api" "enabled") }} + - matches: + - path: + type: PathPrefix + value: /marketplace/api + backendRefs: + - kind: Service + name: {{ .Release.Name }}-marketplace-api + port: 80 + {{- end }} + + {{- if (index .Values "marketplace-ui" "enabled") }} + - matches: + - path: + type: PathPrefix + value: /marketplace + backendRefs: + - kind: Service + name: {{ .Release.Name }}-marketplace-ui + port: 80 + {{- end }} + + {{- if (index .Values "platform-links" "enabled") }} + - matches: + - path: + type: PathPrefix + value: /links + backendRefs: + - kind: Service + name: {{ .Release.Name }}-platform-links + port: 80 + {{- end }} + + {{- if (index .Values "website" "enabled") }} + - matches: + - path: + type: PathPrefix + value: / + backendRefs: + - kind: Service + name: {{ .Release.Name }}-website + port: 80 + {{- end }} +{{- end }} diff --git a/charts/acaas/templates/learn/ingress.yaml b/charts/acaas/templates/learn/ingress.yaml index a24fc8553..67b38b4b5 100644 --- a/charts/acaas/templates/learn/ingress.yaml +++ b/charts/acaas/templates/learn/ingress.yaml @@ -1,3 +1,4 @@ +{{ if .Values "ingress" "enabled" }} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: @@ -25,3 +26,4 @@ spec: - '{{ .Values.global.platform.host }}' secretName: {{ default (printf "%s-cert" (include "acaas.fullname" .)) .Values.ingress.tls.secret.name }} {{- end }} +{{- end }} diff --git a/charts/acaas/templates/learn/route.yaml b/charts/acaas/templates/learn/route.yaml new file mode 100644 index 000000000..20fbce6ac --- /dev/null +++ b/charts/acaas/templates/learn/route.yaml @@ -0,0 +1,30 @@ +{{ if .Values "httpRoute" "enabled" }} +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + name: learn + namespace: {{ .Release.Namespace }} +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: {{ .Release.Namespace }} + sectionName: https + hostnames: + - {{ .Values.global.platform.host }} + rules: + - matches: + - path: + type: PathPrefix + value: /learn + backendRefs: + - kind: Service + name: learn + namespace: {{ .Release.Namespace }} + port: 443 +{{- end }} diff --git a/charts/acaas/templates/license/ingress.yaml b/charts/acaas/templates/license/ingress.yaml index 6e0f867eb..3da3eb644 100644 --- a/charts/acaas/templates/license/ingress.yaml +++ b/charts/acaas/templates/license/ingress.yaml @@ -1,3 +1,4 @@ +{{ if .Values "ingress" "enabled" }} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: @@ -29,3 +30,4 @@ spec: - '{{ .Values.global.platform.host }}' secretName: {{ default (printf "%s-cert" (include "acaas.fullname" .)) .Values.ingress.tls.secret.name }} {{- end }} +{{- end }} diff --git a/charts/acaas/templates/license/route.yaml b/charts/acaas/templates/license/route.yaml new file mode 100644 index 000000000..2ea608467 --- /dev/null +++ b/charts/acaas/templates/license/route.yaml @@ -0,0 +1,30 @@ +{{ if .Values "httpRoute" "enabled" }} +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + name: license + namespace: {{ .Release.Namespace }} +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: {{ .Release.Namespace }} + sectionName: https + hostnames: + - {{ .Values.global.platform.host }} + rules: + - matches: + - path: + type: PathPrefix + value: /issue-license + backendRefs: + - kind: Service + name: license + namespace: {{ .Release.Namespace }} + port: 443 +{{- end }} diff --git a/charts/acaas/templates/selfhost/ingress.yaml b/charts/acaas/templates/selfhost/ingress.yaml index 184d16067..ca380c685 100644 --- a/charts/acaas/templates/selfhost/ingress.yaml +++ b/charts/acaas/templates/selfhost/ingress.yaml @@ -1,3 +1,4 @@ +{{ if .Values "ingress" "enabled" }} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: @@ -25,3 +26,4 @@ spec: - '{{ .Values.global.platform.host }}' secretName: {{ default (printf "%s-cert" (include "acaas.fullname" .)) .Values.ingress.tls.secret.name }} {{- end }} +{{- end }} diff --git a/charts/acaas/templates/selfhost/route.yaml b/charts/acaas/templates/selfhost/route.yaml new file mode 100644 index 000000000..127609055 --- /dev/null +++ b/charts/acaas/templates/selfhost/route.yaml @@ -0,0 +1,30 @@ +{{ if .Values "httpRoute" "enabled" }} +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + name: selfhost + namespace: {{ .Release.Namespace }} +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: {{ .Release.Namespace }} + sectionName: https + hostnames: + - {{ .Values.global.platform.host }} + rules: + - matches: + - path: + type: PathPrefix + value: /selfhost + backendRefs: + - kind: Service + name: selfhost + namespace: {{ .Release.Namespace }} + port: 443 +{{- end }} diff --git a/charts/acaas/values.yaml b/charts/acaas/values.yaml index 444b700bc..de939521c 100644 --- a/charts/acaas/values.yaml +++ b/charts/acaas/values.yaml @@ -55,7 +55,17 @@ global: openshift: false ubi: "" +httpRoute: + annotations: {} + enabled: false + gatewayClassName: ace + tls: + enable: true + secret: + name: "ace-cert" + ingress: + enabled: true className: "nginx-ace" tls: enable: true diff --git a/charts/ace/templates/gateway/gateway.yaml b/charts/ace/templates/gateway/gateway.yaml index b95585075..07e765815 100644 --- a/charts/ace/templates/gateway/gateway.yaml +++ b/charts/ace/templates/gateway/gateway.yaml @@ -1,3 +1,4 @@ +{{ if .Values "httpRoute" "enabled" }} apiVersion: gateway.networking.k8s.io/v1 kind: Gateway metadata: @@ -6,7 +7,7 @@ metadata: labels: {{- include "ace.labels" . | nindent 4 }} spec: - gatewayClassName: ace + gatewayClassName: {{ .Values.httpRoute.gatewayClassName }} listeners: - name: https protocol: HTTPS @@ -20,4 +21,5 @@ spec: namespace: {{ .Release.Namespace }} allowedRoutes: namespaces: - from: Same \ No newline at end of file + from: Same +{{- end }} diff --git a/charts/ace/templates/gateway/route-home.yaml b/charts/ace/templates/gateway/route-home.yaml index b8d90e307..5fc545070 100644 --- a/charts/ace/templates/gateway/route-home.yaml +++ b/charts/ace/templates/gateway/route-home.yaml @@ -1,10 +1,14 @@ -{{ if and (index .Values "setupJob" "config" "selfManagement" "useGateway") (index .Values "platform-ui" "enabled") (not (eq .Values.global.platform.deploymentType "Hosted")) }} +{{ if and (index .Values "httpRoute" "enabled") (index .Values "platform-ui" "enabled") (not (eq .Values.global.platform.deploymentType "Hosted")) }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: name: {{ include "ace.fullname" . }}-home namespace: {{ .Release.Namespace }} + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} spec: parentRefs: - group: gateway.networking.k8s.io @@ -12,6 +16,10 @@ spec: name: {{ include "ace.fullname" . }} namespace: {{ .Release.Namespace }} sectionName: https + {{- if eq .Values.global.platform.hostType "domain" }} + hostnames: + - {{ .Values.global.platform.host }} + {{- end }} rules: - matches: - path: diff --git a/charts/ace/templates/gateway/route-main.yaml b/charts/ace/templates/gateway/route-main.yaml index c84d015ca..af0cda245 100644 --- a/charts/ace/templates/gateway/route-main.yaml +++ b/charts/ace/templates/gateway/route-main.yaml @@ -1,10 +1,14 @@ -{{ if (index .Values "setupJob" "config" "selfManagement" "useGateway") }} +{{ if (index .Values "httpRoute" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: name: {{ include "ace.fullname" . }} namespace: {{ .Release.Namespace }} + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} spec: parentRefs: - group: gateway.networking.k8s.io @@ -12,6 +16,10 @@ spec: name: {{ include "ace.fullname" . }} namespace: {{ .Release.Namespace }} sectionName: https + {{- if eq .Values.global.platform.hostType "domain" }} + hostnames: + - {{ .Values.global.platform.host }} + {{- end }} rules: - matches: - path: diff --git a/charts/ace/templates/gateway/route-nats.yaml b/charts/ace/templates/gateway/route-nats.yaml index 5b822c7d4..81d78c0b0 100644 --- a/charts/ace/templates/gateway/route-nats.yaml +++ b/charts/ace/templates/gateway/route-nats.yaml @@ -1,10 +1,14 @@ -{{ if (and (index .Values "setupJob" "config" "selfManagement" "useGateway") (and .Values.nats.enabled (not .Values.nats.nats.externalAccess))) }} +{{ if (and (index .Values "httpRoute" "enabled") (and .Values.nats.enabled (not .Values.nats.nats.externalAccess))) }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: name: {{ include "ace.fullname" . }}-nats namespace: {{ .Release.Namespace }} + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} spec: parentRefs: - group: gateway.networking.k8s.io @@ -12,6 +16,10 @@ spec: name: {{ include "ace.fullname" . }} namespace: {{ .Release.Namespace }} sectionName: https + {{- if eq .Values.global.platform.hostType "domain" }} + hostnames: + - {{ .Values.global.platform.host }} + {{- end }} rules: - matches: - path: diff --git a/charts/ace/templates/ingress/issuer.yaml b/charts/ace/templates/ingress/issuer.yaml index d6cbce37e..1c96ba12e 100644 --- a/charts/ace/templates/ingress/issuer.yaml +++ b/charts/ace/templates/ingress/issuer.yaml @@ -70,7 +70,7 @@ spec: {{- else }} # Use ACEM http challenge for everything else http01: - {{ if (index .Values "setupJob" "config" "selfManagement" "useGateway") }} + {{ if (index .Values "httpRoute" "enabled") }} gatewayHTTPRoute: parentRefs: - group: gateway.networking.k8s.io diff --git a/charts/ace/values.yaml b/charts/ace/values.yaml index 8f5b92f93..ad925b473 100644 --- a/charts/ace/values.yaml +++ b/charts/ace/values.yaml @@ -17,6 +17,15 @@ kubedb-ui: platform-api: enabled: false +httpRoute: + annotations: {} + enabled: false + gatewayClassName: ace + tls: + enable: true + secret: + name: "ace-cert" + ingress-nginx: enabled: false # controller: From 52a6372c8cf6cde368f2d7cf51e8bbe92dbc0dc9 Mon Sep 17 00:00:00 2001 From: Arnob Kumar Saha Date: Sun, 15 Feb 2026 20:57:56 +0600 Subject: [PATCH 5/9] continue Signed-off-by: Arnob kumar saha --- charts/ace/templates/gateway/gateway.yaml | 2 +- charts/dns-proxy/templates/httproute.yaml | 47 +++++++++++++++++++ charts/dns-proxy/values.yaml | 14 ++++++ charts/gh-ci-webhook/templates/httproute.yaml | 45 ++++++++++++++++++ charts/gh-ci-webhook/values.yaml | 14 ++++++ charts/inbox-ui/templates/httproute.yaml | 47 +++++++++++++++++++ charts/inbox-ui/values.yaml | 14 ++++++ charts/minio/templates/httproute.yaml | 47 +++++++++++++++++++ charts/minio/values.yaml | 14 ++++++ .../templates/httproute.yaml | 45 ++++++++++++++++++ charts/offline-license-server/values.yaml | 14 ++++++ charts/s3proxy/templates/httproute.yaml | 44 +++++++++++++++++ charts/s3proxy/values.yaml | 14 ++++++ .../service-backend/templates/httproute.yaml | 47 +++++++++++++++++++ charts/service-backend/values.yaml | 14 ++++++ charts/smtprelay/templates/httproute.yaml | 47 +++++++++++++++++++ charts/smtprelay/values.yaml | 14 ++++++ 17 files changed, 482 insertions(+), 1 deletion(-) create mode 100644 charts/dns-proxy/templates/httproute.yaml create mode 100644 charts/gh-ci-webhook/templates/httproute.yaml create mode 100644 charts/inbox-ui/templates/httproute.yaml create mode 100644 charts/minio/templates/httproute.yaml create mode 100644 charts/offline-license-server/templates/httproute.yaml create mode 100644 charts/s3proxy/templates/httproute.yaml create mode 100644 charts/service-backend/templates/httproute.yaml create mode 100644 charts/smtprelay/templates/httproute.yaml diff --git a/charts/ace/templates/gateway/gateway.yaml b/charts/ace/templates/gateway/gateway.yaml index 07e765815..470652957 100644 --- a/charts/ace/templates/gateway/gateway.yaml +++ b/charts/ace/templates/gateway/gateway.yaml @@ -1,4 +1,4 @@ -{{ if .Values "httpRoute" "enabled" }} +{{ if (index .Values "httpRoute" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: Gateway metadata: diff --git a/charts/dns-proxy/templates/httproute.yaml b/charts/dns-proxy/templates/httproute.yaml new file mode 100644 index 000000000..6dd153c9c --- /dev/null +++ b/charts/dns-proxy/templates/httproute.yaml @@ -0,0 +1,47 @@ +{{- if (index .Values "httpRoute" "enabled") }} +{{- $fullName := include "dns-proxy.fullname" . -}} +{{- $svcPort := .Values.service.port -}} + +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: {{ $fullName }} + namespace: {{ .Release.Namespace }} + labels: + {{- include "dns-proxy.labels" . | nindent 4 }} + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: ace + sectionName: https + + hostnames: + {{- range .Values.httpRoute.hosts }} + - {{ .host | quote }} + {{- end }} + + rules: + {{- range .Values.httpRoute.hosts }} + {{- range .paths }} + - matches: + - path: + type: PathPrefix + value: {{ .path }} + backendRefs: + - group: "" + kind: Service + name: {{ $fullName }} + namespace: {{ $.Release.Namespace }} + port: {{ $svcPort }} + weight: 1 + {{- end }} + {{- end }} + +{{- end }} diff --git a/charts/dns-proxy/values.yaml b/charts/dns-proxy/values.yaml index 0061bf10a..b3d2614ef 100644 --- a/charts/dns-proxy/values.yaml +++ b/charts/dns-proxy/values.yaml @@ -64,6 +64,20 @@ ingress: # hosts: # - chart-example.local +httpRoute: + annotations: {} + enabled: false + gatewayClassName: ace + tls: + enable: true + secret: + name: "ace-cert" + hosts: [] + # - host: chart-example.local + # paths: + # - path: / + # pathType: ImplementationSpecific + resources: {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little diff --git a/charts/gh-ci-webhook/templates/httproute.yaml b/charts/gh-ci-webhook/templates/httproute.yaml new file mode 100644 index 000000000..594f65026 --- /dev/null +++ b/charts/gh-ci-webhook/templates/httproute.yaml @@ -0,0 +1,45 @@ +{{- if (index .Values "httpRoute" "enabled") }} + +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: {{ include "gh-ci-webhook.fullname" . }} + namespace: {{ .Release.Namespace }} + labels: + {{- include "gh-ci-webhook.labels" . | nindent 4 }} + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: ace + sectionName: https + + hostnames: + {{- range .Values.httpRoute.hosts }} + - {{ .host | quote }} + {{- end }} + + rules: + {{- range .Values.httpRoute.hosts }} + {{- range .paths }} + - matches: + - path: + type: PathPrefix + value: {{ .path }} + backendRefs: + - group: "" + kind: Service + name: {{ include "gh-ci-webhook.fullname" $ }} + namespace: {{ $.Release.Namespace }} + port: {{ $.Values.service.port }} + weight: 1 + {{- end }} + {{- end }} + +{{- end }} diff --git a/charts/gh-ci-webhook/values.yaml b/charts/gh-ci-webhook/values.yaml index 4f0662bb1..7174444de 100644 --- a/charts/gh-ci-webhook/values.yaml +++ b/charts/gh-ci-webhook/values.yaml @@ -73,6 +73,20 @@ ingress: # hosts: # - chart-example.local +httpRoute: + annotations: {} + enabled: false + gatewayClassName: ace + tls: + enable: true + secret: + name: "ace-cert" + hosts: [] + # - host: chart-example.local + # paths: + # - path: / + # pathType: ImplementationSpecific + resources: {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little diff --git a/charts/inbox-ui/templates/httproute.yaml b/charts/inbox-ui/templates/httproute.yaml new file mode 100644 index 000000000..122a62d5f --- /dev/null +++ b/charts/inbox-ui/templates/httproute.yaml @@ -0,0 +1,47 @@ +{{- if (index .Values "httpRoute" "enabled") }} +{{- $fullName := include "inbox-ui.fullname" . -}} +{{- $svcPort := .Values.service.port -}} + +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: {{ $fullName }} + namespace: {{ .Release.Namespace }} + labels: + {{- include "inbox-ui.labels" . | nindent 4 }} + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: ace + sectionName: https + + hostnames: + {{- range .Values.httpRoute.hosts }} + - {{ .host | quote }} + {{- end }} + + rules: + {{- range .Values.httpRoute.hosts }} + {{- range .paths }} + - matches: + - path: + type: PathPrefix + value: {{ .path }} + backendRefs: + - group: "" + kind: Service + name: {{ $fullName }} + namespace: {{ $.Release.Namespace }} + port: {{ $svcPort }} + weight: 1 + {{- end }} + {{- end }} + +{{- end }} diff --git a/charts/inbox-ui/values.yaml b/charts/inbox-ui/values.yaml index a1d81b9c6..1aee2f317 100644 --- a/charts/inbox-ui/values.yaml +++ b/charts/inbox-ui/values.yaml @@ -63,6 +63,20 @@ ingress: dns: targetIPs: [] +httpRoute: + annotations: {} + enabled: false + gatewayClassName: ace + tls: + enable: true + secret: + name: "ace-cert" + hosts: [] + # - host: chart-example.local + # paths: + # - path: / + # pathType: ImplementationSpecific + resources: {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little diff --git a/charts/minio/templates/httproute.yaml b/charts/minio/templates/httproute.yaml new file mode 100644 index 000000000..702b16603 --- /dev/null +++ b/charts/minio/templates/httproute.yaml @@ -0,0 +1,47 @@ +{{- if (index .Values "httpRoute" "enabled") }} +{{- $fullName := include "service-backend.fullname" . -}} +{{- $svcPort := .Values.service.port -}} + +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: {{ include "minio.fullname" . }} + namespace: {{ .Release.Namespace }} + labels: + {{- include "service-backend.labels" . | nindent 4 }} + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: ace + sectionName: https + + hostnames: + {{- range .Values.httpRoute.hosts }} + - {{ .host | quote }} + {{- end }} + + rules: + {{- range .Values.httpRoute.hosts }} + {{- range .paths }} + - matches: + - path: + type: PathPrefix + value: {{ .path }} + backendRefs: + - group: "" + kind: Service + name: {{ include "minio.fullname" . }} + namespace: {{ $.Release.Namespace }} + port: {{ $svcPort }} + weight: 1 + {{- end }} + {{- end }} + +{{- end }} diff --git a/charts/minio/values.yaml b/charts/minio/values.yaml index 4addd6482..e489c8f39 100644 --- a/charts/minio/values.yaml +++ b/charts/minio/values.yaml @@ -46,6 +46,20 @@ ingress: # kubernetes.io/tls-acme: "true" domain: "" +httpRoute: + annotations: {} + enabled: false + gatewayClassName: ace + tls: + enable: true + secret: + name: "ace-cert" + hosts: [] + # - host: chart-example.local + # paths: + # - path: / + # pathType: ImplementationSpecific + resources: {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little diff --git a/charts/offline-license-server/templates/httproute.yaml b/charts/offline-license-server/templates/httproute.yaml new file mode 100644 index 000000000..a08bb5934 --- /dev/null +++ b/charts/offline-license-server/templates/httproute.yaml @@ -0,0 +1,45 @@ +{{- if (index .Values "httpRoute" "enabled") }} + +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: {{ include "offline-license-server.fullname" . }} + namespace: {{ .Release.Namespace }} + labels: + {{- include "offline-license-server.labels" . | nindent 4 }} + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: ace + sectionName: https + + hostnames: + {{- range .Values.httpRoute.hosts }} + - {{ .host | quote }} + {{- end }} + + rules: + {{- range .Values.httpRoute.hosts }} + {{- range .paths }} + - matches: + - path: + type: PathPrefix + value: {{ .path }} + backendRefs: + - group: "" + kind: Service + name: {{ include "offline-license-server.fullname" $ }} + namespace: {{ $.Release.Namespace }} + port: {{ $.Values.service.port }} + weight: 1 + {{- end }} + {{- end }} + +{{- end }} diff --git a/charts/offline-license-server/values.yaml b/charts/offline-license-server/values.yaml index 1c054dabe..4048ee10d 100644 --- a/charts/offline-license-server/values.yaml +++ b/charts/offline-license-server/values.yaml @@ -80,6 +80,20 @@ ingress: # hosts: # - chart-example.local +httpRoute: + annotations: {} + enabled: false + gatewayClassName: ace + tls: + enable: true + secret: + name: "ace-cert" + hosts: [] + # - host: chart-example.local + # paths: + # - path: / + # pathType: ImplementationSpecific + resources: {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little diff --git a/charts/s3proxy/templates/httproute.yaml b/charts/s3proxy/templates/httproute.yaml new file mode 100644 index 000000000..ade5f8f71 --- /dev/null +++ b/charts/s3proxy/templates/httproute.yaml @@ -0,0 +1,44 @@ +{{- if (index .Values "httpRoute" "enabled") }} + +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: {{ include "s3proxy.fullname" . }} + namespace: {{ .Release.Namespace }} + labels: + {{- include "s3proxy.labels" . | nindent 4 }} + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: ace + sectionName: https + hostnames: + {{- range .Values.httpRoute.hosts }} + - {{ .host | quote }} + {{- end }} + + rules: + {{- range .Values.httpRoute.hosts }} + {{- range .paths }} + - matches: + - path: + type: PathPrefix + value: {{ .path }} + backendRefs: + - group: "" + kind: Service + name: {{ include "s3proxy.fullname" . }} + namespace: {{ .Release.Namespace }} + port: {{ .Values.service.port }} + weight: 1 + {{- end }} + {{- end }} + +{{- end }} diff --git a/charts/s3proxy/values.yaml b/charts/s3proxy/values.yaml index 3d2d1d3df..d9bfc3e36 100644 --- a/charts/s3proxy/values.yaml +++ b/charts/s3proxy/values.yaml @@ -46,6 +46,20 @@ ingress: # kubernetes.io/tls-acme: "true" domain: "" +httpRoute: + annotations: {} + enabled: false + gatewayClassName: ace + tls: + enable: true + secret: + name: "ace-cert" + hosts: [] + # - host: chart-example.local + # paths: + # - path: / + # pathType: ImplementationSpecific + resources: {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little diff --git a/charts/service-backend/templates/httproute.yaml b/charts/service-backend/templates/httproute.yaml new file mode 100644 index 000000000..3138c5fb9 --- /dev/null +++ b/charts/service-backend/templates/httproute.yaml @@ -0,0 +1,47 @@ +{{- if (index .Values "httpRoute" "enabled") }} +{{- $fullName := include "service-backend.fullname" . -}} +{{- $svcPort := .Values.service.port -}} + +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: {{ $fullName }} + namespace: {{ .Release.Namespace }} + labels: + {{- include "service-backend.labels" . | nindent 4 }} + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: ace + sectionName: https + + hostnames: + {{- range .Values.httpRoute.hosts }} + - {{ .host | quote }} + {{- end }} + + rules: + {{- range .Values.httpRoute.hosts }} + {{- range .paths }} + - matches: + - path: + type: PathPrefix + value: {{ .path }} + backendRefs: + - group: "" + kind: Service + name: {{ $fullName }} + namespace: {{ $.Release.Namespace }} + port: {{ $svcPort }} + weight: 1 + {{- end }} + {{- end }} + +{{- end }} diff --git a/charts/service-backend/values.yaml b/charts/service-backend/values.yaml index 3afdcb904..18429e4ee 100644 --- a/charts/service-backend/values.yaml +++ b/charts/service-backend/values.yaml @@ -63,6 +63,20 @@ ingress: dns: targetIPs: [] +httpRoute: + annotations: {} + enabled: false + gatewayClassName: ace + tls: + enable: true + secret: + name: "ace-cert" + hosts: [] + # - host: chart-example.local + # paths: + # - path: / + # pathType: ImplementationSpecific + resources: {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little diff --git a/charts/smtprelay/templates/httproute.yaml b/charts/smtprelay/templates/httproute.yaml new file mode 100644 index 000000000..a0d605554 --- /dev/null +++ b/charts/smtprelay/templates/httproute.yaml @@ -0,0 +1,47 @@ +{{- if (index .Values "httpRoute" "enabled") }} +{{- $fullName := include "smtprelay.fullname" . -}} +{{- $svcPort := .Values.service.port -}} + +apiVersion: gateway.networking.k8s.io/v1 +kind: HTTPRoute +metadata: + name: {{ $fullName }} + namespace: {{ .Release.Namespace }} + labels: + {{- include "smtprelay.labels" . | nindent 4 }} + {{- with .Values.httpRoute.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} + +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: ace + sectionName: https + + hostnames: + {{- range .Values.ingress.hosts }} + - {{ .host | quote }} + {{- end }} + + rules: + {{- range .Values.ingress.hosts }} + {{- range .paths }} + - matches: + - path: + type: PathPrefix + value: {{ .path }} + backendRefs: + - group: "" + kind: Service + name: {{ $fullName }} + namespace: {{ $.Release.Namespace }} + port: {{ $svcPort }} + weight: 1 + {{- end }} + {{- end }} + +{{- end }} diff --git a/charts/smtprelay/values.yaml b/charts/smtprelay/values.yaml index e6f780073..a58deaf65 100644 --- a/charts/smtprelay/values.yaml +++ b/charts/smtprelay/values.yaml @@ -68,6 +68,20 @@ ingress: # hosts: # - chart-example.local +httpRoute: + annotations: {} + enabled: false + gatewayClassName: ace + tls: + enable: true + secret: + name: "ace-cert" + hosts: [] + # - host: chart-example.local + # paths: + # - path: / + # pathType: ImplementationSpecific + resources: {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little From 24374a0b6edfdd72f07b018f77d15ea256331123 Mon Sep 17 00:00:00 2001 From: Arnob Kumar Saha Date: Thu, 19 Feb 2026 12:43:47 +0600 Subject: [PATCH 6/9] Api changes Signed-off-by: Arnob kumar saha --- apis/installer/v1alpha1/ace_ace_types.go | 6 + apis/installer/v1alpha1/ace_inbox_ui_types.go | 5 +- apis/installer/v1alpha1/ace_options_types.go | 6 + .../v1alpha1/ace_service_backend_types.go | 1 + apis/installer/v1alpha1/dns_proxy.go | 1 + .../installer/v1alpha1/gh_ci_webhook_types.go | 1 + apis/installer/v1alpha1/minio.go | 1 + .../v1alpha1/offline_license_server_types.go | 1 + apis/installer/v1alpha1/s3proxy.go | 1 + apis/installer/v1alpha1/shared_types.go | 46 ++++++ apis/installer/v1alpha1/smtprelay_types.go | 1 + .../v1alpha1/zz_generated.deepcopy.go | 148 ++++++++++++++++++ charts/acaas/README.md | 6 + charts/ace/README.md | 7 +- charts/ace/values.openapiv3_schema.yaml | 86 ++++++++++ charts/dns-proxy/README.md | 6 + charts/dns-proxy/values.openapiv3_schema.yaml | 55 +++++++ charts/gh-ci-webhook/README.md | 6 + charts/inbox-ui/README.md | 6 + charts/inbox-ui/values.openapiv3_schema.yaml | 55 +++++++ charts/minio/README.md | 6 + charts/minio/values.openapiv3_schema.yaml | 55 +++++++ charts/offline-license-server/README.md | 6 + charts/s3proxy/README.md | 6 + charts/s3proxy/values.openapiv3_schema.yaml | 55 +++++++ charts/service-backend/README.md | 6 + .../values.openapiv3_schema.yaml | 55 +++++++ charts/smtprelay/README.md | 6 + charts/smtprelay/values.openapiv3_schema.yaml | 55 +++++++ .../ace-options/values.openapiv3_schema.yaml | 11 ++ 30 files changed, 703 insertions(+), 3 deletions(-) create mode 100644 apis/installer/v1alpha1/shared_types.go diff --git a/apis/installer/v1alpha1/ace_ace_types.go b/apis/installer/v1alpha1/ace_ace_types.go index 1b137e696..dc7c2fc26 100644 --- a/apis/installer/v1alpha1/ace_ace_types.go +++ b/apis/installer/v1alpha1/ace_ace_types.go @@ -58,6 +58,7 @@ type AceSpec struct { KubedbUi AceKubedbUi `json:"kubedb-ui"` PlatformApi AcePlatformApi `json:"platform-api"` IngressNginx AceIngressNginx `json:"ingress-nginx"` + HTTPRoute AceHTTPRoute `json:"httpRoute"` IngressDns AceIngressDns `json:"ingress-dns"` Nats AceNats `json:"nats"` NatsDns AceNatsDns `json:"nats-dns"` @@ -137,6 +138,11 @@ type AceIngressNginx struct { *IngressNginxSpec `json:",inline,omitempty"` } +type AceHTTPRoute struct { + Enabled bool `json:"enabled"` + *HTTPRouteSpec `json:",inline,omitempty"` +} + type AceIngressDns struct { Enabled bool `json:"enabled"` Spec *dnsapi.ExternalDNSSpec `json:"spec,omitempty"` diff --git a/apis/installer/v1alpha1/ace_inbox_ui_types.go b/apis/installer/v1alpha1/ace_inbox_ui_types.go index de4cbdb51..83a984168 100644 --- a/apis/installer/v1alpha1/ace_inbox_ui_types.go +++ b/apis/installer/v1alpha1/ace_inbox_ui_types.go @@ -73,8 +73,9 @@ type InboxUiSpec struct { Tolerations []core.Toleration `json:"tolerations"` // If specified, the pod's scheduling constraints // +optional - Affinity *core.Affinity `json:"affinity"` - Ingress PlatformIngress `json:"ingress"` + Affinity *core.Affinity `json:"affinity"` + Ingress PlatformIngress `json:"ingress"` + HTTPRoute AppHTTPRoute `json:"httpRoute"` // +optional Distro shared.DistroSpec `json:"distro"` } diff --git a/apis/installer/v1alpha1/ace_options_types.go b/apis/installer/v1alpha1/ace_options_types.go index c1aadcf02..901188d34 100644 --- a/apis/installer/v1alpha1/ace_options_types.go +++ b/apis/installer/v1alpha1/ace_options_types.go @@ -66,6 +66,7 @@ type AceOptionsSpec struct { KubedbUi AceOptionsComponentSpec `json:"kubedb-ui"` PlatformApi AceOptionsComponentSpec `json:"platform-api"` Ingress AceOptionsIngressNginx `json:"ingress"` + HTTPRoute AceOptionsHTTPRoute `json:"httpRoute"` Nats AceOptionsNatsSettings `json:"nats"` Trickster AceOptionsComponentSpec `json:"trickster"` Openfga AceOptionsComponentSpec `json:"openfga"` @@ -186,6 +187,7 @@ const ( ) type AceOptionsIngressNginx struct { + Enabled bool `json:"enabled"` Annotations map[string]string `json:"annotations,omitempty"` ExposeVia ServiceType `json:"exposeVia"` // DNS record types that will be considered for management @@ -197,6 +199,10 @@ type AceOptionsIngressNginx struct { ExternalIPs []string `json:"externalIPs"` } +type AceOptionsHTTPRoute struct { + Enabled bool `json:"enabled"` +} + // +kubebuilder:validation:Enum=Ingress;HostPort type ExposeNatsVia string diff --git a/apis/installer/v1alpha1/ace_service_backend_types.go b/apis/installer/v1alpha1/ace_service_backend_types.go index 3ac1635b1..9ac201bca 100644 --- a/apis/installer/v1alpha1/ace_service_backend_types.go +++ b/apis/installer/v1alpha1/ace_service_backend_types.go @@ -77,6 +77,7 @@ type ServiceBackendSpec struct { Volumes []core.Volume `json:"volumes"` VolumeMounts []core.VolumeMount `json:"volumeMounts"` Ingress PlatformIngress `json:"ingress"` + HTTPRoute AppHTTPRoute `json:"httpRoute"` Monitoring Monitoring `json:"monitoring"` Server ServerConfig `json:"server"` // +optional diff --git a/apis/installer/v1alpha1/dns_proxy.go b/apis/installer/v1alpha1/dns_proxy.go index cc0dc37e6..5ebbde4aa 100644 --- a/apis/installer/v1alpha1/dns_proxy.go +++ b/apis/installer/v1alpha1/dns_proxy.go @@ -76,6 +76,7 @@ type DnsProxySpec struct { Affinity *core.Affinity `json:"affinity"` Monitoring CustomMonitoring `json:"monitoring"` Ingress AppIngress `json:"ingress"` + HTTPRoute AppHTTPRoute `json:"httpRoute"` Cloudflare CloudflareTokenReference `json:"cloudflare"` Auth DNSProxyAuth `json:"auth"` TLSSecretRef LocalObjectReference `json:"tlsSecretRef"` diff --git a/apis/installer/v1alpha1/gh_ci_webhook_types.go b/apis/installer/v1alpha1/gh_ci_webhook_types.go index ec34a3099..6364fdf9b 100644 --- a/apis/installer/v1alpha1/gh_ci_webhook_types.go +++ b/apis/installer/v1alpha1/gh_ci_webhook_types.go @@ -73,6 +73,7 @@ type GhCiWebhookSpec struct { // +optional Affinity *core.Affinity `json:"affinity"` Ingress AppIngress `json:"ingress"` + HTTPRoute AppHTTPRoute `json:"httpRoute"` Volumes []core.Volume `json:"volumes"` VolumeMounts []core.VolumeMount `json:"volumeMounts"` Args []string `json:"args"` diff --git a/apis/installer/v1alpha1/minio.go b/apis/installer/v1alpha1/minio.go index e721bc099..e89c27867 100644 --- a/apis/installer/v1alpha1/minio.go +++ b/apis/installer/v1alpha1/minio.go @@ -75,6 +75,7 @@ type MinioSpec struct { Persistence PersistenceSpec `json:"persistence"` StorageClass LocalObjectReference `json:"storageClass"` Ingress MinioIngress `json:"ingress"` + HTTPRoute AppHTTPRoute `json:"httpRoute"` Minio MinioConfig `json:"minio"` // +optional Distro shared.DistroSpec `json:"distro"` diff --git a/apis/installer/v1alpha1/offline_license_server_types.go b/apis/installer/v1alpha1/offline_license_server_types.go index a9e815972..4168ca8ef 100644 --- a/apis/installer/v1alpha1/offline_license_server_types.go +++ b/apis/installer/v1alpha1/offline_license_server_types.go @@ -74,6 +74,7 @@ type OfflineLicenseServerSpec struct { // +optional Affinity *core.Affinity `json:"affinity"` Ingress AppIngress `json:"ingress"` + HTTPRoute AppHTTPRoute `json:"httpRoute"` Volumes []core.Volume `json:"volumes"` VolumeMounts []core.VolumeMount `json:"volumeMounts"` Args []string `json:"args"` diff --git a/apis/installer/v1alpha1/s3proxy.go b/apis/installer/v1alpha1/s3proxy.go index 4c60dab66..54e855291 100644 --- a/apis/installer/v1alpha1/s3proxy.go +++ b/apis/installer/v1alpha1/s3proxy.go @@ -75,6 +75,7 @@ type S3proxySpec struct { Persistence PersistenceSpec `json:"persistence"` StorageClass LocalObjectReference `json:"storageClass"` Ingress S3proxyIngress `json:"ingress"` + HTTPRoute AppHTTPRoute `json:"httpRoute"` S3proxy S3proxyConfig `json:"s3proxy"` // +optional Distro shared.DistroSpec `json:"distro"` diff --git a/apis/installer/v1alpha1/shared_types.go b/apis/installer/v1alpha1/shared_types.go new file mode 100644 index 000000000..d17994188 --- /dev/null +++ b/apis/installer/v1alpha1/shared_types.go @@ -0,0 +1,46 @@ +/* +Copyright AppsCode Inc. and Contributors + +Licensed under the AppsCode Community License 1.0.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + https://github.com/appscode/licenses/raw/1.0.0/AppsCode-Community-1.0.0.md + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package v1alpha1 + +import gwapi "sigs.k8s.io/gateway-api/apis/v1" + +type AppHTTPRoute struct { + Enabled bool `json:"enabled"` + *HTTPRouteSpec `json:",inline,omitempty"` + Hosts []HTTPRouteHost `json:"hosts"` +} + +type HTTPRouteSpec struct { + Annotations map[string]string `json:"annotations,omitempty"` + GatewayClassName string `json:"gatewayClassName"` + TLS *HTTPRouteTLS `json:"tls"` +} + +type HTTPRouteTLS struct { + Enabled bool `json:"enabled"` + Secret *LocalObjectReference `json:"secret"` +} + +type HTTPRouteHost struct { + Host string `json:"host"` + Paths HTTPRoutePath `json:"paths"` +} + +type HTTPRoutePath struct { + Path string `json:"path"` + PathType gwapi.PathMatchType `json:"pathType,omitempty"` +} diff --git a/apis/installer/v1alpha1/smtprelay_types.go b/apis/installer/v1alpha1/smtprelay_types.go index c976953ff..90a0f57f4 100644 --- a/apis/installer/v1alpha1/smtprelay_types.go +++ b/apis/installer/v1alpha1/smtprelay_types.go @@ -79,6 +79,7 @@ type SmtprelaySpec struct { Affinity *core.Affinity `json:"affinity"` Monitoring Monitoring `json:"monitoring"` Ingress AppIngress `json:"ingress"` + HTTPRoute AppHTTPRoute `json:"httpRoute"` LogLevel string `json:"logLevel"` Smtp SMTPConfig `json:"smtp"` // +optional diff --git a/apis/installer/v1alpha1/zz_generated.deepcopy.go b/apis/installer/v1alpha1/zz_generated.deepcopy.go index 9f2033ebf..51746da49 100644 --- a/apis/installer/v1alpha1/zz_generated.deepcopy.go +++ b/apis/installer/v1alpha1/zz_generated.deepcopy.go @@ -630,6 +630,26 @@ func (in *AceGrafana) DeepCopy() *AceGrafana { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *AceHTTPRoute) DeepCopyInto(out *AceHTTPRoute) { + *out = *in + if in.HTTPRouteSpec != nil { + in, out := &in.HTTPRouteSpec, &out.HTTPRouteSpec + *out = new(HTTPRouteSpec) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AceHTTPRoute. +func (in *AceHTTPRoute) DeepCopy() *AceHTTPRoute { + if in == nil { + return nil + } + out := new(AceHTTPRoute) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AceHook) DeepCopyInto(out *AceHook) { *out = *in @@ -1130,6 +1150,21 @@ func (in *AceOptionsGcpMarketplace) DeepCopy() *AceOptionsGcpMarketplace { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *AceOptionsHTTPRoute) DeepCopyInto(out *AceOptionsHTTPRoute) { + *out = *in +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AceOptionsHTTPRoute. +func (in *AceOptionsHTTPRoute) DeepCopy() *AceOptionsHTTPRoute { + if in == nil { + return nil + } + out := new(AceOptionsHTTPRoute) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AceOptionsInfraCloudServices) DeepCopyInto(out *AceOptionsInfraCloudServices) { *out = *in @@ -1410,6 +1445,7 @@ func (in *AceOptionsSpec) DeepCopyInto(out *AceOptionsSpec) { in.KubedbUi.DeepCopyInto(&out.KubedbUi) in.PlatformApi.DeepCopyInto(&out.PlatformApi) in.Ingress.DeepCopyInto(&out.Ingress) + out.HTTPRoute = in.HTTPRoute in.Nats.DeepCopyInto(&out.Nats) in.Trickster.DeepCopyInto(&out.Trickster) in.Openfga.DeepCopyInto(&out.Openfga) @@ -1734,6 +1770,7 @@ func (in *AceSpec) DeepCopyInto(out *AceSpec) { in.KubedbUi.DeepCopyInto(&out.KubedbUi) in.PlatformApi.DeepCopyInto(&out.PlatformApi) in.IngressNginx.DeepCopyInto(&out.IngressNginx) + in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) in.IngressDns.DeepCopyInto(&out.IngressDns) in.Nats.DeepCopyInto(&out.Nats) in.NatsDns.DeepCopyInto(&out.NatsDns) @@ -2140,6 +2177,31 @@ func (in *AceshifterSpec) DeepCopy() *AceshifterSpec { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *AppHTTPRoute) DeepCopyInto(out *AppHTTPRoute) { + *out = *in + if in.HTTPRouteSpec != nil { + in, out := &in.HTTPRouteSpec, &out.HTTPRouteSpec + *out = new(HTTPRouteSpec) + (*in).DeepCopyInto(*out) + } + if in.Hosts != nil { + in, out := &in.Hosts, &out.Hosts + *out = make([]HTTPRouteHost, len(*in)) + copy(*out, *in) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppHTTPRoute. +func (in *AppHTTPRoute) DeepCopy() *AppHTTPRoute { + if in == nil { + return nil + } + out := new(AppHTTPRoute) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AppIngress) DeepCopyInto(out *AppIngress) { *out = *in @@ -3593,6 +3655,7 @@ func (in *DnsProxySpec) DeepCopyInto(out *DnsProxySpec) { } in.Monitoring.DeepCopyInto(&out.Monitoring) in.Ingress.DeepCopyInto(&out.Ingress) + in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) out.Cloudflare = in.Cloudflare out.Auth = in.Auth out.TLSSecretRef = in.TLSSecretRef @@ -3860,6 +3923,7 @@ func (in *GhCiWebhookSpec) DeepCopyInto(out *GhCiWebhookSpec) { (*in).DeepCopyInto(*out) } in.Ingress.DeepCopyInto(&out.Ingress) + in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) if in.Volumes != nil { in, out := &in.Volumes, &out.Volumes *out = make([]v1.Volume, len(*in)) @@ -4123,6 +4187,84 @@ func (in *GrafanaSpec) DeepCopy() *GrafanaSpec { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *HTTPRouteHost) DeepCopyInto(out *HTTPRouteHost) { + *out = *in + out.Paths = in.Paths +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRouteHost. +func (in *HTTPRouteHost) DeepCopy() *HTTPRouteHost { + if in == nil { + return nil + } + out := new(HTTPRouteHost) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *HTTPRoutePath) DeepCopyInto(out *HTTPRoutePath) { + *out = *in +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRoutePath. +func (in *HTTPRoutePath) DeepCopy() *HTTPRoutePath { + if in == nil { + return nil + } + out := new(HTTPRoutePath) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *HTTPRouteSpec) DeepCopyInto(out *HTTPRouteSpec) { + *out = *in + if in.Annotations != nil { + in, out := &in.Annotations, &out.Annotations + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.TLS != nil { + in, out := &in.TLS, &out.TLS + *out = new(HTTPRouteTLS) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRouteSpec. +func (in *HTTPRouteSpec) DeepCopy() *HTTPRouteSpec { + if in == nil { + return nil + } + out := new(HTTPRouteSpec) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *HTTPRouteTLS) DeepCopyInto(out *HTTPRouteTLS) { + *out = *in + if in.Secret != nil { + in, out := &in.Secret, &out.Secret + *out = new(LocalObjectReference) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRouteTLS. +func (in *HTTPRouteTLS) DeepCopy() *HTTPRouteTLS { + if in == nil { + return nil + } + out := new(HTTPRouteTLS) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *HealthcheckSpec) DeepCopyInto(out *HealthcheckSpec) { *out = *in @@ -4424,6 +4566,7 @@ func (in *InboxUiSpec) DeepCopyInto(out *InboxUiSpec) { (*in).DeepCopyInto(*out) } in.Ingress.DeepCopyInto(&out.Ingress) + in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) out.Distro = in.Distro } @@ -6111,6 +6254,7 @@ func (in *MinioSpec) DeepCopyInto(out *MinioSpec) { in.Persistence.DeepCopyInto(&out.Persistence) out.StorageClass = in.StorageClass in.Ingress.DeepCopyInto(&out.Ingress) + in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) out.Minio = in.Minio out.Distro = in.Distro } @@ -7380,6 +7524,7 @@ func (in *OfflineLicenseServerSpec) DeepCopyInto(out *OfflineLicenseServerSpec) (*in).DeepCopyInto(*out) } in.Ingress.DeepCopyInto(&out.Ingress) + in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) if in.Volumes != nil { in, out := &in.Volumes, &out.Volumes *out = make([]v1.Volume, len(*in)) @@ -10435,6 +10580,7 @@ func (in *S3proxySpec) DeepCopyInto(out *S3proxySpec) { in.Persistence.DeepCopyInto(&out.Persistence) out.StorageClass = in.StorageClass in.Ingress.DeepCopyInto(&out.Ingress) + in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) out.S3proxy = in.S3proxy out.Distro = in.Distro } @@ -10691,6 +10837,7 @@ func (in *ServiceBackendSpec) DeepCopyInto(out *ServiceBackendSpec) { } } in.Ingress.DeepCopyInto(&out.Ingress) + in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) in.Monitoring.DeepCopyInto(&out.Monitoring) out.Server = in.Server out.Distro = in.Distro @@ -11326,6 +11473,7 @@ func (in *SmtprelaySpec) DeepCopyInto(out *SmtprelaySpec) { } in.Monitoring.DeepCopyInto(&out.Monitoring) in.Ingress.DeepCopyInto(&out.Ingress) + in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) in.Smtp.DeepCopyInto(&out.Smtp) out.Distro = in.Distro } diff --git a/charts/acaas/README.md b/charts/acaas/README.md index 88d4b73ec..d9b53f8fc 100644 --- a/charts/acaas/README.md +++ b/charts/acaas/README.md @@ -70,6 +70,12 @@ The following table lists the configurable parameters of the `acaas` chart and t | global.settings.spreadsheetCredentialMountPath | | "/data/marketplace-credentials" | | global.distro.openshift | | false | | global.distro.ubi | | "" | +| httpRoute.annotations | | {} | +| httpRoute.enabled | | false | +| httpRoute.gatewayClassName | | ace | +| httpRoute.tls.enable | | true | +| httpRoute.tls.secret.name | | "ace-cert" | +| ingress.enabled | | true | | ingress.className | | "nginx-ace" | | ingress.tls.enable | | true | | ingress.tls.secret.name | | "ace-cert" | diff --git a/charts/ace/README.md b/charts/ace/README.md index 53d5de263..623f238eb 100644 --- a/charts/ace/README.md +++ b/charts/ace/README.md @@ -52,6 +52,11 @@ The following table lists the configurable parameters of the `ace` chart and the | grafana.enabled | | false | | kubedb-ui.enabled | | false | | platform-api.enabled | | false | +| httpRoute.annotations | | {} | +| httpRoute.enabled | | false | +| httpRoute.gatewayClassName | | ace | +| httpRoute.tls.enable | | true | +| httpRoute.tls.secret.name | | "ace-cert" | | ingress-nginx.enabled | | false | | ingress-dns.enabled | | false | | nats.enabled | | false | @@ -241,7 +246,7 @@ The following table lists the configurable parameters of the `ace` chart and the Specify each parameter using the `--set key=value[,key=value]` argument to `helm upgrade -i`. For example: ```bash -$ helm upgrade -i ace appscode/ace -n ace --create-namespace --version=v2026.2.16 --set global.nameOverride="ace" +$ helm upgrade -i ace appscode/ace -n ace --create-namespace --version=v2026.2.16 --set httpRoute.gatewayClassName=ace ``` Alternatively, a YAML file that specifies the values for the parameters can be provided while diff --git a/charts/ace/values.openapiv3_schema.yaml b/charts/ace/values.openapiv3_schema.yaml index 29a87c539..c0db4515a 100644 --- a/charts/ace/values.openapiv3_schema.yaml +++ b/charts/ace/values.openapiv3_schema.yaml @@ -3449,6 +3449,36 @@ properties: - volumeMounts - volumes type: object + httpRoute: + properties: + annotations: + additionalProperties: + type: string + type: object + enabled: + type: boolean + gatewayClassName: + type: string + tls: + properties: + enabled: + type: boolean + secret: + properties: + name: + type: string + required: + - name + type: object + required: + - enabled + - secret + type: object + required: + - enabled + - gatewayClassName + - tls + type: object image: properties: pullPolicy: @@ -23686,6 +23716,60 @@ properties: type: boolean fullnameOverride: type: string + httpRoute: + properties: + annotations: + additionalProperties: + type: string + type: object + enabled: + type: boolean + gatewayClassName: + type: string + hosts: + items: + properties: + host: + type: string + paths: + properties: + path: + type: string + pathType: + enum: + - Exact + - PathPrefix + - RegularExpression + type: string + required: + - path + type: object + required: + - host + - paths + type: object + type: array + tls: + properties: + enabled: + type: boolean + secret: + properties: + name: + type: string + required: + - name + type: object + required: + - enabled + - secret + type: object + required: + - enabled + - gatewayClassName + - hosts + - tls + type: object image: properties: pullPolicy: @@ -24021,6 +24105,7 @@ properties: type: array required: - enabled + - httpRoute - image - ingress - persistence @@ -27310,6 +27395,7 @@ required: - extraObjects - global - grafana +- httpRoute - image - ingress-dns - ingress-nginx diff --git a/charts/dns-proxy/README.md b/charts/dns-proxy/README.md index a18a67c89..6299bd2bc 100644 --- a/charts/dns-proxy/README.md +++ b/charts/dns-proxy/README.md @@ -68,6 +68,12 @@ The following table lists the configurable parameters of the `dns-proxy` chart a | ingress.annotations | | {} | | ingress.hosts | kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" | [{"host":"chart-example.local","paths":[{"path":"/","pathType":"ImplementationSpecific"}]}] | | ingress.tls | | [] | +| httpRoute.annotations | | {} | +| httpRoute.enabled | | false | +| httpRoute.gatewayClassName | | ace | +| httpRoute.tls.enable | | true | +| httpRoute.tls.secret.name | | "ace-cert" | +| httpRoute.hosts | | [] | | resources | | {} | | autoscaling.enabled | | false | | autoscaling.minReplicas | | 1 | diff --git a/charts/dns-proxy/values.openapiv3_schema.yaml b/charts/dns-proxy/values.openapiv3_schema.yaml index dec8fcd47..d9b0af8b6 100644 --- a/charts/dns-proxy/values.openapiv3_schema.yaml +++ b/charts/dns-proxy/values.openapiv3_schema.yaml @@ -492,6 +492,60 @@ properties: - repository - tag type: object + httpRoute: + properties: + annotations: + additionalProperties: + type: string + type: object + enabled: + type: boolean + gatewayClassName: + type: string + hosts: + items: + properties: + host: + type: string + paths: + properties: + path: + type: string + pathType: + enum: + - Exact + - PathPrefix + - RegularExpression + type: string + required: + - path + type: object + required: + - host + - paths + type: object + type: array + tls: + properties: + enabled: + type: boolean + secret: + properties: + name: + type: string + required: + - name + type: object + required: + - enabled + - secret + type: object + required: + - enabled + - gatewayClassName + - hosts + - tls + type: object image: properties: pullPolicy: @@ -1812,6 +1866,7 @@ required: - autoscaling - envVars - geoipdb +- httpRoute - image - ingress - podLabels diff --git a/charts/gh-ci-webhook/README.md b/charts/gh-ci-webhook/README.md index aa979bef1..c6428b9e4 100644 --- a/charts/gh-ci-webhook/README.md +++ b/charts/gh-ci-webhook/README.md @@ -68,6 +68,12 @@ The following table lists the configurable parameters of the `gh-ci-webhook` cha | ingress.className | | "" | | ingress.annotations | | {} | | ingress.tls | | [] | +| httpRoute.annotations | | {} | +| httpRoute.enabled | | false | +| httpRoute.gatewayClassName | | ace | +| httpRoute.tls.enable | | true | +| httpRoute.tls.secret.name | | "ace-cert" | +| httpRoute.hosts | | [] | | resources | | {} | | livenessProbe | This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ | {} | | readinessProbe | httpGet: path: / port: http | {} | diff --git a/charts/inbox-ui/README.md b/charts/inbox-ui/README.md index bbbe1e348..10c7cdaf1 100644 --- a/charts/inbox-ui/README.md +++ b/charts/inbox-ui/README.md @@ -68,6 +68,12 @@ The following table lists the configurable parameters of the `inbox-ui` chart an | ingress.hosts | kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" | [] | | ingress.tls | - host: chart-example.local paths: - path: / pathType: ImplementationSpecific | [] | | ingress.dns.targetIPs | | [] | +| httpRoute.annotations | | {} | +| httpRoute.enabled | | false | +| httpRoute.gatewayClassName | | ace | +| httpRoute.tls.enable | | true | +| httpRoute.tls.secret.name | | "ace-cert" | +| httpRoute.hosts | | [] | | resources | | {} | | autoscaling.enabled | | false | | autoscaling.minReplicas | | 1 | diff --git a/charts/inbox-ui/values.openapiv3_schema.yaml b/charts/inbox-ui/values.openapiv3_schema.yaml index 56a69b64f..555ccaf6e 100644 --- a/charts/inbox-ui/values.openapiv3_schema.yaml +++ b/charts/inbox-ui/values.openapiv3_schema.yaml @@ -471,6 +471,60 @@ properties: type: object fullnameOverride: type: string + httpRoute: + properties: + annotations: + additionalProperties: + type: string + type: object + enabled: + type: boolean + gatewayClassName: + type: string + hosts: + items: + properties: + host: + type: string + paths: + properties: + path: + type: string + pathType: + enum: + - Exact + - PathPrefix + - RegularExpression + type: string + required: + - path + type: object + required: + - host + - paths + type: object + type: array + tls: + properties: + enabled: + type: boolean + secret: + properties: + name: + type: string + required: + - name + type: object + required: + - enabled + - secret + type: object + required: + - enabled + - gatewayClassName + - hosts + - tls + type: object image: properties: pullPolicy: @@ -784,6 +838,7 @@ properties: type: array required: - autoscaling +- httpRoute - image - ingress - replicaCount diff --git a/charts/minio/README.md b/charts/minio/README.md index bbc16cb39..562716a0f 100644 --- a/charts/minio/README.md +++ b/charts/minio/README.md @@ -63,6 +63,12 @@ The following table lists the configurable parameters of the `minio` chart and t | ingress.className | | "" | | ingress.annotations | | {} | | ingress.domain | kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" | "" | +| httpRoute.annotations | | {} | +| httpRoute.enabled | | false | +| httpRoute.gatewayClassName | | ace | +| httpRoute.tls.enable | | true | +| httpRoute.tls.secret.name | | "ace-cert" | +| httpRoute.hosts | | [] | | resources | | {} | | service.type | | ClusterIP | | service.port | | 9000 | diff --git a/charts/minio/values.openapiv3_schema.yaml b/charts/minio/values.openapiv3_schema.yaml index 31c5c28c0..aaa452485 100644 --- a/charts/minio/values.openapiv3_schema.yaml +++ b/charts/minio/values.openapiv3_schema.yaml @@ -454,6 +454,60 @@ properties: type: object fullnameOverride: type: string + httpRoute: + properties: + annotations: + additionalProperties: + type: string + type: object + enabled: + type: boolean + gatewayClassName: + type: string + hosts: + items: + properties: + host: + type: string + paths: + properties: + path: + type: string + pathType: + enum: + - Exact + - PathPrefix + - RegularExpression + type: string + required: + - path + type: object + required: + - host + - paths + type: object + type: array + tls: + properties: + enabled: + type: boolean + secret: + properties: + name: + type: string + required: + - name + type: object + required: + - enabled + - secret + type: object + required: + - enabled + - gatewayClassName + - hosts + - tls + type: object image: properties: pullPolicy: @@ -780,6 +834,7 @@ properties: type: object type: array required: +- httpRoute - image - ingress - minio diff --git a/charts/offline-license-server/README.md b/charts/offline-license-server/README.md index 3f8350f65..8bda66288 100644 --- a/charts/offline-license-server/README.md +++ b/charts/offline-license-server/README.md @@ -71,6 +71,12 @@ The following table lists the configurable parameters of the `offline-license-se | ingress.className | | "" | | ingress.annotations | | {} | | ingress.tls | | [] | +| httpRoute.annotations | | {} | +| httpRoute.enabled | | false | +| httpRoute.gatewayClassName | | ace | +| httpRoute.tls.enable | | true | +| httpRoute.tls.secret.name | | "ace-cert" | +| httpRoute.hosts | | [] | | resources | | {} | | livenessProbe | This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ | {} | | readinessProbe | httpGet: path: / port: http | {} | diff --git a/charts/s3proxy/README.md b/charts/s3proxy/README.md index a49181a81..3121eacba 100644 --- a/charts/s3proxy/README.md +++ b/charts/s3proxy/README.md @@ -63,6 +63,12 @@ The following table lists the configurable parameters of the `s3proxy` chart and | ingress.className | | "" | | ingress.annotations | | {} | | ingress.domain | kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" | "" | +| httpRoute.annotations | | {} | +| httpRoute.enabled | | false | +| httpRoute.gatewayClassName | | ace | +| httpRoute.tls.enable | | true | +| httpRoute.tls.secret.name | | "ace-cert" | +| httpRoute.hosts | | [] | | resources | | {} | | service.type | | ClusterIP | | service.port | | 4224 | diff --git a/charts/s3proxy/values.openapiv3_schema.yaml b/charts/s3proxy/values.openapiv3_schema.yaml index 91ac317de..5a9a914a8 100644 --- a/charts/s3proxy/values.openapiv3_schema.yaml +++ b/charts/s3proxy/values.openapiv3_schema.yaml @@ -454,6 +454,60 @@ properties: type: object fullnameOverride: type: string + httpRoute: + properties: + annotations: + additionalProperties: + type: string + type: object + enabled: + type: boolean + gatewayClassName: + type: string + hosts: + items: + properties: + host: + type: string + paths: + properties: + path: + type: string + pathType: + enum: + - Exact + - PathPrefix + - RegularExpression + type: string + required: + - path + type: object + required: + - host + - paths + type: object + type: array + tls: + properties: + enabled: + type: boolean + secret: + properties: + name: + type: string + required: + - name + type: object + required: + - enabled + - secret + type: object + required: + - enabled + - gatewayClassName + - hosts + - tls + type: object image: properties: pullPolicy: @@ -788,6 +842,7 @@ properties: type: object type: array required: +- httpRoute - image - ingress - persistence diff --git a/charts/service-backend/README.md b/charts/service-backend/README.md index 95f6d9853..8c94a1e16 100644 --- a/charts/service-backend/README.md +++ b/charts/service-backend/README.md @@ -68,6 +68,12 @@ The following table lists the configurable parameters of the `service-backend` c | ingress.hosts | kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" | [] | | ingress.tls | - host: chart-example.local paths: - path: / pathType: ImplementationSpecific | [] | | ingress.dns.targetIPs | | [] | +| httpRoute.annotations | | {} | +| httpRoute.enabled | | false | +| httpRoute.gatewayClassName | | ace | +| httpRoute.tls.enable | | true | +| httpRoute.tls.secret.name | | "ace-cert" | +| httpRoute.hosts | | [] | | resources | | {} | | autoscaling.enabled | | false | | autoscaling.minReplicas | | 1 | diff --git a/charts/service-backend/values.openapiv3_schema.yaml b/charts/service-backend/values.openapiv3_schema.yaml index 7091c6870..b0d486b65 100644 --- a/charts/service-backend/values.openapiv3_schema.yaml +++ b/charts/service-backend/values.openapiv3_schema.yaml @@ -471,6 +471,60 @@ properties: type: object fullnameOverride: type: string + httpRoute: + properties: + annotations: + additionalProperties: + type: string + type: object + enabled: + type: boolean + gatewayClassName: + type: string + hosts: + items: + properties: + host: + type: string + paths: + properties: + path: + type: string + pathType: + enum: + - Exact + - PathPrefix + - RegularExpression + type: string + required: + - path + type: object + required: + - host + - paths + type: object + type: array + tls: + properties: + enabled: + type: boolean + secret: + properties: + name: + type: string + required: + - name + type: object + required: + - enabled + - secret + type: object + required: + - enabled + - gatewayClassName + - hosts + - tls + type: object image: properties: pullPolicy: @@ -1683,6 +1737,7 @@ properties: type: array required: - autoscaling +- httpRoute - image - ingress - monitoring diff --git a/charts/smtprelay/README.md b/charts/smtprelay/README.md index b03326f4b..9b8290248 100644 --- a/charts/smtprelay/README.md +++ b/charts/smtprelay/README.md @@ -69,6 +69,12 @@ The following table lists the configurable parameters of the `smtprelay` chart a | ingress.annotations | | {} | | ingress.hosts | kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" | [{"host":"chart-example.local","paths":[{"path":"/","pathType":"ImplementationSpecific"}]}] | | ingress.tls | | [] | +| httpRoute.annotations | | {} | +| httpRoute.enabled | | false | +| httpRoute.gatewayClassName | | ace | +| httpRoute.tls.enable | | true | +| httpRoute.tls.secret.name | | "ace-cert" | +| httpRoute.hosts | | [] | | resources | | {} | | autoscaling.enabled | | false | | autoscaling.minReplicas | | 1 | diff --git a/charts/smtprelay/values.openapiv3_schema.yaml b/charts/smtprelay/values.openapiv3_schema.yaml index ef99a75f9..a78f36c7f 100644 --- a/charts/smtprelay/values.openapiv3_schema.yaml +++ b/charts/smtprelay/values.openapiv3_schema.yaml @@ -488,6 +488,60 @@ properties: required: - enabled type: object + httpRoute: + properties: + annotations: + additionalProperties: + type: string + type: object + enabled: + type: boolean + gatewayClassName: + type: string + hosts: + items: + properties: + host: + type: string + paths: + properties: + path: + type: string + pathType: + enum: + - Exact + - PathPrefix + - RegularExpression + type: string + required: + - path + type: object + required: + - host + - paths + type: object + type: array + tls: + properties: + enabled: + type: boolean + secret: + properties: + name: + type: string + required: + - name + type: object + required: + - enabled + - secret + type: object + required: + - enabled + - gatewayClassName + - hosts + - tls + type: object image: properties: pullPolicy: @@ -863,6 +917,7 @@ properties: required: - autoscaling - controller +- httpRoute - image - ingress - logLevel diff --git a/schema/ace-options/values.openapiv3_schema.yaml b/schema/ace-options/values.openapiv3_schema.yaml index 1ac43b1d9..bf1933cbf 100644 --- a/schema/ace-options/values.openapiv3_schema.yaml +++ b/schema/ace-options/values.openapiv3_schema.yaml @@ -424,6 +424,13 @@ properties: required: - enabled type: object + httpRoute: + properties: + enabled: + type: boolean + required: + - enabled + type: object infra: properties: cloudServices: @@ -810,6 +817,8 @@ properties: additionalProperties: type: string type: object + enabled: + type: boolean exposeVia: enum: - LoadBalancer @@ -907,6 +916,7 @@ properties: type: object type: object required: + - enabled - exposeVia - nodeSelector type: object @@ -2537,6 +2547,7 @@ required: - cluster-ui - context - grafana + - httpRoute - infra - ingress - initialSetup From c4e41266cd20289cb3b473482f73089676d25327 Mon Sep 17 00:00:00 2001 From: Arnob Kumar Saha Date: Fri, 20 Feb 2026 14:21:22 +0600 Subject: [PATCH 7/9] Add tcpRoutes Signed-off-by: Arnob Kumar Saha --- charts/ace/templates/gateway/gateway.yaml | 18 ++++++++++++++ charts/ace/templates/gateway/route-nats.yaml | 25 ++++++++++++++++++++ charts/s3proxy/templates/httproute.yaml | 22 +++++++++++++++++ 3 files changed, 65 insertions(+) diff --git a/charts/ace/templates/gateway/gateway.yaml b/charts/ace/templates/gateway/gateway.yaml index 470652957..0a673b580 100644 --- a/charts/ace/templates/gateway/gateway.yaml +++ b/charts/ace/templates/gateway/gateway.yaml @@ -22,4 +22,22 @@ spec: allowedRoutes: namespaces: from: Same + - allowedRoutes: + namespaces: + from: Same + kinds: + - group: gateway.networking.k8s.io + kind: TCPRoute + name: nats-tcp + port: 4222 + protocol: TCP + - allowedRoutes: + namespaces: + from: Same + kinds: + - group: gateway.networking.k8s.io + kind: TCPRoute + name: s3proxy-tcp + port: 4224 + protocol: TCP {{- end }} diff --git a/charts/ace/templates/gateway/route-nats.yaml b/charts/ace/templates/gateway/route-nats.yaml index 81d78c0b0..5c654fe84 100644 --- a/charts/ace/templates/gateway/route-nats.yaml +++ b/charts/ace/templates/gateway/route-nats.yaml @@ -39,4 +39,29 @@ spec: port: 443 weight: 1 +--- +apiVersion: gateway.networking.k8s.io/v1alpha2 +kind: TCPRoute +metadata: + name: {{ include "ace.fullname" . }}-nats + namespace: {{ .Release.Namespace }} +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: {{ include "ace.fullname" . }} + namespace: {{ .Release.Namespace }} + sectionName: nats-tcp + {{- if eq .Values.global.platform.hostType "domain" }} + hostnames: + - {{ .Values.global.platform.host }} + {{- end }} + rules: + - backendRefs: + - group: "" + kind: Service + name: {{ include "ace.fullname" . }}-nats + namespace: {{ .Release.Namespace }} + port: 4222 + weight: 1 {{- end }} diff --git a/charts/s3proxy/templates/httproute.yaml b/charts/s3proxy/templates/httproute.yaml index ade5f8f71..84cbec894 100644 --- a/charts/s3proxy/templates/httproute.yaml +++ b/charts/s3proxy/templates/httproute.yaml @@ -41,4 +41,26 @@ spec: {{- end }} {{- end }} +--- +--- +apiVersion: gateway.networking.k8s.io/v1alpha2 +kind: TCPRoute +metadata: + name: {{ include "s3proxy.fullname" . }} + namespace: {{ .Release.Namespace }} +spec: + parentRefs: + - group: gateway.networking.k8s.io + kind: Gateway + name: ace + namespace: ace + sectionName: s3proxy-tcp + rules: + - backendRefs: + - group: "" + kind: Service + name: {{ include "s3proxy.fullname" . }} + namespace: {{ .Release.Namespace }} + port: 4224 + weight: 1 {{- end }} From 1628e67b67ba1523bcb46edd37c955b614a8556d Mon Sep 17 00:00:00 2001 From: Arnob kumar saha Date: Fri, 20 Feb 2026 15:22:07 +0600 Subject: [PATCH 8/9] rename Signed-off-by: Arnob kumar saha --- apis/installer/v1alpha1/ace_ace_types.go | 8 +- apis/installer/v1alpha1/ace_inbox_ui_types.go | 6 +- apis/installer/v1alpha1/ace_options_types.go | 4 +- .../v1alpha1/ace_service_backend_types.go | 2 +- apis/installer/v1alpha1/dns_proxy.go | 2 +- .../installer/v1alpha1/gh_ci_webhook_types.go | 2 +- apis/installer/v1alpha1/minio.go | 2 +- .../v1alpha1/offline_license_server_types.go | 2 +- apis/installer/v1alpha1/s3proxy.go | 2 +- apis/installer/v1alpha1/shared_types.go | 22 +- apis/installer/v1alpha1/smtprelay_types.go | 2 +- .../v1alpha1/zz_generated.deepcopy.go | 248 +++++++-------- catalog/ace.yaml | 20 +- catalog/copy-images.sh | 284 +++++++++--------- catalog/editor-charts.yaml | 238 +++++++-------- catalog/export-images.sh | 284 +++++++++--------- catalog/feature-charts.yaml | 26 +- catalog/imagelist.yaml | 1 - catalog/import-images.sh | 284 +++++++++--------- catalog/import-into-k3s.sh | 284 +++++++++--------- catalog/sync-gcp-mp-images.sh | 20 +- charts/acaas/README.md | 10 +- charts/acaas/templates/blog/ingress.yaml | 2 +- charts/acaas/templates/blog/route.yaml | 4 +- charts/acaas/templates/docs/ingress.yaml | 2 +- charts/acaas/templates/docs/route.yaml | 4 +- charts/acaas/templates/gateway.yaml | 8 +- .../templates/ingress/ingress-hosted.yaml | 2 +- .../acaas/templates/ingress/route-hosted.yaml | 4 +- charts/acaas/templates/learn/ingress.yaml | 2 +- charts/acaas/templates/learn/route.yaml | 4 +- charts/acaas/templates/license/ingress.yaml | 2 +- charts/acaas/templates/license/route.yaml | 4 +- charts/acaas/templates/selfhost/ingress.yaml | 2 +- charts/acaas/templates/selfhost/route.yaml | 4 +- charts/acaas/values.yaml | 2 +- charts/ace/README.md | 12 +- charts/ace/templates/gateway/gateway.yaml | 4 +- charts/ace/templates/gateway/route-home.yaml | 4 +- charts/ace/templates/gateway/route-main.yaml | 4 +- charts/ace/templates/gateway/route-nats.yaml | 4 +- charts/ace/templates/ingress/issuer.yaml | 2 +- charts/ace/values.openapiv3_schema.yaml | 66 ++-- charts/ace/values.yaml | 2 +- charts/dns-proxy/README.md | 12 +- charts/dns-proxy/templates/httproute.yaml | 8 +- charts/dns-proxy/values.openapiv3_schema.yaml | 30 +- charts/dns-proxy/values.yaml | 2 +- charts/gh-ci-webhook/README.md | 12 +- charts/gh-ci-webhook/templates/httproute.yaml | 8 +- charts/gh-ci-webhook/values.yaml | 2 +- charts/inbox-ui/README.md | 12 +- charts/inbox-ui/templates/httproute.yaml | 8 +- charts/inbox-ui/values.openapiv3_schema.yaml | 4 +- charts/inbox-ui/values.yaml | 2 +- charts/minio/README.md | 12 +- charts/minio/templates/httproute.yaml | 8 +- charts/minio/values.openapiv3_schema.yaml | 4 +- charts/minio/values.yaml | 2 +- charts/offline-license-server/README.md | 12 +- .../templates/httproute.yaml | 8 +- charts/offline-license-server/values.yaml | 2 +- charts/s3proxy/README.md | 12 +- charts/s3proxy/templates/httproute.yaml | 8 +- charts/s3proxy/values.openapiv3_schema.yaml | 4 +- charts/s3proxy/values.yaml | 2 +- charts/service-backend/README.md | 12 +- .../service-backend/templates/httproute.yaml | 8 +- .../values.openapiv3_schema.yaml | 4 +- charts/service-backend/values.yaml | 2 +- charts/smtprelay/README.md | 12 +- charts/smtprelay/templates/httproute.yaml | 4 +- charts/smtprelay/values.openapiv3_schema.yaml | 18 +- charts/smtprelay/values.yaml | 2 +- .../ace-options/values.openapiv3_schema.yaml | 16 +- 75 files changed, 1064 insertions(+), 1085 deletions(-) diff --git a/apis/installer/v1alpha1/ace_ace_types.go b/apis/installer/v1alpha1/ace_ace_types.go index dc7c2fc26..7f9999fa2 100644 --- a/apis/installer/v1alpha1/ace_ace_types.go +++ b/apis/installer/v1alpha1/ace_ace_types.go @@ -58,7 +58,7 @@ type AceSpec struct { KubedbUi AceKubedbUi `json:"kubedb-ui"` PlatformApi AcePlatformApi `json:"platform-api"` IngressNginx AceIngressNginx `json:"ingress-nginx"` - HTTPRoute AceHTTPRoute `json:"httpRoute"` + Gateway AceGateway `json:"gateway"` IngressDns AceIngressDns `json:"ingress-dns"` Nats AceNats `json:"nats"` NatsDns AceNatsDns `json:"nats-dns"` @@ -138,9 +138,9 @@ type AceIngressNginx struct { *IngressNginxSpec `json:",inline,omitempty"` } -type AceHTTPRoute struct { - Enabled bool `json:"enabled"` - *HTTPRouteSpec `json:",inline,omitempty"` +type AceGateway struct { + Enabled bool `json:"enabled"` + *GatewaySpec `json:",inline,omitempty"` } type AceIngressDns struct { diff --git a/apis/installer/v1alpha1/ace_inbox_ui_types.go b/apis/installer/v1alpha1/ace_inbox_ui_types.go index 83a984168..58971b660 100644 --- a/apis/installer/v1alpha1/ace_inbox_ui_types.go +++ b/apis/installer/v1alpha1/ace_inbox_ui_types.go @@ -73,9 +73,9 @@ type InboxUiSpec struct { Tolerations []core.Toleration `json:"tolerations"` // If specified, the pod's scheduling constraints // +optional - Affinity *core.Affinity `json:"affinity"` - Ingress PlatformIngress `json:"ingress"` - HTTPRoute AppHTTPRoute `json:"httpRoute"` + Affinity *core.Affinity `json:"affinity"` + Ingress PlatformIngress `json:"ingress"` + Gateway AppGateway `json:"gateway"` // +optional Distro shared.DistroSpec `json:"distro"` } diff --git a/apis/installer/v1alpha1/ace_options_types.go b/apis/installer/v1alpha1/ace_options_types.go index 901188d34..19188d23e 100644 --- a/apis/installer/v1alpha1/ace_options_types.go +++ b/apis/installer/v1alpha1/ace_options_types.go @@ -66,7 +66,7 @@ type AceOptionsSpec struct { KubedbUi AceOptionsComponentSpec `json:"kubedb-ui"` PlatformApi AceOptionsComponentSpec `json:"platform-api"` Ingress AceOptionsIngressNginx `json:"ingress"` - HTTPRoute AceOptionsHTTPRoute `json:"httpRoute"` + Gateway AceOptionsGateway `json:"gateway"` Nats AceOptionsNatsSettings `json:"nats"` Trickster AceOptionsComponentSpec `json:"trickster"` Openfga AceOptionsComponentSpec `json:"openfga"` @@ -199,7 +199,7 @@ type AceOptionsIngressNginx struct { ExternalIPs []string `json:"externalIPs"` } -type AceOptionsHTTPRoute struct { +type AceOptionsGateway struct { Enabled bool `json:"enabled"` } diff --git a/apis/installer/v1alpha1/ace_service_backend_types.go b/apis/installer/v1alpha1/ace_service_backend_types.go index 9ac201bca..2817fd4b4 100644 --- a/apis/installer/v1alpha1/ace_service_backend_types.go +++ b/apis/installer/v1alpha1/ace_service_backend_types.go @@ -77,7 +77,7 @@ type ServiceBackendSpec struct { Volumes []core.Volume `json:"volumes"` VolumeMounts []core.VolumeMount `json:"volumeMounts"` Ingress PlatformIngress `json:"ingress"` - HTTPRoute AppHTTPRoute `json:"httpRoute"` + Gateway AppGateway `json:"gateway"` Monitoring Monitoring `json:"monitoring"` Server ServerConfig `json:"server"` // +optional diff --git a/apis/installer/v1alpha1/dns_proxy.go b/apis/installer/v1alpha1/dns_proxy.go index 5ebbde4aa..f2e1b3676 100644 --- a/apis/installer/v1alpha1/dns_proxy.go +++ b/apis/installer/v1alpha1/dns_proxy.go @@ -76,7 +76,7 @@ type DnsProxySpec struct { Affinity *core.Affinity `json:"affinity"` Monitoring CustomMonitoring `json:"monitoring"` Ingress AppIngress `json:"ingress"` - HTTPRoute AppHTTPRoute `json:"httpRoute"` + Gateway AppGateway `json:"gateway"` Cloudflare CloudflareTokenReference `json:"cloudflare"` Auth DNSProxyAuth `json:"auth"` TLSSecretRef LocalObjectReference `json:"tlsSecretRef"` diff --git a/apis/installer/v1alpha1/gh_ci_webhook_types.go b/apis/installer/v1alpha1/gh_ci_webhook_types.go index 6364fdf9b..55380735f 100644 --- a/apis/installer/v1alpha1/gh_ci_webhook_types.go +++ b/apis/installer/v1alpha1/gh_ci_webhook_types.go @@ -73,7 +73,7 @@ type GhCiWebhookSpec struct { // +optional Affinity *core.Affinity `json:"affinity"` Ingress AppIngress `json:"ingress"` - HTTPRoute AppHTTPRoute `json:"httpRoute"` + Gateway AppGateway `json:"gateway"` Volumes []core.Volume `json:"volumes"` VolumeMounts []core.VolumeMount `json:"volumeMounts"` Args []string `json:"args"` diff --git a/apis/installer/v1alpha1/minio.go b/apis/installer/v1alpha1/minio.go index e89c27867..50ba67cdb 100644 --- a/apis/installer/v1alpha1/minio.go +++ b/apis/installer/v1alpha1/minio.go @@ -75,7 +75,7 @@ type MinioSpec struct { Persistence PersistenceSpec `json:"persistence"` StorageClass LocalObjectReference `json:"storageClass"` Ingress MinioIngress `json:"ingress"` - HTTPRoute AppHTTPRoute `json:"httpRoute"` + Gateway AppGateway `json:"gateway"` Minio MinioConfig `json:"minio"` // +optional Distro shared.DistroSpec `json:"distro"` diff --git a/apis/installer/v1alpha1/offline_license_server_types.go b/apis/installer/v1alpha1/offline_license_server_types.go index 4168ca8ef..424d8fc1d 100644 --- a/apis/installer/v1alpha1/offline_license_server_types.go +++ b/apis/installer/v1alpha1/offline_license_server_types.go @@ -74,7 +74,7 @@ type OfflineLicenseServerSpec struct { // +optional Affinity *core.Affinity `json:"affinity"` Ingress AppIngress `json:"ingress"` - HTTPRoute AppHTTPRoute `json:"httpRoute"` + Gateway AppGateway `json:"gateway"` Volumes []core.Volume `json:"volumes"` VolumeMounts []core.VolumeMount `json:"volumeMounts"` Args []string `json:"args"` diff --git a/apis/installer/v1alpha1/s3proxy.go b/apis/installer/v1alpha1/s3proxy.go index 54e855291..4bf961bef 100644 --- a/apis/installer/v1alpha1/s3proxy.go +++ b/apis/installer/v1alpha1/s3proxy.go @@ -75,7 +75,7 @@ type S3proxySpec struct { Persistence PersistenceSpec `json:"persistence"` StorageClass LocalObjectReference `json:"storageClass"` Ingress S3proxyIngress `json:"ingress"` - HTTPRoute AppHTTPRoute `json:"httpRoute"` + Gateway AppGateway `json:"gateway"` S3proxy S3proxyConfig `json:"s3proxy"` // +optional Distro shared.DistroSpec `json:"distro"` diff --git a/apis/installer/v1alpha1/shared_types.go b/apis/installer/v1alpha1/shared_types.go index d17994188..d4bdc37e2 100644 --- a/apis/installer/v1alpha1/shared_types.go +++ b/apis/installer/v1alpha1/shared_types.go @@ -18,29 +18,29 @@ package v1alpha1 import gwapi "sigs.k8s.io/gateway-api/apis/v1" -type AppHTTPRoute struct { - Enabled bool `json:"enabled"` - *HTTPRouteSpec `json:",inline,omitempty"` - Hosts []HTTPRouteHost `json:"hosts"` +type AppGateway struct { + Enabled bool `json:"enabled"` + *GatewaySpec `json:",inline,omitempty"` + Hosts []GatewayHost `json:"hosts"` } -type HTTPRouteSpec struct { +type GatewaySpec struct { Annotations map[string]string `json:"annotations,omitempty"` GatewayClassName string `json:"gatewayClassName"` - TLS *HTTPRouteTLS `json:"tls"` + TLS *GatewayTLS `json:"tls"` } -type HTTPRouteTLS struct { +type GatewayTLS struct { Enabled bool `json:"enabled"` Secret *LocalObjectReference `json:"secret"` } -type HTTPRouteHost struct { - Host string `json:"host"` - Paths HTTPRoutePath `json:"paths"` +type GatewayHost struct { + Host string `json:"host"` + Paths GatewayPath `json:"paths"` } -type HTTPRoutePath struct { +type GatewayPath struct { Path string `json:"path"` PathType gwapi.PathMatchType `json:"pathType,omitempty"` } diff --git a/apis/installer/v1alpha1/smtprelay_types.go b/apis/installer/v1alpha1/smtprelay_types.go index 90a0f57f4..9dde76bca 100644 --- a/apis/installer/v1alpha1/smtprelay_types.go +++ b/apis/installer/v1alpha1/smtprelay_types.go @@ -79,7 +79,7 @@ type SmtprelaySpec struct { Affinity *core.Affinity `json:"affinity"` Monitoring Monitoring `json:"monitoring"` Ingress AppIngress `json:"ingress"` - HTTPRoute AppHTTPRoute `json:"httpRoute"` + Gateway AppGateway `json:"gateway"` LogLevel string `json:"logLevel"` Smtp SMTPConfig `json:"smtp"` // +optional diff --git a/apis/installer/v1alpha1/zz_generated.deepcopy.go b/apis/installer/v1alpha1/zz_generated.deepcopy.go index 51746da49..f8da31f84 100644 --- a/apis/installer/v1alpha1/zz_generated.deepcopy.go +++ b/apis/installer/v1alpha1/zz_generated.deepcopy.go @@ -585,6 +585,26 @@ func (in *AceDnsProxy) DeepCopy() *AceDnsProxy { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *AceGateway) DeepCopyInto(out *AceGateway) { + *out = *in + if in.GatewaySpec != nil { + in, out := &in.GatewaySpec, &out.GatewaySpec + *out = new(GatewaySpec) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AceGateway. +func (in *AceGateway) DeepCopy() *AceGateway { + if in == nil { + return nil + } + out := new(AceGateway) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AceGlobalValues) DeepCopyInto(out *AceGlobalValues) { *out = *in @@ -630,26 +650,6 @@ func (in *AceGrafana) DeepCopy() *AceGrafana { return out } -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *AceHTTPRoute) DeepCopyInto(out *AceHTTPRoute) { - *out = *in - if in.HTTPRouteSpec != nil { - in, out := &in.HTTPRouteSpec, &out.HTTPRouteSpec - *out = new(HTTPRouteSpec) - (*in).DeepCopyInto(*out) - } -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AceHTTPRoute. -func (in *AceHTTPRoute) DeepCopy() *AceHTTPRoute { - if in == nil { - return nil - } - out := new(AceHTTPRoute) - in.DeepCopyInto(out) - return out -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *AceHook) DeepCopyInto(out *AceHook) { *out = *in @@ -1136,31 +1136,31 @@ func (in *AceOptionsDBSettings) DeepCopy() *AceOptionsDBSettings { } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *AceOptionsGcpMarketplace) DeepCopyInto(out *AceOptionsGcpMarketplace) { +func (in *AceOptionsGateway) DeepCopyInto(out *AceOptionsGateway) { *out = *in } -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AceOptionsGcpMarketplace. -func (in *AceOptionsGcpMarketplace) DeepCopy() *AceOptionsGcpMarketplace { +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AceOptionsGateway. +func (in *AceOptionsGateway) DeepCopy() *AceOptionsGateway { if in == nil { return nil } - out := new(AceOptionsGcpMarketplace) + out := new(AceOptionsGateway) in.DeepCopyInto(out) return out } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *AceOptionsHTTPRoute) DeepCopyInto(out *AceOptionsHTTPRoute) { +func (in *AceOptionsGcpMarketplace) DeepCopyInto(out *AceOptionsGcpMarketplace) { *out = *in } -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AceOptionsHTTPRoute. -func (in *AceOptionsHTTPRoute) DeepCopy() *AceOptionsHTTPRoute { +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AceOptionsGcpMarketplace. +func (in *AceOptionsGcpMarketplace) DeepCopy() *AceOptionsGcpMarketplace { if in == nil { return nil } - out := new(AceOptionsHTTPRoute) + out := new(AceOptionsGcpMarketplace) in.DeepCopyInto(out) return out } @@ -1445,7 +1445,7 @@ func (in *AceOptionsSpec) DeepCopyInto(out *AceOptionsSpec) { in.KubedbUi.DeepCopyInto(&out.KubedbUi) in.PlatformApi.DeepCopyInto(&out.PlatformApi) in.Ingress.DeepCopyInto(&out.Ingress) - out.HTTPRoute = in.HTTPRoute + out.Gateway = in.Gateway in.Nats.DeepCopyInto(&out.Nats) in.Trickster.DeepCopyInto(&out.Trickster) in.Openfga.DeepCopyInto(&out.Openfga) @@ -1770,7 +1770,7 @@ func (in *AceSpec) DeepCopyInto(out *AceSpec) { in.KubedbUi.DeepCopyInto(&out.KubedbUi) in.PlatformApi.DeepCopyInto(&out.PlatformApi) in.IngressNginx.DeepCopyInto(&out.IngressNginx) - in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) + in.Gateway.DeepCopyInto(&out.Gateway) in.IngressDns.DeepCopyInto(&out.IngressDns) in.Nats.DeepCopyInto(&out.Nats) in.NatsDns.DeepCopyInto(&out.NatsDns) @@ -2178,26 +2178,26 @@ func (in *AceshifterSpec) DeepCopy() *AceshifterSpec { } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *AppHTTPRoute) DeepCopyInto(out *AppHTTPRoute) { +func (in *AppGateway) DeepCopyInto(out *AppGateway) { *out = *in - if in.HTTPRouteSpec != nil { - in, out := &in.HTTPRouteSpec, &out.HTTPRouteSpec - *out = new(HTTPRouteSpec) + if in.GatewaySpec != nil { + in, out := &in.GatewaySpec, &out.GatewaySpec + *out = new(GatewaySpec) (*in).DeepCopyInto(*out) } if in.Hosts != nil { in, out := &in.Hosts, &out.Hosts - *out = make([]HTTPRouteHost, len(*in)) + *out = make([]GatewayHost, len(*in)) copy(*out, *in) } } -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppHTTPRoute. -func (in *AppHTTPRoute) DeepCopy() *AppHTTPRoute { +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AppGateway. +func (in *AppGateway) DeepCopy() *AppGateway { if in == nil { return nil } - out := new(AppHTTPRoute) + out := new(AppGateway) in.DeepCopyInto(out) return out } @@ -3655,7 +3655,7 @@ func (in *DnsProxySpec) DeepCopyInto(out *DnsProxySpec) { } in.Monitoring.DeepCopyInto(&out.Monitoring) in.Ingress.DeepCopyInto(&out.Ingress) - in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) + in.Gateway.DeepCopyInto(&out.Gateway) out.Cloudflare = in.Cloudflare out.Auth = in.Auth out.TLSSecretRef = in.TLSSecretRef @@ -3789,6 +3789,84 @@ func (in *GatewayClassSpec) DeepCopy() *GatewayClassSpec { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *GatewayHost) DeepCopyInto(out *GatewayHost) { + *out = *in + out.Paths = in.Paths +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GatewayHost. +func (in *GatewayHost) DeepCopy() *GatewayHost { + if in == nil { + return nil + } + out := new(GatewayHost) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *GatewayPath) DeepCopyInto(out *GatewayPath) { + *out = *in +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GatewayPath. +func (in *GatewayPath) DeepCopy() *GatewayPath { + if in == nil { + return nil + } + out := new(GatewayPath) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *GatewaySpec) DeepCopyInto(out *GatewaySpec) { + *out = *in + if in.Annotations != nil { + in, out := &in.Annotations, &out.Annotations + *out = make(map[string]string, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.TLS != nil { + in, out := &in.TLS, &out.TLS + *out = new(GatewayTLS) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GatewaySpec. +func (in *GatewaySpec) DeepCopy() *GatewaySpec { + if in == nil { + return nil + } + out := new(GatewaySpec) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *GatewayTLS) DeepCopyInto(out *GatewayTLS) { + *out = *in + if in.Secret != nil { + in, out := &in.Secret, &out.Secret + *out = new(LocalObjectReference) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GatewayTLS. +func (in *GatewayTLS) DeepCopy() *GatewayTLS { + if in == nil { + return nil + } + out := new(GatewayTLS) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *GeneratedValues) DeepCopyInto(out *GeneratedValues) { *out = *in @@ -3923,7 +4001,7 @@ func (in *GhCiWebhookSpec) DeepCopyInto(out *GhCiWebhookSpec) { (*in).DeepCopyInto(*out) } in.Ingress.DeepCopyInto(&out.Ingress) - in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) + in.Gateway.DeepCopyInto(&out.Gateway) if in.Volumes != nil { in, out := &in.Volumes, &out.Volumes *out = make([]v1.Volume, len(*in)) @@ -4187,84 +4265,6 @@ func (in *GrafanaSpec) DeepCopy() *GrafanaSpec { return out } -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *HTTPRouteHost) DeepCopyInto(out *HTTPRouteHost) { - *out = *in - out.Paths = in.Paths -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRouteHost. -func (in *HTTPRouteHost) DeepCopy() *HTTPRouteHost { - if in == nil { - return nil - } - out := new(HTTPRouteHost) - in.DeepCopyInto(out) - return out -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *HTTPRoutePath) DeepCopyInto(out *HTTPRoutePath) { - *out = *in -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRoutePath. -func (in *HTTPRoutePath) DeepCopy() *HTTPRoutePath { - if in == nil { - return nil - } - out := new(HTTPRoutePath) - in.DeepCopyInto(out) - return out -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *HTTPRouteSpec) DeepCopyInto(out *HTTPRouteSpec) { - *out = *in - if in.Annotations != nil { - in, out := &in.Annotations, &out.Annotations - *out = make(map[string]string, len(*in)) - for key, val := range *in { - (*out)[key] = val - } - } - if in.TLS != nil { - in, out := &in.TLS, &out.TLS - *out = new(HTTPRouteTLS) - (*in).DeepCopyInto(*out) - } -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRouteSpec. -func (in *HTTPRouteSpec) DeepCopy() *HTTPRouteSpec { - if in == nil { - return nil - } - out := new(HTTPRouteSpec) - in.DeepCopyInto(out) - return out -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *HTTPRouteTLS) DeepCopyInto(out *HTTPRouteTLS) { - *out = *in - if in.Secret != nil { - in, out := &in.Secret, &out.Secret - *out = new(LocalObjectReference) - **out = **in - } -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPRouteTLS. -func (in *HTTPRouteTLS) DeepCopy() *HTTPRouteTLS { - if in == nil { - return nil - } - out := new(HTTPRouteTLS) - in.DeepCopyInto(out) - return out -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *HealthcheckSpec) DeepCopyInto(out *HealthcheckSpec) { *out = *in @@ -4566,7 +4566,7 @@ func (in *InboxUiSpec) DeepCopyInto(out *InboxUiSpec) { (*in).DeepCopyInto(*out) } in.Ingress.DeepCopyInto(&out.Ingress) - in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) + in.Gateway.DeepCopyInto(&out.Gateway) out.Distro = in.Distro } @@ -6254,7 +6254,7 @@ func (in *MinioSpec) DeepCopyInto(out *MinioSpec) { in.Persistence.DeepCopyInto(&out.Persistence) out.StorageClass = in.StorageClass in.Ingress.DeepCopyInto(&out.Ingress) - in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) + in.Gateway.DeepCopyInto(&out.Gateway) out.Minio = in.Minio out.Distro = in.Distro } @@ -7524,7 +7524,7 @@ func (in *OfflineLicenseServerSpec) DeepCopyInto(out *OfflineLicenseServerSpec) (*in).DeepCopyInto(*out) } in.Ingress.DeepCopyInto(&out.Ingress) - in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) + in.Gateway.DeepCopyInto(&out.Gateway) if in.Volumes != nil { in, out := &in.Volumes, &out.Volumes *out = make([]v1.Volume, len(*in)) @@ -10580,7 +10580,7 @@ func (in *S3proxySpec) DeepCopyInto(out *S3proxySpec) { in.Persistence.DeepCopyInto(&out.Persistence) out.StorageClass = in.StorageClass in.Ingress.DeepCopyInto(&out.Ingress) - in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) + in.Gateway.DeepCopyInto(&out.Gateway) out.S3proxy = in.S3proxy out.Distro = in.Distro } @@ -10837,7 +10837,7 @@ func (in *ServiceBackendSpec) DeepCopyInto(out *ServiceBackendSpec) { } } in.Ingress.DeepCopyInto(&out.Ingress) - in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) + in.Gateway.DeepCopyInto(&out.Gateway) in.Monitoring.DeepCopyInto(&out.Monitoring) out.Server = in.Server out.Distro = in.Distro @@ -11473,7 +11473,7 @@ func (in *SmtprelaySpec) DeepCopyInto(out *SmtprelaySpec) { } in.Monitoring.DeepCopyInto(&out.Monitoring) in.Ingress.DeepCopyInto(&out.Ingress) - in.HTTPRoute.DeepCopyInto(&out.HTTPRoute) + in.Gateway.DeepCopyInto(&out.Gateway) in.Smtp.DeepCopyInto(&out.Smtp) out.Distro = in.Distro } diff --git a/catalog/ace.yaml b/catalog/ace.yaml index 367400c03..d8cd8dd9e 100644 --- a/catalog/ace.yaml +++ b/catalog/ace.yaml @@ -67,14 +67,14 @@ - ghcr.io/kedacore/keda-metrics-apiserver:2.15.1 - ghcr.io/kedacore/keda:2.15.1 - ghcr.io/kluster-manager/addon-manager:v0.15.2 -- ghcr.io/kluster-manager/cluster-auth:v0.4.1 -- ghcr.io/kluster-manager/cluster-gateway-manager:v1.11.0 -- ghcr.io/kluster-manager/cluster-gateway:v1.11.0 -- ghcr.io/kluster-manager/cluster-profile:v0.10.0 -- ghcr.io/kluster-manager/cluster-proxy:v0.7.0 -- ghcr.io/kluster-manager/clusteradm:v1.0.0 -- ghcr.io/kluster-manager/fluxcd-addon:v0.0.9 -- ghcr.io/kluster-manager/managed-serviceaccount:v0.8.1 +- ghcr.io/kluster-manager/cluster-auth:v0.5.0 +- ghcr.io/kluster-manager/cluster-gateway-manager:v1.12.0 +- ghcr.io/kluster-manager/cluster-gateway:v1.12.0 +- ghcr.io/kluster-manager/cluster-profile:v0.11.0 +- ghcr.io/kluster-manager/cluster-proxy:v0.10.0 +- ghcr.io/kluster-manager/clusteradm:v1.2.0 +- ghcr.io/kluster-manager/fluxcd-addon:v0.0.10 +- ghcr.io/kluster-manager/managed-serviceaccount:v0.10.0 - ghcr.io/kluster-manager/placement:v0.15.2 - ghcr.io/kluster-manager/registration-operator:v0.15.2 - ghcr.io/kluster-manager/registration:v0.15.2 @@ -133,8 +133,8 @@ - registry.k8s.io/autoscaling/cluster-autoscaler:v1.27.1 - registry.k8s.io/csi-secrets-store/driver:v1.4.1 - registry.k8s.io/ingress-nginx/kube-webhook-certgen:v20221220-controller-v1.5.1-58-g787ea74b6 -- registry.k8s.io/kube-apiserver:v1.35.0 -- registry.k8s.io/kube-controller-manager:v1.35.0 +- registry.k8s.io/kube-apiserver:v1.34.0 +- registry.k8s.io/kube-controller-manager:v1.34.0 - registry.k8s.io/kube-state-metrics/kube-state-metrics:v2.13.0 - registry.k8s.io/metrics-server/metrics-server:v0.7.2 - registry.k8s.io/prometheus-adapter/prometheus-adapter:v0.11.2 diff --git a/catalog/copy-images.sh b/catalog/copy-images.sh index 0090f3473..7720f7fad 100755 --- a/catalog/copy-images.sh +++ b/catalog/copy-images.sh @@ -46,29 +46,29 @@ $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ac $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ace:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/ace:v2026.2.16 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/aceshifter:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/aceshifter:v2026.2.16 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/appscode-otel-stack:v2025.2.28 $IMAGE_REGISTRY/appscode-charts/appscode-otel-stack:v2025.2.28 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-cassandraautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-cassandraautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-clickhouseautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-clickhouseautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-druidautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-druidautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-elasticsearchautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-elasticsearchautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-etcdautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-etcdautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-ferretdbautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-ferretdbautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-kafkaautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-kafkaautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mariadbautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mariadbautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-memcachedautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-memcachedautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mongodbautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mongodbautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mssqlserverautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mssqlserverautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mysqlautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mysqlautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-perconaxtradbautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-perconaxtradbautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-pgbouncerautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-pgbouncerautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-pgpoolautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-pgpoolautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-postgresautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-postgresautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-proxysqlautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-proxysqlautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-rabbitmqautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-rabbitmqautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-redisautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-redisautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-redissentinelautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-redissentinelautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-singlestoreautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-singlestoreautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-solrautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-solrautoscaler-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-zookeeperautoscaler-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-zookeeperautoscaler-editor:v0.30.0 +$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:v2025.4.30 $IMAGE_REGISTRY/appscode-charts/aws-credential-manager:v2025.4.30 $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 @@ -77,30 +77,30 @@ $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ca $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/capi-ops-manager:v2024.8.14 $IMAGE_REGISTRY/appscode-charts/capi-ops-manager:v2024.8.14 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/catalog-manager:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/catalog-manager:v2026.2.16 $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.2 $IMAGE_REGISTRY/appscode-charts/cert-manager:v1.19.2 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/chartsxhelmdev-chartpreset-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/chartsxhelmdev-chartpreset-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/chartsxhelmdev-clusterchartpreset-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/chartsxhelmdev-clusterchartpreset-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/chartsxhelmdev-clusterchartpreset-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/chartsxhelmdev-clusterchartpreset-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-auth-manager:v2025.5.16 $IMAGE_REGISTRY/appscode-charts/cluster-auth-manager:v2025.5.16 +$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:v2025.4.30 $IMAGE_REGISTRY/appscode-charts/cluster-gateway-manager:v2025.4.30 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-manager-hub:v2025.7.31 $IMAGE_REGISTRY/appscode-charts/cluster-manager-hub:v2025.7.31 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-manager-spoke:v2025.10.17 $IMAGE_REGISTRY/appscode-charts/cluster-manager-spoke:v2025.10.17 +$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-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.2.16 $IMAGE_REGISTRY/appscode-charts/cluster-presets:v2026.2.16 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-profile-manager:v2025.5.16 $IMAGE_REGISTRY/appscode-charts/cluster-profile-manager:v2025.5.16 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-proxy-manager:v2025.4.30 $IMAGE_REGISTRY/appscode-charts/cluster-proxy-manager:v2025.4.30 +$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/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.30.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupbatch-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupblueprint-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupblueprint-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupconfiguration-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupconfiguration-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupconfiguration-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupconfiguration-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupsession-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupsession-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupsession-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupsession-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupverificationsession-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupverificationsession-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupverifier-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupverifier-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-hooktemplate-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-hooktemplate-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-restoresession-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-restoresession-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-restoresession-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/corekubestashcom-restoresession-editor:v0.30.0 +$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 @@ -109,17 +109,16 @@ $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ex $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/falco-ui-server:v2026.1.15 $IMAGE_REGISTRY/appscode-charts/falco-ui-server:v2026.1.15 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/falco:4.0.0 $IMAGE_REGISTRY/appscode-charts/falco:4.0.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/flux2:2.17.0 $IMAGE_REGISTRY/appscode-charts/flux2:2.17.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/fluxcd-manager:v2025.7.31 $IMAGE_REGISTRY/appscode-charts/fluxcd-manager:v2025.7.31 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/fluxcd-manager:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/fluxcd-manager:v2026.2.16 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/gatekeeper-grafana-dashboards:v2023.10.1 $IMAGE_REGISTRY/appscode-charts/gatekeeper-grafana-dashboards:v2023.10.1 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/gatekeeper-library:v2023.10.1 $IMAGE_REGISTRY/appscode-charts/gatekeeper-library:v2023.10.1 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/gatekeeper:3.13.3 $IMAGE_REGISTRY/appscode-charts/gatekeeper:3.13.3 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/gateway-api:v2025.3.14 $IMAGE_REGISTRY/appscode-charts/gateway-api:v2025.3.14 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/grafana-operator:v2026.1.15 $IMAGE_REGISTRY/appscode-charts/grafana-operator:v2026.1.15 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/hub-cluster-robot:v2024.8.9 $IMAGE_REGISTRY/appscode-charts/hub-cluster-robot:v2024.8.9 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/hub-cluster-robot:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/hub-cluster-robot:v2026.2.16 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/inbox-agent:v2024.12.30 $IMAGE_REGISTRY/appscode-charts/inbox-agent:v2024.12.30 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/inbox-server:v2025.2.28 $IMAGE_REGISTRY/appscode-charts/inbox-server:v2025.2.28 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/inbox-ui:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/inbox-ui:v2026.2.16 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ingress-nginx:4.12.1 $IMAGE_REGISTRY/appscode-charts/ingress-nginx:4.12.1 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/keda-add-ons-http:0.10.0 $IMAGE_REGISTRY/appscode-charts/keda-add-ons-http:0.10.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/keda:2.17.2 $IMAGE_REGISTRY/appscode-charts/keda:2.17.2 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kube-grafana-dashboards:v2023.10.1 $IMAGE_REGISTRY/appscode-charts/kube-grafana-dashboards:v2023.10.1 @@ -131,99 +130,97 @@ $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.2.16 $IMAGE_REGISTRY/appscode-charts/kubedb-ui-presets:v2026.2.16 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedb:v2026.1.19 $IMAGE_REGISTRY/appscode-charts/kubedb:v2026.1.19 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-cassandra-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-cassandra-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-cassandra-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-cassandra-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-clickhouse-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-clickhouse-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-clickhouse-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-clickhouse-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-druid-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-druid-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-druid-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-druid-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-elasticsearch-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-elasticsearch-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-elasticsearch-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-elasticsearch-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-etcd-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-etcd-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ferretdb-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-ferretdb-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ferretdb-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-ferretdb-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-hazelcast-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-hazelcast-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-hazelcast-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-hazelcast-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ignite-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-ignite-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ignite-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-ignite-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-kafka-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-kafka-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-kafka-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-kafka-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mariadb-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mariadb-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mariadb-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mariadb-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-memcached-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-memcached-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-memcached-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-memcached-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mongodb-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mongodb-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mongodb-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mongodb-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mssqlserver-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mssqlserver-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mssqlserver-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mssqlserver-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mysql-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mysql-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mysql-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-mysql-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-oracle-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-oracle-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-oracle-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-oracle-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-perconaxtradb-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-perconaxtradb-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-perconaxtradb-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-perconaxtradb-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgbouncer-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgbouncer-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgbouncer-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgbouncer-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgpool-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgpool-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgpool-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgpool-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-postgres-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-postgres-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-postgres-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-postgres-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-proxysql-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-proxysql-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-proxysql-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-proxysql-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-rabbitmq-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-rabbitmq-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-rabbitmq-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-rabbitmq-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-redis-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-redis-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-redis-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-redis-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-redissentinel-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-redissentinel-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-singlestore-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-singlestore-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-singlestore-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-singlestore-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-solr-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-solr-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-solr-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-solr-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-zookeeper-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-zookeeper-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-zookeeper-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/kubedbcom-zookeeper-editor:v0.30.0 +$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.1.19 $IMAGE_REGISTRY/appscode-charts/kubestash:v2026.1.19 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubevault-opscenter:v2025.11.21 $IMAGE_REGISTRY/appscode-charts/kubevault-opscenter:v2025.11.21 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubevault:v2025.11.21 $IMAGE_REGISTRY/appscode-charts/kubevault:v2025.11.21 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kyverno-policies:3.2.5 $IMAGE_REGISTRY/appscode-charts/kyverno-policies:3.2.5 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kyverno:3.2.6 $IMAGE_REGISTRY/appscode-charts/kyverno:3.2.6 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/license-proxyserver-manager:v2026.1.15 $IMAGE_REGISTRY/appscode-charts/license-proxyserver-manager:v2026.1.15 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/license-proxyserver-manager:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/license-proxyserver-manager:v2026.2.16 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/license-proxyserver:v2026.1.15 $IMAGE_REGISTRY/appscode-charts/license-proxyserver:v2026.1.15 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/longhorn:1.7.2 $IMAGE_REGISTRY/appscode-charts/longhorn:1.7.2 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/managed-serviceaccount-manager:v2025.5.16 $IMAGE_REGISTRY/appscode-charts/managed-serviceaccount-manager:v2025.5.16 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/managed-serviceaccount-manager:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/managed-serviceaccount-manager:v2026.2.16 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/metrics-server:3.11.0 $IMAGE_REGISTRY/appscode-charts/metrics-server:3.11.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/monitoring-operator:v2026.1.15 $IMAGE_REGISTRY/appscode-charts/monitoring-operator:v2026.1.15 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/multicluster-controlplane:v2025.4.30 $IMAGE_REGISTRY/appscode-charts/multicluster-controlplane:v2025.4.30 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/multicluster-ingress-reader:v2024.7.10 $IMAGE_REGISTRY/appscode-charts/multicluster-ingress-reader:v2024.7.10 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opencost-grafana-dashboards:v2023.10.1 $IMAGE_REGISTRY/appscode-charts/opencost-grafana-dashboards:v2023.10.1 $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.1.15 $IMAGE_REGISTRY/appscode-charts/operator-shard-manager:v2026.1.15 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opscenter-features:v2026.2.16 $IMAGE_REGISTRY/appscode-charts/opscenter-features:v2026.2.16 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-cassandraopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-cassandraopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-clickhouseopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-clickhouseopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-druidopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-druidopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-elasticsearchopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-elasticsearchopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-etcdopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-etcdopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-ferretdbopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-ferretdbopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-hazelcastopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-hazelcastopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-igniteopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-igniteopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-kafkaopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-kafkaopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mariadbopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mariadbopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-memcachedopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-memcachedopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mongodbopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mongodbopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mssqlserveropsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mssqlserveropsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mysqlopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mysqlopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-oracleopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-oracleopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-perconaxtradbopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-perconaxtradbopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-pgbounceropsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-pgbounceropsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-pgpoolopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-pgpoolopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-postgresopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-postgresopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-proxysqlopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-proxysqlopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-rabbitmqopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-rabbitmqopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-redisopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-redisopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-redissentinelopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-redissentinelopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-singlestoreopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-singlestoreopsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-solropsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-solropsrequest-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-zookeeperopsrequest-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/opskubedbcom-zookeeperopsrequest-editor:v0.30.0 +$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.1.15 $IMAGE_REGISTRY/appscode-charts/panopticon:v2026.1.15 $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/prometheus-adapter:4.9.0 $IMAGE_REGISTRY/appscode-charts/prometheus-adapter:4.9.0 @@ -244,12 +241,12 @@ $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/sp $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.2.16 $IMAGE_REGISTRY/appscode-charts/stash-presets:v2026.2.16 $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.30.0 $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-backupstorage-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-backupstorage-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-backupstorage-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-repository-editor-options:v0.30.0 $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-repository-editor-options:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-repository-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-repository-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-retentionpolicy-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-retentionpolicy-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-snapshot-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-snapshot-editor:v0.30.0 +$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/supervisor:v2026.1.15 $IMAGE_REGISTRY/appscode-charts/supervisor:v2026.1.15 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/topolvm:15.0.0 $IMAGE_REGISTRY/appscode-charts/topolvm:15.0.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uibytebuildersdev-component-alert:v0.12.0 $IMAGE_REGISTRY/appscode-charts/uibytebuildersdev-component-alert:v0.12.0 @@ -279,7 +276,6 @@ $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ui $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-capi-core-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-capi-core-editor:v0.30.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-crossplane-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-crossplane-editor:v0.30.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-ocm-hub-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-ocm-hub-editor:v0.30.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-ocm-mc-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-ocm-mc-editor:v0.30.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-ocm-spoke-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-ocm-spoke-editor:v0.30.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-opscenter-backup-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-opscenter-backup-editor:v0.30.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-opscenter-core-editor:v0.30.0 $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-opscenter-core-editor:v0.30.0 @@ -356,14 +352,14 @@ $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kedacore/keda-admi $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kedacore/keda-metrics-apiserver:2.15.1 $IMAGE_REGISTRY/kedacore/keda-metrics-apiserver:2.15.1 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kedacore/keda:2.15.1 $IMAGE_REGISTRY/kedacore/keda:2.15.1 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/addon-manager:v0.15.2 $IMAGE_REGISTRY/kluster-manager/addon-manager:v0.15.2 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-auth:v0.4.1 $IMAGE_REGISTRY/kluster-manager/cluster-auth:v0.4.1 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-gateway-manager:v1.11.0 $IMAGE_REGISTRY/kluster-manager/cluster-gateway-manager:v1.11.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-gateway:v1.11.0 $IMAGE_REGISTRY/kluster-manager/cluster-gateway:v1.11.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-profile:v0.10.0 $IMAGE_REGISTRY/kluster-manager/cluster-profile:v0.10.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-proxy:v0.7.0 $IMAGE_REGISTRY/kluster-manager/cluster-proxy:v0.7.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/clusteradm:v1.0.0 $IMAGE_REGISTRY/kluster-manager/clusteradm:v1.0.0 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/fluxcd-addon:v0.0.9 $IMAGE_REGISTRY/kluster-manager/fluxcd-addon:v0.0.9 -$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/managed-serviceaccount:v0.8.1 $IMAGE_REGISTRY/kluster-manager/managed-serviceaccount:v0.8.1 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-auth:v0.5.0 $IMAGE_REGISTRY/kluster-manager/cluster-auth:v0.5.0 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-gateway-manager:v1.12.0 $IMAGE_REGISTRY/kluster-manager/cluster-gateway-manager:v1.12.0 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-gateway:v1.12.0 $IMAGE_REGISTRY/kluster-manager/cluster-gateway:v1.12.0 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-profile:v0.11.0 $IMAGE_REGISTRY/kluster-manager/cluster-profile:v0.11.0 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-proxy:v0.10.0 $IMAGE_REGISTRY/kluster-manager/cluster-proxy:v0.10.0 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/clusteradm:v1.2.0 $IMAGE_REGISTRY/kluster-manager/clusteradm:v1.2.0 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/fluxcd-addon:v0.0.10 $IMAGE_REGISTRY/kluster-manager/fluxcd-addon:v0.0.10 +$CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/managed-serviceaccount:v0.10.0 $IMAGE_REGISTRY/kluster-manager/managed-serviceaccount:v0.10.0 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/placement:v0.15.2 $IMAGE_REGISTRY/kluster-manager/placement:v0.15.2 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/registration-operator:v0.15.2 $IMAGE_REGISTRY/kluster-manager/registration-operator:v0.15.2 $CMD cp --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/registration:v0.15.2 $IMAGE_REGISTRY/kluster-manager/registration:v0.15.2 @@ -422,8 +418,8 @@ $CMD cp --allow-nondistributable-artifacts --insecure rancher/kine:v0.11.4 $IMAG $CMD cp --allow-nondistributable-artifacts --insecure registry.k8s.io/autoscaling/cluster-autoscaler:v1.27.1 $IMAGE_REGISTRY/autoscaling/cluster-autoscaler:v1.27.1 $CMD cp --allow-nondistributable-artifacts --insecure registry.k8s.io/csi-secrets-store/driver:v1.4.1 $IMAGE_REGISTRY/csi-secrets-store/driver:v1.4.1 $CMD cp --allow-nondistributable-artifacts --insecure registry.k8s.io/ingress-nginx/kube-webhook-certgen:v20221220-controller-v1.5.1-58-g787ea74b6 $IMAGE_REGISTRY/ingress-nginx/kube-webhook-certgen:v20221220-controller-v1.5.1-58-g787ea74b6 -$CMD cp --allow-nondistributable-artifacts --insecure registry.k8s.io/kube-apiserver:v1.35.0 $IMAGE_REGISTRY/kube-apiserver:v1.35.0 -$CMD cp --allow-nondistributable-artifacts --insecure registry.k8s.io/kube-controller-manager:v1.35.0 $IMAGE_REGISTRY/kube-controller-manager:v1.35.0 +$CMD cp --allow-nondistributable-artifacts --insecure registry.k8s.io/kube-apiserver:v1.34.0 $IMAGE_REGISTRY/kube-apiserver:v1.34.0 +$CMD cp --allow-nondistributable-artifacts --insecure registry.k8s.io/kube-controller-manager:v1.34.0 $IMAGE_REGISTRY/kube-controller-manager:v1.34.0 $CMD cp --allow-nondistributable-artifacts --insecure registry.k8s.io/kube-state-metrics/kube-state-metrics:v2.13.0 $IMAGE_REGISTRY/kube-state-metrics/kube-state-metrics:v2.13.0 $CMD cp --allow-nondistributable-artifacts --insecure registry.k8s.io/metrics-server/metrics-server:v0.7.2 $IMAGE_REGISTRY/metrics-server/metrics-server:v0.7.2 $CMD cp --allow-nondistributable-artifacts --insecure registry.k8s.io/prometheus-adapter/prometheus-adapter:v0.11.2 $IMAGE_REGISTRY/prometheus-adapter/prometheus-adapter:v0.11.2 diff --git a/catalog/editor-charts.yaml b/catalog/editor-charts.yaml index 9dcee1381..39eb63a6a 100644 --- a/catalog/editor-charts.yaml +++ b/catalog/editor-charts.yaml @@ -1,119 +1,119 @@ -- ghcr.io/appscode-charts/autoscalingkubedbcom-cassandraautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-clickhouseautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-druidautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-elasticsearchautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-etcdautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-ferretdbautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-kafkaautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-mariadbautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-memcachedautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-mongodbautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-mssqlserverautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-mysqlautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-perconaxtradbautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-pgbouncerautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-pgpoolautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-postgresautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-proxysqlautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-rabbitmqautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-redisautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-redissentinelautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-singlestoreautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-solrautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/autoscalingkubedbcom-zookeeperautoscaler-editor:v0.30.0 -- ghcr.io/appscode-charts/chartsxhelmdev-chartpreset-editor:v0.30.0 -- ghcr.io/appscode-charts/chartsxhelmdev-clusterchartpreset-editor-options:v0.30.0 -- ghcr.io/appscode-charts/chartsxhelmdev-clusterchartpreset-editor:v0.30.0 -- ghcr.io/appscode-charts/corekubestashcom-backupbatch-editor:v0.30.0 -- ghcr.io/appscode-charts/corekubestashcom-backupblueprint-editor:v0.30.0 -- ghcr.io/appscode-charts/corekubestashcom-backupconfiguration-editor-options:v0.30.0 -- ghcr.io/appscode-charts/corekubestashcom-backupconfiguration-editor:v0.30.0 -- ghcr.io/appscode-charts/corekubestashcom-backupsession-editor-options:v0.30.0 -- ghcr.io/appscode-charts/corekubestashcom-backupsession-editor:v0.30.0 -- ghcr.io/appscode-charts/corekubestashcom-backupverificationsession-editor:v0.30.0 -- ghcr.io/appscode-charts/corekubestashcom-backupverifier-editor:v0.30.0 -- ghcr.io/appscode-charts/corekubestashcom-hooktemplate-editor:v0.30.0 -- ghcr.io/appscode-charts/corekubestashcom-restoresession-editor-options:v0.30.0 -- ghcr.io/appscode-charts/corekubestashcom-restoresession-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-cassandra-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-cassandra-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-clickhouse-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-clickhouse-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-druid-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-druid-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-elasticsearch-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-elasticsearch-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-etcd-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-ferretdb-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-ferretdb-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-hazelcast-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-hazelcast-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-ignite-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-ignite-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-kafka-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-kafka-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-mariadb-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-mariadb-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-memcached-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-memcached-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-mongodb-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-mongodb-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-mssqlserver-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-mssqlserver-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-mysql-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-mysql-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-oracle-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-oracle-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-perconaxtradb-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-perconaxtradb-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-pgbouncer-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-pgbouncer-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-pgpool-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-pgpool-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-postgres-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-postgres-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-proxysql-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-proxysql-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-rabbitmq-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-rabbitmq-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-redis-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-redis-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-redissentinel-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-singlestore-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-singlestore-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-solr-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-solr-editor:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-zookeeper-editor-options:v0.30.0 -- ghcr.io/appscode-charts/kubedbcom-zookeeper-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-cassandraopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-clickhouseopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-druidopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-elasticsearchopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-etcdopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-ferretdbopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-hazelcastopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-igniteopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-kafkaopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-mariadbopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-memcachedopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-mongodbopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-mssqlserveropsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-mysqlopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-oracleopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-perconaxtradbopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-pgbounceropsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-pgpoolopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-postgresopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-proxysqlopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-rabbitmqopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-redisopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-redissentinelopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-singlestoreopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-solropsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/opskubedbcom-zookeeperopsrequest-editor:v0.30.0 -- ghcr.io/appscode-charts/storagekubestashcom-backupstorage-editor-options:v0.30.0 -- ghcr.io/appscode-charts/storagekubestashcom-backupstorage-editor:v0.30.0 -- ghcr.io/appscode-charts/storagekubestashcom-repository-editor-options:v0.30.0 -- ghcr.io/appscode-charts/storagekubestashcom-repository-editor:v0.30.0 -- ghcr.io/appscode-charts/storagekubestashcom-retentionpolicy-editor:v0.30.0 -- ghcr.io/appscode-charts/storagekubestashcom-snapshot-editor:v0.30.0 +- 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 b468ef195..fcf994100 100755 --- a/catalog/export-images.sh +++ b/catalog/export-images.sh @@ -43,29 +43,29 @@ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ace:v2026.2.16 images/appscode-charts-ace-v2026.2.16.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/aceshifter:v2026.2.16 images/appscode-charts-aceshifter-v2026.2.16.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/appscode-otel-stack:v2025.2.28 images/appscode-charts-appscode-otel-stack-v2025.2.28.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-cassandraautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-cassandraautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-clickhouseautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-clickhouseautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-druidautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-druidautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-elasticsearchautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-elasticsearchautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-etcdautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-etcdautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-ferretdbautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-ferretdbautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-kafkaautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-kafkaautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mariadbautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-mariadbautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-memcachedautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-memcachedautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mongodbautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-mongodbautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mssqlserverautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-mssqlserverautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-mysqlautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-mysqlautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-perconaxtradbautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-perconaxtradbautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-pgbouncerautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-pgbouncerautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-pgpoolautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-pgpoolautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-postgresautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-postgresautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-proxysqlautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-proxysqlautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-rabbitmqautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-rabbitmqautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-redisautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-redisautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-redissentinelautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-redissentinelautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-singlestoreautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-singlestoreautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-solrautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-solrautoscaler-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/autoscalingkubedbcom-zookeeperautoscaler-editor:v0.30.0 images/appscode-charts-autoscalingkubedbcom-zookeeperautoscaler-editor-v0.30.0.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:v2025.4.30 images/appscode-charts-aws-credential-manager-v2025.4.30.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 @@ -74,30 +74,30 @@ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/capi-ops-manager:v2024.8.14 images/appscode-charts-capi-ops-manager-v2024.8.14.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/catalog-manager:v2026.2.16 images/appscode-charts-catalog-manager-v2026.2.16.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.2 images/appscode-charts-cert-manager-v1.19.2.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/chartsxhelmdev-chartpreset-editor:v0.30.0 images/appscode-charts-chartsxhelmdev-chartpreset-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/chartsxhelmdev-clusterchartpreset-editor-options:v0.30.0 images/appscode-charts-chartsxhelmdev-clusterchartpreset-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/chartsxhelmdev-clusterchartpreset-editor:v0.30.0 images/appscode-charts-chartsxhelmdev-clusterchartpreset-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-auth-manager:v2025.5.16 images/appscode-charts-cluster-auth-manager-v2025.5.16.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:v2025.4.30 images/appscode-charts-cluster-gateway-manager-v2025.4.30.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-manager-hub:v2025.7.31 images/appscode-charts-cluster-manager-hub-v2025.7.31.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-manager-spoke:v2025.10.17 images/appscode-charts-cluster-manager-spoke-v2025.10.17.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-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.2.16 images/appscode-charts-cluster-presets-v2026.2.16.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-profile-manager:v2025.5.16 images/appscode-charts-cluster-profile-manager-v2025.5.16.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/cluster-proxy-manager:v2025.4.30 images/appscode-charts-cluster-proxy-manager-v2025.4.30.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/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.30.0 images/appscode-charts-corekubestashcom-backupbatch-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupblueprint-editor:v0.30.0 images/appscode-charts-corekubestashcom-backupblueprint-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupconfiguration-editor-options:v0.30.0 images/appscode-charts-corekubestashcom-backupconfiguration-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupconfiguration-editor:v0.30.0 images/appscode-charts-corekubestashcom-backupconfiguration-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupsession-editor-options:v0.30.0 images/appscode-charts-corekubestashcom-backupsession-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupsession-editor:v0.30.0 images/appscode-charts-corekubestashcom-backupsession-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupverificationsession-editor:v0.30.0 images/appscode-charts-corekubestashcom-backupverificationsession-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-backupverifier-editor:v0.30.0 images/appscode-charts-corekubestashcom-backupverifier-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-hooktemplate-editor:v0.30.0 images/appscode-charts-corekubestashcom-hooktemplate-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-restoresession-editor-options:v0.30.0 images/appscode-charts-corekubestashcom-restoresession-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/corekubestashcom-restoresession-editor:v0.30.0 images/appscode-charts-corekubestashcom-restoresession-editor-v0.30.0.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 @@ -106,17 +106,16 @@ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/falco-ui-server:v2026.1.15 images/appscode-charts-falco-ui-server-v2026.1.15.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/falco:4.0.0 images/appscode-charts-falco-4.0.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/flux2:2.17.0 images/appscode-charts-flux2-2.17.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/fluxcd-manager:v2025.7.31 images/appscode-charts-fluxcd-manager-v2025.7.31.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/fluxcd-manager:v2026.2.16 images/appscode-charts-fluxcd-manager-v2026.2.16.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/gatekeeper-grafana-dashboards:v2023.10.1 images/appscode-charts-gatekeeper-grafana-dashboards-v2023.10.1.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/gatekeeper-library:v2023.10.1 images/appscode-charts-gatekeeper-library-v2023.10.1.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/gatekeeper:3.13.3 images/appscode-charts-gatekeeper-3.13.3.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/gateway-api:v2025.3.14 images/appscode-charts-gateway-api-v2025.3.14.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/grafana-operator:v2026.1.15 images/appscode-charts-grafana-operator-v2026.1.15.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/hub-cluster-robot:v2024.8.9 images/appscode-charts-hub-cluster-robot-v2024.8.9.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/hub-cluster-robot:v2026.2.16 images/appscode-charts-hub-cluster-robot-v2026.2.16.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/inbox-agent:v2024.12.30 images/appscode-charts-inbox-agent-v2024.12.30.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/inbox-server:v2025.2.28 images/appscode-charts-inbox-server-v2025.2.28.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/inbox-ui:v2026.2.16 images/appscode-charts-inbox-ui-v2026.2.16.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ingress-nginx:4.12.1 images/appscode-charts-ingress-nginx-4.12.1.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/keda-add-ons-http:0.10.0 images/appscode-charts-keda-add-ons-http-0.10.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/keda:2.17.2 images/appscode-charts-keda-2.17.2.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kube-grafana-dashboards:v2023.10.1 images/appscode-charts-kube-grafana-dashboards-v2023.10.1.tar @@ -128,99 +127,97 @@ $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.2.16 images/appscode-charts-kubedb-ui-presets-v2026.2.16.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedb:v2026.1.19 images/appscode-charts-kubedb-v2026.1.19.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-cassandra-editor-options:v0.30.0 images/appscode-charts-kubedbcom-cassandra-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-cassandra-editor:v0.30.0 images/appscode-charts-kubedbcom-cassandra-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-clickhouse-editor-options:v0.30.0 images/appscode-charts-kubedbcom-clickhouse-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-clickhouse-editor:v0.30.0 images/appscode-charts-kubedbcom-clickhouse-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-druid-editor-options:v0.30.0 images/appscode-charts-kubedbcom-druid-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-druid-editor:v0.30.0 images/appscode-charts-kubedbcom-druid-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-elasticsearch-editor-options:v0.30.0 images/appscode-charts-kubedbcom-elasticsearch-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-elasticsearch-editor:v0.30.0 images/appscode-charts-kubedbcom-elasticsearch-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-etcd-editor:v0.30.0 images/appscode-charts-kubedbcom-etcd-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ferretdb-editor-options:v0.30.0 images/appscode-charts-kubedbcom-ferretdb-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ferretdb-editor:v0.30.0 images/appscode-charts-kubedbcom-ferretdb-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-hazelcast-editor-options:v0.30.0 images/appscode-charts-kubedbcom-hazelcast-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-hazelcast-editor:v0.30.0 images/appscode-charts-kubedbcom-hazelcast-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ignite-editor-options:v0.30.0 images/appscode-charts-kubedbcom-ignite-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-ignite-editor:v0.30.0 images/appscode-charts-kubedbcom-ignite-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-kafka-editor-options:v0.30.0 images/appscode-charts-kubedbcom-kafka-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-kafka-editor:v0.30.0 images/appscode-charts-kubedbcom-kafka-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mariadb-editor-options:v0.30.0 images/appscode-charts-kubedbcom-mariadb-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mariadb-editor:v0.30.0 images/appscode-charts-kubedbcom-mariadb-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-memcached-editor-options:v0.30.0 images/appscode-charts-kubedbcom-memcached-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-memcached-editor:v0.30.0 images/appscode-charts-kubedbcom-memcached-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mongodb-editor-options:v0.30.0 images/appscode-charts-kubedbcom-mongodb-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mongodb-editor:v0.30.0 images/appscode-charts-kubedbcom-mongodb-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mssqlserver-editor-options:v0.30.0 images/appscode-charts-kubedbcom-mssqlserver-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mssqlserver-editor:v0.30.0 images/appscode-charts-kubedbcom-mssqlserver-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mysql-editor-options:v0.30.0 images/appscode-charts-kubedbcom-mysql-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-mysql-editor:v0.30.0 images/appscode-charts-kubedbcom-mysql-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-oracle-editor-options:v0.30.0 images/appscode-charts-kubedbcom-oracle-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-oracle-editor:v0.30.0 images/appscode-charts-kubedbcom-oracle-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-perconaxtradb-editor-options:v0.30.0 images/appscode-charts-kubedbcom-perconaxtradb-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-perconaxtradb-editor:v0.30.0 images/appscode-charts-kubedbcom-perconaxtradb-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgbouncer-editor-options:v0.30.0 images/appscode-charts-kubedbcom-pgbouncer-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgbouncer-editor:v0.30.0 images/appscode-charts-kubedbcom-pgbouncer-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgpool-editor-options:v0.30.0 images/appscode-charts-kubedbcom-pgpool-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-pgpool-editor:v0.30.0 images/appscode-charts-kubedbcom-pgpool-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-postgres-editor-options:v0.30.0 images/appscode-charts-kubedbcom-postgres-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-postgres-editor:v0.30.0 images/appscode-charts-kubedbcom-postgres-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-proxysql-editor-options:v0.30.0 images/appscode-charts-kubedbcom-proxysql-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-proxysql-editor:v0.30.0 images/appscode-charts-kubedbcom-proxysql-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-rabbitmq-editor-options:v0.30.0 images/appscode-charts-kubedbcom-rabbitmq-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-rabbitmq-editor:v0.30.0 images/appscode-charts-kubedbcom-rabbitmq-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-redis-editor-options:v0.30.0 images/appscode-charts-kubedbcom-redis-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-redis-editor:v0.30.0 images/appscode-charts-kubedbcom-redis-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-redissentinel-editor:v0.30.0 images/appscode-charts-kubedbcom-redissentinel-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-singlestore-editor-options:v0.30.0 images/appscode-charts-kubedbcom-singlestore-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-singlestore-editor:v0.30.0 images/appscode-charts-kubedbcom-singlestore-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-solr-editor-options:v0.30.0 images/appscode-charts-kubedbcom-solr-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-solr-editor:v0.30.0 images/appscode-charts-kubedbcom-solr-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-zookeeper-editor-options:v0.30.0 images/appscode-charts-kubedbcom-zookeeper-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubedbcom-zookeeper-editor:v0.30.0 images/appscode-charts-kubedbcom-zookeeper-editor-v0.30.0.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.1.19 images/appscode-charts-kubestash-v2026.1.19.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubevault-opscenter:v2025.11.21 images/appscode-charts-kubevault-opscenter-v2025.11.21.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kubevault:v2025.11.21 images/appscode-charts-kubevault-v2025.11.21.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kyverno-policies:3.2.5 images/appscode-charts-kyverno-policies-3.2.5.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/kyverno:3.2.6 images/appscode-charts-kyverno-3.2.6.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/license-proxyserver-manager:v2026.1.15 images/appscode-charts-license-proxyserver-manager-v2026.1.15.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/license-proxyserver-manager:v2026.2.16 images/appscode-charts-license-proxyserver-manager-v2026.2.16.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/license-proxyserver:v2026.1.15 images/appscode-charts-license-proxyserver-v2026.1.15.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/longhorn:1.7.2 images/appscode-charts-longhorn-1.7.2.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/managed-serviceaccount-manager:v2025.5.16 images/appscode-charts-managed-serviceaccount-manager-v2025.5.16.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/managed-serviceaccount-manager:v2026.2.16 images/appscode-charts-managed-serviceaccount-manager-v2026.2.16.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/metrics-server:3.11.0 images/appscode-charts-metrics-server-3.11.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/monitoring-operator:v2026.1.15 images/appscode-charts-monitoring-operator-v2026.1.15.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/multicluster-controlplane:v2025.4.30 images/appscode-charts-multicluster-controlplane-v2025.4.30.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/multicluster-ingress-reader:v2024.7.10 images/appscode-charts-multicluster-ingress-reader-v2024.7.10.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opencost-grafana-dashboards:v2023.10.1 images/appscode-charts-opencost-grafana-dashboards-v2023.10.1.tar $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.1.15 images/appscode-charts-operator-shard-manager-v2026.1.15.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opscenter-features:v2026.2.16 images/appscode-charts-opscenter-features-v2026.2.16.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-cassandraopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-cassandraopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-clickhouseopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-clickhouseopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-druidopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-druidopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-elasticsearchopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-elasticsearchopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-etcdopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-etcdopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-ferretdbopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-ferretdbopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-hazelcastopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-hazelcastopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-igniteopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-igniteopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-kafkaopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-kafkaopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mariadbopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-mariadbopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-memcachedopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-memcachedopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mongodbopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-mongodbopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mssqlserveropsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-mssqlserveropsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-mysqlopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-mysqlopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-oracleopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-oracleopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-perconaxtradbopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-perconaxtradbopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-pgbounceropsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-pgbounceropsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-pgpoolopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-pgpoolopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-postgresopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-postgresopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-proxysqlopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-proxysqlopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-rabbitmqopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-rabbitmqopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-redisopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-redisopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-redissentinelopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-redissentinelopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-singlestoreopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-singlestoreopsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-solropsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-solropsrequest-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/opskubedbcom-zookeeperopsrequest-editor:v0.30.0 images/appscode-charts-opskubedbcom-zookeeperopsrequest-editor-v0.30.0.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.1.15 images/appscode-charts-panopticon-v2026.1.15.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/prometheus-adapter:4.9.0 images/appscode-charts-prometheus-adapter-4.9.0.tar @@ -241,12 +238,12 @@ $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.2.16 images/appscode-charts-stash-presets-v2026.2.16.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.30.0 images/appscode-charts-storagekubestashcom-backupstorage-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-backupstorage-editor:v0.30.0 images/appscode-charts-storagekubestashcom-backupstorage-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-repository-editor-options:v0.30.0 images/appscode-charts-storagekubestashcom-repository-editor-options-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-repository-editor:v0.30.0 images/appscode-charts-storagekubestashcom-repository-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-retentionpolicy-editor:v0.30.0 images/appscode-charts-storagekubestashcom-retentionpolicy-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/storagekubestashcom-snapshot-editor:v0.30.0 images/appscode-charts-storagekubestashcom-snapshot-editor-v0.30.0.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/supervisor:v2026.1.15 images/appscode-charts-supervisor-v2026.1.15.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/topolvm:15.0.0 images/appscode-charts-topolvm-15.0.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uibytebuildersdev-component-alert:v0.12.0 images/appscode-charts-uibytebuildersdev-component-alert-v0.12.0.tar @@ -276,7 +273,6 @@ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-capi-core-editor:v0.30.0 images/appscode-charts-uik8sappscodecom-featureset-capi-core-editor-v0.30.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-crossplane-editor:v0.30.0 images/appscode-charts-uik8sappscodecom-featureset-crossplane-editor-v0.30.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-ocm-hub-editor:v0.30.0 images/appscode-charts-uik8sappscodecom-featureset-ocm-hub-editor-v0.30.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-ocm-mc-editor:v0.30.0 images/appscode-charts-uik8sappscodecom-featureset-ocm-mc-editor-v0.30.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-ocm-spoke-editor:v0.30.0 images/appscode-charts-uik8sappscodecom-featureset-ocm-spoke-editor-v0.30.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-opscenter-backup-editor:v0.30.0 images/appscode-charts-uik8sappscodecom-featureset-opscenter-backup-editor-v0.30.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/appscode-charts/uik8sappscodecom-featureset-opscenter-core-editor:v0.30.0 images/appscode-charts-uik8sappscodecom-featureset-opscenter-core-editor-v0.30.0.tar @@ -353,14 +349,14 @@ $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kedacore/keda-ad $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kedacore/keda-metrics-apiserver:2.15.1 images/kedacore-keda-metrics-apiserver-2.15.1.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kedacore/keda:2.15.1 images/kedacore-keda-2.15.1.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/addon-manager:v0.15.2 images/kluster-manager-addon-manager-v0.15.2.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-auth:v0.4.1 images/kluster-manager-cluster-auth-v0.4.1.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-gateway-manager:v1.11.0 images/kluster-manager-cluster-gateway-manager-v1.11.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-gateway:v1.11.0 images/kluster-manager-cluster-gateway-v1.11.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-profile:v0.10.0 images/kluster-manager-cluster-profile-v0.10.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-proxy:v0.7.0 images/kluster-manager-cluster-proxy-v0.7.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/clusteradm:v1.0.0 images/kluster-manager-clusteradm-v1.0.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/fluxcd-addon:v0.0.9 images/kluster-manager-fluxcd-addon-v0.0.9.tar -$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/managed-serviceaccount:v0.8.1 images/kluster-manager-managed-serviceaccount-v0.8.1.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-auth:v0.5.0 images/kluster-manager-cluster-auth-v0.5.0.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-gateway-manager:v1.12.0 images/kluster-manager-cluster-gateway-manager-v1.12.0.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-gateway:v1.12.0 images/kluster-manager-cluster-gateway-v1.12.0.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-profile:v0.11.0 images/kluster-manager-cluster-profile-v0.11.0.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/cluster-proxy:v0.10.0 images/kluster-manager-cluster-proxy-v0.10.0.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/clusteradm:v1.2.0 images/kluster-manager-clusteradm-v1.2.0.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/fluxcd-addon:v0.0.10 images/kluster-manager-fluxcd-addon-v0.0.10.tar +$CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/managed-serviceaccount:v0.10.0 images/kluster-manager-managed-serviceaccount-v0.10.0.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/placement:v0.15.2 images/kluster-manager-placement-v0.15.2.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/registration-operator:v0.15.2 images/kluster-manager-registration-operator-v0.15.2.tar $CMD pull --allow-nondistributable-artifacts --insecure ghcr.io/kluster-manager/registration:v0.15.2 images/kluster-manager-registration-v0.15.2.tar @@ -419,8 +415,8 @@ $CMD pull --allow-nondistributable-artifacts --insecure rancher/kine:v0.11.4 ima $CMD pull --allow-nondistributable-artifacts --insecure registry.k8s.io/autoscaling/cluster-autoscaler:v1.27.1 images/autoscaling-cluster-autoscaler-v1.27.1.tar $CMD pull --allow-nondistributable-artifacts --insecure registry.k8s.io/csi-secrets-store/driver:v1.4.1 images/csi-secrets-store-driver-v1.4.1.tar $CMD pull --allow-nondistributable-artifacts --insecure registry.k8s.io/ingress-nginx/kube-webhook-certgen:v20221220-controller-v1.5.1-58-g787ea74b6 images/ingress-nginx-kube-webhook-certgen-v20221220-controller-v1.5.1-58-g787ea74b6.tar -$CMD pull --allow-nondistributable-artifacts --insecure registry.k8s.io/kube-apiserver:v1.35.0 images/kube-apiserver-v1.35.0.tar -$CMD pull --allow-nondistributable-artifacts --insecure registry.k8s.io/kube-controller-manager:v1.35.0 images/kube-controller-manager-v1.35.0.tar +$CMD pull --allow-nondistributable-artifacts --insecure registry.k8s.io/kube-apiserver:v1.34.0 images/kube-apiserver-v1.34.0.tar +$CMD pull --allow-nondistributable-artifacts --insecure registry.k8s.io/kube-controller-manager:v1.34.0 images/kube-controller-manager-v1.34.0.tar $CMD pull --allow-nondistributable-artifacts --insecure registry.k8s.io/kube-state-metrics/kube-state-metrics:v2.13.0 images/kube-state-metrics-kube-state-metrics-v2.13.0.tar $CMD pull --allow-nondistributable-artifacts --insecure registry.k8s.io/metrics-server/metrics-server:v0.7.2 images/metrics-server-metrics-server-v0.7.2.tar $CMD pull --allow-nondistributable-artifacts --insecure registry.k8s.io/prometheus-adapter/prometheus-adapter:v0.11.2 images/prometheus-adapter-prometheus-adapter-v0.11.2.tar diff --git a/catalog/feature-charts.yaml b/catalog/feature-charts.yaml index ba1a1edd2..fdc9a7cc2 100644 --- a/catalog/feature-charts.yaml +++ b/catalog/feature-charts.yaml @@ -8,15 +8,15 @@ - ghcr.io/appscode-charts/capi-ops-manager:v2024.8.14 - ghcr.io/appscode-charts/catalog-manager:v2026.2.16 - ghcr.io/appscode-charts/cert-manager-csi-driver-cacerts:v2026.1.15 -- ghcr.io/appscode-charts/cert-manager:v1.19.2 -- ghcr.io/appscode-charts/cluster-auth-manager:v2025.5.16 +- 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:v2025.4.30 -- ghcr.io/appscode-charts/cluster-manager-hub:v2025.7.31 -- ghcr.io/appscode-charts/cluster-manager-spoke:v2025.10.17 +- ghcr.io/appscode-charts/cluster-gateway-manager:v2026.2.16 +- 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.2.16 -- ghcr.io/appscode-charts/cluster-profile-manager:v2025.5.16 -- ghcr.io/appscode-charts/cluster-proxy-manager:v2025.4.30 +- ghcr.io/appscode-charts/cluster-profile-manager:v2026.2.16 +- ghcr.io/appscode-charts/cluster-proxy-manager:v2026.2.16 - 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 @@ -26,17 +26,16 @@ - ghcr.io/appscode-charts/falco-ui-server:v2026.1.15 - ghcr.io/appscode-charts/falco:4.0.0 - ghcr.io/appscode-charts/flux2:2.17.0 -- ghcr.io/appscode-charts/fluxcd-manager:v2025.7.31 +- ghcr.io/appscode-charts/fluxcd-manager:v2026.2.16 - ghcr.io/appscode-charts/gatekeeper-grafana-dashboards:v2023.10.1 - ghcr.io/appscode-charts/gatekeeper-library:v2023.10.1 - ghcr.io/appscode-charts/gatekeeper:3.13.3 - ghcr.io/appscode-charts/gateway-api:v2025.3.14 - ghcr.io/appscode-charts/grafana-operator:v2026.1.15 -- ghcr.io/appscode-charts/hub-cluster-robot:v2024.8.9 +- ghcr.io/appscode-charts/hub-cluster-robot:v2026.2.16 - ghcr.io/appscode-charts/inbox-agent:v2024.12.30 - ghcr.io/appscode-charts/inbox-server:v2025.2.28 - ghcr.io/appscode-charts/inbox-ui:v2026.2.16 -- ghcr.io/appscode-charts/ingress-nginx:4.12.1 - ghcr.io/appscode-charts/keda-add-ons-http:0.10.0 - ghcr.io/appscode-charts/keda:2.17.2 - ghcr.io/appscode-charts/kube-grafana-dashboards:v2023.10.1 @@ -53,14 +52,12 @@ - ghcr.io/appscode-charts/kubevault:v2025.11.21 - ghcr.io/appscode-charts/kyverno-policies:3.2.5 - ghcr.io/appscode-charts/kyverno:3.2.6 -- ghcr.io/appscode-charts/license-proxyserver-manager:v2026.1.15 +- ghcr.io/appscode-charts/license-proxyserver-manager:v2026.2.16 - ghcr.io/appscode-charts/license-proxyserver:v2026.1.15 - ghcr.io/appscode-charts/longhorn:1.7.2 -- ghcr.io/appscode-charts/managed-serviceaccount-manager:v2025.5.16 +- ghcr.io/appscode-charts/managed-serviceaccount-manager:v2026.2.16 - ghcr.io/appscode-charts/metrics-server:3.11.0 - ghcr.io/appscode-charts/monitoring-operator:v2026.1.15 -- ghcr.io/appscode-charts/multicluster-controlplane:v2025.4.30 -- ghcr.io/appscode-charts/multicluster-ingress-reader:v2024.7.10 - ghcr.io/appscode-charts/opencost-grafana-dashboards:v2023.10.1 - ghcr.io/appscode-charts/opencost:1.18.1 - ghcr.io/appscode-charts/operator-shard-manager:v2026.1.15 @@ -89,7 +86,6 @@ - ghcr.io/appscode-charts/uik8sappscodecom-featureset-capi-core-editor:v0.30.0 - ghcr.io/appscode-charts/uik8sappscodecom-featureset-crossplane-editor:v0.30.0 - ghcr.io/appscode-charts/uik8sappscodecom-featureset-ocm-hub-editor:v0.30.0 -- ghcr.io/appscode-charts/uik8sappscodecom-featureset-ocm-mc-editor:v0.30.0 - ghcr.io/appscode-charts/uik8sappscodecom-featureset-ocm-spoke-editor:v0.30.0 - ghcr.io/appscode-charts/uik8sappscodecom-featureset-opscenter-backup-editor:v0.30.0 - ghcr.io/appscode-charts/uik8sappscodecom-featureset-opscenter-core-editor:v0.30.0 diff --git a/catalog/imagelist.yaml b/catalog/imagelist.yaml index 94d43b538..2f1cd11b5 100644 --- a/catalog/imagelist.yaml +++ b/catalog/imagelist.yaml @@ -31,7 +31,6 @@ - ghcr.io/appscode/service-provider:v0.0.2 - ghcr.io/appscode/smtprelay:v0.0.4 - ghcr.io/appscode/website:v2026.2.16 -- ghcr.io/kluster-manager/multicluster-controlplane:v0.6.0 - ghcr.io/open-telemetry/opentelemetry-operator/target-allocator:0.118.0 - ghcr.io/voyagermesh/crd-manager:v0.1.0 - ghcr.io/voyagermesh/echoserver:v20221109 diff --git a/catalog/import-images.sh b/catalog/import-images.sh index 9e57d3de9..2b8462810 100755 --- a/catalog/import-images.sh +++ b/catalog/import-images.sh @@ -37,29 +37,29 @@ $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-a $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-ace-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/ace:v2026.2.16 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-aceshifter-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/aceshifter:v2026.2.16 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-appscode-otel-stack-v2025.2.28.tar $IMAGE_REGISTRY/appscode-charts/appscode-otel-stack:v2025.2.28 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-cassandraautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-cassandraautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-clickhouseautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-clickhouseautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-druidautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-druidautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-elasticsearchautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-elasticsearchautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-etcdautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-etcdautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-ferretdbautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-ferretdbautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-kafkaautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-kafkaautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-mariadbautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mariadbautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-memcachedautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-memcachedautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-mongodbautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mongodbautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-mssqlserverautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mssqlserverautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-mysqlautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-mysqlautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-perconaxtradbautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-perconaxtradbautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-pgbouncerautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-pgbouncerautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-pgpoolautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-pgpoolautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-postgresautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-postgresautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-proxysqlautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-proxysqlautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-rabbitmqautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-rabbitmqautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-redisautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-redisautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-redissentinelautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-redissentinelautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-singlestoreautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-singlestoreautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-solrautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-solrautoscaler-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-autoscalingkubedbcom-zookeeperautoscaler-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/autoscalingkubedbcom-zookeeperautoscaler-editor:v0.30.0 +$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-v2025.4.30.tar $IMAGE_REGISTRY/appscode-charts/aws-credential-manager:v2025.4.30 $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 @@ -68,30 +68,30 @@ $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-c $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-capi-ops-manager-v2024.8.14.tar $IMAGE_REGISTRY/appscode-charts/capi-ops-manager:v2024.8.14 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-catalog-manager-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/catalog-manager:v2026.2.16 $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.2.tar $IMAGE_REGISTRY/appscode-charts/cert-manager:v1.19.2 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-chartsxhelmdev-chartpreset-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/chartsxhelmdev-chartpreset-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-chartsxhelmdev-clusterchartpreset-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/chartsxhelmdev-clusterchartpreset-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-chartsxhelmdev-clusterchartpreset-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/chartsxhelmdev-clusterchartpreset-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-auth-manager-v2025.5.16.tar $IMAGE_REGISTRY/appscode-charts/cluster-auth-manager:v2025.5.16 +$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-v2025.4.30.tar $IMAGE_REGISTRY/appscode-charts/cluster-gateway-manager:v2025.4.30 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-manager-hub-v2025.7.31.tar $IMAGE_REGISTRY/appscode-charts/cluster-manager-hub:v2025.7.31 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-manager-spoke-v2025.10.17.tar $IMAGE_REGISTRY/appscode-charts/cluster-manager-spoke:v2025.10.17 +$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-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.2.16.tar $IMAGE_REGISTRY/appscode-charts/cluster-presets:v2026.2.16 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-profile-manager-v2025.5.16.tar $IMAGE_REGISTRY/appscode-charts/cluster-profile-manager:v2025.5.16 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-cluster-proxy-manager-v2025.4.30.tar $IMAGE_REGISTRY/appscode-charts/cluster-proxy-manager:v2025.4.30 +$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-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.30.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupbatch-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupblueprint-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupblueprint-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupconfiguration-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupconfiguration-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupconfiguration-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupconfiguration-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupsession-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupsession-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupsession-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupsession-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupverificationsession-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupverificationsession-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-backupverifier-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-backupverifier-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-hooktemplate-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-hooktemplate-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-restoresession-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-restoresession-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-corekubestashcom-restoresession-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/corekubestashcom-restoresession-editor:v0.30.0 +$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 @@ -100,17 +100,16 @@ $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-e $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-falco-ui-server-v2026.1.15.tar $IMAGE_REGISTRY/appscode-charts/falco-ui-server:v2026.1.15 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-falco-4.0.0.tar $IMAGE_REGISTRY/appscode-charts/falco:4.0.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-flux2-2.17.0.tar $IMAGE_REGISTRY/appscode-charts/flux2:2.17.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-fluxcd-manager-v2025.7.31.tar $IMAGE_REGISTRY/appscode-charts/fluxcd-manager:v2025.7.31 +$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-fluxcd-manager-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/fluxcd-manager:v2026.2.16 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-gatekeeper-grafana-dashboards-v2023.10.1.tar $IMAGE_REGISTRY/appscode-charts/gatekeeper-grafana-dashboards:v2023.10.1 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-gatekeeper-library-v2023.10.1.tar $IMAGE_REGISTRY/appscode-charts/gatekeeper-library:v2023.10.1 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-gatekeeper-3.13.3.tar $IMAGE_REGISTRY/appscode-charts/gatekeeper:3.13.3 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-gateway-api-v2025.3.14.tar $IMAGE_REGISTRY/appscode-charts/gateway-api:v2025.3.14 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-grafana-operator-v2026.1.15.tar $IMAGE_REGISTRY/appscode-charts/grafana-operator:v2026.1.15 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-hub-cluster-robot-v2024.8.9.tar $IMAGE_REGISTRY/appscode-charts/hub-cluster-robot:v2024.8.9 +$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-hub-cluster-robot-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/hub-cluster-robot:v2026.2.16 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-inbox-agent-v2024.12.30.tar $IMAGE_REGISTRY/appscode-charts/inbox-agent:v2024.12.30 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-inbox-server-v2025.2.28.tar $IMAGE_REGISTRY/appscode-charts/inbox-server:v2025.2.28 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-inbox-ui-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/inbox-ui:v2026.2.16 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-ingress-nginx-4.12.1.tar $IMAGE_REGISTRY/appscode-charts/ingress-nginx:4.12.1 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-keda-add-ons-http-0.10.0.tar $IMAGE_REGISTRY/appscode-charts/keda-add-ons-http:0.10.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-keda-2.17.2.tar $IMAGE_REGISTRY/appscode-charts/keda:2.17.2 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kube-grafana-dashboards-v2023.10.1.tar $IMAGE_REGISTRY/appscode-charts/kube-grafana-dashboards:v2023.10.1 @@ -122,99 +121,97 @@ $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.2.16.tar $IMAGE_REGISTRY/appscode-charts/kubedb-ui-presets:v2026.2.16 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedb-v2026.1.19.tar $IMAGE_REGISTRY/appscode-charts/kubedb:v2026.1.19 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-cassandra-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-cassandra-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-cassandra-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-cassandra-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-clickhouse-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-clickhouse-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-clickhouse-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-clickhouse-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-druid-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-druid-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-druid-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-druid-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-elasticsearch-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-elasticsearch-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-elasticsearch-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-elasticsearch-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-etcd-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-etcd-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-ferretdb-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-ferretdb-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-ferretdb-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-ferretdb-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-hazelcast-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-hazelcast-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-hazelcast-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-hazelcast-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-ignite-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-ignite-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-ignite-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-ignite-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-kafka-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-kafka-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-kafka-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-kafka-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mariadb-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mariadb-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mariadb-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mariadb-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-memcached-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-memcached-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-memcached-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-memcached-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mongodb-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mongodb-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mongodb-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mongodb-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mssqlserver-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mssqlserver-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mssqlserver-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mssqlserver-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mysql-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mysql-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-mysql-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-mysql-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-oracle-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-oracle-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-oracle-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-oracle-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-perconaxtradb-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-perconaxtradb-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-perconaxtradb-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-perconaxtradb-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-pgbouncer-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgbouncer-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-pgbouncer-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgbouncer-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-pgpool-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgpool-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-pgpool-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-pgpool-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-postgres-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-postgres-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-postgres-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-postgres-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-proxysql-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-proxysql-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-proxysql-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-proxysql-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-rabbitmq-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-rabbitmq-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-rabbitmq-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-rabbitmq-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-redis-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-redis-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-redis-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-redis-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-redissentinel-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-redissentinel-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-singlestore-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-singlestore-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-singlestore-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-singlestore-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-solr-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-solr-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-solr-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-solr-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-zookeeper-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-zookeeper-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubedbcom-zookeeper-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/kubedbcom-zookeeper-editor:v0.30.0 +$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.1.19.tar $IMAGE_REGISTRY/appscode-charts/kubestash:v2026.1.19 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubevault-opscenter-v2025.11.21.tar $IMAGE_REGISTRY/appscode-charts/kubevault-opscenter:v2025.11.21 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kubevault-v2025.11.21.tar $IMAGE_REGISTRY/appscode-charts/kubevault:v2025.11.21 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kyverno-policies-3.2.5.tar $IMAGE_REGISTRY/appscode-charts/kyverno-policies:3.2.5 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-kyverno-3.2.6.tar $IMAGE_REGISTRY/appscode-charts/kyverno:3.2.6 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-license-proxyserver-manager-v2026.1.15.tar $IMAGE_REGISTRY/appscode-charts/license-proxyserver-manager:v2026.1.15 +$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-license-proxyserver-manager-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/license-proxyserver-manager:v2026.2.16 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-license-proxyserver-v2026.1.15.tar $IMAGE_REGISTRY/appscode-charts/license-proxyserver:v2026.1.15 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-longhorn-1.7.2.tar $IMAGE_REGISTRY/appscode-charts/longhorn:1.7.2 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-managed-serviceaccount-manager-v2025.5.16.tar $IMAGE_REGISTRY/appscode-charts/managed-serviceaccount-manager:v2025.5.16 +$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-managed-serviceaccount-manager-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/managed-serviceaccount-manager:v2026.2.16 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-metrics-server-3.11.0.tar $IMAGE_REGISTRY/appscode-charts/metrics-server:3.11.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-monitoring-operator-v2026.1.15.tar $IMAGE_REGISTRY/appscode-charts/monitoring-operator:v2026.1.15 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-multicluster-controlplane-v2025.4.30.tar $IMAGE_REGISTRY/appscode-charts/multicluster-controlplane:v2025.4.30 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-multicluster-ingress-reader-v2024.7.10.tar $IMAGE_REGISTRY/appscode-charts/multicluster-ingress-reader:v2024.7.10 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opencost-grafana-dashboards-v2023.10.1.tar $IMAGE_REGISTRY/appscode-charts/opencost-grafana-dashboards:v2023.10.1 $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.1.15.tar $IMAGE_REGISTRY/appscode-charts/operator-shard-manager:v2026.1.15 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opscenter-features-v2026.2.16.tar $IMAGE_REGISTRY/appscode-charts/opscenter-features:v2026.2.16 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-cassandraopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-cassandraopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-clickhouseopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-clickhouseopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-druidopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-druidopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-elasticsearchopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-elasticsearchopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-etcdopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-etcdopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-ferretdbopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-ferretdbopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-hazelcastopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-hazelcastopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-igniteopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-igniteopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-kafkaopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-kafkaopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-mariadbopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mariadbopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-memcachedopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-memcachedopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-mongodbopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mongodbopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-mssqlserveropsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mssqlserveropsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-mysqlopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-mysqlopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-oracleopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-oracleopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-perconaxtradbopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-perconaxtradbopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-pgbounceropsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-pgbounceropsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-pgpoolopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-pgpoolopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-postgresopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-postgresopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-proxysqlopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-proxysqlopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-rabbitmqopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-rabbitmqopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-redisopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-redisopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-redissentinelopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-redissentinelopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-singlestoreopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-singlestoreopsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-solropsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-solropsrequest-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-opskubedbcom-zookeeperopsrequest-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/opskubedbcom-zookeeperopsrequest-editor:v0.30.0 +$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.1.15.tar $IMAGE_REGISTRY/appscode-charts/panopticon:v2026.1.15 $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-prometheus-adapter-4.9.0.tar $IMAGE_REGISTRY/appscode-charts/prometheus-adapter:4.9.0 @@ -235,12 +232,12 @@ $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.2.16.tar $IMAGE_REGISTRY/appscode-charts/stash-presets:v2026.2.16 $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.30.0.tar $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-backupstorage-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-storagekubestashcom-backupstorage-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-backupstorage-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-storagekubestashcom-repository-editor-options-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-repository-editor-options:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-storagekubestashcom-repository-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-repository-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-storagekubestashcom-retentionpolicy-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-retentionpolicy-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-storagekubestashcom-snapshot-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/storagekubestashcom-snapshot-editor:v0.30.0 +$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-supervisor-v2026.1.15.tar $IMAGE_REGISTRY/appscode-charts/supervisor:v2026.1.15 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-topolvm-15.0.0.tar $IMAGE_REGISTRY/appscode-charts/topolvm:15.0.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-uibytebuildersdev-component-alert-v0.12.0.tar $IMAGE_REGISTRY/appscode-charts/uibytebuildersdev-component-alert:v0.12.0 @@ -270,7 +267,6 @@ $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-u $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-uik8sappscodecom-featureset-capi-core-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-capi-core-editor:v0.30.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-uik8sappscodecom-featureset-crossplane-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-crossplane-editor:v0.30.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-uik8sappscodecom-featureset-ocm-hub-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-ocm-hub-editor:v0.30.0 -$CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-uik8sappscodecom-featureset-ocm-mc-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-ocm-mc-editor:v0.30.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-uik8sappscodecom-featureset-ocm-spoke-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-ocm-spoke-editor:v0.30.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-uik8sappscodecom-featureset-opscenter-backup-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-opscenter-backup-editor:v0.30.0 $CMD push --allow-nondistributable-artifacts --insecure images/appscode-charts-uik8sappscodecom-featureset-opscenter-core-editor-v0.30.0.tar $IMAGE_REGISTRY/appscode-charts/uik8sappscodecom-featureset-opscenter-core-editor:v0.30.0 @@ -347,14 +343,14 @@ $CMD push --allow-nondistributable-artifacts --insecure images/kedacore-keda-adm $CMD push --allow-nondistributable-artifacts --insecure images/kedacore-keda-metrics-apiserver-2.15.1.tar $IMAGE_REGISTRY/kedacore/keda-metrics-apiserver:2.15.1 $CMD push --allow-nondistributable-artifacts --insecure images/kedacore-keda-2.15.1.tar $IMAGE_REGISTRY/kedacore/keda:2.15.1 $CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-addon-manager-v0.15.2.tar $IMAGE_REGISTRY/kluster-manager/addon-manager:v0.15.2 -$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-cluster-auth-v0.4.1.tar $IMAGE_REGISTRY/kluster-manager/cluster-auth:v0.4.1 -$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-cluster-gateway-manager-v1.11.0.tar $IMAGE_REGISTRY/kluster-manager/cluster-gateway-manager:v1.11.0 -$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-cluster-gateway-v1.11.0.tar $IMAGE_REGISTRY/kluster-manager/cluster-gateway:v1.11.0 -$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-cluster-profile-v0.10.0.tar $IMAGE_REGISTRY/kluster-manager/cluster-profile:v0.10.0 -$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-cluster-proxy-v0.7.0.tar $IMAGE_REGISTRY/kluster-manager/cluster-proxy:v0.7.0 -$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-clusteradm-v1.0.0.tar $IMAGE_REGISTRY/kluster-manager/clusteradm:v1.0.0 -$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-fluxcd-addon-v0.0.9.tar $IMAGE_REGISTRY/kluster-manager/fluxcd-addon:v0.0.9 -$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-managed-serviceaccount-v0.8.1.tar $IMAGE_REGISTRY/kluster-manager/managed-serviceaccount:v0.8.1 +$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-cluster-auth-v0.5.0.tar $IMAGE_REGISTRY/kluster-manager/cluster-auth:v0.5.0 +$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-cluster-gateway-manager-v1.12.0.tar $IMAGE_REGISTRY/kluster-manager/cluster-gateway-manager:v1.12.0 +$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-cluster-gateway-v1.12.0.tar $IMAGE_REGISTRY/kluster-manager/cluster-gateway:v1.12.0 +$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-cluster-profile-v0.11.0.tar $IMAGE_REGISTRY/kluster-manager/cluster-profile:v0.11.0 +$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-cluster-proxy-v0.10.0.tar $IMAGE_REGISTRY/kluster-manager/cluster-proxy:v0.10.0 +$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-clusteradm-v1.2.0.tar $IMAGE_REGISTRY/kluster-manager/clusteradm:v1.2.0 +$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-fluxcd-addon-v0.0.10.tar $IMAGE_REGISTRY/kluster-manager/fluxcd-addon:v0.0.10 +$CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-managed-serviceaccount-v0.10.0.tar $IMAGE_REGISTRY/kluster-manager/managed-serviceaccount:v0.10.0 $CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-placement-v0.15.2.tar $IMAGE_REGISTRY/kluster-manager/placement:v0.15.2 $CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-registration-operator-v0.15.2.tar $IMAGE_REGISTRY/kluster-manager/registration-operator:v0.15.2 $CMD push --allow-nondistributable-artifacts --insecure images/kluster-manager-registration-v0.15.2.tar $IMAGE_REGISTRY/kluster-manager/registration:v0.15.2 @@ -413,8 +409,8 @@ $CMD push --allow-nondistributable-artifacts --insecure images/rancher-kine-v0.1 $CMD push --allow-nondistributable-artifacts --insecure images/autoscaling-cluster-autoscaler-v1.27.1.tar $IMAGE_REGISTRY/autoscaling/cluster-autoscaler:v1.27.1 $CMD push --allow-nondistributable-artifacts --insecure images/csi-secrets-store-driver-v1.4.1.tar $IMAGE_REGISTRY/csi-secrets-store/driver:v1.4.1 $CMD push --allow-nondistributable-artifacts --insecure images/ingress-nginx-kube-webhook-certgen-v20221220-controller-v1.5.1-58-g787ea74b6.tar $IMAGE_REGISTRY/ingress-nginx/kube-webhook-certgen:v20221220-controller-v1.5.1-58-g787ea74b6 -$CMD push --allow-nondistributable-artifacts --insecure images/kube-apiserver-v1.35.0.tar $IMAGE_REGISTRY/kube-apiserver:v1.35.0 -$CMD push --allow-nondistributable-artifacts --insecure images/kube-controller-manager-v1.35.0.tar $IMAGE_REGISTRY/kube-controller-manager:v1.35.0 +$CMD push --allow-nondistributable-artifacts --insecure images/kube-apiserver-v1.34.0.tar $IMAGE_REGISTRY/kube-apiserver:v1.34.0 +$CMD push --allow-nondistributable-artifacts --insecure images/kube-controller-manager-v1.34.0.tar $IMAGE_REGISTRY/kube-controller-manager:v1.34.0 $CMD push --allow-nondistributable-artifacts --insecure images/kube-state-metrics-kube-state-metrics-v2.13.0.tar $IMAGE_REGISTRY/kube-state-metrics/kube-state-metrics:v2.13.0 $CMD push --allow-nondistributable-artifacts --insecure images/metrics-server-metrics-server-v0.7.2.tar $IMAGE_REGISTRY/metrics-server/metrics-server:v0.7.2 $CMD push --allow-nondistributable-artifacts --insecure images/prometheus-adapter-prometheus-adapter-v0.11.2.tar $IMAGE_REGISTRY/prometheus-adapter/prometheus-adapter:v0.11.2 diff --git a/catalog/import-into-k3s.sh b/catalog/import-into-k3s.sh index 1eae5b550..128bbd696 100755 --- a/catalog/import-into-k3s.sh +++ b/catalog/import-into-k3s.sh @@ -35,29 +35,29 @@ k3s ctr images import images/appscode-charts-ace-installer-v2026.2.16.tar k3s ctr images import images/appscode-charts-ace-v2026.2.16.tar k3s ctr images import images/appscode-charts-aceshifter-v2026.2.16.tar k3s ctr images import images/appscode-charts-appscode-otel-stack-v2025.2.28.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-cassandraautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-clickhouseautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-druidautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-elasticsearchautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-etcdautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-ferretdbautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-kafkaautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-mariadbautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-memcachedautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-mongodbautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-mssqlserverautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-mysqlautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-perconaxtradbautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-pgbouncerautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-pgpoolautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-postgresautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-proxysqlautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-rabbitmqautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-redisautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-redissentinelautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-singlestoreautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-solrautoscaler-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-autoscalingkubedbcom-zookeeperautoscaler-editor-v0.30.0.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-v2025.4.30.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 @@ -66,30 +66,30 @@ k3s ctr images import images/appscode-charts-capi-catalog-v2024.10.24.tar k3s ctr images import images/appscode-charts-capi-ops-manager-v2024.8.14.tar k3s ctr images import images/appscode-charts-catalog-manager-v2026.2.16.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.2.tar -k3s ctr images import images/appscode-charts-chartsxhelmdev-chartpreset-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-chartsxhelmdev-clusterchartpreset-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-chartsxhelmdev-clusterchartpreset-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-cluster-auth-manager-v2025.5.16.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-v2025.4.30.tar -k3s ctr images import images/appscode-charts-cluster-manager-hub-v2025.7.31.tar -k3s ctr images import images/appscode-charts-cluster-manager-spoke-v2025.10.17.tar +k3s ctr images import images/appscode-charts-cluster-gateway-manager-v2026.2.16.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.2.16.tar -k3s ctr images import images/appscode-charts-cluster-profile-manager-v2025.5.16.tar -k3s ctr images import images/appscode-charts-cluster-proxy-manager-v2025.4.30.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-config-syncer-v0.15.4.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupbatch-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupblueprint-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupconfiguration-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupconfiguration-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupsession-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupsession-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupverificationsession-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-backupverifier-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-hooktemplate-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-restoresession-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-corekubestashcom-restoresession-editor-v0.30.0.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 @@ -98,17 +98,16 @@ k3s ctr images import images/appscode-charts-external-secrets-0.9.12.tar k3s ctr images import images/appscode-charts-falco-ui-server-v2026.1.15.tar k3s ctr images import images/appscode-charts-falco-4.0.0.tar k3s ctr images import images/appscode-charts-flux2-2.17.0.tar -k3s ctr images import images/appscode-charts-fluxcd-manager-v2025.7.31.tar +k3s ctr images import images/appscode-charts-fluxcd-manager-v2026.2.16.tar k3s ctr images import images/appscode-charts-gatekeeper-grafana-dashboards-v2023.10.1.tar k3s ctr images import images/appscode-charts-gatekeeper-library-v2023.10.1.tar k3s ctr images import images/appscode-charts-gatekeeper-3.13.3.tar k3s ctr images import images/appscode-charts-gateway-api-v2025.3.14.tar k3s ctr images import images/appscode-charts-grafana-operator-v2026.1.15.tar -k3s ctr images import images/appscode-charts-hub-cluster-robot-v2024.8.9.tar +k3s ctr images import images/appscode-charts-hub-cluster-robot-v2026.2.16.tar k3s ctr images import images/appscode-charts-inbox-agent-v2024.12.30.tar k3s ctr images import images/appscode-charts-inbox-server-v2025.2.28.tar k3s ctr images import images/appscode-charts-inbox-ui-v2026.2.16.tar -k3s ctr images import images/appscode-charts-ingress-nginx-4.12.1.tar k3s ctr images import images/appscode-charts-keda-add-ons-http-0.10.0.tar k3s ctr images import images/appscode-charts-keda-2.17.2.tar k3s ctr images import images/appscode-charts-kube-grafana-dashboards-v2023.10.1.tar @@ -120,99 +119,97 @@ 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.2.16.tar k3s ctr images import images/appscode-charts-kubedb-v2026.1.19.tar -k3s ctr images import images/appscode-charts-kubedbcom-cassandra-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-cassandra-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-clickhouse-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-clickhouse-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-druid-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-druid-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-elasticsearch-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-elasticsearch-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-etcd-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-ferretdb-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-ferretdb-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-hazelcast-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-hazelcast-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-ignite-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-ignite-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-kafka-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-kafka-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mariadb-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mariadb-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-memcached-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-memcached-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mongodb-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mongodb-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mssqlserver-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mssqlserver-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mysql-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-mysql-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-oracle-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-oracle-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-perconaxtradb-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-perconaxtradb-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-pgbouncer-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-pgbouncer-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-pgpool-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-pgpool-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-postgres-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-postgres-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-proxysql-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-proxysql-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-rabbitmq-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-rabbitmq-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-redis-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-redis-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-redissentinel-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-singlestore-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-singlestore-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-solr-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-solr-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-zookeeper-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-kubedbcom-zookeeper-editor-v0.30.0.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.1.19.tar k3s ctr images import images/appscode-charts-kubevault-opscenter-v2025.11.21.tar k3s ctr images import images/appscode-charts-kubevault-v2025.11.21.tar k3s ctr images import images/appscode-charts-kyverno-policies-3.2.5.tar k3s ctr images import images/appscode-charts-kyverno-3.2.6.tar -k3s ctr images import images/appscode-charts-license-proxyserver-manager-v2026.1.15.tar +k3s ctr images import images/appscode-charts-license-proxyserver-manager-v2026.2.16.tar k3s ctr images import images/appscode-charts-license-proxyserver-v2026.1.15.tar k3s ctr images import images/appscode-charts-longhorn-1.7.2.tar -k3s ctr images import images/appscode-charts-managed-serviceaccount-manager-v2025.5.16.tar +k3s ctr images import images/appscode-charts-managed-serviceaccount-manager-v2026.2.16.tar k3s ctr images import images/appscode-charts-metrics-server-3.11.0.tar k3s ctr images import images/appscode-charts-monitoring-operator-v2026.1.15.tar -k3s ctr images import images/appscode-charts-multicluster-controlplane-v2025.4.30.tar -k3s ctr images import images/appscode-charts-multicluster-ingress-reader-v2024.7.10.tar k3s ctr images import images/appscode-charts-opencost-grafana-dashboards-v2023.10.1.tar k3s ctr images import images/appscode-charts-opencost-1.18.1.tar k3s ctr images import images/appscode-charts-operator-shard-manager-v2026.1.15.tar k3s ctr images import images/appscode-charts-opscenter-features-v2026.2.16.tar -k3s ctr images import images/appscode-charts-opskubedbcom-cassandraopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-clickhouseopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-druidopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-elasticsearchopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-etcdopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-ferretdbopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-hazelcastopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-igniteopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-kafkaopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-mariadbopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-memcachedopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-mongodbopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-mssqlserveropsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-mysqlopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-oracleopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-perconaxtradbopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-pgbounceropsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-pgpoolopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-postgresopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-proxysqlopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-rabbitmqopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-redisopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-redissentinelopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-singlestoreopsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-solropsrequest-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-opskubedbcom-zookeeperopsrequest-editor-v0.30.0.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.1.15.tar k3s ctr images import images/appscode-charts-prepare-cluster-v2023.12.21.tar k3s ctr images import images/appscode-charts-prometheus-adapter-4.9.0.tar @@ -233,12 +230,12 @@ k3s ctr images import images/appscode-charts-spoke-cluster-addons-v2024.7.10.tar k3s ctr images import images/appscode-charts-stash-opscenter-v2025.7.31.tar k3s ctr images import images/appscode-charts-stash-presets-v2026.2.16.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.30.0.tar -k3s ctr images import images/appscode-charts-storagekubestashcom-backupstorage-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-storagekubestashcom-repository-editor-options-v0.30.0.tar -k3s ctr images import images/appscode-charts-storagekubestashcom-repository-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-storagekubestashcom-retentionpolicy-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-storagekubestashcom-snapshot-editor-v0.30.0.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-supervisor-v2026.1.15.tar k3s ctr images import images/appscode-charts-topolvm-15.0.0.tar k3s ctr images import images/appscode-charts-uibytebuildersdev-component-alert-v0.12.0.tar @@ -268,7 +265,6 @@ k3s ctr images import images/appscode-charts-uik8sappscodecom-featureset-capi-ca k3s ctr images import images/appscode-charts-uik8sappscodecom-featureset-capi-core-editor-v0.30.0.tar k3s ctr images import images/appscode-charts-uik8sappscodecom-featureset-crossplane-editor-v0.30.0.tar k3s ctr images import images/appscode-charts-uik8sappscodecom-featureset-ocm-hub-editor-v0.30.0.tar -k3s ctr images import images/appscode-charts-uik8sappscodecom-featureset-ocm-mc-editor-v0.30.0.tar k3s ctr images import images/appscode-charts-uik8sappscodecom-featureset-ocm-spoke-editor-v0.30.0.tar k3s ctr images import images/appscode-charts-uik8sappscodecom-featureset-opscenter-backup-editor-v0.30.0.tar k3s ctr images import images/appscode-charts-uik8sappscodecom-featureset-opscenter-core-editor-v0.30.0.tar @@ -345,14 +341,14 @@ k3s ctr images import images/kedacore-keda-admission-webhooks-2.15.1.tar k3s ctr images import images/kedacore-keda-metrics-apiserver-2.15.1.tar k3s ctr images import images/kedacore-keda-2.15.1.tar k3s ctr images import images/kluster-manager-addon-manager-v0.15.2.tar -k3s ctr images import images/kluster-manager-cluster-auth-v0.4.1.tar -k3s ctr images import images/kluster-manager-cluster-gateway-manager-v1.11.0.tar -k3s ctr images import images/kluster-manager-cluster-gateway-v1.11.0.tar -k3s ctr images import images/kluster-manager-cluster-profile-v0.10.0.tar -k3s ctr images import images/kluster-manager-cluster-proxy-v0.7.0.tar -k3s ctr images import images/kluster-manager-clusteradm-v1.0.0.tar -k3s ctr images import images/kluster-manager-fluxcd-addon-v0.0.9.tar -k3s ctr images import images/kluster-manager-managed-serviceaccount-v0.8.1.tar +k3s ctr images import images/kluster-manager-cluster-auth-v0.5.0.tar +k3s ctr images import images/kluster-manager-cluster-gateway-manager-v1.12.0.tar +k3s ctr images import images/kluster-manager-cluster-gateway-v1.12.0.tar +k3s ctr images import images/kluster-manager-cluster-profile-v0.11.0.tar +k3s ctr images import images/kluster-manager-cluster-proxy-v0.10.0.tar +k3s ctr images import images/kluster-manager-clusteradm-v1.2.0.tar +k3s ctr images import images/kluster-manager-fluxcd-addon-v0.0.10.tar +k3s ctr images import images/kluster-manager-managed-serviceaccount-v0.10.0.tar k3s ctr images import images/kluster-manager-placement-v0.15.2.tar k3s ctr images import images/kluster-manager-registration-operator-v0.15.2.tar k3s ctr images import images/kluster-manager-registration-v0.15.2.tar @@ -411,8 +407,8 @@ k3s ctr images import images/rancher-kine-v0.11.4.tar k3s ctr images import images/autoscaling-cluster-autoscaler-v1.27.1.tar k3s ctr images import images/csi-secrets-store-driver-v1.4.1.tar k3s ctr images import images/ingress-nginx-kube-webhook-certgen-v20221220-controller-v1.5.1-58-g787ea74b6.tar -k3s ctr images import images/kube-apiserver-v1.35.0.tar -k3s ctr images import images/kube-controller-manager-v1.35.0.tar +k3s ctr images import images/kube-apiserver-v1.34.0.tar +k3s ctr images import images/kube-controller-manager-v1.34.0.tar k3s ctr images import images/kube-state-metrics-kube-state-metrics-v2.13.0.tar k3s ctr images import images/metrics-server-metrics-server-v0.7.2.tar k3s ctr images import images/prometheus-adapter-prometheus-adapter-v0.11.2.tar diff --git a/catalog/sync-gcp-mp-images.sh b/catalog/sync-gcp-mp-images.sh index 2272748e8..df446865a 100755 --- a/catalog/sync-gcp-mp-images.sh +++ b/catalog/sync-gcp-mp-images.sh @@ -91,14 +91,14 @@ crane cp --allow-nondistributable-artifacts ghcr.io/kedacore/keda-admission-webh crane cp --allow-nondistributable-artifacts ghcr.io/kedacore/keda-metrics-apiserver:2.15.1 $IMAGE_REGISTRY/keda-metrics-apiserver:$TAG crane cp --allow-nondistributable-artifacts ghcr.io/kedacore/keda:2.15.1 $IMAGE_REGISTRY/keda:$TAG crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/addon-manager:v0.15.2 $IMAGE_REGISTRY/addon-manager:$TAG -crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/cluster-auth:v0.4.1 $IMAGE_REGISTRY/cluster-auth:$TAG -crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/cluster-gateway-manager:v1.11.0 $IMAGE_REGISTRY/cluster-gateway-manager:$TAG -crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/cluster-gateway:v1.11.0 $IMAGE_REGISTRY/cluster-gateway:$TAG -crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/cluster-profile:v0.10.0 $IMAGE_REGISTRY/cluster-profile:$TAG -crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/cluster-proxy:v0.7.0 $IMAGE_REGISTRY/cluster-proxy:$TAG -crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/clusteradm:v1.0.0 $IMAGE_REGISTRY/clusteradm:$TAG -crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/fluxcd-addon:v0.0.9 $IMAGE_REGISTRY/fluxcd-addon:$TAG -crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/managed-serviceaccount:v0.8.1 $IMAGE_REGISTRY/managed-serviceaccount:$TAG +crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/cluster-auth:v0.5.0 $IMAGE_REGISTRY/cluster-auth:$TAG +crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/cluster-gateway-manager:v1.12.0 $IMAGE_REGISTRY/cluster-gateway-manager:$TAG +crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/cluster-gateway:v1.12.0 $IMAGE_REGISTRY/cluster-gateway:$TAG +crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/cluster-profile:v0.11.0 $IMAGE_REGISTRY/cluster-profile:$TAG +crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/cluster-proxy:v0.10.0 $IMAGE_REGISTRY/cluster-proxy:$TAG +crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/clusteradm:v1.2.0 $IMAGE_REGISTRY/clusteradm:$TAG +crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/fluxcd-addon:v0.0.10 $IMAGE_REGISTRY/fluxcd-addon:$TAG +crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/managed-serviceaccount:v0.10.0 $IMAGE_REGISTRY/managed-serviceaccount:$TAG crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/placement:v0.15.2 $IMAGE_REGISTRY/placement:$TAG crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/registration-operator:v0.15.2 $IMAGE_REGISTRY/registration-operator:$TAG crane cp --allow-nondistributable-artifacts ghcr.io/kluster-manager/registration:v0.15.2 $IMAGE_REGISTRY/registration:$TAG @@ -156,8 +156,8 @@ crane cp --allow-nondistributable-artifacts rancher/kine:v0.11.4 $IMAGE_REGISTRY crane cp --allow-nondistributable-artifacts registry.k8s.io/autoscaling/cluster-autoscaler:v1.27.1 $IMAGE_REGISTRY/cluster-autoscaler:$TAG crane cp --allow-nondistributable-artifacts registry.k8s.io/csi-secrets-store/driver:v1.4.1 $IMAGE_REGISTRY/driver:$TAG crane cp --allow-nondistributable-artifacts registry.k8s.io/ingress-nginx/kube-webhook-certgen:v20221220-controller-v1.5.1-58-g787ea74b6 $IMAGE_REGISTRY/ingress-nginx-kube-webhook-certgen:$TAG -crane cp --allow-nondistributable-artifacts registry.k8s.io/kube-apiserver:v1.35.0 $IMAGE_REGISTRY/kube-apiserver:$TAG -crane cp --allow-nondistributable-artifacts registry.k8s.io/kube-controller-manager:v1.35.0 $IMAGE_REGISTRY/kube-controller-manager:$TAG +crane cp --allow-nondistributable-artifacts registry.k8s.io/kube-apiserver:v1.34.0 $IMAGE_REGISTRY/kube-apiserver:$TAG +crane cp --allow-nondistributable-artifacts registry.k8s.io/kube-controller-manager:v1.34.0 $IMAGE_REGISTRY/kube-controller-manager:$TAG crane cp --allow-nondistributable-artifacts registry.k8s.io/kube-state-metrics/kube-state-metrics:v2.13.0 $IMAGE_REGISTRY/kube-state-metrics:$TAG crane cp --allow-nondistributable-artifacts registry.k8s.io/metrics-server/metrics-server:v0.7.2 $IMAGE_REGISTRY/metrics-server:$TAG crane cp --allow-nondistributable-artifacts registry.k8s.io/prometheus-adapter/prometheus-adapter:v0.11.2 $IMAGE_REGISTRY/prometheus-adapter:$TAG diff --git a/charts/acaas/README.md b/charts/acaas/README.md index d9b53f8fc..a63a064e7 100644 --- a/charts/acaas/README.md +++ b/charts/acaas/README.md @@ -70,11 +70,11 @@ The following table lists the configurable parameters of the `acaas` chart and t | global.settings.spreadsheetCredentialMountPath | | "/data/marketplace-credentials" | | global.distro.openshift | | false | | global.distro.ubi | | "" | -| httpRoute.annotations | | {} | -| httpRoute.enabled | | false | -| httpRoute.gatewayClassName | | ace | -| httpRoute.tls.enable | | true | -| httpRoute.tls.secret.name | | "ace-cert" | +| gateway.annotations | | {} | +| gateway.enabled | | false | +| gateway.gatewayClassName | | ace | +| gateway.tls.enable | | true | +| gateway.tls.secret.name | | "ace-cert" | | ingress.enabled | | true | | ingress.className | | "nginx-ace" | | ingress.tls.enable | | true | diff --git a/charts/acaas/templates/blog/ingress.yaml b/charts/acaas/templates/blog/ingress.yaml index e9999312e..0838e8792 100644 --- a/charts/acaas/templates/blog/ingress.yaml +++ b/charts/acaas/templates/blog/ingress.yaml @@ -1,4 +1,4 @@ -{{ if .Values "ingress" "enabled" }} +{{- if (index .Values "ingress" "enabled") }} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: diff --git a/charts/acaas/templates/blog/route.yaml b/charts/acaas/templates/blog/route.yaml index 9901965ee..8859fb7ef 100644 --- a/charts/acaas/templates/blog/route.yaml +++ b/charts/acaas/templates/blog/route.yaml @@ -1,8 +1,8 @@ -{{ if .Values "httpRoute" "enabled" }} +{{ if (index .Values "gateway" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} diff --git a/charts/acaas/templates/docs/ingress.yaml b/charts/acaas/templates/docs/ingress.yaml index 819c4f67a..5cadb6705 100644 --- a/charts/acaas/templates/docs/ingress.yaml +++ b/charts/acaas/templates/docs/ingress.yaml @@ -1,4 +1,4 @@ -{{ if .Values "ingress" "enabled" }} +{{- if (index .Values "ingress" "enabled") }} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: diff --git a/charts/acaas/templates/docs/route.yaml b/charts/acaas/templates/docs/route.yaml index d61f20548..d461f9a4c 100644 --- a/charts/acaas/templates/docs/route.yaml +++ b/charts/acaas/templates/docs/route.yaml @@ -1,8 +1,8 @@ -{{ if .Values "httpRoute" "enabled" }} +{{ if (index .Values "gateway" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} diff --git a/charts/acaas/templates/gateway.yaml b/charts/acaas/templates/gateway.yaml index 1c1d7a090..348e5b69b 100644 --- a/charts/acaas/templates/gateway.yaml +++ b/charts/acaas/templates/gateway.yaml @@ -1,22 +1,22 @@ -{{ if .Values "httpRoute" "enabled" }} +{{ if (index .Values "gateway" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: Gateway metadata: name: ace namespace: {{ .Release.Namespace }} spec: - gatewayClassName: {{ .Values.httpRoute.gatewayClassName }} + gatewayClassName: {{ .Values.gateway.gatewayClassName }} listeners: - name: https protocol: HTTPS port: 443 - {{ if .Values.httpRoute.tls.enable }} + {{ if .Values.gateway.tls.enable }} tls: mode: Terminate certificateRefs: - group: "" kind: Secret - name: {{ default (printf "%s-cert" (include "acaas.fullname" .)) .Values.httpRoute.tls.secret.name }} + name: {{ default (printf "%s-cert" (include "acaas.fullname" .)) .Values.gateway.tls.secret.name }} namespace: {{ .Release.Namespace }} {{- end }} allowedRoutes: diff --git a/charts/acaas/templates/ingress/ingress-hosted.yaml b/charts/acaas/templates/ingress/ingress-hosted.yaml index c846d9644..031321416 100644 --- a/charts/acaas/templates/ingress/ingress-hosted.yaml +++ b/charts/acaas/templates/ingress/ingress-hosted.yaml @@ -1,4 +1,4 @@ -{{ if .Values "ingress" "enabled" }} +{{- if (index .Values "ingress" "enabled") }} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: diff --git a/charts/acaas/templates/ingress/route-hosted.yaml b/charts/acaas/templates/ingress/route-hosted.yaml index 3a7e9ff9a..aca9563b9 100644 --- a/charts/acaas/templates/ingress/route-hosted.yaml +++ b/charts/acaas/templates/ingress/route-hosted.yaml @@ -1,8 +1,8 @@ -{{ if .Values "httpRoute" "enabled" }} +{{ if (index .Values "gateway" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} diff --git a/charts/acaas/templates/learn/ingress.yaml b/charts/acaas/templates/learn/ingress.yaml index 67b38b4b5..a987606ae 100644 --- a/charts/acaas/templates/learn/ingress.yaml +++ b/charts/acaas/templates/learn/ingress.yaml @@ -1,4 +1,4 @@ -{{ if .Values "ingress" "enabled" }} +{{- if (index .Values "ingress" "enabled") }} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: diff --git a/charts/acaas/templates/learn/route.yaml b/charts/acaas/templates/learn/route.yaml index 20fbce6ac..4dc8e05d6 100644 --- a/charts/acaas/templates/learn/route.yaml +++ b/charts/acaas/templates/learn/route.yaml @@ -1,8 +1,8 @@ -{{ if .Values "httpRoute" "enabled" }} +{{ if (index .Values "gateway" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} diff --git a/charts/acaas/templates/license/ingress.yaml b/charts/acaas/templates/license/ingress.yaml index 3da3eb644..88c0a7d25 100644 --- a/charts/acaas/templates/license/ingress.yaml +++ b/charts/acaas/templates/license/ingress.yaml @@ -1,4 +1,4 @@ -{{ if .Values "ingress" "enabled" }} +{{- if (index .Values "ingress" "enabled") }} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: diff --git a/charts/acaas/templates/license/route.yaml b/charts/acaas/templates/license/route.yaml index 2ea608467..10465d7d6 100644 --- a/charts/acaas/templates/license/route.yaml +++ b/charts/acaas/templates/license/route.yaml @@ -1,8 +1,8 @@ -{{ if .Values "httpRoute" "enabled" }} +{{ if (index .Values "gateway" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} diff --git a/charts/acaas/templates/selfhost/ingress.yaml b/charts/acaas/templates/selfhost/ingress.yaml index ca380c685..f20cad86b 100644 --- a/charts/acaas/templates/selfhost/ingress.yaml +++ b/charts/acaas/templates/selfhost/ingress.yaml @@ -1,4 +1,4 @@ -{{ if .Values "ingress" "enabled" }} +{{- if (index .Values "ingress" "enabled") }} apiVersion: networking.k8s.io/v1 kind: Ingress metadata: diff --git a/charts/acaas/templates/selfhost/route.yaml b/charts/acaas/templates/selfhost/route.yaml index 127609055..577f6fb9f 100644 --- a/charts/acaas/templates/selfhost/route.yaml +++ b/charts/acaas/templates/selfhost/route.yaml @@ -1,8 +1,8 @@ -{{ if .Values "httpRoute" "enabled" }} +{{ if (index .Values "gateway" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} diff --git a/charts/acaas/values.yaml b/charts/acaas/values.yaml index de939521c..b8cb7de03 100644 --- a/charts/acaas/values.yaml +++ b/charts/acaas/values.yaml @@ -55,7 +55,7 @@ global: openshift: false ubi: "" -httpRoute: +gateway: annotations: {} enabled: false gatewayClassName: ace diff --git a/charts/ace/README.md b/charts/ace/README.md index 623f238eb..5aed75ef1 100644 --- a/charts/ace/README.md +++ b/charts/ace/README.md @@ -52,11 +52,11 @@ The following table lists the configurable parameters of the `ace` chart and the | grafana.enabled | | false | | kubedb-ui.enabled | | false | | platform-api.enabled | | false | -| httpRoute.annotations | | {} | -| httpRoute.enabled | | false | -| httpRoute.gatewayClassName | | ace | -| httpRoute.tls.enable | | true | -| httpRoute.tls.secret.name | | "ace-cert" | +| gateway.annotations | | {} | +| gateway.enabled | | false | +| gateway.gatewayClassName | | ace | +| gateway.tls.enable | | true | +| gateway.tls.secret.name | | "ace-cert" | | ingress-nginx.enabled | | false | | ingress-dns.enabled | | false | | nats.enabled | | false | @@ -246,7 +246,7 @@ The following table lists the configurable parameters of the `ace` chart and the Specify each parameter using the `--set key=value[,key=value]` argument to `helm upgrade -i`. For example: ```bash -$ helm upgrade -i ace appscode/ace -n ace --create-namespace --version=v2026.2.16 --set httpRoute.gatewayClassName=ace +$ helm upgrade -i ace appscode/ace -n ace --create-namespace --version=v2026.2.16 --set gateway.gatewayClassName=ace ``` Alternatively, a YAML file that specifies the values for the parameters can be provided while diff --git a/charts/ace/templates/gateway/gateway.yaml b/charts/ace/templates/gateway/gateway.yaml index 0a673b580..9dcf07b32 100644 --- a/charts/ace/templates/gateway/gateway.yaml +++ b/charts/ace/templates/gateway/gateway.yaml @@ -1,4 +1,4 @@ -{{ if (index .Values "httpRoute" "enabled") }} +{{ if (index .Values "gateway" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: Gateway metadata: @@ -7,7 +7,7 @@ metadata: labels: {{- include "ace.labels" . | nindent 4 }} spec: - gatewayClassName: {{ .Values.httpRoute.gatewayClassName }} + gatewayClassName: {{ .Values.gateway.gatewayClassName }} listeners: - name: https protocol: HTTPS diff --git a/charts/ace/templates/gateway/route-home.yaml b/charts/ace/templates/gateway/route-home.yaml index 5fc545070..f042ddfa7 100644 --- a/charts/ace/templates/gateway/route-home.yaml +++ b/charts/ace/templates/gateway/route-home.yaml @@ -1,11 +1,11 @@ -{{ if and (index .Values "httpRoute" "enabled") (index .Values "platform-ui" "enabled") (not (eq .Values.global.platform.deploymentType "Hosted")) }} +{{ if and (index .Values "gateway" "enabled") (index .Values "platform-ui" "enabled") (not (eq .Values.global.platform.deploymentType "Hosted")) }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: name: {{ include "ace.fullname" . }}-home namespace: {{ .Release.Namespace }} - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} diff --git a/charts/ace/templates/gateway/route-main.yaml b/charts/ace/templates/gateway/route-main.yaml index af0cda245..9959d9191 100644 --- a/charts/ace/templates/gateway/route-main.yaml +++ b/charts/ace/templates/gateway/route-main.yaml @@ -1,11 +1,11 @@ -{{ if (index .Values "httpRoute" "enabled") }} +{{ if (index .Values "gateway" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: name: {{ include "ace.fullname" . }} namespace: {{ .Release.Namespace }} - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} diff --git a/charts/ace/templates/gateway/route-nats.yaml b/charts/ace/templates/gateway/route-nats.yaml index 5c654fe84..544a66b7e 100644 --- a/charts/ace/templates/gateway/route-nats.yaml +++ b/charts/ace/templates/gateway/route-nats.yaml @@ -1,11 +1,11 @@ -{{ if (and (index .Values "httpRoute" "enabled") (and .Values.nats.enabled (not .Values.nats.nats.externalAccess))) }} +{{ if (and (index .Values "gateway" "enabled") (and .Values.nats.enabled (not .Values.nats.nats.externalAccess))) }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: name: {{ include "ace.fullname" . }}-nats namespace: {{ .Release.Namespace }} - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} diff --git a/charts/ace/templates/ingress/issuer.yaml b/charts/ace/templates/ingress/issuer.yaml index 1c96ba12e..abe65f9e6 100644 --- a/charts/ace/templates/ingress/issuer.yaml +++ b/charts/ace/templates/ingress/issuer.yaml @@ -70,7 +70,7 @@ spec: {{- else }} # Use ACEM http challenge for everything else http01: - {{ if (index .Values "httpRoute" "enabled") }} + {{ if (index .Values "gateway" "enabled") }} gatewayHTTPRoute: parentRefs: - group: gateway.networking.k8s.io diff --git a/charts/ace/values.openapiv3_schema.yaml b/charts/ace/values.openapiv3_schema.yaml index c0db4515a..c1e745d63 100644 --- a/charts/ace/values.openapiv3_schema.yaml +++ b/charts/ace/values.openapiv3_schema.yaml @@ -1319,6 +1319,36 @@ properties: type: object x-kubernetes-preserve-unknown-fields: true type: object + gateway: + properties: + annotations: + additionalProperties: + type: string + type: object + enabled: + type: boolean + gatewayClassName: + type: string + tls: + properties: + enabled: + type: boolean + secret: + properties: + name: + type: string + required: + - name + type: object + required: + - enabled + - secret + type: object + required: + - enabled + - gatewayClassName + - tls + type: object global: properties: distro: @@ -3449,36 +3479,6 @@ properties: - volumeMounts - volumes type: object - httpRoute: - properties: - annotations: - additionalProperties: - type: string - type: object - enabled: - type: boolean - gatewayClassName: - type: string - tls: - properties: - enabled: - type: boolean - secret: - properties: - name: - type: string - required: - - name - type: object - required: - - enabled - - secret - type: object - required: - - enabled - - gatewayClassName - - tls - type: object image: properties: pullPolicy: @@ -23716,7 +23716,7 @@ properties: type: boolean fullnameOverride: type: string - httpRoute: + gateway: properties: annotations: additionalProperties: @@ -24105,7 +24105,7 @@ properties: type: array required: - enabled - - httpRoute + - gateway - image - ingress - persistence @@ -27393,9 +27393,9 @@ required: - cloudProviderOptions - cluster-ui - extraObjects +- gateway - global - grafana -- httpRoute - image - ingress-dns - ingress-nginx diff --git a/charts/ace/values.yaml b/charts/ace/values.yaml index ad925b473..f3426627d 100644 --- a/charts/ace/values.yaml +++ b/charts/ace/values.yaml @@ -17,7 +17,7 @@ kubedb-ui: platform-api: enabled: false -httpRoute: +gateway: annotations: {} enabled: false gatewayClassName: ace diff --git a/charts/dns-proxy/README.md b/charts/dns-proxy/README.md index 6299bd2bc..8e9590c44 100644 --- a/charts/dns-proxy/README.md +++ b/charts/dns-proxy/README.md @@ -68,12 +68,12 @@ The following table lists the configurable parameters of the `dns-proxy` chart a | ingress.annotations | | {} | | ingress.hosts | kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" | [{"host":"chart-example.local","paths":[{"path":"/","pathType":"ImplementationSpecific"}]}] | | ingress.tls | | [] | -| httpRoute.annotations | | {} | -| httpRoute.enabled | | false | -| httpRoute.gatewayClassName | | ace | -| httpRoute.tls.enable | | true | -| httpRoute.tls.secret.name | | "ace-cert" | -| httpRoute.hosts | | [] | +| gateway.annotations | | {} | +| gateway.enabled | | false | +| gateway.gatewayClassName | | ace | +| gateway.tls.enable | | true | +| gateway.tls.secret.name | | "ace-cert" | +| gateway.hosts | | [] | | resources | | {} | | autoscaling.enabled | | false | | autoscaling.minReplicas | | 1 | diff --git a/charts/dns-proxy/templates/httproute.yaml b/charts/dns-proxy/templates/httproute.yaml index 6dd153c9c..e992d9461 100644 --- a/charts/dns-proxy/templates/httproute.yaml +++ b/charts/dns-proxy/templates/httproute.yaml @@ -1,4 +1,4 @@ -{{- if (index .Values "httpRoute" "enabled") }} +{{- if (index .Values "gateway" "enabled") }} {{- $fullName := include "dns-proxy.fullname" . -}} {{- $svcPort := .Values.service.port -}} @@ -9,7 +9,7 @@ metadata: namespace: {{ .Release.Namespace }} labels: {{- include "dns-proxy.labels" . | nindent 4 }} - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} @@ -23,12 +23,12 @@ spec: sectionName: https hostnames: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} - {{ .host | quote }} {{- end }} rules: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} {{- range .paths }} - matches: - path: diff --git a/charts/dns-proxy/values.openapiv3_schema.yaml b/charts/dns-proxy/values.openapiv3_schema.yaml index d9b0af8b6..96d219081 100644 --- a/charts/dns-proxy/values.openapiv3_schema.yaml +++ b/charts/dns-proxy/values.openapiv3_schema.yaml @@ -479,20 +479,7 @@ properties: type: object fullnameOverride: type: string - geoipdb: - properties: - pullPolicy: - type: string - repository: - type: string - tag: - type: string - required: - - pullPolicy - - repository - - tag - type: object - httpRoute: + gateway: properties: annotations: additionalProperties: @@ -546,6 +533,19 @@ properties: - hosts - tls type: object + geoipdb: + properties: + pullPolicy: + type: string + repository: + type: string + tag: + type: string + required: + - pullPolicy + - repository + - tag + type: object image: properties: pullPolicy: @@ -1865,8 +1865,8 @@ required: - args - autoscaling - envVars +- gateway - geoipdb -- httpRoute - image - ingress - podLabels diff --git a/charts/dns-proxy/values.yaml b/charts/dns-proxy/values.yaml index b3d2614ef..5d752bf04 100644 --- a/charts/dns-proxy/values.yaml +++ b/charts/dns-proxy/values.yaml @@ -64,7 +64,7 @@ ingress: # hosts: # - chart-example.local -httpRoute: +gateway: annotations: {} enabled: false gatewayClassName: ace diff --git a/charts/gh-ci-webhook/README.md b/charts/gh-ci-webhook/README.md index c6428b9e4..70a60e708 100644 --- a/charts/gh-ci-webhook/README.md +++ b/charts/gh-ci-webhook/README.md @@ -68,12 +68,12 @@ The following table lists the configurable parameters of the `gh-ci-webhook` cha | ingress.className | | "" | | ingress.annotations | | {} | | ingress.tls | | [] | -| httpRoute.annotations | | {} | -| httpRoute.enabled | | false | -| httpRoute.gatewayClassName | | ace | -| httpRoute.tls.enable | | true | -| httpRoute.tls.secret.name | | "ace-cert" | -| httpRoute.hosts | | [] | +| gateway.annotations | | {} | +| gateway.enabled | | false | +| gateway.gatewayClassName | | ace | +| gateway.tls.enable | | true | +| gateway.tls.secret.name | | "ace-cert" | +| gateway.hosts | | [] | | resources | | {} | | livenessProbe | This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ | {} | | readinessProbe | httpGet: path: / port: http | {} | diff --git a/charts/gh-ci-webhook/templates/httproute.yaml b/charts/gh-ci-webhook/templates/httproute.yaml index 594f65026..ee97f013a 100644 --- a/charts/gh-ci-webhook/templates/httproute.yaml +++ b/charts/gh-ci-webhook/templates/httproute.yaml @@ -1,4 +1,4 @@ -{{- if (index .Values "httpRoute" "enabled") }} +{{- if (index .Values "gateway" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute @@ -7,7 +7,7 @@ metadata: namespace: {{ .Release.Namespace }} labels: {{- include "gh-ci-webhook.labels" . | nindent 4 }} - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} @@ -21,12 +21,12 @@ spec: sectionName: https hostnames: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} - {{ .host | quote }} {{- end }} rules: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} {{- range .paths }} - matches: - path: diff --git a/charts/gh-ci-webhook/values.yaml b/charts/gh-ci-webhook/values.yaml index 7174444de..3c74587c1 100644 --- a/charts/gh-ci-webhook/values.yaml +++ b/charts/gh-ci-webhook/values.yaml @@ -73,7 +73,7 @@ ingress: # hosts: # - chart-example.local -httpRoute: +gateway: annotations: {} enabled: false gatewayClassName: ace diff --git a/charts/inbox-ui/README.md b/charts/inbox-ui/README.md index 10c7cdaf1..79eb43ade 100644 --- a/charts/inbox-ui/README.md +++ b/charts/inbox-ui/README.md @@ -68,12 +68,12 @@ The following table lists the configurable parameters of the `inbox-ui` chart an | ingress.hosts | kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" | [] | | ingress.tls | - host: chart-example.local paths: - path: / pathType: ImplementationSpecific | [] | | ingress.dns.targetIPs | | [] | -| httpRoute.annotations | | {} | -| httpRoute.enabled | | false | -| httpRoute.gatewayClassName | | ace | -| httpRoute.tls.enable | | true | -| httpRoute.tls.secret.name | | "ace-cert" | -| httpRoute.hosts | | [] | +| gateway.annotations | | {} | +| gateway.enabled | | false | +| gateway.gatewayClassName | | ace | +| gateway.tls.enable | | true | +| gateway.tls.secret.name | | "ace-cert" | +| gateway.hosts | | [] | | resources | | {} | | autoscaling.enabled | | false | | autoscaling.minReplicas | | 1 | diff --git a/charts/inbox-ui/templates/httproute.yaml b/charts/inbox-ui/templates/httproute.yaml index 122a62d5f..cb9e81cae 100644 --- a/charts/inbox-ui/templates/httproute.yaml +++ b/charts/inbox-ui/templates/httproute.yaml @@ -1,4 +1,4 @@ -{{- if (index .Values "httpRoute" "enabled") }} +{{- if (index .Values "gateway" "enabled") }} {{- $fullName := include "inbox-ui.fullname" . -}} {{- $svcPort := .Values.service.port -}} @@ -9,7 +9,7 @@ metadata: namespace: {{ .Release.Namespace }} labels: {{- include "inbox-ui.labels" . | nindent 4 }} - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} @@ -23,12 +23,12 @@ spec: sectionName: https hostnames: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} - {{ .host | quote }} {{- end }} rules: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} {{- range .paths }} - matches: - path: diff --git a/charts/inbox-ui/values.openapiv3_schema.yaml b/charts/inbox-ui/values.openapiv3_schema.yaml index 555ccaf6e..ee08ddf23 100644 --- a/charts/inbox-ui/values.openapiv3_schema.yaml +++ b/charts/inbox-ui/values.openapiv3_schema.yaml @@ -471,7 +471,7 @@ properties: type: object fullnameOverride: type: string - httpRoute: + gateway: properties: annotations: additionalProperties: @@ -838,7 +838,7 @@ properties: type: array required: - autoscaling -- httpRoute +- gateway - image - ingress - replicaCount diff --git a/charts/inbox-ui/values.yaml b/charts/inbox-ui/values.yaml index 1aee2f317..801278955 100644 --- a/charts/inbox-ui/values.yaml +++ b/charts/inbox-ui/values.yaml @@ -63,7 +63,7 @@ ingress: dns: targetIPs: [] -httpRoute: +gateway: annotations: {} enabled: false gatewayClassName: ace diff --git a/charts/minio/README.md b/charts/minio/README.md index 562716a0f..ce1556bcf 100644 --- a/charts/minio/README.md +++ b/charts/minio/README.md @@ -63,12 +63,12 @@ The following table lists the configurable parameters of the `minio` chart and t | ingress.className | | "" | | ingress.annotations | | {} | | ingress.domain | kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" | "" | -| httpRoute.annotations | | {} | -| httpRoute.enabled | | false | -| httpRoute.gatewayClassName | | ace | -| httpRoute.tls.enable | | true | -| httpRoute.tls.secret.name | | "ace-cert" | -| httpRoute.hosts | | [] | +| gateway.annotations | | {} | +| gateway.enabled | | false | +| gateway.gatewayClassName | | ace | +| gateway.tls.enable | | true | +| gateway.tls.secret.name | | "ace-cert" | +| gateway.hosts | | [] | | resources | | {} | | service.type | | ClusterIP | | service.port | | 9000 | diff --git a/charts/minio/templates/httproute.yaml b/charts/minio/templates/httproute.yaml index 702b16603..f4401ead8 100644 --- a/charts/minio/templates/httproute.yaml +++ b/charts/minio/templates/httproute.yaml @@ -1,4 +1,4 @@ -{{- if (index .Values "httpRoute" "enabled") }} +{{- if (index .Values "gateway" "enabled") }} {{- $fullName := include "service-backend.fullname" . -}} {{- $svcPort := .Values.service.port -}} @@ -9,7 +9,7 @@ metadata: namespace: {{ .Release.Namespace }} labels: {{- include "service-backend.labels" . | nindent 4 }} - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} @@ -23,12 +23,12 @@ spec: sectionName: https hostnames: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} - {{ .host | quote }} {{- end }} rules: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} {{- range .paths }} - matches: - path: diff --git a/charts/minio/values.openapiv3_schema.yaml b/charts/minio/values.openapiv3_schema.yaml index aaa452485..d715b789b 100644 --- a/charts/minio/values.openapiv3_schema.yaml +++ b/charts/minio/values.openapiv3_schema.yaml @@ -454,7 +454,7 @@ properties: type: object fullnameOverride: type: string - httpRoute: + gateway: properties: annotations: additionalProperties: @@ -834,7 +834,7 @@ properties: type: object type: array required: -- httpRoute +- gateway - image - ingress - minio diff --git a/charts/minio/values.yaml b/charts/minio/values.yaml index e489c8f39..85bd4a59b 100644 --- a/charts/minio/values.yaml +++ b/charts/minio/values.yaml @@ -46,7 +46,7 @@ ingress: # kubernetes.io/tls-acme: "true" domain: "" -httpRoute: +gateway: annotations: {} enabled: false gatewayClassName: ace diff --git a/charts/offline-license-server/README.md b/charts/offline-license-server/README.md index 8bda66288..b1e3938bc 100644 --- a/charts/offline-license-server/README.md +++ b/charts/offline-license-server/README.md @@ -71,12 +71,12 @@ The following table lists the configurable parameters of the `offline-license-se | ingress.className | | "" | | ingress.annotations | | {} | | ingress.tls | | [] | -| httpRoute.annotations | | {} | -| httpRoute.enabled | | false | -| httpRoute.gatewayClassName | | ace | -| httpRoute.tls.enable | | true | -| httpRoute.tls.secret.name | | "ace-cert" | -| httpRoute.hosts | | [] | +| gateway.annotations | | {} | +| gateway.enabled | | false | +| gateway.gatewayClassName | | ace | +| gateway.tls.enable | | true | +| gateway.tls.secret.name | | "ace-cert" | +| gateway.hosts | | [] | | resources | | {} | | livenessProbe | This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ | {} | | readinessProbe | httpGet: path: / port: http | {} | diff --git a/charts/offline-license-server/templates/httproute.yaml b/charts/offline-license-server/templates/httproute.yaml index a08bb5934..f840768c4 100644 --- a/charts/offline-license-server/templates/httproute.yaml +++ b/charts/offline-license-server/templates/httproute.yaml @@ -1,4 +1,4 @@ -{{- if (index .Values "httpRoute" "enabled") }} +{{- if (index .Values "gateway" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute @@ -7,7 +7,7 @@ metadata: namespace: {{ .Release.Namespace }} labels: {{- include "offline-license-server.labels" . | nindent 4 }} - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} @@ -21,12 +21,12 @@ spec: sectionName: https hostnames: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} - {{ .host | quote }} {{- end }} rules: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} {{- range .paths }} - matches: - path: diff --git a/charts/offline-license-server/values.yaml b/charts/offline-license-server/values.yaml index 4048ee10d..e263fc070 100644 --- a/charts/offline-license-server/values.yaml +++ b/charts/offline-license-server/values.yaml @@ -80,7 +80,7 @@ ingress: # hosts: # - chart-example.local -httpRoute: +gateway: annotations: {} enabled: false gatewayClassName: ace diff --git a/charts/s3proxy/README.md b/charts/s3proxy/README.md index 3121eacba..684e5ddee 100644 --- a/charts/s3proxy/README.md +++ b/charts/s3proxy/README.md @@ -63,12 +63,12 @@ The following table lists the configurable parameters of the `s3proxy` chart and | ingress.className | | "" | | ingress.annotations | | {} | | ingress.domain | kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" | "" | -| httpRoute.annotations | | {} | -| httpRoute.enabled | | false | -| httpRoute.gatewayClassName | | ace | -| httpRoute.tls.enable | | true | -| httpRoute.tls.secret.name | | "ace-cert" | -| httpRoute.hosts | | [] | +| gateway.annotations | | {} | +| gateway.enabled | | false | +| gateway.gatewayClassName | | ace | +| gateway.tls.enable | | true | +| gateway.tls.secret.name | | "ace-cert" | +| gateway.hosts | | [] | | resources | | {} | | service.type | | ClusterIP | | service.port | | 4224 | diff --git a/charts/s3proxy/templates/httproute.yaml b/charts/s3proxy/templates/httproute.yaml index 84cbec894..9a426b403 100644 --- a/charts/s3proxy/templates/httproute.yaml +++ b/charts/s3proxy/templates/httproute.yaml @@ -1,4 +1,4 @@ -{{- if (index .Values "httpRoute" "enabled") }} +{{- if (index .Values "gateway" "enabled") }} apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute @@ -7,7 +7,7 @@ metadata: namespace: {{ .Release.Namespace }} labels: {{- include "s3proxy.labels" . | nindent 4 }} - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} @@ -20,12 +20,12 @@ spec: namespace: ace sectionName: https hostnames: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} - {{ .host | quote }} {{- end }} rules: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} {{- range .paths }} - matches: - path: diff --git a/charts/s3proxy/values.openapiv3_schema.yaml b/charts/s3proxy/values.openapiv3_schema.yaml index 5a9a914a8..0fea6e380 100644 --- a/charts/s3proxy/values.openapiv3_schema.yaml +++ b/charts/s3proxy/values.openapiv3_schema.yaml @@ -454,7 +454,7 @@ properties: type: object fullnameOverride: type: string - httpRoute: + gateway: properties: annotations: additionalProperties: @@ -842,7 +842,7 @@ properties: type: object type: array required: -- httpRoute +- gateway - image - ingress - persistence diff --git a/charts/s3proxy/values.yaml b/charts/s3proxy/values.yaml index d9bfc3e36..8db3d15ac 100644 --- a/charts/s3proxy/values.yaml +++ b/charts/s3proxy/values.yaml @@ -46,7 +46,7 @@ ingress: # kubernetes.io/tls-acme: "true" domain: "" -httpRoute: +gateway: annotations: {} enabled: false gatewayClassName: ace diff --git a/charts/service-backend/README.md b/charts/service-backend/README.md index 8c94a1e16..f0c6aa9bf 100644 --- a/charts/service-backend/README.md +++ b/charts/service-backend/README.md @@ -68,12 +68,12 @@ The following table lists the configurable parameters of the `service-backend` c | ingress.hosts | kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" | [] | | ingress.tls | - host: chart-example.local paths: - path: / pathType: ImplementationSpecific | [] | | ingress.dns.targetIPs | | [] | -| httpRoute.annotations | | {} | -| httpRoute.enabled | | false | -| httpRoute.gatewayClassName | | ace | -| httpRoute.tls.enable | | true | -| httpRoute.tls.secret.name | | "ace-cert" | -| httpRoute.hosts | | [] | +| gateway.annotations | | {} | +| gateway.enabled | | false | +| gateway.gatewayClassName | | ace | +| gateway.tls.enable | | true | +| gateway.tls.secret.name | | "ace-cert" | +| gateway.hosts | | [] | | resources | | {} | | autoscaling.enabled | | false | | autoscaling.minReplicas | | 1 | diff --git a/charts/service-backend/templates/httproute.yaml b/charts/service-backend/templates/httproute.yaml index 3138c5fb9..4a9dc75b8 100644 --- a/charts/service-backend/templates/httproute.yaml +++ b/charts/service-backend/templates/httproute.yaml @@ -1,4 +1,4 @@ -{{- if (index .Values "httpRoute" "enabled") }} +{{- if (index .Values "gateway" "enabled") }} {{- $fullName := include "service-backend.fullname" . -}} {{- $svcPort := .Values.service.port -}} @@ -9,7 +9,7 @@ metadata: namespace: {{ .Release.Namespace }} labels: {{- include "service-backend.labels" . | nindent 4 }} - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} @@ -23,12 +23,12 @@ spec: sectionName: https hostnames: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} - {{ .host | quote }} {{- end }} rules: - {{- range .Values.httpRoute.hosts }} + {{- range .Values.gateway.hosts }} {{- range .paths }} - matches: - path: diff --git a/charts/service-backend/values.openapiv3_schema.yaml b/charts/service-backend/values.openapiv3_schema.yaml index b0d486b65..586fd96db 100644 --- a/charts/service-backend/values.openapiv3_schema.yaml +++ b/charts/service-backend/values.openapiv3_schema.yaml @@ -471,7 +471,7 @@ properties: type: object fullnameOverride: type: string - httpRoute: + gateway: properties: annotations: additionalProperties: @@ -1737,7 +1737,7 @@ properties: type: array required: - autoscaling -- httpRoute +- gateway - image - ingress - monitoring diff --git a/charts/service-backend/values.yaml b/charts/service-backend/values.yaml index 18429e4ee..8da6685cd 100644 --- a/charts/service-backend/values.yaml +++ b/charts/service-backend/values.yaml @@ -63,7 +63,7 @@ ingress: dns: targetIPs: [] -httpRoute: +gateway: annotations: {} enabled: false gatewayClassName: ace diff --git a/charts/smtprelay/README.md b/charts/smtprelay/README.md index 9b8290248..4098695a3 100644 --- a/charts/smtprelay/README.md +++ b/charts/smtprelay/README.md @@ -69,12 +69,12 @@ The following table lists the configurable parameters of the `smtprelay` chart a | ingress.annotations | | {} | | ingress.hosts | kubernetes.io/ingress.class: nginx kubernetes.io/tls-acme: "true" | [{"host":"chart-example.local","paths":[{"path":"/","pathType":"ImplementationSpecific"}]}] | | ingress.tls | | [] | -| httpRoute.annotations | | {} | -| httpRoute.enabled | | false | -| httpRoute.gatewayClassName | | ace | -| httpRoute.tls.enable | | true | -| httpRoute.tls.secret.name | | "ace-cert" | -| httpRoute.hosts | | [] | +| gateway.annotations | | {} | +| gateway.enabled | | false | +| gateway.gatewayClassName | | ace | +| gateway.tls.enable | | true | +| gateway.tls.secret.name | | "ace-cert" | +| gateway.hosts | | [] | | resources | | {} | | autoscaling.enabled | | false | | autoscaling.minReplicas | | 1 | diff --git a/charts/smtprelay/templates/httproute.yaml b/charts/smtprelay/templates/httproute.yaml index a0d605554..7a16a167a 100644 --- a/charts/smtprelay/templates/httproute.yaml +++ b/charts/smtprelay/templates/httproute.yaml @@ -1,4 +1,4 @@ -{{- if (index .Values "httpRoute" "enabled") }} +{{- if (index .Values "gateway" "enabled") }} {{- $fullName := include "smtprelay.fullname" . -}} {{- $svcPort := .Values.service.port -}} @@ -9,7 +9,7 @@ metadata: namespace: {{ .Release.Namespace }} labels: {{- include "smtprelay.labels" . | nindent 4 }} - {{- with .Values.httpRoute.annotations }} + {{- with .Values.gateway.annotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} diff --git a/charts/smtprelay/values.openapiv3_schema.yaml b/charts/smtprelay/values.openapiv3_schema.yaml index a78f36c7f..47582fa35 100644 --- a/charts/smtprelay/values.openapiv3_schema.yaml +++ b/charts/smtprelay/values.openapiv3_schema.yaml @@ -481,14 +481,7 @@ properties: type: object fullnameOverride: type: string - hostPort: - properties: - enabled: - type: boolean - required: - - enabled - type: object - httpRoute: + gateway: properties: annotations: additionalProperties: @@ -542,6 +535,13 @@ properties: - hosts - tls type: object + hostPort: + properties: + enabled: + type: boolean + required: + - enabled + type: object image: properties: pullPolicy: @@ -917,7 +917,7 @@ properties: required: - autoscaling - controller -- httpRoute +- gateway - image - ingress - logLevel diff --git a/charts/smtprelay/values.yaml b/charts/smtprelay/values.yaml index a58deaf65..bbfc93d40 100644 --- a/charts/smtprelay/values.yaml +++ b/charts/smtprelay/values.yaml @@ -68,7 +68,7 @@ ingress: # hosts: # - chart-example.local -httpRoute: +gateway: annotations: {} enabled: false gatewayClassName: ace diff --git a/schema/ace-options/values.openapiv3_schema.yaml b/schema/ace-options/values.openapiv3_schema.yaml index bf1933cbf..5177549ea 100644 --- a/schema/ace-options/values.openapiv3_schema.yaml +++ b/schema/ace-options/values.openapiv3_schema.yaml @@ -341,6 +341,13 @@ properties: - openshift - ubi type: object + gateway: + properties: + enabled: + type: boolean + required: + - enabled + type: object grafana: properties: enabled: @@ -424,13 +431,6 @@ properties: required: - enabled type: object - httpRoute: - properties: - enabled: - type: boolean - required: - - enabled - type: object infra: properties: cloudServices: @@ -2546,8 +2546,8 @@ required: - cloudProviderOptions - cluster-ui - context + - gateway - grafana - - httpRoute - infra - ingress - initialSetup From ed7616fa609cb2708cd213b070197ab5356e0fa2 Mon Sep 17 00:00:00 2001 From: Arnob kumar saha Date: Fri, 20 Feb 2026 20:51:10 +0600 Subject: [PATCH 9/9] update tags Signed-off-by: Arnob kumar saha --- charts/ace-installer/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/ace-installer/values.yaml b/charts/ace-installer/values.yaml index 4d90fb819..556919834 100644 --- a/charts/ace-installer/values.yaml +++ b/charts/ace-installer/values.yaml @@ -61,7 +61,7 @@ helm: version: "v2024.10.24" catalog-manager: enabled: false - version: "v2026.1.15" + version: "v2026.2.26" cert-manager: enabled: true version: "v1.19.3" @@ -124,7 +124,7 @@ helm: version: "1.0.79" service-gateway-presets: enabled: false - version: "v2026.1.15" + version: "v2026.2.26" stash-presets: enabled: false version: "v2026.2.16"