You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: backup_and_restore/application_backup_and_restore/oadp-release-notes.adoc
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@ toc::[]
9
9
10
10
The release notes for OpenShift API for Data Protection (OADP) describe new features and enhancements, deprecated features, product recommendations, known issues, and resolved issues.
Copy file name to clipboardExpand all lines: modules/oadp-release-notes-1-2-0.adoc
+137Lines changed: 137 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,3 +43,140 @@ The HTTP/2 protocol is susceptible to a denial of service attack because request
43
43
It is advised to upgrade to OADP 1.2.3, which resolves this issue.
44
44
45
45
For more information, see link:https://access.redhat.com/security/cve/cve-2023-39325[CVE-2023-39325 (Rapid Reset Attack)].
46
+
47
+
[id="Upgrade-notes-1-2-0_{context}"]
48
+
== Upgrade notes
49
+
50
+
[NOTE]
51
+
====
52
+
Always upgrade to next minor version, *do not* skip versions. To update to a later version, upgrade only one channel at a time. For example: to upgrade from OpenShift API for Data Protection (OADP) 1.1 to 1.3, upgrade first to 1.2, then to 1.3.
53
+
====
54
+
55
+
[id="changes-oadp-1-1-to-1-2_{context}"]
56
+
=== Changes from OADP 1.1 to 1.2
57
+
58
+
The Velero server was updated from version 1.9 to 1.11
59
+
60
+
In OpenShift API for Data Protection (OADP) 1.2 the DataProtectionApplication (DPA) configuration `spec.configuration.velero.args` has changed:
61
+
62
+
* The `default-volumes-to-restic` field was renamed `default-volumes-to-fs-backup`, if you use `spec.velero`, you need to add it again with the new name to your DPA, after upgrading the OADP.
63
+
64
+
* The `default-restic-prune-frequency` field was renamed `default-repo-maintain-frequency`, if you use `spec.velero`, you need to add it again with the new name to your DPA, after upgrading the OADP.
65
+
66
+
* The `restic-timeout` field was renamed `fs-backup-timeout`, if you are use `spec.velero`, you need to add it again with the new name to your DPA, after upgrading the OADP.
67
+
68
+
* The `restic` DaemonSet was renamed `node-agent`. OADP will automatically update the name of the DaemonSet.
69
+
70
+
* The CustomResourceDefinition `resticrepositories.velero.io` was renamed `backuprepositories.velero.io`.
71
+
72
+
** The CustomResourceDefinition `resticrepositories.velero.io` can be removed from the cluster.
Save your current DataProtectionApplication (DPA) CustomResource configuration and verify that you saved the values.
81
+
82
+
.Example
83
+
[source,terminal]
84
+
----
85
+
oc get dpa -n openshift-adp -o yaml > dpa.orig.backup
86
+
----
87
+
88
+
[id="upgrading-dpa-operator-1-2-0_{context}"]
89
+
==== Upgrading the OADP Operator
90
+
91
+
* Change your subscription channel for the OADP Operator from `stable-1.1` to `stable-1.2`.
92
+
* Allow time for the Operator and containers to update and restart.
93
+
94
+
For general operator upgrade instructions review the https://docs.openshift.com/container-platform/4.14/operators/admin/olm-upgrading-operators.html[OpenShift documentation].
95
+
96
+
[id="converting-dpa-1-2-0_{context}"]
97
+
==== Converting DPA to the new version
98
+
99
+
If you use fields that were updated in `spec.configuration.velero.args`, you need to update the new names.
100
+
101
+
.Example
102
+
[source,yaml]
103
+
----
104
+
spec:
105
+
configuration:
106
+
velero:
107
+
args:
108
+
- default-volumes-to-restic: true
109
+
+ default-volumes-to-fs-backup: true
110
+
- default-restic-prune-frequency: 6000
111
+
+ default-repo-maintain-frequency: 6000
112
+
- restic-timeout: 600
113
+
+ fs-backup-timeout: 600
114
+
# ...
115
+
----
116
+
Wait for the DPA to reconcile successfully.
117
+
118
+
[id="verifying-upgrade-1-2-0_{context}"]
119
+
==== Verifying the upgrade
120
+
121
+
////
122
+
After the 1.2 and earlier DPA is merged this sentence and xref will be used instead of the content below.
123
+
* Follow the instructions to xref:../../../oadp-installing-dpa-1-2-and-earlier.adoc#verifying-oadp-installation-1-2_installing-oadp-aws[verify the installation].
124
+
////
125
+
126
+
. Verify the installation by viewing the OADP resources by running the following command:
0 commit comments