Skip to content

Latest commit

 

History

History
81 lines (61 loc) · 1.43 KB

configuration.md

File metadata and controls

81 lines (61 loc) · 1.43 KB

multiclusterhub Configurations

This directory contains examples that cover various configurations for multiclusterhub.

Custom pull secret

spec:
  imagePullSecret: "quay-secret"

Minimum availability installation

spec:
  availabilityConfig: "Basic"

HA installation with node selector

spec:
  availabilityConfig: "High"
  nodeSelector:
      diskType: ssd

The instance is installed with High availability by default if not otherwise specified

Specify ingress SSL ciphers to support

spec:
  ingress:
    sslCiphers:
    - "ECDHE-ECDSA-AES128-GCM-SHA256"
    - "ECDHE-RSA-AES128-GCM-SHA256"

Install Cert Manager in its own namespace

spec:
  separateCertificateManagement: true

Specific image pull policy:

spec:
  overrides: true
    imagePullPolicy: "IfNotPresent"

Dev Configurations

Custom image repository

apiVersion: operator.open-cluster-management.io/v1
kind: MultiClusterHub
metadata:
  name: multiclusterhub
  namespace: open-cluster-management
  annotations:
    "mch-imageRepository": "quay.io/stolostron"

Disable install operator actions

apiVersion: operator.open-cluster-management.io/v1
kind: MultiClusterHub
metadata:
  name: multiclusterhub
  namespace: open-cluster-management
  annotations:
    "mch-pause": "true"