Skip to content

Commit

Permalink
e2e: describes configs used in config.yaml.sample
Browse files Browse the repository at this point in the history
* 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
parikshithb committed Jan 24, 2025
1 parent acc70c7 commit 1500172
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions e2e/config.yaml.sample
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 (utilized by Subscription CRs).
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 (commented out by default):
# 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

0 comments on commit 1500172

Please sign in to comment.