- Prerequisites
- Clone repository
- Building 3scale operator image
- Run 3scale Operator
- Building 3scale prometheus rules
- Bundle management
- Licenses management
- Building and pushing 3scale component images
Generated using github-markdown-toc
- operator-sdk version v1.2.0
- docker version 17.03+
- git
- go version 1.20+
- kubernetes version v1.13.0+
- oc version v4.1+
- Access to a Openshift v4.8.0+ cluster.
- A user with administrative privileges in the OpenShift cluster.
- Make sure that the
DOCKER_ORG
andDOCKER_REGISTRY
environment variables are set to the same value as your username on the container registry, and the container registry you are using.
export DOCKER_ORG=docker_hub_username
export DOCKER_REGISTRY=quay.io
git clone https://github.com/3scale/3scale-operator
cd 3scale-operator
Build the operator image
make docker-build-only IMG=$DOCKER_REGISTRY/$DOCKER_ORG/3scale-operator:myversiontag
Run operator from the command line, it will not be deployed as a pod.
- Register the 3scale-operator CRDs in the OpenShift API Server
make install
- Create a new OpenShift project (optional)
export NAMESPACE=operator-test
oc new-project $NAMESPACE
- Install the dependencies
make download
- Run operator
make run
- Build and upload custom operator image
make docker-build-only IMG=$DOCKER_REGISTRY/$DOCKER_ORG/3scale-operator:myversiontag
make operator-image-push IMG=$DOCKER_REGISTRY/$DOCKER_ORG/3scale-operator:myversiontag
- Build and upload custom operator bundle image. Changes to avoid conflicts will be made by the makefile.
make bundle-custom-build IMG=$DOCKER_REGISTRY/$DOCKER_ORG/3scale-operator:myversiontag BUNDLE_IMG=$DOCKER_REGISTRY/$DOCKER_ORG/3scale-operator-bundles:myversiontag
make bundle-image-push BUNDLE_IMG=$DOCKER_REGISTRY/$DOCKER_ORG/3scale-operator-bundles:myversiontag
- Deploy the operator in your currently configured and active cluster in $HOME/.kube/config
make bundle-run BUNDLE_IMG=$DOCKER_REGISTRY/$DOCKER_ORG/3scale-operator-bundles:myversiontag
Note: The catalogsource will be installed in the openshift-marketplace
namespace
issue. By default, cluster scoped
subscription will be created in the namespace openshift-marketplace
.
Feel free to delete the operator (from the UI OperatorHub -> Installed Operators)
and install it namespace or cluster scoped.
It will take a few minutes for the operator to become visible under the OperatorHub section of the OpenShift console Catalog. It can be easily found by filtering the provider type to Custom.
There are environment variables that may be used to aid in development. Refer to the table below for details:
Variable | Options | Type | Default | Details |
---|---|---|---|---|
THREESCALE_DEBUG | 1 or 0 |
Optional | 0 |
If 1 , sets the porta client logging to be more verbose. |
Access to a Openshift v4.8.0+ cluster required
make test
make test-unit
Access to a Openshift v4.8.0+ cluster required
make test-e2e
make prometheus-rules
Optionally, specify the namespace. By default, the namespace __NAMESPACE__
will be used.
make prometheus-rules PROMETHEUS_RULES_NAMESPACE=my-custom-namespace
make bundle-build BUNDLE_IMG=$DOCKER_REGISTRY/$DOCKER_ORG/myrepo:myversiontag
make bundle-image-push BUNDLE_IMG=$DOCKER_REGISTRY/$DOCKER_ORG/myrepo:myversiontag
NOTE: if validating an image, the image must exist in a remote registry, not just locally.
make bundle-validate-image BUNDLE_IMG=$DOCKER_REGISTRY/$DOCKER_ORG/myrepo:myversiontag
It is a requirement that a file describing all the licenses used in the product is included, so that users can examine it.
- Check licenses when dependencies change.
make licenses-check
- Update
licenses.xml
file.
make licenses.xml
When licenses check does not parse correctly licensing information, it will complain. In that case, you need to add manually license information.
There are two options: a)specify dependency license (recommended) or b)add an exception for that dependency.
- Specify dependency license:
license_finder dependencies add YOURLIBRARY --decisions-file=doc/dependency_decisions.yml LICENSE --project-path "PROJECT URL"
For instance
license_finder dependencies add k8s.io/klog --decisions-file=doc/dependency_decisions.yml "Apache 2.0" --project-path "https://github.com/kubernetes/klog"
- Adding exception for a dependency:
license_finder approval add YOURLIBRARY --decisions-file=doc/dependency_decisions.yml --why "LICENSE_TYPE LINK_TO_LICENSE"
For instance
license_finder approval add github.com/golang/glog --decisions-file=doc/dependency_decisions.yml --why "Apache 2.0 License https://github.com/golang/glog/blob/master/LICENSE"