Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions k8s/clusters/local/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,24 @@ patches:
namespace: flux-system
spec:
timeout: 12m
# The vault-config Job co-located in the infrastructure layer (see
# bases/infrastructure/vault-config/job.yaml) bootstraps OpenBao —
# KV engine, Kubernetes auth, policies, roles — and is depended on
# intra-Kustomization by the openbao ClusterSecretStore consumers
# (ExternalSecrets, vault-seed PushSecrets). On cold Docker CI runners
# the Job legitimately takes longer than the 3m base health-check
# budget, which caused system-test flakes (see PR #1636 run
# 26603473269: `[Job/openbao/vault-config status: 'InProgress']
# (HealthCheckFailed)`). The Job's own activeDeadlineSeconds is 3600s.
# 20m mirrors the prod patch value for the same Kustomization.
- patch: |
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: infrastructure
namespace: flux-system
spec:
timeout: 20m

replacements:
# Point apps / infrastructure / infrastructure-controllers Flux Kustomizations
Expand Down
Loading