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: content/blog/how-to-backup-and-restore-stateful-applications-on-kubernetes-using-kasten-k10-in-hpe-greenlake-for-private-cloud-enterprise.md
+31-7Lines changed: 31 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -180,9 +180,12 @@ Click *Accept Terms* after specifying your email and company name, you will b
180
180
181
181
### Deploy MySQL database
182
182
183
-
In order to show backup and restore process, [the MySQL database](https://github.com/GuopingJia/mysql-app) will be deployed as a sample stateful application to the cluster.
183
+
In order to show backup and restore process, an MySQL database from [my GitHub repo](https://github.com/GuopingJia/mysql-app) will be deployed as a sample stateful application to the cluster.
184
184
185
-
The MySQL database requires a persistent volume to store data. Here is the PVC YAML manifest files:
185
+
1. Install MySQL application
186
+
187
+
188
+
MySQL database requires a persistent volume to store data. Here is the PVC YAML manifest file:
186
189
187
190
```markdown
188
191
$ cat mysql-app/base/mysql-pvc.yaml
@@ -201,7 +204,7 @@ spec:
201
204
storage: 1Gi
202
205
```
203
206
204
-
The YAML manifest files in the folder *base* will be used to install the MySQL applicaiton using [Kustomize](https://kustomize.io/).
207
+
The YAML manifest files in the folder *base* will be used to install the MySQL application using [Kustomize](https://kustomize.io/).
205
208
206
209
```markdown
207
210
$ tree mysql-app/base
@@ -250,7 +253,7 @@ NAME DESIRED CURRENT READY AGE
250
253
replicaset.apps/mysql-6974b58d48 1 1 1 24s
251
254
```
252
255
253
-
You can check the PVC and the PV created as part of application deployment:
256
+
You can check the PV and the PVC created as part of application deployment:
254
257
255
258
```markdown
256
259
$ kubectl get persistentvolumes
@@ -263,6 +266,8 @@ NAME STATUS VOLUME CAPACITY ACCES
0 commit comments