Skip to content
Discussion options

You must be logged in to vote

In the ceph-csi-operator Helm chart:

  • The keys in monitors are arbitrary — you can name them anything.
  • The values must be host:port, typically the monitor IPs or hostnames with the v1 port (6789).
  • IPv6 addresses should be quoted, e.g., "[1:2:3::4]:6789".
  • Hostnames are supported, not just raw IPs.

Example:

cephConnections:
  monitors:
    mon1: "10.0.0.1:6789"
    mon2: "10.0.0.2:6789"
    mon3: "[fd00::1]:6789"

Notes:

  • v1 (port 6789) is safest and widely compatible.
  • v2 (port 3300) works on newer Ceph/CSI versions, but mixed v1/v2 in Helm values is not fully documented.
  • Even though monitors is defined as a map, it is effectively treated like a list by the operator.

This configuration e…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@Tarasmon
Comment options

@codeninja115
Comment options

Answer selected by Tarasmon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants