Skip to content
On this page

Configuration

This page covers the operational tasks for managing Pipelines-as-Code configuration: viewing, editing, and applying changes to the pipelines-as-code ConfigMap.

For an overview of all configuration layers (global ConfigMap and per-repository CR), see Settings.

To view the current configuration:

kubectl get configmap pipelines-as-code -n pipelines-as-code -o yaml

For the complete reference of all configuration fields, see the ConfigMap Reference.

Applying Configuration Changes

To update the configuration:

kubectl edit configmap pipelines-as-code -n pipelines-as-code

Or apply changes from a file:

kubectl apply -f pipelines-as-code-config.yaml

Most configuration changes take effect immediately. Some settings may require a controller restart:

kubectl rollout restart deployment/pipelines-as-code-controller -n pipelines-as-code

See Also