Skip to content
sugarraysam edited this page Jan 5, 2022 · 4 revisions

Problematic configuration:

1. targetNamespace is not included in the list of namespaces.

# addon.yaml
operatorName: rhods-operator
targetNamespace: redhat-other-operator
namespaces:
  -redhat-random-operator

targetNamespace should be included in the list of namespaces

2. namespaces contains a namespace that doesn't start with redhat-*

# addon.yaml
operatorName: rhods-operator
targetNamespace: redhat-other-operator
namespaces:
  - redhat-random-operator
  - invalid-namespace

All the namespaces in namespaces should start with redhat-*

Correct configuration:

# addon.yaml
operatorName: rhods-operator
targetNamespace: redhat-other-operator
namespaces:
  - redhat-random-operator
  - redhat-other-operator
  • targetNamespace is included in namespaces.
  • All the namespaces in namespaces start with redhat-*.
Clone this wiki locally