forked from RamenDR/ramen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e2e: describes configs used in config.yaml.sample
* Added comments for different options except for pvc properties(self explaining) * Shows sample clusters, can be uncommented out to make it easy to configure kubeconfig paths. Signed-off-by: Parikshith <[email protected]>
- Loading branch information
1 parent
301dabf
commit fccaf70
Showing
1 changed file
with
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,35 @@ | ||
--- | ||
# Configuration file for RamenDR E2E testing on Regional DR. | ||
|
||
# Name of the channel used for the Channel CR. This channel is used by | ||
# OCM to pull the application from the specified Git repository. | ||
channelname: "ramen-gitops" | ||
|
||
# Namespace where the channel CR will be created. | ||
channelnamespace: "ramen-samples" | ||
|
||
# Git repository URL containing application manifests to be deployed on | ||
# the clusters. | ||
giturl: "https://github.com/RamenDR/ocm-ramen-samples.git" | ||
|
||
# List of PVC specifications for workloads. | ||
# These define storage configurations, such as 'storageClassName' and | ||
# 'accessModes', and are used to kustomize workloads. | ||
pvcspecs: | ||
- name: rbd | ||
storageclassname: rook-ceph-block | ||
accessmodes: ReadWriteOnce | ||
- name: cephfs | ||
storageclassname: rook-cephfs | ||
accessmodes: ReadWriteMany | ||
|
||
# Sample cluster configurations: | ||
# Uncomment and edit the following lines to provide the kubeconfig paths | ||
# for your test clusters. | ||
# Clusters: | ||
# c1: | ||
# kubeconfigpath: /path/to/kubeconfig/c1 | ||
# c2: | ||
# kubeconfigpath: /path/to/kubeconfig/c2 | ||
# hub: | ||
# kubeconfigpath: /path/to/kubeconfig/hub |