-
Notifications
You must be signed in to change notification settings - Fork 12
AM0008
sugarraysam edited this page Jan 5, 2022
·
4 revisions
1. targetNamespace is not included in the list of namespaces.
# addon.yaml
operatorName: rhods-operator
targetNamespace: redhat-other-operator
namespaces:
-redhat-random-operatortargetNamespace 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-namespaceAll the namespaces in namespaces should start with redhat-*
# addon.yaml
operatorName: rhods-operator
targetNamespace: redhat-other-operator
namespaces:
- redhat-random-operator
- redhat-other-operator-
targetNamespaceis included innamespaces. - All the namespaces in
namespacesstart withredhat-*.