This operator is in charge of managing the settings of kcp workspaces used for Pipeline Service.
Pipeline Service offers an infrastructure to easily run Tekton Pipelines in a secured and isolated way. Therefore some restrictions need to be set on the workspaces that can consume the Pipeline Service infrastructure.
- Quotas limit the amount of compute resources that can be consumed.
- NetworkPolicies restrict the access granted to the pods running the pipeline tasks to support hermetic builds.
Here is a ~5 minutes demo of the operator.
Build and push your image to the location specified by IMG
:
make docker-build docker-push IMG=<some-registry>/settings-operator:tag
The parameter specifying the workspace where the APIExport is located needs to be amended in the controller deployment patch to match the environment.
Deploy the operator to kcp with the image specified by IMG
:
make deploy IMG=<some-registry>/settings-operator:tag
To delete the resources from kcp:
make uninstall
Undeploy the operator from kcp:
make undeploy
See CONTRIBUTING.md
This project aims to follow the Kubernetes Operator pattern
It uses Controllers which provides a reconcile function responsible for synchronizing resources until the desired state is reached.
- Install the required resources into kcp:
make install
- Run the operator (this will run in the foreground, so switch to a new terminal if you want to leave it running):
make run ARGS="-v=6 --zap-log-level=6 --zap-devel=true --config=config/manager/controller_manager_config_test.yaml --api-export-name=settings-configuration.pipeline-service.io --api-export-workspace=<installation-ws>"
NOTE: You can also run this in one step by running: make install run
Here is an example of a launch configuration for VSCode
{
// TODO: the kubeconfig path needs to be updated to point to the file
// in the local environment
"version": "0.2.0",
"configurations": [
{
"type": "go",
"request": "launch",
"name": "Debug App",
"program": "${workspaceFolder}/main.go",
"args": [
"--api-export-name", "settings-configuration.pipeline-service.io"
"--api-export-workspace","root:pipeline-service:management"
"--config", "config/manager/controller_manager_config_test.yaml"
"--zap-log-level", "6"
"--zap-devel", "true"
"-v", "6"
],
"env": {
"KUBECONFIG":"/tmp/kcp-runtime/.kcp/admin.kubeconfig"
},
}
]
}
If you are editing the API definitions, regenerate the manifests using:
make manifests apiresourceschemas
NOTE: Run make --help
for more information on all potential make
targets
More information can be found via the Kubebuilder Documentation
Copyright 2022.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.