diff --git a/charts/px-central/templates/_helpers.tpl b/charts/px-central/templates/_helpers.tpl index 432408198..76c03e9a4 100644 --- a/charts/px-central/templates/_helpers.tpl +++ b/charts/px-central/templates/_helpers.tpl @@ -30,6 +30,17 @@ Create chart name and version as used by the chart label. {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} {{- end }} +{{/* +Suffix appended to cluster-scoped resource names (ClusterRole, ClusterRoleBinding) +to let the chart be installed in multiple namespaces on the same cluster. +Renders `-` when .Values.clusterScopedSuffix is set, empty otherwise. +*/}} +{{- define "px-central.clusterScopedSuffix" -}} +{{- with .Values.clusterScopedSuffix -}} +-{{ . }} +{{- end -}} +{{- end -}} + {{/* Common labels */}} diff --git a/charts/px-central/templates/px-backup/pre-install-hook/pre-install-check.yaml b/charts/px-central/templates/px-backup/pre-install-hook/pre-install-check.yaml index 82bd6ed6d..7dceaf3c1 100644 --- a/charts/px-central/templates/px-backup/pre-install-hook/pre-install-check.yaml +++ b/charts/px-central/templates/px-backup/pre-install-hook/pre-install-check.yaml @@ -355,7 +355,7 @@ spec: apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: - name: px-backup-pre-setup-clusterrole + name: px-backup-pre-setup-clusterrole{{ include "px-central.clusterScopedSuffix" . }} annotations: "helm.sh/hook": pre-install,pre-upgrade "helm.sh/hook-weight": "0" @@ -375,7 +375,7 @@ rules: apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: - name: px-backup-pre-setup-clusterrolebinding + name: px-backup-pre-setup-clusterrolebinding{{ include "px-central.clusterScopedSuffix" . }} annotations: "helm.sh/hook": pre-install,pre-upgrade "helm.sh/hook-weight": "1" @@ -390,5 +390,5 @@ subjects: namespace: {{ .Release.Namespace }} roleRef: kind: ClusterRole - name: px-backup-pre-setup-clusterrole + name: px-backup-pre-setup-clusterrole{{ include "px-central.clusterScopedSuffix" . }} apiGroup: rbac.authorization.k8s.io diff --git a/charts/px-central/templates/px-backup/pxcentral-backup.yaml b/charts/px-central/templates/px-backup/pxcentral-backup.yaml index bd1fc6b47..5b324fd3f 100644 --- a/charts/px-central/templates/px-backup/pxcentral-backup.yaml +++ b/charts/px-central/templates/px-backup/pxcentral-backup.yaml @@ -16,7 +16,7 @@ metadata: kind: ClusterRole apiVersion: rbac.authorization.k8s.io/v1 metadata: - name: px-backup-cluster-role + name: px-backup-cluster-role{{ include "px-central.clusterScopedSuffix" . }} namespace: {{ .Release.Namespace }} labels: app.kubernetes.io/component: px-backup @@ -49,7 +49,7 @@ rules: kind: ClusterRoleBinding apiVersion: rbac.authorization.k8s.io/v1 metadata: - name: px-backup-cluster-role-binding + name: px-backup-cluster-role-binding{{ include "px-central.clusterScopedSuffix" . }} namespace: {{ .Release.Namespace }} labels: app.kubernetes.io/component: pxcentral-apiserver @@ -60,7 +60,7 @@ subjects: namespace: {{ .Release.Namespace }} roleRef: kind: ClusterRole - name: px-backup-cluster-role + name: px-backup-cluster-role{{ include "px-central.clusterScopedSuffix" . }} apiGroup: rbac.authorization.k8s.io --- kind: Role diff --git a/charts/px-central/templates/px-backup/pxcentral-prometheus.yaml b/charts/px-central/templates/px-backup/pxcentral-prometheus.yaml index 98a486de8..8c1a5c029 100644 --- a/charts/px-central/templates/px-backup/pxcentral-prometheus.yaml +++ b/charts/px-central/templates/px-backup/pxcentral-prometheus.yaml @@ -28,7 +28,7 @@ apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: - name: pxc-prometheus-operator + name: pxc-prometheus-operator{{ include "px-central.clusterScopedSuffix" . }} namespace: {{ .Release.Namespace }} labels: app.kubernetes.io/component: px-backup @@ -40,12 +40,12 @@ subjects: roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole - name: pxc-prometheus-operator + name: pxc-prometheus-operator{{ include "px-central.clusterScopedSuffix" . }} --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: - name: pxc-prometheus-operator + name: pxc-prometheus-operator{{ include "px-central.clusterScopedSuffix" . }} namespace: {{ .Release.Namespace }} labels: app.kubernetes.io/component: px-backup @@ -208,7 +208,7 @@ spec: apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: - name: px-backup-dashboard-prometheus + name: px-backup-dashboard-prometheus{{ include "px-central.clusterScopedSuffix" . }} namespace: {{ .Release.Namespace }} labels: app.kubernetes.io/component: px-backup @@ -240,7 +240,7 @@ rules: apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: - name: px-backup-dashboard-prometheus + name: px-backup-dashboard-prometheus{{ include "px-central.clusterScopedSuffix" . }} namespace: {{ .Release.Namespace }} labels: app.kubernetes.io/component: px-backup @@ -248,7 +248,7 @@ metadata: roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole - name: px-backup-dashboard-prometheus + name: px-backup-dashboard-prometheus{{ include "px-central.clusterScopedSuffix" . }} subjects: - kind: ServiceAccount name: px-backup-dashboard-prometheus diff --git a/charts/px-central/templates/px-lighthouse/pxcentral-api-server.yaml b/charts/px-central/templates/px-lighthouse/pxcentral-api-server.yaml index 9fb5979f1..42a0c2eab 100644 --- a/charts/px-central/templates/px-lighthouse/pxcentral-api-server.yaml +++ b/charts/px-central/templates/px-lighthouse/pxcentral-api-server.yaml @@ -43,7 +43,7 @@ roleRef: kind: ClusterRole apiVersion: rbac.authorization.k8s.io/v1 metadata: - name: {{ .Release.Name | quote }} + name: {{ printf "%s%s" .Release.Name (include "px-central.clusterScopedSuffix" .) | quote }} namespace: {{ .Release.Namespace }} labels: app.kubernetes.io/component: pxcentral-apiserver @@ -59,7 +59,7 @@ rules: kind: ClusterRoleBinding apiVersion: rbac.authorization.k8s.io/v1 metadata: - name: {{ .Release.Name | quote }} + name: {{ printf "%s%s" .Release.Name (include "px-central.clusterScopedSuffix" .) | quote }} namespace: {{ .Release.Namespace }} labels: app.kubernetes.io/component: pxcentral-apiserver @@ -70,7 +70,7 @@ subjects: namespace: {{ .Release.Namespace }} roleRef: kind: ClusterRole - name: {{ .Release.Name | quote }} + name: {{ printf "%s%s" .Release.Name (include "px-central.clusterScopedSuffix" .) | quote }} apiGroup: rbac.authorization.k8s.io --- apiVersion: v1 diff --git a/charts/px-central/templates/px-monitor/prometheus/prometheus.yaml b/charts/px-central/templates/px-monitor/prometheus/prometheus.yaml index 83e6f2506..a0f70ae95 100644 --- a/charts/px-central/templates/px-monitor/prometheus/prometheus.yaml +++ b/charts/px-central/templates/px-monitor/prometheus/prometheus.yaml @@ -28,7 +28,7 @@ metadata: apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: - name: pxcentral-prometheus + name: pxcentral-prometheus{{ include "px-central.clusterScopedSuffix" . }} namespace: {{ .Release.Namespace }} labels: app.kubernetes.io/component: pxcentral-prometheus @@ -51,7 +51,7 @@ rules: apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: - name: pxcentral-prometheus + name: pxcentral-prometheus{{ include "px-central.clusterScopedSuffix" . }} namespace: {{ .Release.Namespace }} labels: app.kubernetes.io/component: pxcentral-prometheus @@ -59,7 +59,7 @@ metadata: roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole - name: pxcentral-prometheus + name: pxcentral-prometheus{{ include "px-central.clusterScopedSuffix" . }} subjects: - kind: ServiceAccount name: pxcentral-prometheus @@ -234,7 +234,7 @@ spec: apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: - name: pxcentral-prometheus-operator + name: pxcentral-prometheus-operator{{ include "px-central.clusterScopedSuffix" . }} namespace: {{ .Release.Namespace }} labels: app.kubernetes.io/component: pxcentral-prometheus @@ -296,7 +296,7 @@ rules: apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: - name: pxcentral-prometheus-operator + name: pxcentral-prometheus-operator{{ include "px-central.clusterScopedSuffix" . }} namespace: {{ .Release.Namespace }} labels: app.kubernetes.io/component: pxcentral-prometheus @@ -304,7 +304,7 @@ metadata: roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole - name: pxcentral-prometheus-operator + name: pxcentral-prometheus-operator{{ include "px-central.clusterScopedSuffix" . }} subjects: - kind: ServiceAccount name: pxcentral-prometheus-operator diff --git a/charts/px-central/values.yaml b/charts/px-central/values.yaml index c47fe8d74..765889741 100644 --- a/charts/px-central/values.yaml +++ b/charts/px-central/values.yaml @@ -29,6 +29,13 @@ podAntiAffinity: false caCertsSecretName: "" +# Suffix appended to cluster-scoped resource names (ClusterRole, ClusterRoleBinding) +# so the chart can be installed in multiple namespaces on the same cluster. +# Leave empty to preserve legacy (unsuffixed) names. When installing multiple +# releases of this chart on the same cluster, set this to a unique identifier +# per release (for example the namespace). +clusterScopedSuffix: "" + oidc: centralOIDC: enabled: true diff --git a/stable/index.yaml b/stable/index.yaml index e312f614b..1a9bbbfb7 100644 --- a/stable/index.yaml +++ b/stable/index.yaml @@ -3,7 +3,7 @@ entries: portworx: - apiVersion: v1 appVersion: 3.6.0 - created: "2026-04-22T11:20:36.70028337Z" + created: "2026-04-24T07:04:59.502637735Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 3784de931f0bc5704e30fcfdfeaa5faa320b8c10dfac5c920050d92cd2461a52 home: https://www.purestorage.com/products/cloud-native-applications/portworx.html @@ -24,11 +24,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-9.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-9.0.0.tgz version: 9.0.0 - apiVersion: v1 appVersion: 3.5.2 - created: "2026-04-22T11:20:36.695114953Z" + created: "2026-04-24T07:04:59.498157725Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 8defe5838b883b55f452d903538fd145a036ef31183a476e29650c5977f9ab70 home: https://www.purestorage.com/products/cloud-native-applications/portworx.html @@ -49,11 +49,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-8.2.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-8.2.1.tgz version: 8.2.1 - apiVersion: v1 appVersion: 3.5.2 - created: "2026-04-22T11:20:36.690853081Z" + created: "2026-04-24T07:04:59.492817578Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 74bb965502a323d0d35a20c0f6ac8e950ef0cf123d367f8e97a2662dd513d5dc home: https://www.purestorage.com/products/cloud-native-applications/portworx.html @@ -74,11 +74,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-8.2.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-8.2.0.tgz version: 8.2.0 - apiVersion: v1 appVersion: 3.5.2 - created: "2026-04-22T11:20:36.683337734Z" + created: "2026-04-24T07:04:59.488004776Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 91734a4b8fe9218dbb6e339bd21a35a993a6f90acdaf6f6de9973818154680b7 home: https://www.purestorage.com/products/cloud-native-applications/portworx.html @@ -99,11 +99,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-8.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-8.1.0.tgz version: 8.1.0 - apiVersion: v1 appVersion: 3.5.2 - created: "2026-04-22T11:20:36.676614365Z" + created: "2026-04-24T07:04:59.484006093Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 7f771ef91378bc4b06841ed222f36637295f11fde2ce0346d073fdc57d5340b0 home: https://www.purestorage.com/products/cloud-native-applications/portworx.html @@ -124,11 +124,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-8.0.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-8.0.2.tgz version: 8.0.2 - apiVersion: v1 appVersion: 3.5.1 - created: "2026-04-22T11:20:36.672235182Z" + created: "2026-04-24T07:04:59.479688288Z" description: A Helm chart for installing Portworx on Kubernetes. digest: ea8f1ce57998b1cfaaa42f9a6edc9035fe11a478222e171d571085890075b185 home: https://portworx.com/ @@ -149,11 +149,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-8.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-8.0.1.tgz version: 8.0.1 - apiVersion: v1 appVersion: 3.5.0 - created: "2026-04-22T11:20:36.667628632Z" + created: "2026-04-24T07:04:59.47490466Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 4f45f3d34876bb6a5550bdb98472e62c655972614dbe863126e3bbe9279cec74 home: https://portworx.com/ @@ -174,11 +174,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-8.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-8.0.0.tgz version: 8.0.0 - apiVersion: v1 appVersion: 3.4.2 - created: "2026-04-22T11:20:36.663896445Z" + created: "2026-04-24T07:04:59.470894339Z" description: A Helm chart for installing Portworx on Kubernetes. digest: c0b61dfed18df0cb336c55a0d19f478a6dad2460efba3976aeba59ecb1851e54 home: https://portworx.com/ @@ -199,11 +199,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-7.0.5.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-7.0.5.tgz version: 7.0.5 - apiVersion: v1 appVersion: 3.4.1 - created: "2026-04-22T11:20:36.658784828Z" + created: "2026-04-24T07:04:59.465581113Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 87c475cf51353da3653324dbfeb5b9c18305563b7f00a4454efdc71324f649be home: https://portworx.com/ @@ -224,11 +224,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-7.0.4.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-7.0.4.tgz version: 7.0.4 - apiVersion: v1 appVersion: 3.4.1 - created: "2026-04-22T11:20:36.65394593Z" + created: "2026-04-24T07:04:59.460411793Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 6983f95ab269fb37f30364be60fb92810e9a299868460a3078616538b0448eb5 home: https://portworx.com/ @@ -249,11 +249,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-7.0.3.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-7.0.3.tgz version: 7.0.3 - apiVersion: v1 appVersion: 3.4.0.1 - created: "2026-04-22T11:20:36.648093543Z" + created: "2026-04-24T07:04:59.456742466Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 298ac7406beb8b8f85eebf56d326ec350c91de165d5659e66331cbe60a80edfd home: https://portworx.com/ @@ -274,11 +274,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-7.0.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-7.0.2.tgz version: 7.0.2 - apiVersion: v1 appVersion: 3.4.0.1 - created: "2026-04-22T11:20:36.642249167Z" + created: "2026-04-24T07:04:59.45051459Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 8518b063176fb7555f232d9d4c113b8b7ec2872f1e8e0f192290e4a746a1e1a9 home: https://portworx.com/ @@ -299,11 +299,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-7.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-7.0.1.tgz version: 7.0.1 - apiVersion: v1 appVersion: 3.4.0 - created: "2026-04-22T11:20:36.637902488Z" + created: "2026-04-24T07:04:59.445501807Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 35dade33ac75f86e41418d5d2ff21a16f3bb50a0850bb947e1e2b45c851fa09a home: https://portworx.com/ @@ -324,11 +324,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-7.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-7.0.0.tgz version: 7.0.0 - apiVersion: v1 appVersion: 3.3.1.3 - created: "2026-04-22T11:20:36.631574807Z" + created: "2026-04-24T07:04:59.440189742Z" description: A Helm chart for installing Portworx on Kubernetes. digest: bf52382e1589a97130033c20d7fa150f2af00e29ae124f64d79ee71809ded29b home: https://portworx.com/ @@ -349,11 +349,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-6.1.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-6.1.1.tgz version: 6.1.1 - apiVersion: v1 appVersion: 3.3.1.3 - created: "2026-04-22T11:20:36.625844989Z" + created: "2026-04-24T07:04:59.435869874Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 17093f3d9e21ace0fb5c516186d7fc291234d0031473cc3283bd132f3a9a6b1c home: https://portworx.com/ @@ -374,11 +374,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-6.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-6.1.0.tgz version: 6.1.0 - apiVersion: v1 appVersion: 3.3.1.3 - created: "2026-04-22T11:20:36.622204418Z" + created: "2026-04-24T07:04:59.432192576Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 7531f2a59f75be48a37a097bfc47ed579c41769c35d76171c7b95615c64124ae home: https://portworx.com/ @@ -399,11 +399,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-6.0.5.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-6.0.5.tgz version: 6.0.5 - apiVersion: v1 appVersion: 3.3.1.2 - created: "2026-04-22T11:20:36.617509612Z" + created: "2026-04-24T07:04:59.426154846Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 8bb90f7bcdcfa75d23c260873cd1d089dd9f3a1db205e670cd5ad83569471813 home: https://portworx.com/ @@ -424,11 +424,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-6.0.4.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-6.0.4.tgz version: 6.0.4 - apiVersion: v1 appVersion: 3.3.1.1 - created: "2026-04-22T11:20:36.611946227Z" + created: "2026-04-24T07:04:59.420682008Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 552c30a67535a8ded9fff133c4a8ed9f54a70cd270268d362d6b29c2ee0b8dcb home: https://portworx.com/ @@ -449,11 +449,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-6.0.3.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-6.0.3.tgz version: 6.0.3 - apiVersion: v1 appVersion: 3.3.1 - created: "2026-04-22T11:20:36.607750285Z" + created: "2026-04-24T07:04:59.416716895Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 49075ec12acdf8c08430f7dd7dfe563c7d25aef6585f2f97fb065f0c63036c8b home: https://portworx.com/ @@ -474,11 +474,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-6.0.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-6.0.2.tgz version: 6.0.2 - apiVersion: v1 appVersion: 3.3.0.1 - created: "2026-04-22T11:20:36.604334592Z" + created: "2026-04-24T07:04:59.411814098Z" description: A Helm chart for installing Portworx on Kubernetes. digest: dc471005e5c3e7b1aa150042e03021d94a2b30239eb0055a4f6c20d47bcd755c home: https://portworx.com/ @@ -499,11 +499,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-6.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-6.0.1.tgz version: 6.0.1 - apiVersion: v1 appVersion: 3.3.0 - created: "2026-04-22T11:20:36.598977687Z" + created: "2026-04-24T07:04:59.408252053Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 6e0cd8da586141b228a00ad741de07037465fa17e7de023942f1d9986045f2a8 home: https://portworx.com/ @@ -524,11 +524,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-6.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-6.0.0.tgz version: 6.0.0 - apiVersion: v1 appVersion: 3.2.4 - created: "2026-04-22T11:20:36.594359015Z" + created: "2026-04-24T07:04:59.404130044Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 2256989146a27dfd658b18b6a03c4dee296655038c6547285f7dca1af2c65e35 home: https://portworx.com/ @@ -549,11 +549,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-5.2.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-5.2.2.tgz version: 5.2.2 - apiVersion: v1 appVersion: 3.2.3 - created: "2026-04-22T11:20:36.589823377Z" + created: "2026-04-24T07:04:59.399810476Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 6d75ff426557a12c5fdf365fa7609dbdd0587e5854d263ff22b8413ca94d3609 home: https://portworx.com/ @@ -574,11 +574,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-5.2.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-5.2.1.tgz version: 5.2.1 - apiVersion: v1 appVersion: 3.2.3 - created: "2026-04-22T11:20:36.585750478Z" + created: "2026-04-24T07:04:59.395767937Z" description: A Helm chart for installing Portworx on Kubernetes. digest: d35ccbafc7be55cdfe8363fca9b64fb5f8636fb3ac801e5c7deecde650cec4f7 home: https://portworx.com/ @@ -599,11 +599,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-5.2.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-5.2.0.tgz version: 5.2.0 - apiVersion: v1 appVersion: 3.2.3 - created: "2026-04-22T11:20:36.582288155Z" + created: "2026-04-24T07:04:59.392151631Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 990fd545cb09b0b174c430963764eaf4879c442b2428007c8605ee8a98f50642 home: https://portworx.com/ @@ -624,11 +624,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-5.1.6.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-5.1.6.tgz version: 5.1.6 - apiVersion: v1 appVersion: 3.2.2.2 - created: "2026-04-22T11:20:36.577501456Z" + created: "2026-04-24T07:04:59.388127169Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 6ada879d42745e64f5687b6d8b12f3b786fe1e135ff8e028f840ba6811b17908 home: https://portworx.com/ @@ -649,11 +649,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-5.1.5.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-5.1.5.tgz version: 5.1.5 - apiVersion: v1 appVersion: 3.2.2.1 - created: "2026-04-22T11:20:36.573387646Z" + created: "2026-04-24T07:04:59.383215818Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 91414d94915174a2c60cb770abea6e0ceeb325911819c812c805921e9b5bce81 home: https://portworx.com/ @@ -674,11 +674,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-5.1.4.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-5.1.4.tgz version: 5.1.4 - apiVersion: v1 appVersion: 3.2.2 - created: "2026-04-22T11:20:36.568895704Z" + created: "2026-04-24T07:04:59.37919378Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 1ea8fd443acfb4cc30819272322333bd5a3a403caa252739935085461dd23433 home: https://portworx.com/ @@ -699,11 +699,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-5.1.3.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-5.1.3.tgz version: 5.1.3 - apiVersion: v1 appVersion: 3.2.1.2 - created: "2026-04-22T11:20:36.565354392Z" + created: "2026-04-24T07:04:59.375571885Z" description: A Helm chart for installing Portworx on Kubernetes. digest: d93f68765ea3dfe27afa68e9f4dfe17fa4bd14f58fe872873a78cca18f5faef8 home: https://portworx.com/ @@ -724,11 +724,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-5.1.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-5.1.2.tgz version: 5.1.2 - apiVersion: v1 appVersion: 3.2.1.1 - created: "2026-04-22T11:20:36.562685444Z" + created: "2026-04-24T07:04:59.372491437Z" description: A Helm chart for installing Portworx on Kubernetes. digest: f80e1de041983764ef0bc0fcec0ef02b88174e1cc499ae9c07cfb35b25f9f753 home: https://portworx.com/ @@ -749,11 +749,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-5.1.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-5.1.1.tgz version: 5.1.1 - apiVersion: v1 appVersion: 3.2.1 - created: "2026-04-22T11:20:36.560525745Z" + created: "2026-04-24T07:04:59.370271517Z" description: A Helm chart for installing Portworx on Kubernetes. digest: fcb5b7beff0e26563d3ab211fa5ab684d4c3f99fa3519c950f9a52e63ba5baf5 home: https://portworx.com/ @@ -774,11 +774,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-5.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-5.1.0.tgz version: 5.1.0 - apiVersion: v1 appVersion: 3.2.0 - created: "2026-04-22T11:20:36.557891429Z" + created: "2026-04-24T07:04:59.36727809Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 5e1578d0d3d74b4a6dda9dca765eee84226f8676925573a6aa66d0fb8c129b92 home: https://portworx.com/ @@ -799,11 +799,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-5.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-5.0.0.tgz version: 5.0.0 - apiVersion: v1 appVersion: 3.1.9 - created: "2026-04-22T11:20:36.555747604Z" + created: "2026-04-24T07:04:59.365028386Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 8c2fd81dc8982ac1a99582a5c5403305f2ae4dbf8eb8c153efd79180d54eb1e9 home: https://portworx.com/ @@ -824,11 +824,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-4.1.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-4.1.1.tgz version: 4.1.1 - apiVersion: v1 appVersion: 3.1.7 - created: "2026-04-22T11:20:36.552909431Z" + created: "2026-04-24T07:04:59.362202382Z" description: A Helm chart for installing Portworx on Kubernetes. digest: b0d4f9cf1a51d5f83545052511fec73c68341fa34d262dd967eab12b27819ca7 home: https://portworx.com/ @@ -849,11 +849,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-4.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-4.1.0.tgz version: 4.1.0 - apiVersion: v1 appVersion: 3.1.4 - created: "2026-04-22T11:20:36.550719016Z" + created: "2026-04-24T07:04:59.359761439Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 94e8f1000109f518010575ecaf2274ad3c5845c273d28d6292f80df88e3acea1 home: https://portworx.com/ @@ -874,11 +874,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-4.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-4.0.0.tgz version: 4.0.0 - apiVersion: v1 appVersion: 3.1.0 - created: "2026-04-22T11:20:36.548146293Z" + created: "2026-04-24T07:04:59.356971941Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 630d982316d27542d6a2f137793fa755e366d911d56de531b011ff27ea5f04f5 home: https://portworx.com/ @@ -899,11 +899,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-3.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-3.1.0.tgz version: 3.1.0 - apiVersion: v1 appVersion: 3.0.0 - created: "2026-04-22T11:20:36.546468266Z" + created: "2026-04-24T07:04:59.355264955Z" description: A Helm chart for installing Portworx on Kubernetes. digest: b7713dc5e4b3b30efcfb5c42771fa69140daacf0fa348906694fa623f7648754 home: https://portworx.com/ @@ -924,11 +924,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-3.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-3.0.0.tgz version: 3.0.0 - apiVersion: v1 appVersion: 2.13.3 - created: "2026-04-22T11:20:36.543611546Z" + created: "2026-04-24T07:04:59.352402666Z" description: A Helm chart for installing Portworx on Kubernetes. digest: f154989402d3582968ef7d8211c830dd6771a357f6e7da957176ff1bc47d81a6 home: https://portworx.com/ @@ -949,11 +949,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-2.13.3.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-2.13.3.tgz version: 2.13.3 - apiVersion: v1 appVersion: 2.12.2 - created: "2026-04-22T11:20:36.5424475Z" + created: "2026-04-24T07:04:59.35121187Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 6f82f0772cea7e5bbee59b44fd06cf15439e42d1d96ea5ca73ad0546ac4e39c7 home: https://portworx.com/ @@ -974,11 +974,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-2.13.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-2.13.0.tgz version: 2.13.0 - apiVersion: v1 appVersion: 2.11.4 - created: "2026-04-22T11:20:36.541270685Z" + created: "2026-04-24T07:04:59.349947372Z" description: A Helm chart for installing Portworx on Kubernetes. digest: db0319e7e0aff6a233af0187970a60a431d87f98f961dd4a11e110ef68a8e420 home: https://portworx.com/ @@ -987,11 +987,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-2.11.4.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-2.11.4.tgz version: 2.11.4 - apiVersion: v1 appVersion: 2.10.3 - created: "2026-04-22T11:20:36.540201692Z" + created: "2026-04-24T07:04:59.348794632Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 162b316899c5023708ee0edc4083215646fe8c8458d34f79f9f13c2c376e0d0d home: https://portworx.com/ @@ -1000,11 +1000,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-2.10.3.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-2.10.3.tgz version: 2.10.3 - apiVersion: v1 appVersion: 2.9.1 - created: "2026-04-22T11:20:36.54527064Z" + created: "2026-04-24T07:04:59.354065105Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 71a44b527872750c42c9c39a6e3e03c431e0d74063aa8abf70d11f1401fddad2 home: https://portworx.com/ @@ -1013,10 +1013,10 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-2.9.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-2.9.1.tgz version: 2.9.1 - apiVersion: v1 - created: "2026-04-22T11:20:36.538439855Z" + created: "2026-04-24T07:04:59.347024411Z" description: A Helm chart for installing Portworx on Kubernetes. digest: c312df602c509a2c5d60d6197ec137bf8484ecffb3444f1ded6be19964bc3c9f home: https://portworx.com/ @@ -1025,10 +1025,10 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-1.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-1.0.1.tgz version: 1.0.1 - apiVersion: v1 - created: "2026-04-22T11:20:36.53732302Z" + created: "2026-04-24T07:04:59.345957441Z" description: A Helm chart for installing Portworx on Kubernetes. digest: ac01a7ae62587285d9a29e2d36c386727eb96694810a563ecf723b21f7582dec home: https://portworx.com/ @@ -1037,12 +1037,12 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-1.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-1.0.0.tgz version: 1.0.0 portworx-daemonSet: - apiVersion: v1 appVersion: 2.13.5 - created: "2026-04-22T11:20:36.703205993Z" + created: "2026-04-24T07:04:59.50569637Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 01c9131ded26e1960fb11ddac49f86ecf36e22bd2f44e320582f8c1be6b28119 home: https://portworx.com/ @@ -1063,11 +1063,11 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-daemonSet-2.13.5.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-daemonSet-2.13.5.tgz version: 2.13.5 - apiVersion: v1 appVersion: 2.12.2 - created: "2026-04-22T11:20:36.701393525Z" + created: "2026-04-24T07:04:59.504214894Z" description: A Helm chart for installing Portworx on Kubernetes. digest: 6a150290915cf7da30ee04cd157b32491e725bb7a1d8e02c561d5c660bbefb6b home: https://portworx.com/ @@ -1088,12 +1088,12 @@ entries: sources: - https://github.com/portworx/helm urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/portworx-daemonSet-2.13.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/portworx-daemonSet-2.13.0.tgz version: 2.13.0 px-backup: - apiVersion: v1 appVersion: 1.2.4 - created: "2026-04-22T11:20:36.71521841Z" + created: "2026-04-24T07:04:59.519164441Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 4e1c290efdbd1cf8487e81e4b02b945d2be6aa5b3b9771091214d39c4cd6b868 @@ -1111,11 +1111,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.2.4.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.2.4.tgz version: 1.2.4 - apiVersion: v1 appVersion: 1.2.3 - created: "2026-04-22T11:20:36.714484218Z" + created: "2026-04-24T07:04:59.51830233Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 5041aaabb806d9075722c79d34f9dec8f4e80a75f5346d097cb0123417b08c2d @@ -1133,11 +1133,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.2.3.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.2.3.tgz version: 1.2.3 - apiVersion: v1 appVersion: 1.2.2 - created: "2026-04-22T11:20:36.71373854Z" + created: "2026-04-24T07:04:59.517499369Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 5536c872859c726b4dd1cff1bcd21ef4f56903d58fcbbe5b4859b5bd242873cf @@ -1155,11 +1155,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.2.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.2.2.tgz version: 1.2.2 - apiVersion: v1 appVersion: 1.2.1 - created: "2026-04-22T11:20:36.712985671Z" + created: "2026-04-24T07:04:59.515976711Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: a9b0290cb08d6d3c39adf27ab07be9a17424493980c720223e3a656fa77917ba @@ -1177,11 +1177,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.2.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.2.1.tgz version: 1.2.1 - apiVersion: v1 appVersion: 1.2.0 - created: "2026-04-22T11:20:36.712243878Z" + created: "2026-04-24T07:04:59.515229834Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 7f42744f732e8d80793d06189b14f5ed8f7439706db99dd272d96d43a1fd65ab @@ -1199,11 +1199,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.2.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.2.0.tgz version: 1.2.0 - apiVersion: v1 appVersion: 1.1.1 - created: "2026-04-22T11:20:36.711342366Z" + created: "2026-04-24T07:04:59.514311589Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 73215fe714e1a3af6bdf958eb06791b90f878b363c85b3adf4c8cfe664a08202 @@ -1221,11 +1221,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.1.6.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.1.6.tgz version: 1.1.6 - apiVersion: v1 appVersion: 1.1.0 - created: "2026-04-22T11:20:36.710550278Z" + created: "2026-04-24T07:04:59.513549339Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 6cc1c8df6ddd7e7e49f69db6791f1bdd6b39dc0943f60282fd9212872071103c @@ -1243,11 +1243,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.1.5.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.1.5.tgz version: 1.1.5 - apiVersion: v1 appVersion: 1.1.0 - created: "2026-04-22T11:20:36.709298561Z" + created: "2026-04-24T07:04:59.512796312Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 4115cfbf2e4e8158331bcec3d4404054c9648fb227f6947747f0122ad4f2418a @@ -1265,11 +1265,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.1.4.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.1.4.tgz version: 1.1.4 - apiVersion: v1 appVersion: 1.1.0-rc4 - created: "2026-04-22T11:20:36.708327074Z" + created: "2026-04-24T07:04:59.511956716Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 0121036cb537c93fff9281f05cf935345b5f769017b131b5e903cc4b8354c8ac @@ -1287,11 +1287,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.1.3.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.1.3.tgz version: 1.1.3 - apiVersion: v1 appVersion: 1.1.0-rc2 - created: "2026-04-22T11:20:36.707500113Z" + created: "2026-04-24T07:04:59.511122156Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 96f785bc9ad2c477068d39f351d5c078f080264104ccd6e7630eabae6d0a514c @@ -1309,11 +1309,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.1.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.1.2.tgz version: 1.1.2 - apiVersion: v1 appVersion: 1.1.0-rc2 - created: "2026-04-22T11:20:36.70676424Z" + created: "2026-04-24T07:04:59.509356322Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 7167db17211627d3d111441d01c8d71c57a1980c27145dc7c08ebb3ff9f7d548 @@ -1331,11 +1331,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.1.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.1.1.tgz version: 1.1.1 - apiVersion: v1 appVersion: 1.1.0-rc1 - created: "2026-04-22T11:20:36.70603114Z" + created: "2026-04-24T07:04:59.508613561Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 1a2c71389dc08d58f51f66e3ebe44e63fe7410691ec92d642c0dcfaa57c17605 @@ -1353,11 +1353,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.1.0.tgz version: 1.1.0 - apiVersion: v1 appVersion: 1.0.2 - created: "2026-04-22T11:20:36.70531116Z" + created: "2026-04-24T07:04:59.507849559Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: fd9316e9719a924eb8aa2d6d947d90e162f602ef4b77e28ef070099fd1dfb1cf @@ -1375,11 +1375,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.0.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.0.2.tgz version: 1.0.2 - apiVersion: v1 appVersion: 1.0.2 - created: "2026-04-22T11:20:36.704629308Z" + created: "2026-04-24T07:04:59.507170684Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 0e96c406605816b9a70a0440710d4a82743d373c2b9da20696e6f3a1b1ef2698 @@ -1397,11 +1397,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.0.1.tgz version: 1.0.1 - apiVersion: v1 appVersion: 1.0.2 - created: "2026-04-22T11:20:36.703920374Z" + created: "2026-04-24T07:04:59.506463547Z" description: A Helm chart for installing PX-Backup with PX-Central on Kubernetes and Openshift digest: 2bb9b69ade7b648d46ca618f2f798ba0af346022b42ce540d3988b2c8a387226 @@ -1419,14 +1419,14 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-backup urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-backup-1.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-backup-1.0.0.tgz version: 1.0.0 px-central: - apiVersion: v1 appVersion: 3.0.0-staging - created: "2026-04-22T11:20:36.930222532Z" + created: "2026-04-24T07:04:59.7762903Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift - digest: 78316093bbf857e32d26114520a51f34d31072a97c6806774ba9519ea2cf1739 + digest: 7c950b17293789854944bc9a507a71e7fb6464e1df5150883bd2df0e1c77432b home: https://portworx.com/ icon: https://raw.githubusercontent.com/portworx/helm/master/doc/media/px-logo.png keywords: @@ -1441,11 +1441,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-3.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-3.0.0.tgz version: 3.0.0 - apiVersion: v1 appVersion: 2.11.0 - created: "2026-04-22T11:20:36.76008301Z" + created: "2026-04-24T07:04:59.573794939Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 355c2cc8c9d32a862b0c4bf2902d423a8f2e31f677c6842e994ce6a1cfed1349 home: https://portworx.com/ @@ -1462,11 +1462,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.11.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.11.0.tgz version: 2.11.0 - apiVersion: v1 appVersion: 2.10.2 - created: "2026-04-22T11:20:36.753987042Z" + created: "2026-04-24T07:04:59.565732163Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 656f975e7ec39bfc5a274c27be1b037161af913c9749621825b9e294b115bf8c home: https://portworx.com/ @@ -1483,11 +1483,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.10.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.10.2.tgz version: 2.10.2 - apiVersion: v1 appVersion: 2.10.1 - created: "2026-04-22T11:20:36.747963478Z" + created: "2026-04-24T07:04:59.5563784Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 8d682256275a62ebd1b1f46a24fe6f7969d9d6ebedfa15c3285e5775f2753f90 home: https://portworx.com/ @@ -1504,11 +1504,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.10.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.10.1.tgz version: 2.10.1 - apiVersion: v1 appVersion: 2.10.0 - created: "2026-04-22T11:20:36.741907409Z" + created: "2026-04-24T07:04:59.547547647Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 67b6e8d5d306d991d4d26b0ef9070dc91f4691770738f0947855cf05a63fa67f home: https://portworx.com/ @@ -1525,11 +1525,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.10.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.10.0.tgz version: 2.10.0 - apiVersion: v1 appVersion: 2.9.1 - created: "2026-04-22T11:20:36.923556034Z" + created: "2026-04-24T07:04:59.769435307Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 8fdd400d0d84aba1f85085ed00abe940a6f9cb70bb5c2ea8b56153a149270d0d home: https://portworx.com/ @@ -1546,11 +1546,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.9.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.9.1.tgz version: 2.9.1 - apiVersion: v1 appVersion: 2.9.0 - created: "2026-04-22T11:20:36.917319079Z" + created: "2026-04-24T07:04:59.763027007Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 54149c33b459f0c04cab628564a8fac7e55a62193dbbc27f49b9b15fba028c3e home: https://portworx.com/ @@ -1567,11 +1567,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.9.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.9.0.tgz version: 2.9.0 - apiVersion: v1 appVersion: 2.8.4 - created: "2026-04-22T11:20:36.911059611Z" + created: "2026-04-24T07:04:59.756286948Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 1bed0e012644fe7a88032760fc5bfa43baaa40256d274f16af4d7842b7c6e1a9 home: https://portworx.com/ @@ -1588,11 +1588,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.8.4.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.8.4.tgz version: 2.8.4 - apiVersion: v1 appVersion: 2.8.3 - created: "2026-04-22T11:20:36.904860053Z" + created: "2026-04-24T07:04:59.748978961Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: da19b5d176bc83fd649b2239bdb0e115a8cebd1facadca4a039b75f5be77cb9b home: https://portworx.com/ @@ -1609,11 +1609,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.8.3.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.8.3.tgz version: 2.8.3 - apiVersion: v1 appVersion: 2.8.2 - created: "2026-04-22T11:20:36.898712532Z" + created: "2026-04-24T07:04:59.741758127Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 5b78a5947dbace22ff43252da7e7124455e35b80f263cacc559227be9c2beb47 home: https://portworx.com/ @@ -1630,11 +1630,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.8.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.8.2.tgz version: 2.8.2 - apiVersion: v1 appVersion: 2.8.1 - created: "2026-04-22T11:20:36.892815573Z" + created: "2026-04-24T07:04:59.736347924Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 1f36737794cd7a47154883a51ffc89ce0772b922f6e85b5840300dc09420003f home: https://portworx.com/ @@ -1651,11 +1651,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.8.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.8.1.tgz version: 2.8.1 - apiVersion: v1 appVersion: 2.8.0 - created: "2026-04-22T11:20:36.886870381Z" + created: "2026-04-24T07:04:59.729900175Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: f25bb88dc2eebdd3ce29288f96b9b57b34d46d06dcd4a97ed9784cf086380998 home: https://portworx.com/ @@ -1672,11 +1672,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.8.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.8.0.tgz version: 2.8.0 - apiVersion: v1 appVersion: 2.7.4 - created: "2026-04-22T11:20:36.880919125Z" + created: "2026-04-24T07:04:59.723704096Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 400847b924699668cfdb2c11f27af52b6272dd29d006692d7415582e41b18ebe home: https://portworx.com/ @@ -1693,11 +1693,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.7.4.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.7.4.tgz version: 2.7.4 - apiVersion: v1 appVersion: 2.7.3 - created: "2026-04-22T11:20:36.875034584Z" + created: "2026-04-24T07:04:59.717577492Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: eaa287204c00aa1f59a5ef3bd40d0b32a3197147dea79a2cb041bd106d7dbc1a home: https://portworx.com/ @@ -1714,11 +1714,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.7.3.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.7.3.tgz version: 2.7.3 - apiVersion: v1 appVersion: 2.7.2 - created: "2026-04-22T11:20:36.869275271Z" + created: "2026-04-24T07:04:59.711223695Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 881a960859a68bb65ca78246160f58b028152fb92cca0ce48cd5e43a00b200c7 home: https://portworx.com/ @@ -1735,11 +1735,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.7.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.7.2.tgz version: 2.7.2 - apiVersion: v1 appVersion: 2.7.1 - created: "2026-04-22T11:20:36.863589573Z" + created: "2026-04-24T07:04:59.703409435Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 648be2c10a1d748a2f100c854837b673af208047be686a28b95c6dfac63b1710 home: https://portworx.com/ @@ -1756,11 +1756,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.7.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.7.1.tgz version: 2.7.1 - apiVersion: v1 appVersion: 2.7.0 - created: "2026-04-22T11:20:36.857898297Z" + created: "2026-04-24T07:04:59.694192759Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 295a652338c35a57905d3b7eea7f156d8f7a88924cc3b1a2cea84402d35369ac home: https://portworx.com/ @@ -1777,11 +1777,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.7.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.7.0.tgz version: 2.7.0 - apiVersion: v1 appVersion: 2.6.1 - created: "2026-04-22T11:20:36.852010622Z" + created: "2026-04-24T07:04:59.687368993Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: f32abdd809415d793b92123c134f13d4c14141f5bd740dbe103368b3c6b9691b home: https://portworx.com/ @@ -1798,11 +1798,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.6.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.6.1.tgz version: 2.6.1 - apiVersion: v1 appVersion: 2.6.0 - created: "2026-04-22T11:20:36.845128715Z" + created: "2026-04-24T07:04:59.681873941Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: fec02bc7e95a933c218a63f792423b3cfa8fe39c23da75596b39c88f30a1bcbe home: https://portworx.com/ @@ -1819,11 +1819,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.6.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.6.0.tgz version: 2.6.0 - apiVersion: v1 appVersion: 2.5.1 - created: "2026-04-22T11:20:36.838891806Z" + created: "2026-04-24T07:04:59.676449627Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 35e04e7436dad4c6cebcfa5e4d35eaac8b5a20fd127338d0e99c7ed88271d85c home: https://portworx.com/ @@ -1840,11 +1840,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.5.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.5.1.tgz version: 2.5.1 - apiVersion: v1 appVersion: 2.5.0 - created: "2026-04-22T11:20:36.834077716Z" + created: "2026-04-24T07:04:59.6705264Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 6c36eb1e0fe29908738d6cc5284cb7b6122549ca7ffa003f0fd21733be4733be home: https://portworx.com/ @@ -1861,11 +1861,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.5.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.5.0.tgz version: 2.5.0 - apiVersion: v1 appVersion: 2.4.3 - created: "2026-04-22T11:20:36.828606484Z" + created: "2026-04-24T07:04:59.664440507Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 2ca15224d4c0118e3dd2c0c2c4a863ee0e6a47dfedcb7feb6e942521ed99b171 home: https://portworx.com/ @@ -1882,11 +1882,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.4.3.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.4.3.tgz version: 2.4.3 - apiVersion: v1 appVersion: 2.4.2 - created: "2026-04-22T11:20:36.822677121Z" + created: "2026-04-24T07:04:59.656276489Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 645700605aa6cdfdebe24e1288a96b2bfb9f4e9d2525866dacddc11eb7847900 home: https://portworx.com/ @@ -1903,11 +1903,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.4.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.4.2.tgz version: 2.4.2 - apiVersion: v1 appVersion: 2.4.1 - created: "2026-04-22T11:20:36.814981719Z" + created: "2026-04-24T07:04:59.648672716Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 352b6de244486cef54fb2e88fee4671cf9b0d7c6a425862f2813d1ff921f1b22 home: https://portworx.com/ @@ -1924,11 +1924,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.4.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.4.1.tgz version: 2.4.1 - apiVersion: v1 appVersion: 2.4.0 - created: "2026-04-22T11:20:36.809009848Z" + created: "2026-04-24T07:04:59.640247895Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: f034a271280a530c9d236d79f892a686ee961d95d865fdad84c765184923f92a home: https://portworx.com/ @@ -1945,11 +1945,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.4.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.4.0.tgz version: 2.4.0 - apiVersion: v1 appVersion: 2.3.3 - created: "2026-04-22T11:20:36.803294841Z" + created: "2026-04-24T07:04:59.634468605Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 4b2f2dbcd15878e63cb50b21208e8a00317af2566f1b112e11e191fd88183caf home: https://portworx.com/ @@ -1966,11 +1966,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.3.3.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.3.3.tgz version: 2.3.3 - apiVersion: v1 appVersion: 2.3.2 - created: "2026-04-22T11:20:36.797902558Z" + created: "2026-04-24T07:04:59.626862338Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 07969717a7e2ffd0a85080d1a782d2fbbf2a77b101e4e1e1e48a27c2c1b4a1cf home: https://portworx.com/ @@ -1987,11 +1987,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.3.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.3.2.tgz version: 2.3.2 - apiVersion: v1 appVersion: 2.3.1 - created: "2026-04-22T11:20:36.792450326Z" + created: "2026-04-24T07:04:59.619485338Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: bffae73f9f96a3d775084644639b6ec858633a9b377082326756577ca305b2d7 home: https://portworx.com/ @@ -2008,11 +2008,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.3.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.3.1.tgz version: 2.3.1 - apiVersion: v1 appVersion: 2.3.0 - created: "2026-04-22T11:20:36.787048274Z" + created: "2026-04-24T07:04:59.613497954Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 849f16762e8c9684d91b9541033c38121f9230975c4f46819e260cbff4ff5212 home: https://portworx.com/ @@ -2029,11 +2029,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.3.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.3.0.tgz version: 2.3.0 - apiVersion: v1 appVersion: 2.2.3 - created: "2026-04-22T11:20:36.781644694Z" + created: "2026-04-24T07:04:59.605565415Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 9656fdd92ce4f80ffcaf9e85eaa590c0151f2282da6a536f9722fcb315a993e2 home: https://portworx.com/ @@ -2050,11 +2050,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.2.3.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.2.3.tgz version: 2.2.3 - apiVersion: v1 appVersion: 2.2.2 - created: "2026-04-22T11:20:36.776249166Z" + created: "2026-04-24T07:04:59.598897344Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: c4760d4aa90b2f23dff0054c6a57c423f03bdf1e3685c7701025579de77f2d60 home: https://portworx.com/ @@ -2071,11 +2071,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.2.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.2.2.tgz version: 2.2.2 - apiVersion: v1 appVersion: 2.2.1 - created: "2026-04-22T11:20:36.770798687Z" + created: "2026-04-24T07:04:59.589327675Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: defa0a5d415b35c5f01ebf4ed99aa45a7e3f7ec08c417c415f12dc8bc05ae3a8 home: https://portworx.com/ @@ -2092,11 +2092,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.2.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.2.1.tgz version: 2.2.1 - apiVersion: v1 appVersion: 2.2.0 - created: "2026-04-22T11:20:36.765440881Z" + created: "2026-04-24T07:04:59.581447525Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: d22206f8b66527c3bf699aab9c3227a5f40065fcb7134207a18813035a1766c2 home: https://portworx.com/ @@ -2113,11 +2113,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.2.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.2.0.tgz version: 2.2.0 - apiVersion: v1 appVersion: 2.1.2 - created: "2026-04-22T11:20:36.734909909Z" + created: "2026-04-24T07:04:59.539978035Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 8b45b7ef443c2b02dc41b88b70877f7d83d8180621bf1f708fbbebd8a0dad3bd home: https://portworx.com/ @@ -2134,11 +2134,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.1.2.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.1.2.tgz version: 2.1.2 - apiVersion: v1 appVersion: 2.1.1 - created: "2026-04-22T11:20:36.72819611Z" + created: "2026-04-24T07:04:59.53402346Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: ab68db760b922dfeb49448ab8a5393104d02d92134b2007ffc37932b12dadb5c home: https://portworx.com/ @@ -2155,11 +2155,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.1.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.1.1.tgz version: 2.1.1 - apiVersion: v1 appVersion: 2.0.1 - created: "2026-04-22T11:20:36.724014768Z" + created: "2026-04-24T07:04:59.530160522Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: f719f6251797b14ffad588f8db5648cd9f515e0bf855c487804f4a731f26f8cb home: https://portworx.com/ @@ -2176,11 +2176,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.0.1.tgz version: 2.0.1 - apiVersion: v1 appVersion: 2.0.0 - created: "2026-04-22T11:20:36.719781624Z" + created: "2026-04-24T07:04:59.524596557Z" description: A Helm chart for installing PX-Central on Kubernetes and Openshift digest: 58adcc335f387a3090cd55316ca7f2f4ebedaeea1375764d1bf18582551d4d96 home: https://portworx.com/ @@ -2197,12 +2197,12 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-central urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-central-2.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-central-2.0.0.tgz version: 2.0.0 px-license-server: - apiVersion: v1 appVersion: 1.0.0 - created: "2026-04-22T11:20:36.931817214Z" + created: "2026-04-24T07:04:59.777998216Z" description: A Helm chart for install and configure PX-License-Server on Kubernetes and Openshift digest: 70a52d0e5a59dfcbdabba7dda742d748d42937aecb4cdd8f603738cbbfb2c8a4 @@ -2215,11 +2215,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-license-server urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-license-server-1.2.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-license-server-1.2.1.tgz version: 1.2.1 - apiVersion: v1 appVersion: 1.0.0 - created: "2026-04-22T11:20:36.93151414Z" + created: "2026-04-24T07:04:59.777683421Z" description: A Helm chart for install and configure PX-License-Server on Kubernetes and Openshift digest: 5ee27e632cc313ab281a50c2deebbd8713657d19e0b394ea97ae4fdee76f4f09 @@ -2232,11 +2232,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-license-server urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-license-server-1.2.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-license-server-1.2.0.tgz version: 1.2.0 - apiVersion: v1 appVersion: 1.0.0 - created: "2026-04-22T11:20:36.931203474Z" + created: "2026-04-24T07:04:59.777362407Z" description: A Helm chart for install and configure PX-License-Server on Kubernetes and Openshift digest: 55f496792430763626acecb5082eaff7c5276879a0f527ae993635ad8ac90640 @@ -2249,11 +2249,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-license-server urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-license-server-1.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-license-server-1.1.0.tgz version: 1.1.0 - apiVersion: v1 appVersion: 1.0.1 - created: "2026-04-22T11:20:36.930880209Z" + created: "2026-04-24T07:04:59.77700666Z" description: A Helm chart for install and configure PX-License-Server on Kubernetes and Openshift digest: 6673a056155f5329ef7c8cf2c4436668af4b023d234d004448e1db8a2696e1f1 @@ -2266,11 +2266,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-license-server urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-license-server-1.0.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-license-server-1.0.1.tgz version: 1.0.1 - apiVersion: v1 appVersion: 1.0.0 - created: "2026-04-22T11:20:36.930563454Z" + created: "2026-04-24T07:04:59.776664985Z" description: A Helm chart for install and configure PX-License-Server on Kubernetes and Openshift digest: bb595272c93ef8071e8bc606a3cf8bdb5d7099646d4f8066748f9bd57ac76af1 @@ -2283,12 +2283,12 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-license-server urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-license-server-1.0.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-license-server-1.0.0.tgz version: 1.0.0 px-monitor: - apiVersion: v1 appVersion: 1.2.1 - created: "2026-04-22T11:20:36.943707618Z" + created: "2026-04-24T07:04:59.790110082Z" description: A Helm chart for install and configure PX-Monitor on Kubernetes and Openshift digest: 9ecba7fb39e84dbdf274784b509780465bda9b0b0c0574b7e729f5575a4a4a1e @@ -2304,11 +2304,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-monitor urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-monitor-1.2.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-monitor-1.2.1.tgz version: 1.2.1 - apiVersion: v1 appVersion: 1.2.0 - created: "2026-04-22T11:20:36.940108931Z" + created: "2026-04-24T07:04:59.786443349Z" description: A Helm chart for install and configure PX-Monitor on Kubernetes and Openshift digest: ed29de40a6aedebd2df7cce93084cf008b565d72cc36bcaf92c33048a920fade @@ -2324,11 +2324,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-monitor urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-monitor-1.2.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-monitor-1.2.0.tgz version: 1.2.0 - apiVersion: v1 appVersion: 1.1.1 - created: "2026-04-22T11:20:36.937567249Z" + created: "2026-04-24T07:04:59.783806761Z" description: A Helm chart for install and configure PX-Monitor on Kubernetes and Openshift digest: 66e6d465883dc5be2b6413cb09809aa48cc898400c5e149cf8ead44ed84ec504 @@ -2344,11 +2344,11 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-monitor urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-monitor-1.1.1.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-monitor-1.1.1.tgz version: 1.1.1 - apiVersion: v1 appVersion: 1.1.0 - created: "2026-04-22T11:20:36.934289963Z" + created: "2026-04-24T07:04:59.780550888Z" description: A Helm chart for install and configure PX-Monitor on Kubernetes and Openshift digest: 079c699ed5fcba8f9214bde2b9f7b641883bac7cb57d3075a796583a10a2f9ed @@ -2364,6 +2364,6 @@ entries: sources: - https://github.com/portworx/helm/tree/master/charts/px-monitor urls: - - https://raw.githubusercontent.com/portworx/helm/3.0.0-staging/stable/px-monitor-1.1.0.tgz + - https://raw.githubusercontent.com/portworx/helm/multi-install/stable/px-monitor-1.1.0.tgz version: 1.1.0 -generated: "2026-04-22T11:20:36.536059164Z" +generated: "2026-04-24T07:04:59.344658622Z" diff --git a/stable/px-central-3.0.0.tgz b/stable/px-central-3.0.0.tgz index 72246ec22..07202c7f7 100644 Binary files a/stable/px-central-3.0.0.tgz and b/stable/px-central-3.0.0.tgz differ