-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This environment can be used to debug the volsync addon. We add the minikube volumesnapshots and csi-hostpath-driver addons[1], so we can careate sanpshots with minikube builtin hostpath storage. With both addons we can create a busybox app with `csi-hostpath-sc` storage class, and replicate it using `volsync`. [1] https://minikube.sigs.k8s.io/docs/tutorials/volume_snapshots_and_csi/ Signed-off-by: Nir Soffer <nsoffer@redhat.com>
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# SPDX-FileCopyrightText: The RamenDR authors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# Enviroment for testing volsync deployment. | ||
--- | ||
name: volsync | ||
|
||
templates: | ||
- name: cluster | ||
driver: kvm2 | ||
container_runtime: containerd | ||
network: default | ||
memory: 4g | ||
disk_size: 50g | ||
addons: | ||
- volumesnapshots | ||
- csi-hostpath-driver | ||
workers: | ||
- addons: | ||
- name: volsync | ||
|
||
profiles: | ||
- name: dr1 | ||
template: cluster | ||
- name: dr2 | ||
template: cluster |