-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvalues-hub.yaml
More file actions
48 lines (42 loc) · 2.26 KB
/
values-hub.yaml
File metadata and controls
48 lines (42 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
# =============================================================================
# Telco Hub Pattern - Hub Cluster Configuration
# =============================================================================
# This file defines the hub cluster configuration for the telco-hub pattern.
# The hub cluster serves as the central management point for the entire telco
# infrastructure, providing GitOps, cluster management, and policy enforcement.
#
# =============================================================================
# HUB CLUSTER GROUP CONFIGURATION
# =============================================================================
clusterGroup:
# Cluster identification and role
name: hub # Name of this cluster group
isHubCluster: true # Designates this as the hub/management cluster
# Namespaces for telco-hub pattern deployment and policy management
namespaces:
- telco-hub-pattern # Namespace for the third ArgoCD application hosting cluster and policies management
- hub-policies # Namespace for ACM policies in the Hub cluster
# Management of below resource is delegated to the telco-hub kustomization app
# in order to prevent systematic conflicts between the Pattern operator and
# the Telco Hub Reference Design Specifications.
subscriptions: {}
projects: {}
# =============================================================================
# TELCO HUB APPLICATION
# =============================================================================
applications:
telco-hub:
name: hub-config
kustomize: true # Use Kustomize for manifest processing
path: kustomize/overlays/telco-hub
# ArgoCD synchronization behavior configuration
syncPolicy:
automated:
prune: true # Remove resources not in Git
retry:
limit: 6 # Maximum number of sync retries (adjusted for ~20m total)
backoff:
duration: 15s # Initial retry delay
factor: 2 # Backoff multiplier
maxDuration: 15m # Maximum retry delay (increased to 15m)