settings-controller

command module
v0.0.0-...-f5423bb Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 28, 2022 License: Apache-2.0 Imports: 19 Imported by: 0

README

Pipeline Service Settings Operator

This operator is in charge of managing the settings of kcp workspaces used for Pipeline Service.

Description

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. asciicast

Getting Started

Building the image

Build and push your image to the location specified by IMG:

make docker-build docker-push IMG=<some-registry>/settings-operator:tag
Deploying to kcp

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
Uninstalling resources

To delete the resources from kcp:

make uninstall
Undeploying the operator

Undeploy the operator from kcp:

make undeploy

Contributing

See CONTRIBUTING.md

How it works

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.

Test It Out
  1. Install the required resources into kcp:
make install
  1. 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"
            },
        }

    ]
}
Modifying the API definitions

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

License

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.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
api
v1alpha1
Package v1alpha1 contains API Schema definitions for the configuration v1alpha1 API group +kubebuilder:object:generate=true +groupName=configuration.pipeline-service.io
Package v1alpha1 contains API Schema definitions for the configuration v1alpha1 API group +kubebuilder:object:generate=true +groupName=configuration.pipeline-service.io

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL