Conductor Documentation

GEO Redundancy support for WRC

Overview

Geo-redundancy refers to the practice of:

Implementation details for Studio Conductor

WRC GEO-Redundancy WRC GEO-Redundancy Implementation

Primary Configuration Details for Postgresql

The following example provides configuration details for Postgresql. These values need to be added or updated in the override values .yaml file. This includes:


postgresql:
  primary:
    service:
      ports:
        postgresql: 5432
      type: NodePort
      nodePorts:
        postgresql: <nodeport - range 30000-32767> # Port to expose for PrimaryCluster Machine
    pgHbaConfiguration: |-
      host         all             all        127.0.0.1/32     md5 # Required for Local ip
      host     replication       postgres     x.x.x.x/x        md5 # Provide Machine Specific IP range for pod/service
      host     replication       postgres     x.x.x.x/x        md5 # Provide the Second Machine details with subnet
      hostssl  replication     postgres       x.x.x.x/x        md5 # Provide the Second Machine details with subnet 
      host     cloudify_db     cloudify       ::1/128          md5
      hostssl   all             all           0.0.0.0/0        reject # Required to reject all the connection request except the ones which is configured in the config
      local        all             all                         trust
  architecture: replication
  replication:
    synchronousCommit: "on"
    numSynchronousReplicas: 1
    slaveReplicas: 1
  readReplicas:
    replicaCount: 5
  tls:
    enabled: false
    autoGenerated: false
    preferServerCiphers: true
    certificatesSecret: ""  # Provide secret name For e.g postgres-certs
    certFilename: "" # Provide certificate filename for e.g tls.crt
    certKeyFilename: "" # Provide certkey filename for e.g tls.key
    certCAFilename: "" # Provide cacert filename for e.g root.crt

# all the db-using services need to be instructed to connect to the primary
db:
  host: "postgresql-primary"

Secondary Configuration Details for Postgresql

The following example provides secondary configuration details for Postgresql. These values need to be added or updated in the override values .yaml file. This includes:

postgresql:
  primary:
    service:
      ports:
        postgresql: 5432
      type: NodePort
      nodePorts:
        postgresql: <nodeport - range 30000-32767> # Port to expose for Secondary Cluster Machine
    standby:
      enabled: true
      primaryHost: <Primary Host IP> # IP Address of the Primary Cluster Machine
      primaryPort: <Primary Host Nodeport> # Exposed Port of the Primary Cluster Machine
    # We might to have provide multiple entries for pghba configuration. 
    pgHbaConfiguration: |-
      host         all             all        127.0.0.1/32     md5 # Required for Local ip
      host     replication       postgres     x.x.x.x/x        md5 # Provide Machine Specific IP range for pod/service
      host     replication       postgres     x.x.x.x/x        md5 # Provide the Second Machine details with subnet
      hostssl  replication     postgres       x.x.x.x/x        md5 # Provide the Second Machine details with subnet 
      host     cloudify_db     cloudify       ::1/128          md5
      hostssl   all             all           0.0.0.0/0        reject # Required to reject all the connection request except the ones which is configured in the config
      local        all             all                         trust

  architecture: replication
  replication:
    synchronousCommit: "on"
    numSynchronousReplicas: 1
    slaveReplicas: 1
  readReplicas:
    replicaCount: 2
  tls:
    enabled: false
    autoGenerated: false
    preferServerCiphers: true
    certificatesSecret: ""  # Provide secret name For e.g postgres-certs
    certFilename: "" # Provide certificate filename for e.g tls.crt
    certKeyFilename: "" # Provide certkey filename for e.g tls.key
    certCAFilename: "" # Provide cacert filename for e.g root.crt
    

# all the db-using services need to be instructed to connect to the primary
db:
  host: "postgresql-primary"

Primary Configuration Details for Seaweedfs

The following example provides configuration details for Seaweedfs:

filer:
    replicaCount: 1
    service:
      type: NodePort
      nodePorts:
        http: <PortNumber Range 30000-32767>
        grpc: <PortNumber Range 30000-32767>
  security:
    enabled: false
    mTLS:
      enabled: false
      ca: ""
      existingCASecret: "<Secret Name>"
      master:
        cert: ""
        key: ""
        existingSecret: "<Secret Name>"
      volume:
        cert: ""
        key: ""
        existingSecret: "<Secret Name>"
      filer:
        cert: ""
        key: ""
        existingSecret: "<Secret Name>"
      client:
        cert: ""
        key: ""
        existingSecret: "<Secret Name>"

Custom failover Geo-Redundancy Config

To implement the failover and auto switch over, a configuration job is available that performs the following tasks:

A sample entry for the geo-redundancy custom failover job is shown below. In this example:


geo_redundancy_custom_failover:
  enabled: false
  image: (registry-link)/geo-redundancy-custom-failover
  env:
     primaryHostAddress: "<PrimaryHostIP>"
     primaryHostPort: "<PrimaryPort>"
     secondaryHostAddress: "<SecondaryHostIP>"
     secondaryHostPort: "<SecondaryPort>"
     maxRetries: "5"
  configmapValues: |
        {
         "original_role": <Role "Primary" or "Secondary">,
         "current_role" : <Role "Primary" or "Secondary">
        }