Giter VIP home page Giter VIP logo

che-operator's Introduction

Che/CodeReady Workspaces Operator

codecov

Che/CodeReady workspaces operator uses Operator SDK and Go Kube client to deploy, update and manage K8S/OpenShift resources that constitute a single or multi-user Eclipse Che/CodeReady Workspaces cluster.

The operator watches for a Custom Resource of Kind CheCluster, and operator controller executes its business logic when a new Che object is created, namely:

  • creates k8s/OpenShift objects
  • verifies successful deployment of Postgres, Keycloak, Devfile/Plugin registries and Che server
  • runs exec into Postgres and Keycloak pods to provisions databases, users, realm and clients
  • updates CR spec and status (passwords, URLs, provisioning statuses etc.)
  • continuously watches CR, update Che ConfigMap accordingly and schedule a new Che deployment
  • changes state of certain objects depending on CR fields:
    • turn on/off TLS mode (reconfigure routes, update ConfigMap)
    • turn on/off OpenShift oAuth (login with OpenShift in Che) (create identity provider, oAuth client, update Che ConfigMap)
  • etc

Che operator is implemented using operator framework and the Go programming language. Eclipse Che configuration defined using a custom resource definition object and stored in the custom Kubernetes resource named checluster(or plural checlusters) in the Kubernetes API group org.eclipse.che. Che operator extends Kubernetes API to embed Eclipse Che to Kubernetes cluster in a native way.

CheCluster custom resource

Che operator deploys Eclipse Che using configuration stored in the Kubernetes custom resource(CR). CR object structure defined in the code using api/v1/checluster_types.go file. Field name defined using the serialization tag json, for example json:"openShiftoAuth". Che operator default CR sample is stored in the config/samples/org.eclipse.che_v1_checluster.yaml. This file should be directly modified if you want to apply new fields with default values, or in case of changing default values for existing fields. Also, you can apply in the field comments Openshift UI annotations: to display some interactive information about these fields on the Openshift UI. For example:

	// +operator-sdk:csv:customresourcedefinitions:type=status
	// +operator-sdk:csv:customresourcedefinitions:type=status,displayName="Eclipse Che URL"
	// +operator-sdk:csv:customresourcedefinitions:type=status,xDescriptors="urn:alm:descriptor:org.w3:link"

This comment-annotations displays clickable link on the Openshift ui with a text "Eclipse Che URL"

It is mandatory to update the OLM bundle after modification of the CR sample to deploy Eclipse Che using OLM.

Build and push custom Che operator image

  1. Export globally environment variables:
$ export IMAGE_REGISTRY_USER_NAME=<IMAGE_REGISTRY_USER_NAME> && \
  export IMAGE_REGISTRY_HOST=<IMAGE_REGISTRY_HOST>

Where:

  • IMAGE_REGISTRY_USER_NAME - docker image registry account name.
  • IMAGE_REGISTRY_HOST - docker image registry hostname, for example: "docker.io", "quay.io". Host could be with a non default port: localhost:5000, 127.0.0.1:3000 and etc.
  1. Run VSCode task Build and push custom che-operator image or use the terminal:
$ make docker-build docker-push IMG="${IMAGE_REGISTRY_HOST}/${IMAGE_REGISTRY_USER_NAME}/che-operator:next"

Deploy Che operator using make

che-operator MAKE file provides ability to install che-operator(VSCode task Deploy che-operator):

$ make deploy IMG=\"${IMAGE_REGISTRY_HOST}/${IMAGE_REGISTRY_USER_NAME}/che-operator:nightly\" 

$ kubectl apply -f config/samples/org.eclipse.che_v1_checluster.yaml -n <NAMESPACE>

Undeploy che-operator(VSCode task UnDeploy che-operator):

$ make undeploy

Deploy Che operator with chectl

To deploy Che operator you can use chectl. It has got two installer types corresponding to Che operator: operator and olm. With the --installer operator chectl reuses copies of Che operator deployment and roles (cluster roles) YAMLs, CR, CRD from the deploy directory of the project. With --installer olm chectl uses catalog source index image with olm bundles from the bundle directory.

Deploy Che operator with chectl using --installer operator flag

  1. Build your custom operator image, see How to Build che-operator Image.

  2. Deploy Eclipse Che on a running k8s cluster:

$ chectl server:deploy --installer operator -p <PLATFORM> --che-operator-image=${IMAGE_REGISTRY_HOST}/${IMAGE_REGISTRY_USER_NAME}/che-operator:next

Where:

  • PLATFORM - k8s platform supported by chectl.

If you have changed Che operator deployment, roles, cluster roles, CRD or CR then you must use --templates flag to point chectl to modified Che operator templates. Use make command to prepare chectl templates folder:

$ make chectl-templ TARGET=<SOME_PATH>/che-operator

Execute chectl:

$ chectl server:deploy --installer operator -p <PLATFORM> --che-operator-image=${IMAGE_REGISTRY_HOST}/${IMAGE_REGISTRY_USER_NAME}/che-operator:next --templates <SOME_PATH>/templates

Deploy Che operator with chectl using --installer olm flag

  1. Build your custom operator image, see How to Build Che operator Image.

  2. Update OLM files:

$ make update-resources -s
  1. Build catalog source and bundle images:
$ olm/buildAndPushBundleImages.sh -p <openshift|kubernetes> -c "nightly"
  1. Create a custom catalog source yaml (update strategy is workaround for operator-framework/operator-lifecycle-manager#903):
apiVersion:  operators.coreos.com/v1alpha1
kind:         CatalogSource
metadata:
  name:         eclipse-che-preview-custom
  namespace:    che-namespace
spec:
  image:        <IMAGE_REGISTRY_HOST>/<IMAGE_REGISTRY_USER_NAME>/eclipse-che-<openshift|kubernetes>-opm-catalog:preview
  sourceType:  grpc
  updateStrategy:
    registryPoll:
      interval: 5m
  1. Deploy Che operator:
$ chectl server:deploy --installer=olm --platform=<CHECTL_SUPPORTED_PLATFORM> --catalog-source-yaml <PATH_TO_CUSTOM_CATALOG_SOURCE_YAML> --olm-channel=nightly --package-manifest-name=eclipse-che-preview-<openshift|kubernetes>

Deploy Che operator using operator-sdk

WARNING: Cluster Admin privileges are required

If you don't have operator-sdk, then you can use make command to install it:

$ make download-operator-sdk
$ sudo mv operator-sdk /usr/local/bin

Prepare bundle:

$ export BUNDLE_IMG="${IMAGE_REGISTRY_HOST}/${IMAGE_REGISTRY_USER_NAME}/che-operator-bundle:v0.0.1"
$ export PLATFORM=<kubernetes|openshift>

$ make bundle IMG="${BUNDLE_IMG}" platform="${PLATFORM}" 

$ make bundle-build bundle-push BUNDLE_IMG="${BUNDLE_IMG}" platform="${PLATFORM}"

Also for this purpose you can use VSCode tast Build test bundle Kubernetes platform or Build test bundle Openshift platform.

Install che-operator and apply custom resource file/files(corresponding VSCode task: Install che-operator via OLM):

$ operator-sdk run bundle "${BUNDLE_IMG}" --namespace "${NAMESPACE}"; 

$ make -s apply-cr-crd ECLIPSE_CHE_NAMESPACE="${NAMESPACE}"

To uninstall Che operator(corresponding VSCode task is UnInstall che-operator via OLM Openshift or UnInstall che-operator via OLM Kubernetes):

$ operator-sdk cleanup eclipse-che-preview-<kubernetes|openshift>

Deploy Che operator for different usecases

Single user mode

Che operator deploys Eclipse Che with enabled multi-user mode by default. To start work each user should login/register using form, after that user will be redirected to the user dashboard.

To enable single user mode use the command line:

$ kubectl patch checluster/eclipse-che -n <ECLIPSE-CHE-NAMESPACE> --type=merge -p '{"spec":{"server": {"customCheProperties": {"CHE_MULTIUSER": "false"}}}}'

or create cr-patch.yaml and use it with chectl:

spec:
  server:
    customCheProperties:
      CHE_MULTIUSER: "false"
$ chectl server:update -n <ECLIPSE-CHE-NAMESPACE> --che-operator-cr-patch-yaml <PATH_TO_CR_PATCH_YAML>

Workspace namespace strategy

Workspace namespace strategy defines default namespace in which user's workspaces are created. It's possible to use , and placeholders (e.g.: che-workspace-). In that case, new namespace will be created for each user (or workspace). For OpenShift infrastructure this property used to specify Project (instead of namespace conception).

To set up namespace workspace strategy use command line:

$ kubectl patch checluster/eclipse-che -n <ECLIPSE-CHE-NAMESPACE> --type=merge -p '{"spec":{"server": {"customCheProperties": {"CHE_INFRA_KUBERNETES_NAMESPACE_DEFAULT": "che-workspace-<username>"}}}}'

or create cr-patch.yaml and use it with chectl:

spec:
  server:
    customCheProperties:
      CHE_INFRA_KUBERNETES_NAMESPACE_DEFAULT: "che-workspace-<username>"
$ chectl server:update -n <ECLIPSE-CHE-NAMESPACE> --che-operator-cr-patch-yaml <PATH_TO_CR_PATCH_YAML>

### OpenShift OAuth

OpenShift clusters include a built-in OAuth server. Che operator supports this authentication method. It's enabled by default.

To disable OpenShift OAuth use command line:

```bash
$ kubectl patch checluster/eclipse-che -n <ECLIPSE-CHE-NAMESPACE> --type=merge -p '{"spec":{"auth":{"openShiftoAuth": false}}}'

or create cr-patch.yaml and use it with chectl:

spec:
  auth:
    openShiftoAuth: false
$ chectl server:update -n <ECLIPSE-CHE-NAMESPACE> --che-operator-cr-patch-yaml <PATH_TO_CR_PATCH_YAML>

TLS

TLS is enabled by default. Turning it off is not recommended as it will cause malfunction of some components. But for development purposes you can do that:

$ kubectl patch checluster/eclipse-che -n <ECLIPSE-CHE-NAMESPACE> --type=merge -p '{"spec":{"server":{"tlsSupport": false}}}'

or create cr-patch.yaml and use it with chectl:

spec:
  server:
    tlsSupport: false
$ chectl server:update -n <ECLIPSE-CHE-NAMESPACE> --che-operator-cr-patch-yaml <PATH_TO_CR_PATCH_YAML>

TLS with OpenShift

When the cluster is configured to use self-signed certificates for the router, the certificate is automatically propagated to Che components as trusted. If cluster router uses certificate signed by self-signed one, then parent/root CA certificate should be added into corresponding config map of additional trusted certificates (see serverTrustStoreConfigMapName option).

TLS with K8S

By default self-signed certificates for Che will be generated automatically. If it is needed to use your own certificates, create che-tls secret (see k8s.tlsSecretName option) with key.crt and tls.crt fields. In case of self-signed certificate self-signed-certificate secret should be created with the public part of CA certificate under ca.crt key in secret data. It is possible to use default certificate of Kubernetes cluster by passing empty string as a value of tlsSecretName:

spec:
  k8s:
    tlsSecretName: ''

Update Che operator deployment

Edit checluster custom resource using a command-line interface (terminal)

You can modify any Kubernetes object using the UI (for example OpenShift web console) or you can also modify Kubernetes objects using the terminal:

$ kubectl edit checluster eclipse-che -n <ECLIPSE-CHE-NAMESPACE>

or:

$ kubectl patch checluster/eclipse-che --type=merge -p '<PATCH_JSON>' -n <ECLIPSE-CHE-NAMESPACE>

Update checluster using chectl

You can update Che configuration using the chectl server:update command providing --cr-patch flag. See chectl for more details.

Development

Debug Che operator

You can run/debug this operator on your local machine (without deploying to a k8s cluster).

Go client grabs kubeconfig either from InClusterConfig or ~/.kube locally. Make sure your current kubectl context points to a target cluster and namespace and a current user can create objects in a target namespace.

`make debug ECLIPSE_CHE_NAMESPACE=<ECLIPSE-CHE-NAMESPACE> ECLIPSE_CHE_CR=<CUSTOM_RESOURCE_PATH>

Where:

  • ECLIPSE-CHE-NAMESPACE - namespace name to deploy Che operator into, default is che
  • CUSTOM_RESOURCE - path to custom resource yaml, default is ./config/samples/org.eclipse.che_v1_checluster.yaml

Use VSCode debug configuration Che Operator to attach to the running process.

To uninstall che-operator use:

$ make uninstall

And then interrupt debug process by CTRL+C.

Run unit tests

Che operator covered with unit tests. Some of them uses mocks. To run tests use VSCode task Run che-operator tests or run in the terminal in the root of the project:

$ go test -mod=vendor -v ./...

Compile Che operator code

The operator will be compiled to the binary /tmp/che-operator/che-operator. This command is useful to make sure that che-operator is still compiling after your changes. Run VSCode task: Compile che-operator code or use the terminal:

$ GOOS=linux GOARCH=${ARCH} CGO_ENABLED=0 GO111MODULE=on go build -mod=vendor -a -o /tmp/che-operator/che-operator main.go

Format code

Run the VSCode task: Format che-operator code or use the terminal:

$ go fmt ./...

Fix imports

Run the VSCode task: Fix che-operator imports or use the terminal:

$ find . -not -path \"./vendor/*\" -name '*.go' -exec goimports -l -w {} \\;

Update golang dependencies

Che operator uses Go modules and a vendor folder. Run the VSCode task: Update che-operator dependencies or use the terminal:

$ go mod tidy
$ go mod vendor

New golang dependencies in the vendor folder should be committed and included in the pull request.

Notice: freeze all new transitive dependencies using "replaces" go.mod file section to prevent CQ issues.

Updating Custom Resource Definition file

Che cluster custom resource definition (CRD) defines Eclipse CheCluster custom resource object. It contains information about object structure, field types, field descriptions. CRD file is a YAML definition located in the folder config/crd/bases. These files are auto-generated, so do not edit it directly to update them. If you want to add new fields or fix descriptions in the CRDs, make your changes in the file api/v1/checluster_types.go and run VSCode task Update CR/CRDs or use the terminal:

$ make generate; make manifests

This command will update CRD files:

  • config/crd/bases/org_v1_che_crd.yaml
  • config/crd/bases/org_v1_che_crd-v1beta1.yaml
  • config/crd/bases/org.eclipse.che_chebackupserverconfigurations_crd-v1beta1.yaml
  • config/crd/bases/org.eclipse.che_chebackupserverconfigurations_crd.yaml
  • config/crd/bases/org.eclipse.che_checlusterbackups_crd-v1beta1.yaml
  • config/crd/bases/org.eclipse.che_checlusterbackups_crd.yaml
  • config/crd/bases/org.eclipse.che_checlusterrestores_crd-v1beta1.yaml
  • config/crd/bases/org.eclipse.che_checlusterrestores_crd.yaml

CRD beta yamls should be used for back compatibility with Openshift 3.

Update nightly OLM bundle

Sometimes, during development, you need to modify some YAML definitions in the config folder or Che cluster custom resource. There are most frequently changes which should be included to the new OLM bundle:

  • operator deployment config/manager/manager.yaml
  • operator roles/cluster roles permissions. They are defined like role/rolebinding or cluster role/rolebinding yamls in the config folder.
  • operator custom resource CR config/crd/bases/org_v1_che_cr.yaml. This file contains the default CheCluster sample. Also this file is the default OLM CheCluster sample.
  • Che cluster custom resource definition api/v1/checluster_types.go. For example you want to fix some properties description or apply new Che type properties with default values. These changes affect CRD config/crd/bases/org_v1_che_crd.yaml.
  • add Openshift ui annotations for Che types properties (api/v1/checluster_types.go) to display information or interactive elements on the Openshift user interface.

For all these cases it's a necessary to generate a new OLM bundle to make these changes working with OLM. Run the VSCode tasks Update resources or use the terminal:

$ make update-resources -s

Every changes will be included to the bundle folder and will override all previous changes. OLM bundle changes should be committed to the pull request.

To update a bundle without version incrementation and time update you can use env variables NO_DATE_UPDATE and NO_INCREMENT. For example, during development you need to update bundle a lot of times with changed che-operator deployment or role, rolebinding and etc, but you don't want to increment the bundle version and time creation, when all desired changes were completed:

$ make update-resources NO_DATE_UPDATE="true" NO_INCREMENT="true" -s

Che operator PR checks

Documentation about all Che operator test cases can be found here

Generate go mocks.

Install mockgen tool:

$ GO111MODULE=on go get github.com/golang/mock/[email protected]

Generate new mock for go interface. Example:

$ mockgen -source=pkg/util/process.go -destination=mocks/pkg/util/process_mock.go -package mock_util

$ mockgen -source=pkg/controller/che/oauth_initial_htpasswd_provider.go \
          -destination=mocks/pkg/controller/che/oauth_initial_htpasswd_provider_mock.go \
          -package mock_che

See more: https://github.com/golang/mock/blob/master/README.md

che-operator's People

Contributors

amisevsk avatar andrienkoaleksandr avatar arvinb avatar benoitf avatar che-bot avatar davidfestal avatar dkwon17 avatar dmytro-ndp avatar flacatus avatar ibuziuk avatar johnmcollier avatar junawaneshivani avatar l0rd avatar metlos avatar michalmaler avatar mkuznyetsov avatar mmorhun avatar mshaposhnik avatar mtsmfm avatar nickboldt avatar rhopp avatar skabashnyuk avatar skoriksergey avatar sleshchenko avatar sparkoo avatar svor avatar tolusha avatar tomgeorge avatar vinokurig avatar vparfonov avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.