|
120 | 120 | # Default: "false"
|
121 | 121 | #
|
122 | 122 | # OPERATOR_WATCH_NAMESPACE
|
123 |
| -# The namespace in which the operator looks for the Kiali CR. |
124 |
| -# Default: The configured OPERATOR_NAMESPACE |
| 123 | +# The namespace in which the operator looks for a Kiali CR. When a Kiali CR is touched (i.e. created, |
| 124 | +# modified, or deleted) in a watched namespace, the operator will perform all necessary tasks in order |
| 125 | +# to deploy Kiali with the configuration specified in the Kiali CR (this is called "reconciling"). |
| 126 | +# If specified as "**" (or, alternatively, literally two double-quotes "") then the operator will |
| 127 | +# watch all namespaces. Note that if you specify a specific watch namespace, and a user changes |
| 128 | +# some of the Kiali resources that exist outside of that watched namespace (e.g. deletes or modifies |
| 129 | +# the Kiali Deployment) the operator will be unable to reconcile those changes (e.g. it will not |
| 130 | +# be able to redeploy the Deployment resource) unless and until the Kiali CR is touched again. |
| 131 | +# Default: "" |
125 | 132 | #
|
126 | 133 | # -----------
|
127 | 134 | # Environment variables that affect Kiali installation:
|
@@ -428,8 +435,15 @@ Valid options for the operator installation:
|
428 | 435 | operator will be unable to do so.
|
429 | 436 | Default: "false"
|
430 | 437 | -own|--operator-watch-namespace
|
431 |
| - The namespace in which the operator looks for the Kiali CR. |
432 |
| - Default: The configured operator namespace (-on) |
| 438 | + The namespace in which the operator looks for a Kiali CR. When a Kiali CR is touched (i.e. created, |
| 439 | + modified, or deleted) in a watched namespace, the operator will perform all necessary tasks in order |
| 440 | + to deploy Kiali with the configuration specified in the Kiali CR (this is called "reconciling"). |
| 441 | + If specified as "**" (or, alternatively, literally two double-quotes "") then the operator will |
| 442 | + watch all namespaces. Note that if you specify a specific watch namespace, and a user changes |
| 443 | + some of the Kiali resources that exist outside of that watched namespace (e.g. deletes or modifies |
| 444 | + the Kiali Deployment) the operator will be unable to reconcile those changes (e.g. it will not |
| 445 | + be able to redeploy the Deployment resource) unless and until the Kiali CR is touched again. |
| 446 | + Default: "" |
433 | 447 |
|
434 | 448 | Valid options for Kiali installation (if Kiali is to be installed):
|
435 | 449 | -an|--accessible-namespaces
|
@@ -569,7 +583,7 @@ export OPERATOR_NAMESPACE="${OPERATOR_NAMESPACE:-kiali-operator}"
|
569 | 583 | export OPERATOR_SKIP_WAIT="${OPERATOR_SKIP_WAIT:-false}"
|
570 | 584 | export OPERATOR_VERSION_LABEL="${OPERATOR_VERSION_LABEL:-$OPERATOR_IMAGE_VERSION}"
|
571 | 585 | export OPERATOR_VIEW_ONLY_MODE="${OPERATOR_VIEW_ONLY_MODE:-false}"
|
572 |
| -export OPERATOR_WATCH_NAMESPACE="${OPERATOR_WATCH_NAMESPACE:-$OPERATOR_NAMESPACE}" |
| 586 | +export OPERATOR_WATCH_NAMESPACE="${OPERATOR_WATCH_NAMESPACE:-\"\"}" |
573 | 587 | export OPERATOR_ROLE_CLUSTERROLEBINDINGS="# The operator does not have permission to manage cluster role bindings"
|
574 | 588 | export OPERATOR_ROLE_CLUSTERROLES="# The operator does not have permission to manage cluster roles"
|
575 | 589 | export OPERATOR_ROLE_CREATE="# The operator does not have permission to create"
|
|
0 commit comments