By default, managed controllers are created in the same namespace as the operations center instance.
If you want to create a managed controller in a different namespace, you need to pre-populate the namespace with the appropriate resources.
-
To prepare a namespace to install a managed controller. use the following example
values.yaml
file:OperationsCenter: Enabled: false Master: Enabled: true OperationsCenterNamespace: ci (1) Agents: Enabled: true
1 Replace ci
with the actual namespace where the operations center is installed. If the operations center is located in another cluster, it can be set to the same value as the current namespace, then an operations center service account must be created for authentication. -
Use the following example to perform the installation.
export NAMESPACE=my-team (1) kubectl create namespace $NAMESPACE || true helm install ci-masters-$NAMESPACE cloudbees/cloudbees-core --namespace $NAMESPACE -f values.yaml
1 Replace my-team
with the actual namespace where the managed controllers will be created.
Controller provisioning configuration
To provision controllers in their own namespaces, each controller must use a specific sub-domain. For example, if the operations center domain is cd.example.org
and the URL is https://cd.example.org/cjoc/
, a controller dev1
should use the sub-domain dev1.cd.example.org
or dev1-cd.example.org
. It is often preferable to use the latter if using a wild card certificates for domain example.org
.
To configure each controller to use a specific sub-domain, set the 'controller URL Pattern' in the main Jenkins configuration page 'Manage Jenkins → Configure System' under 'Kubernetes controller Provisioning' advanced options. For example if the operations center domain is cd.example.org
, the 'controller URL Pattern' would be https://*-cd.example.org/*/
.
Provision controllers
The namespace for the controller resources can be configured as the default namespace for all managed controllers in the main operations center configuration screen with the 'namespace' parameter.
The namespace can also specify a specific managed controller in the controller configuration screen with the 'namespace' parameter.
Leave the namespace value empty to use the value defined by the Kubernetes endpoint. |