Skip to content

Latest commit

 

History

History
83 lines (62 loc) · 1.53 KB

configuration.md

File metadata and controls

83 lines (62 loc) · 1.53 KB

MultiClusterHub Configurations

This directory contains examples that cover various configurations for MultiClusterHub.

Configurations

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

(Deprecated) Specify ingress SSL ciphers to support

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

(Deprecated) 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:
    "installer.open-cluster-management.io/image-repository": "quay.io/stolostron"

Disable install operator actions

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