Skip to content

Latest commit

 

History

History
186 lines (123 loc) · 7.5 KB

developers.adoc

File metadata and controls

186 lines (123 loc) · 7.5 KB

Developer’s Guide

We love contributions!

The project is written in go and contains some parts written in Java for the integration runtime Camel K is built on top of Kubernetes through Custom Resource Definitions. The Operator SDK is used to manage the lifecycle of those custom resources.

Requirements

In order to build the project, you need to comply with the following requirements:

  • Go version 1.10+: needed to compile and test the project. Refer to the Go website for the installation.

  • Dep version 0.5.0: for managing dependencies. You can find installation instructions in the dep GitHub repository.

  • Operator SDK v0.0.7+: used to build the operator and the Docker images. Instructions in the Operator SDK website (binary downloads available in the release page).

  • GNU Make: used to define composite build actions. This should be already installed or available as package if you have a good OS (https://www.gnu.org/software/make/).

Running checks

Checks rely on golangci-lint being installed, to install it look at the Local Installation instructions.

You can run checks via make lint or you can install a GIT pre-commit hook and have the checks run via pre-commit; then make sure to install the pre-commit hooks after installing pre-commit by running

$ pre-commit install

Checking Out the Sources

You can create a fork of this project from Github, then clone your fork with the git command line tool.

You need to put the project in your $GOPATH (refer to Go documentation for information). So, make sure that the root of the github repo is in the path:

$GOPATH/src/github.com/apache/camel-k/

Structure

This is a high level overview of the project structure:

Table 1. Structure
Path Content

/cmd

Contains the entry points (the main functions) for the camel-k binary and the kamel client tool.

/build

Contains scripts used during make operations for building the project.

/deploy

Contains Kubernetes resource files that are used by the kamel client during installation. The /deploy/resources.go file is kept in sync with the content of the directory (make build-embed-resources), so that resources can be used from within the go code.

/docs

Contains this documentation.

/pkg

This is where the code resides. The code is divided in multiple subpackages.

/runtime

The Java runtime code that is used inside the integration Docker containers.

/test

Include integration tests to ensure that the software interacts correctly with Kubernetes and OpenShift.

/tmp

Scripts and Docker configuration files used by the operator-sdk.

/vendor

Project dependencies (not staged in git).

/version

Contains the global version of the project.

Building

Go dependencies in the vendor directory are not included when you clone the project.

Before compiling the source code, you need to sync your local vendor directory with the project dependencies, using the following command:

make dep

The make dep command runs dep ensure -v under the hood, so make sure that dep is properly installed.

To build the whole project you now need to run:

make

This execute a full build of both the Java and Go code. If you need to build the components separately you can execute:

  • make build-operator: to build the operator binary only.

  • make build-kamel: to build the kamel client tool only.

  • make build-runtime: to build the Java-based runtime code only.

After a successful build, if you’re connected to a Docker daemon, you can build the operator Docker image by running:

make images

Testing

Unit tests are executed automatically as part of the build. They use the standard go testing framework.

Integration tests (aimed at ensuring that the code integrates correctly with Kubernetes and OpenShift), need special care.

The convention used in this repo is to name unit tests xxx_test.go, and name integration tests yyy_integration_test.go. Integration tests are all in the /test dir.

Since both names end with _test.go, both would be executed by go during build, so you need to put a special build tag to mark integration tests. A integration test should start with the following line:

// +build integration

Look into the /test directory for examples of integration tests.

Before running a integration test, you need to be connected to a Kubernetes/OpenShift namespace. After you log in into your cluster, you can run the following command to execute all integration tests:

make test-integration

Running

If you want to install everything you have in your source code and see it running on Kubernetes, you need to run the following command:

For Minishift

  • Run make install-minishift (or just make install): to build the project and install it in the current namespace on Minishift

  • You can specify a different namespace with make install-minishift project=myawesomeproject

This command assumes you have an already running Minishift instance.

For Minikube

  • Run make install-minikube: to build the project and install it in the current namespace on Minikube

This command assumes you have an already running Minikube instance.

Use

Now you can play with Camel K:

./kamel run examples/Sample.java

To add additional dependencies to your routes:

./kamel run -d camel:dns examples/dns.js

Debugging and Running from IDE

Sometimes it’s useful to debug the code from the IDE when troubleshooting.

Debugging the kamel binary

It should be straightforward: just execute the /cmd/kamel/main.go file from the IDE (e.g. Goland) in debug mode.

Debugging the operator

It is a bit more complex (but not so much).

You are going to run the operator code outside OpenShift in your IDE so, first of all, you need to stop the operator running inside:

// use kubectl in plain Kubernetes
oc scale deployment/camel-k-operator --replicas 0

You can scale it back to 1 when you’re done and you have updated the operator image.

You can setup the IDE (e.g. Goland) to execute the /cmd/camel-k/main.go file in debug mode.

When configuring the IDE task, make sure to add all required environment variables in the IDE task configuration screen:

  • Set the KUBERNETES_CONFIG environment variable to point to your Kubernetes configuration file (usually <homedir>/.kube/config).

  • Set the WATCH_NAMESPACE environment variable to a Kubernetes namespace you have access to.

  • Set the OPERATOR_NAME environment variable to camel-k.

After you setup the IDE task, you can run and debug the operator process.

Note
The operator can be fully debugged in Minishift, because it uses OpenShift S2I binary builds under the hood. The build phase cannot be (currently) debugged in Minikube because the Kaniko builder requires that the operator and the publisher pod share a common persistent volume.