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
This commit provides a feature: restore - which will be helpful to
restore data from a backup.
Some part of restoring solution require kubectl binary to be installed
and configured .kube/config file as well.
With that way, we don't need to copy the restore file/dir to the pod or
create new pod with new PV or mount same PVC into new pod, which might be
rejected by some PV drivers. Also mounting local host directory
to the OpenShift cluster might be prohibited in some
deployments (especially in public deployments where user is not an admin), so
that is not a good idea to use.
Change-Id: I7c44bb18dcbd55895df30d9ee5add1d6c42a7625
Copy file name to clipboardExpand all lines: doc/operator/getting_started.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ In order to install the SF Operator on OpenShift, you will need:
14
14
1.[OLM](https://olm.operatorframework.io/) running on your cluster. For most flavors of OpenShift [this is already the case](https://docs.openshift.com/container-platform/4.13/operators/understanding/olm/olm-understanding-olm.html#olm-overview_olm-understanding-olm).
15
15
1. The community operators CatalogSource, to handle operator dependencies for SF-Operator. For most standard installations of OLM, [this CatalogSource is already installed](https://operatorhub.io/how-to-install-an-operator#How-do-I-get-Operator-Lifecycle-Manager?).
16
16
1. A valid kubeconfig file, for a user with enough permissions to create a CatalogSource and a Subscription Custom Resources, on the `olm` and `operators` namespaces respectively.
17
-
1. The [kubectl utility](https://kubernetes.io/docs/tasks/tools/#kubectl), to apply and create new resources on the OpenShift cluster.
17
+
1. The [kubectl utility](https://kubernetes.io/docs/tasks/tools/#kubectl), to apply and create new resources on the OpenShift cluster. It is also required to use `restore` functionality.
18
18
19
19
## Installing the operator
20
20
@@ -97,4 +97,4 @@ TBD
97
97
98
98
## Next steps
99
99
100
-
Your next step is to [deploy a Zuul-based CI with the operator](../deployment/getting_started.md).
100
+
Your next step is to [deploy a Zuul-based CI with the operator](../deployment/getting_started.md).
0 commit comments