-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcluster-config.example.json
More file actions
56 lines (53 loc) · 1.97 KB
/
cluster-config.example.json
File metadata and controls
56 lines (53 loc) · 1.97 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
49
50
51
52
53
54
55
56
{
"_comment": "Copy this file to cluster-config.json (or prod.json, staging.json, etc.) and fill in your values. Do NOT commit files containing real credentials. Enforce/Remediate runs fail closed when unsafe skip flags are set without BreakGlass=true.",
"ClusterName": "ProdCluster",
"Nodes": ["NODE1", "NODE2"],
"ClusterIP": "10.10.10.10",
"WitnessType": "Disk",
"WitnessDiskName": "Cluster Disk 3",
"Mode": "Audit",
"ReportsPath": ".\\Reports",
"LogPath": ".\\Logs",
"SkipPreFlight": false,
"SkipNodeValidation": false,
"SkipClusterValidation": false,
"BreakGlass": false,
"PlanOnly": false,
"EmitTelemetry": true,
"SkipArtifactPersistence": false,
"RetainArtifactCount": 30,
"_witnessComment": "Fill in ONLY the block that matches your WitnessType.",
"CloudWitnessStorageAccount": "",
"CloudWitnessStorageKey": "",
"CloudWitnessStorageKeySecretName": "",
"FileShareWitnessPath": "",
"_envComment": "Environments block: key names are passed via -Environment parameter.",
"Environments": {
"Dev": {
"ClusterName": "DevCluster",
"Nodes": ["DEVNODE1"],
"ClusterIP": "192.168.1.10",
"WitnessType": "None",
"Mode": "Audit",
"PlanOnly": true
},
"Staging": {
"ClusterName": "StagingCluster",
"Nodes": ["STGNODE1", "STGNODE2"],
"ClusterIP": "10.20.0.10",
"WitnessType": "Share",
"FileShareWitnessPath": "\\\\fileserver\\witness-staging",
"Mode": "Enforce"
},
"Prod": {
"ClusterName": "ProdCluster",
"Nodes": ["NODE1", "NODE2", "NODE3"],
"ClusterIP": "10.10.10.10",
"WitnessType": "Cloud",
"CloudWitnessStorageAccount": "prodstorageacct",
"CloudWitnessStorageKeySecretName": "ProdCloudWitnessKey",
"Mode": "Enforce",
"EmitTelemetry": true
}
}
}