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 authored and nirs committed Jan 28, 2025
1 parent 301dabf commit fccaf70
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. 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

0 comments on commit fccaf70

Please sign in to comment.