c570a476b5
These addon Kustomizations were using wait=true, which made Flux treat transient HelmRepository fetch timeouts as addon failures even when the HelmRelease and runtime workloads were healthy. Switch the affected Kustomizations to explicit HelmRelease healthChecks so readiness reflects the actual deployed platform state instead of repository fetch flakiness.
21 lines
463 B
YAML
21 lines
463 B
YAML
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
|
kind: Kustomization
|
|
metadata:
|
|
name: addon-nfs-storage
|
|
namespace: flux-system
|
|
spec:
|
|
interval: 10m
|
|
prune: true
|
|
sourceRef:
|
|
kind: GitRepository
|
|
name: platform
|
|
path: ./infrastructure/addons/nfs-storage
|
|
wait: false
|
|
healthChecks:
|
|
- apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
name: nfs-subdir-external-provisioner
|
|
namespace: flux-system
|
|
timeout: 10m
|
|
suspend: false
|