forked from open-cluster-management-io/policy-collection
-
Notifications
You must be signed in to change notification settings - Fork 31
/
oadp-hdr-app-restore.yaml
189 lines (189 loc) · 7.48 KB
/
oadp-hdr-app-restore.yaml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#
# This policy creates a velero restore resource to all managed clusters
# with a label "acm-app-restore=<backup-name>". The restore resource is used to restore applications resources and PVs
# from the <backup-name> specified with this label.
#
# Create this policy on the hub managing clusters where you plan to restore a backup created with the oadp-hdr-app-backup policy.
# This policy depends on the oadp-hdr-app-install policy so the install policy must be successfully placed before the restore policy executes.
#
# Note that it is set to enforce by default.
#
apiVersion: policy.open-cluster-management.io/v1
kind: Policy
metadata:
name: oadp-hdr-app-restore
annotations:
policy.open-cluster-management.io/categories: PR.IP Information Protection Processes and Procedures
policy.open-cluster-management.io/controls: PR.IP-4 Backups of information are conducted maintained and tested
policy.open-cluster-management.io/standards: NIST-CSF
spec:
dependencies:
- apiVersion: policy.open-cluster-management.io/v1
compliance: Compliant
kind: Policy
name: oadp-hdr-app-install
disabled: false
policy-templates:
- objectDefinition:
apiVersion: policy.open-cluster-management.io/v1
kind: ConfigurationPolicy
metadata:
name: create-storage-class-map
spec:
object-templates-raw: |
{{hub with $configMap := (lookup "v1" "ConfigMap" "" "hdr-app-configmap") hub}}
- complianceType: musthave
objectDefinition:
apiVersion: v1
kind: ConfigMap
metadata:
name: '{{hub $configMap.data.restoreStorageConfigName hub}}'
namespace: '{{hub $configMap.data.backupNS hub}}'
labels:
velero.io/plugin-config: ""
velero.io/change-storage-class: RestoreItemAction
data: '{{hub $configMap.data.restoreStorageConfigMappings | toLiteral hub}}'
{{hub end hub}}
remediationAction: enforce
severity: high
- objectDefinition:
apiVersion: policy.open-cluster-management.io/v1
kind: ConfigurationPolicy
metadata:
name: create-restore-resource
spec:
object-templates-raw: |
{{hub with $configMap := (lookup "v1" "ConfigMap" "" "hdr-app-configmap") hub}}
- complianceType: musthave
objectDefinition:
apiVersion: velero.io/v1
kind: Restore
metadata:
name: 'restore-{{ fromClusterClaim "acm-app-restore" }}'
namespace: '{{hub $configMap.data.backupNS hub}}'
labels:
cluster-id: '{{ fromClusterClaim "id.openshift.io" }}'
cluster-name: '{{ fromClusterClaim "name" }}'
spec:
existingResourcePolicy: update
backupName: '{{ fromClusterClaim "acm-app-restore" }}'
excludedNamespaces: '{{hub $configMap.data.restoreNSToExcludeFromRestore | toLiteral hub}}'
restorePVs: '{{hub $configMap.data.restoreRestorePVs | toBool hub}}'
{{hub end hub}}
remediationAction: enforce
pruneObjectBehavior: DeleteIfCreated
severity: high
- objectDefinition:
apiVersion: policy.open-cluster-management.io/v1
kind: ConfigurationPolicy
metadata:
name: check-restore-failed
spec:
object-templates-raw: |
- complianceType: mustnothave
objectDefinition:
apiVersion: velero.io/v1
kind: Restore
metadata:
namespace: '{{hub (lookup "v1" "ConfigMap" "" "hdr-app-configmap").data.backupNS hub}}'
spec:
backupName: '{{ fromClusterClaim "acm-app-restore" }}'
status:
phase: Failed
remediationAction: inform
severity: high
- objectDefinition:
apiVersion: policy.open-cluster-management.io/v1
kind: ConfigurationPolicy
metadata:
name: check-restore-partially-failed
spec:
object-templates-raw: |
- complianceType: mustnothave
objectDefinition:
apiVersion: velero.io/v1
kind: Restore
metadata:
namespace: '{{hub (lookup "v1" "ConfigMap" "" "hdr-app-configmap").data.backupNS hub}}'
spec:
backupName: '{{ fromClusterClaim "acm-app-restore" }}'
status:
phase: PartiallyFailed
remediationAction: inform
severity: high
- objectDefinition:
apiVersion: policy.open-cluster-management.io/v1
kind: ConfigurationPolicy
metadata:
name: check-restore-failed-validation
spec:
object-templates-raw: |
- complianceType: mustnothave
objectDefinition:
apiVersion: velero.io/v1
kind: Restore
metadata:
namespace: '{{hub (lookup "v1" "ConfigMap" "" "hdr-app-configmap").data.backupNS hub}}'
spec:
backupName: '{{ fromClusterClaim "acm-app-restore" }}'
status:
phase: FailedValidation
remediationAction: inform
severity: high
- objectDefinition:
apiVersion: policy.open-cluster-management.io/v1
kind: ConfigurationPolicy
metadata:
name: check-restore-in-progress
spec:
object-templates-raw: |
- complianceType: mustnothave
objectDefinition:
apiVersion: velero.io/v1
kind: Restore
metadata:
namespace: '{{hub (lookup "v1" "ConfigMap" "" "hdr-app-configmap").data.backupNS hub}}'
spec:
backupName: '{{ fromClusterClaim "acm-app-restore" }}'
status:
phase: InProgress
remediationAction: inform
severity: low
- objectDefinition:
apiVersion: policy.open-cluster-management.io/v1
kind: ConfigurationPolicy
metadata:
name: check-restore-no-status
spec:
object-templates-raw: |
- complianceType: mustnothave
objectDefinition:
apiVersion: velero.io/v1
kind: Restore
metadata:
namespace: '{{hub (lookup "v1" "ConfigMap" "" "hdr-app-configmap").data.backupNS hub}}'
spec:
backupName: '{{ fromClusterClaim "acm-app-restore" }}'
status:
phase: ''
remediationAction: inform
severity: low
- objectDefinition:
apiVersion: policy.open-cluster-management.io/v1
kind: ConfigurationPolicy
metadata:
name: check-restore-completed
spec:
object-templates-raw: |
- complianceType: musthave
objectDefinition:
apiVersion: velero.io/v1
kind: Restore
metadata:
namespace: '{{hub (lookup "v1" "ConfigMap" "" "hdr-app-configmap").data.backupNS hub}}'
spec:
backupName: '{{ fromClusterClaim "acm-app-restore" }}'
status:
phase: Completed
remediationAction: inform
severity: low