Files
homelab/cluster/platform/portworx-csi/application.yaml
Hermes Agent service account f0400c02b6 Fix Portworx Helm repo URL and bump to v26.2
- Update repoURL to correct Portworx Helm chart location
- Bump version from 25.0.0 to 26.2.0 (latest per docs)
2026-06-18 23:09:35 -05:00

53 lines
1.8 KiB
YAML

# ------------------------------------------------------------------------------
# Platform: portworx-csi
# Wave 2 — no secret dependencies initially; must be ready before stateful workloads
#
# Portworx CSI driver for Pure Storage FlashArray on Talos Linux
# Provides high-performance block and file storage for Kubernetes workloads
#
# Installation flow:
# 1. External Secrets Operator (wave 1) creates px-pure-secret from 1Password
# 2. Portworx Operator deploys (via Helm chart)
# 3. StorageCluster CR provisions CSI driver components
# 4. StorageClasses become available for PVC provisioning
#
# Prerequisites:
# - FlashArray configured with API token in 1Password
# - Talos nodes configured with multipath and udev rules (via MachineConfig)
# - iSCSI initiators enabled on all nodes
# ------------------------------------------------------------------------------
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: portworx-csi
namespace: argocd
annotations:
argocd.argoproj.io/sync-wave: "2"
spec:
project: default
sources:
# Source 1: Portworx Operator Helm chart from Portworx
- repoURL: https://portworx.github.io/px-operator
chart: px-operator
targetRevision: 26.2.0
helm:
valueFiles:
- $values/cluster/platform/portworx-csi/operator-values.yaml
# Source 2: Repo — StorageCluster spec, StorageClasses, ExternalSecret
- repoURL: https://gitea.mk-labs.cloud/rblundon/homelab.git
targetRevision: main
path: cluster/platform/portworx-csi
ref: values
directory:
exclude: "application.yaml"
destination:
server: https://kubernetes.default.svc
namespace: portworx
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
- ServerSideApply=true