diff --git a/apis/installer/v1alpha1/ace_ace_types.go b/apis/installer/v1alpha1/ace_ace_types.go
index 1b137e696..7f9999fa2 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"`
+ Gateway AceGateway `json:"gateway"`
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 AceGateway struct {
+ Enabled bool `json:"enabled"`
+ *GatewaySpec `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..58971b660 100644
--- a/apis/installer/v1alpha1/ace_inbox_ui_types.go
+++ b/apis/installer/v1alpha1/ace_inbox_ui_types.go
@@ -75,6 +75,7 @@ type InboxUiSpec struct {
// +optional
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 c1aadcf02..19188d23e 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"`
+ Gateway AceOptionsGateway `json:"gateway"`
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 AceOptionsGateway 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..2817fd4b4 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"`
+ 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 cc0dc37e6..f2e1b3676 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"`
+ 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 ec34a3099..55380735f 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"`
+ 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 e721bc099..50ba67cdb 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"`
+ 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 a9e815972..424d8fc1d 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"`
+ 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 4c60dab66..4bf961bef 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"`
+ 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
new file mode 100644
index 000000000..d4bdc37e2
--- /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 AppGateway struct {
+ Enabled bool `json:"enabled"`
+ *GatewaySpec `json:",inline,omitempty"`
+ Hosts []GatewayHost `json:"hosts"`
+}
+
+type GatewaySpec struct {
+ Annotations map[string]string `json:"annotations,omitempty"`
+ GatewayClassName string `json:"gatewayClassName"`
+ TLS *GatewayTLS `json:"tls"`
+}
+
+type GatewayTLS struct {
+ Enabled bool `json:"enabled"`
+ Secret *LocalObjectReference `json:"secret"`
+}
+
+type GatewayHost struct {
+ Host string `json:"host"`
+ Paths GatewayPath `json:"paths"`
+}
+
+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 c976953ff..9dde76bca 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"`
+ 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 9f2033ebf..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
@@ -1115,6 +1135,21 @@ func (in *AceOptionsDBSettings) DeepCopy() *AceOptionsDBSettings {
return out
}
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
+func (in *AceOptionsGateway) DeepCopyInto(out *AceOptionsGateway) {
+ *out = *in
+}
+
+// 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(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 *AceOptionsGcpMarketplace) DeepCopyInto(out *AceOptionsGcpMarketplace) {
*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.Gateway = in.Gateway
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.Gateway.DeepCopyInto(&out.Gateway)
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 *AppGateway) DeepCopyInto(out *AppGateway) {
+ *out = *in
+ 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([]GatewayHost, len(*in))
+ copy(*out, *in)
+ }
+}
+
+// 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(AppGateway)
+ 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.Gateway.DeepCopyInto(&out.Gateway)
out.Cloudflare = in.Cloudflare
out.Auth = in.Auth
out.TLSSecretRef = in.TLSSecretRef
@@ -3726,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
@@ -3860,6 +4001,7 @@ func (in *GhCiWebhookSpec) DeepCopyInto(out *GhCiWebhookSpec) {
(*in).DeepCopyInto(*out)
}
in.Ingress.DeepCopyInto(&out.Ingress)
+ in.Gateway.DeepCopyInto(&out.Gateway)
if in.Volumes != nil {
in, out := &in.Volumes, &out.Volumes
*out = make([]v1.Volume, len(*in))
@@ -4424,6 +4566,7 @@ func (in *InboxUiSpec) DeepCopyInto(out *InboxUiSpec) {
(*in).DeepCopyInto(*out)
}
in.Ingress.DeepCopyInto(&out.Ingress)
+ in.Gateway.DeepCopyInto(&out.Gateway)
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.Gateway.DeepCopyInto(&out.Gateway)
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.Gateway.DeepCopyInto(&out.Gateway)
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.Gateway.DeepCopyInto(&out.Gateway)
out.S3proxy = in.S3proxy
out.Distro = in.Distro
}
@@ -10691,6 +10837,7 @@ func (in *ServiceBackendSpec) DeepCopyInto(out *ServiceBackendSpec) {
}
}
in.Ingress.DeepCopyInto(&out.Ingress)
+ in.Gateway.DeepCopyInto(&out.Gateway)
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.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 88d4b73ec..a63a064e7 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 | | "" |
+| 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 |
| ingress.tls.secret.name | | "ace-cert" |
diff --git a/charts/acaas/templates/blog/ingress.yaml b/charts/acaas/templates/blog/ingress.yaml
index 82ca449c5..0838e8792 100644
--- a/charts/acaas/templates/blog/ingress.yaml
+++ b/charts/acaas/templates/blog/ingress.yaml
@@ -1,3 +1,4 @@
+{{- if (index .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..8859fb7ef
--- /dev/null
+++ b/charts/acaas/templates/blog/route.yaml
@@ -0,0 +1,32 @@
+{{ if (index .Values "gateway" "enabled") }}
+apiVersion: gateway.networking.k8s.io/v1
+kind: HTTPRoute
+metadata:
+ {{- with .Values.gateway.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..5cadb6705 100644
--- a/charts/acaas/templates/docs/ingress.yaml
+++ b/charts/acaas/templates/docs/ingress.yaml
@@ -1,3 +1,4 @@
+{{- if (index .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..d461f9a4c
--- /dev/null
+++ b/charts/acaas/templates/docs/route.yaml
@@ -0,0 +1,30 @@
+{{ if (index .Values "gateway" "enabled") }}
+apiVersion: gateway.networking.k8s.io/v1
+kind: HTTPRoute
+metadata:
+ {{- with .Values.gateway.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..348e5b69b
--- /dev/null
+++ b/charts/acaas/templates/gateway.yaml
@@ -0,0 +1,25 @@
+{{ if (index .Values "gateway" "enabled") }}
+apiVersion: gateway.networking.k8s.io/v1
+kind: Gateway
+metadata:
+ name: ace
+ namespace: {{ .Release.Namespace }}
+spec:
+ gatewayClassName: {{ .Values.gateway.gatewayClassName }}
+ listeners:
+ - name: https
+ protocol: HTTPS
+ port: 443
+ {{ if .Values.gateway.tls.enable }}
+ tls:
+ mode: Terminate
+ certificateRefs:
+ - group: ""
+ kind: Secret
+ name: {{ default (printf "%s-cert" (include "acaas.fullname" .)) .Values.gateway.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..031321416 100644
--- a/charts/acaas/templates/ingress/ingress-hosted.yaml
+++ b/charts/acaas/templates/ingress/ingress-hosted.yaml
@@ -1,3 +1,4 @@
+{{- if (index .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..aca9563b9
--- /dev/null
+++ b/charts/acaas/templates/ingress/route-hosted.yaml
@@ -0,0 +1,88 @@
+{{ if (index .Values "gateway" "enabled") }}
+apiVersion: gateway.networking.k8s.io/v1
+kind: HTTPRoute
+metadata:
+ {{- with .Values.gateway.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..a987606ae 100644
--- a/charts/acaas/templates/learn/ingress.yaml
+++ b/charts/acaas/templates/learn/ingress.yaml
@@ -1,3 +1,4 @@
+{{- if (index .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..4dc8e05d6
--- /dev/null
+++ b/charts/acaas/templates/learn/route.yaml
@@ -0,0 +1,30 @@
+{{ if (index .Values "gateway" "enabled") }}
+apiVersion: gateway.networking.k8s.io/v1
+kind: HTTPRoute
+metadata:
+ {{- with .Values.gateway.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..88c0a7d25 100644
--- a/charts/acaas/templates/license/ingress.yaml
+++ b/charts/acaas/templates/license/ingress.yaml
@@ -1,3 +1,4 @@
+{{- if (index .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..10465d7d6
--- /dev/null
+++ b/charts/acaas/templates/license/route.yaml
@@ -0,0 +1,30 @@
+{{ if (index .Values "gateway" "enabled") }}
+apiVersion: gateway.networking.k8s.io/v1
+kind: HTTPRoute
+metadata:
+ {{- with .Values.gateway.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..f20cad86b 100644
--- a/charts/acaas/templates/selfhost/ingress.yaml
+++ b/charts/acaas/templates/selfhost/ingress.yaml
@@ -1,3 +1,4 @@
+{{- if (index .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..577f6fb9f
--- /dev/null
+++ b/charts/acaas/templates/selfhost/route.yaml
@@ -0,0 +1,30 @@
+{{ if (index .Values "gateway" "enabled") }}
+apiVersion: gateway.networking.k8s.io/v1
+kind: HTTPRoute
+metadata:
+ {{- with .Values.gateway.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..b8cb7de03 100644
--- a/charts/acaas/values.yaml
+++ b/charts/acaas/values.yaml
@@ -55,7 +55,17 @@ global:
openshift: false
ubi: ""
+gateway:
+ 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-installer/README.md b/charts/ace-installer/README.md
index 6e27d46be..5b1577daf 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 | | "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 |
@@ -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 | | "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/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..556919834 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: "v2026.2.26"
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: "v2026.2.26"
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/README.md b/charts/ace/README.md
index 53d5de263..5aed75ef1 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 |
+| 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 |
@@ -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 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
new file mode 100644
index 000000000..9dcf07b32
--- /dev/null
+++ b/charts/ace/templates/gateway/gateway.yaml
@@ -0,0 +1,43 @@
+{{ if (index .Values "gateway" "enabled") }}
+apiVersion: gateway.networking.k8s.io/v1
+kind: Gateway
+metadata:
+ name: {{ include "ace.fullname" . }}
+ namespace: {{ .Release.Namespace }}
+ labels:
+ {{- include "ace.labels" . | nindent 4 }}
+spec:
+ gatewayClassName: {{ .Values.gateway.gatewayClassName }}
+ 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
+ - 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-home.yaml b/charts/ace/templates/gateway/route-home.yaml
new file mode 100644
index 000000000..f042ddfa7
--- /dev/null
+++ b/charts/ace/templates/gateway/route-home.yaml
@@ -0,0 +1,42 @@
+{{ 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.gateway.annotations }}
+ annotations:
+ {{- toYaml . | nindent 4 }}
+ {{- end }}
+spec:
+ parentRefs:
+ - group: gateway.networking.k8s.io
+ kind: Gateway
+ 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:
+ 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..9959d9191
--- /dev/null
+++ b/charts/ace/templates/gateway/route-main.yaml
@@ -0,0 +1,101 @@
+{{ if (index .Values "gateway" "enabled") }}
+
+apiVersion: gateway.networking.k8s.io/v1
+kind: HTTPRoute
+metadata:
+ name: {{ include "ace.fullname" . }}
+ namespace: {{ .Release.Namespace }}
+ {{- with .Values.gateway.annotations }}
+ annotations:
+ {{- toYaml . | nindent 4 }}
+ {{- end }}
+spec:
+ parentRefs:
+ - group: gateway.networking.k8s.io
+ kind: Gateway
+ 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:
+ 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..544a66b7e
--- /dev/null
+++ b/charts/ace/templates/gateway/route-nats.yaml
@@ -0,0 +1,67 @@
+{{ 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.gateway.annotations }}
+ annotations:
+ {{- toYaml . | nindent 4 }}
+ {{- end }}
+spec:
+ parentRefs:
+ - group: gateway.networking.k8s.io
+ kind: Gateway
+ 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:
+ 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
+
+---
+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/ace/templates/ingress/issuer.yaml b/charts/ace/templates/ingress/issuer.yaml
index c032ed6a6..abe65f9e6 100644
--- a/charts/ace/templates/ingress/issuer.yaml
+++ b/charts/ace/templates/ingress/issuer.yaml
@@ -70,9 +70,19 @@ spec:
{{- else }}
# Use ACEM http challenge for everything else
http01:
+ {{ if (index .Values "gateway" "enabled") }}
+ gatewayHTTPRoute:
+ parentRefs:
+ - group: gateway.networking.k8s.io
+ kind: Gateway
+ 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 }}
diff --git a/charts/ace/values.openapiv3_schema.yaml b/charts/ace/values.openapiv3_schema.yaml
index 29a87c539..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:
@@ -23686,6 +23716,60 @@ properties:
type: boolean
fullnameOverride:
type: string
+ gateway:
+ 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
+ - gateway
- image
- ingress
- persistence
@@ -27308,6 +27393,7 @@ required:
- cloudProviderOptions
- cluster-ui
- extraObjects
+- gateway
- global
- grafana
- image
diff --git a/charts/ace/values.yaml b/charts/ace/values.yaml
index 8f5b92f93..f3426627d 100644
--- a/charts/ace/values.yaml
+++ b/charts/ace/values.yaml
@@ -17,6 +17,15 @@ kubedb-ui:
platform-api:
enabled: false
+gateway:
+ annotations: {}
+ enabled: false
+ gatewayClassName: ace
+ tls:
+ enable: true
+ secret:
+ name: "ace-cert"
+
ingress-nginx:
enabled: false
# controller:
diff --git a/charts/dns-proxy/README.md b/charts/dns-proxy/README.md
index a18a67c89..8e9590c44 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 | | [] |
+| 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
new file mode 100644
index 000000000..e992d9461
--- /dev/null
+++ b/charts/dns-proxy/templates/httproute.yaml
@@ -0,0 +1,47 @@
+{{- if (index .Values "gateway" "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.gateway.annotations }}
+ annotations:
+ {{- toYaml . | nindent 4 }}
+ {{- end }}
+
+spec:
+ parentRefs:
+ - group: gateway.networking.k8s.io
+ kind: Gateway
+ name: ace
+ namespace: ace
+ sectionName: https
+
+ hostnames:
+ {{- range .Values.gateway.hosts }}
+ - {{ .host | quote }}
+ {{- end }}
+
+ rules:
+ {{- range .Values.gateway.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.openapiv3_schema.yaml b/charts/dns-proxy/values.openapiv3_schema.yaml
index dec8fcd47..96d219081 100644
--- a/charts/dns-proxy/values.openapiv3_schema.yaml
+++ b/charts/dns-proxy/values.openapiv3_schema.yaml
@@ -479,6 +479,60 @@ properties:
type: object
fullnameOverride:
type: string
+ gateway:
+ 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
geoipdb:
properties:
pullPolicy:
@@ -1811,6 +1865,7 @@ required:
- args
- autoscaling
- envVars
+- gateway
- geoipdb
- image
- ingress
diff --git a/charts/dns-proxy/values.yaml b/charts/dns-proxy/values.yaml
index 0061bf10a..5d752bf04 100644
--- a/charts/dns-proxy/values.yaml
+++ b/charts/dns-proxy/values.yaml
@@ -64,6 +64,20 @@ ingress:
# hosts:
# - chart-example.local
+gateway:
+ 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/README.md b/charts/gh-ci-webhook/README.md
index aa979bef1..70a60e708 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 | | [] |
+| 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
new file mode 100644
index 000000000..ee97f013a
--- /dev/null
+++ b/charts/gh-ci-webhook/templates/httproute.yaml
@@ -0,0 +1,45 @@
+{{- if (index .Values "gateway" "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.gateway.annotations }}
+ annotations:
+ {{- toYaml . | nindent 4 }}
+ {{- end }}
+
+spec:
+ parentRefs:
+ - group: gateway.networking.k8s.io
+ kind: Gateway
+ name: ace
+ namespace: ace
+ sectionName: https
+
+ hostnames:
+ {{- range .Values.gateway.hosts }}
+ - {{ .host | quote }}
+ {{- end }}
+
+ rules:
+ {{- range .Values.gateway.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..3c74587c1 100644
--- a/charts/gh-ci-webhook/values.yaml
+++ b/charts/gh-ci-webhook/values.yaml
@@ -73,6 +73,20 @@ ingress:
# hosts:
# - chart-example.local
+gateway:
+ 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/README.md b/charts/inbox-ui/README.md
index bbbe1e348..79eb43ade 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 | | [] |
+| 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
new file mode 100644
index 000000000..cb9e81cae
--- /dev/null
+++ b/charts/inbox-ui/templates/httproute.yaml
@@ -0,0 +1,47 @@
+{{- if (index .Values "gateway" "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.gateway.annotations }}
+ annotations:
+ {{- toYaml . | nindent 4 }}
+ {{- end }}
+
+spec:
+ parentRefs:
+ - group: gateway.networking.k8s.io
+ kind: Gateway
+ name: ace
+ namespace: ace
+ sectionName: https
+
+ hostnames:
+ {{- range .Values.gateway.hosts }}
+ - {{ .host | quote }}
+ {{- end }}
+
+ rules:
+ {{- range .Values.gateway.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.openapiv3_schema.yaml b/charts/inbox-ui/values.openapiv3_schema.yaml
index 56a69b64f..ee08ddf23 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
+ gateway:
+ 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
+- gateway
- image
- ingress
- replicaCount
diff --git a/charts/inbox-ui/values.yaml b/charts/inbox-ui/values.yaml
index a1d81b9c6..801278955 100644
--- a/charts/inbox-ui/values.yaml
+++ b/charts/inbox-ui/values.yaml
@@ -63,6 +63,20 @@ ingress:
dns:
targetIPs: []
+gateway:
+ 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/README.md b/charts/minio/README.md
index bbc16cb39..ce1556bcf 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" | "" |
+| 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
new file mode 100644
index 000000000..f4401ead8
--- /dev/null
+++ b/charts/minio/templates/httproute.yaml
@@ -0,0 +1,47 @@
+{{- if (index .Values "gateway" "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.gateway.annotations }}
+ annotations:
+ {{- toYaml . | nindent 4 }}
+ {{- end }}
+
+spec:
+ parentRefs:
+ - group: gateway.networking.k8s.io
+ kind: Gateway
+ name: ace
+ namespace: ace
+ sectionName: https
+
+ hostnames:
+ {{- range .Values.gateway.hosts }}
+ - {{ .host | quote }}
+ {{- end }}
+
+ rules:
+ {{- range .Values.gateway.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.openapiv3_schema.yaml b/charts/minio/values.openapiv3_schema.yaml
index 31c5c28c0..d715b789b 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
+ gateway:
+ 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:
+- gateway
- image
- ingress
- minio
diff --git a/charts/minio/values.yaml b/charts/minio/values.yaml
index 4addd6482..85bd4a59b 100644
--- a/charts/minio/values.yaml
+++ b/charts/minio/values.yaml
@@ -46,6 +46,20 @@ ingress:
# kubernetes.io/tls-acme: "true"
domain: ""
+gateway:
+ 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/README.md b/charts/offline-license-server/README.md
index 3f8350f65..b1e3938bc 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 | | [] |
+| 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
new file mode 100644
index 000000000..f840768c4
--- /dev/null
+++ b/charts/offline-license-server/templates/httproute.yaml
@@ -0,0 +1,45 @@
+{{- if (index .Values "gateway" "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.gateway.annotations }}
+ annotations:
+ {{- toYaml . | nindent 4 }}
+ {{- end }}
+
+spec:
+ parentRefs:
+ - group: gateway.networking.k8s.io
+ kind: Gateway
+ name: ace
+ namespace: ace
+ sectionName: https
+
+ hostnames:
+ {{- range .Values.gateway.hosts }}
+ - {{ .host | quote }}
+ {{- end }}
+
+ rules:
+ {{- range .Values.gateway.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..e263fc070 100644
--- a/charts/offline-license-server/values.yaml
+++ b/charts/offline-license-server/values.yaml
@@ -80,6 +80,20 @@ ingress:
# hosts:
# - chart-example.local
+gateway:
+ 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/README.md b/charts/s3proxy/README.md
index a49181a81..684e5ddee 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" | "" |
+| 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
new file mode 100644
index 000000000..9a426b403
--- /dev/null
+++ b/charts/s3proxy/templates/httproute.yaml
@@ -0,0 +1,66 @@
+{{- if (index .Values "gateway" "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.gateway.annotations }}
+ annotations:
+ {{- toYaml . | nindent 4 }}
+ {{- end }}
+
+spec:
+ parentRefs:
+ - group: gateway.networking.k8s.io
+ kind: Gateway
+ name: ace
+ namespace: ace
+ sectionName: https
+ hostnames:
+ {{- range .Values.gateway.hosts }}
+ - {{ .host | quote }}
+ {{- end }}
+
+ rules:
+ {{- range .Values.gateway.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 }}
+
+---
+---
+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 }}
diff --git a/charts/s3proxy/values.openapiv3_schema.yaml b/charts/s3proxy/values.openapiv3_schema.yaml
index 91ac317de..0fea6e380 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
+ gateway:
+ 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:
+- gateway
- image
- ingress
- persistence
diff --git a/charts/s3proxy/values.yaml b/charts/s3proxy/values.yaml
index 3d2d1d3df..8db3d15ac 100644
--- a/charts/s3proxy/values.yaml
+++ b/charts/s3proxy/values.yaml
@@ -46,6 +46,20 @@ ingress:
# kubernetes.io/tls-acme: "true"
domain: ""
+gateway:
+ 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/README.md b/charts/service-backend/README.md
index 95f6d9853..f0c6aa9bf 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 | | [] |
+| 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
new file mode 100644
index 000000000..4a9dc75b8
--- /dev/null
+++ b/charts/service-backend/templates/httproute.yaml
@@ -0,0 +1,47 @@
+{{- if (index .Values "gateway" "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.gateway.annotations }}
+ annotations:
+ {{- toYaml . | nindent 4 }}
+ {{- end }}
+
+spec:
+ parentRefs:
+ - group: gateway.networking.k8s.io
+ kind: Gateway
+ name: ace
+ namespace: ace
+ sectionName: https
+
+ hostnames:
+ {{- range .Values.gateway.hosts }}
+ - {{ .host | quote }}
+ {{- end }}
+
+ rules:
+ {{- range .Values.gateway.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.openapiv3_schema.yaml b/charts/service-backend/values.openapiv3_schema.yaml
index 7091c6870..586fd96db 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
+ gateway:
+ 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
+- gateway
- image
- ingress
- monitoring
diff --git a/charts/service-backend/values.yaml b/charts/service-backend/values.yaml
index 3afdcb904..8da6685cd 100644
--- a/charts/service-backend/values.yaml
+++ b/charts/service-backend/values.yaml
@@ -63,6 +63,20 @@ ingress:
dns:
targetIPs: []
+gateway:
+ 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/README.md b/charts/smtprelay/README.md
index b03326f4b..4098695a3 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 | | [] |
+| 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
new file mode 100644
index 000000000..7a16a167a
--- /dev/null
+++ b/charts/smtprelay/templates/httproute.yaml
@@ -0,0 +1,47 @@
+{{- if (index .Values "gateway" "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.gateway.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.openapiv3_schema.yaml b/charts/smtprelay/values.openapiv3_schema.yaml
index ef99a75f9..47582fa35 100644
--- a/charts/smtprelay/values.openapiv3_schema.yaml
+++ b/charts/smtprelay/values.openapiv3_schema.yaml
@@ -481,6 +481,60 @@ properties:
type: object
fullnameOverride:
type: string
+ gateway:
+ 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
hostPort:
properties:
enabled:
@@ -863,6 +917,7 @@ properties:
required:
- autoscaling
- controller
+- gateway
- image
- ingress
- logLevel
diff --git a/charts/smtprelay/values.yaml b/charts/smtprelay/values.yaml
index e6f780073..bbfc93d40 100644
--- a/charts/smtprelay/values.yaml
+++ b/charts/smtprelay/values.yaml
@@ -68,6 +68,20 @@ ingress:
# hosts:
# - chart-example.local
+gateway:
+ 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/schema/ace-options/values.openapiv3_schema.yaml b/schema/ace-options/values.openapiv3_schema.yaml
index 1ac43b1d9..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:
@@ -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
@@ -2536,6 +2546,7 @@ required:
- cloudProviderOptions
- cluster-ui
- context
+ - gateway
- grafana
- infra
- ingress