DISCONTINUATION OF PROJECT.
This project will no longer be maintained by Intel.
Intel will not provide or guarantee development of or support for this project, including but not limited to, maintenance, bug fixes, new releases or updates.
Patches to this project are no longer accepted by Intel.
If you have an ongoing need to use this project, are interested in independently developing it, or would like to maintain patches for the community, please create your own fork of the project .
SPDX-License-Identifier: Apache-2.0
Copyright (c) 2019-2020 Intel Corporation
The Edge Multi-Cluster Orchestrator (EMCO) is a software framework for intent-based deployment of cloud-native applications to a set of Kubernetes clusters, spanning enterprise data centers, multiple cloud service providers and numerous edge locations. It is architected to be flexible, modular and highly scalable. It is aimed at various verticals, including telecommunication service providers.
Refer to EMCO whitepaper for details on EMCO architecture: https://www.openness.org/docs/doc/building-blocks/emco/openness-emco
Set up the following environment variables. Note that the value for the
container registry URL must end with a /
.
export EMCODOCKERREPO=${container_registry_url}/
export HTTP_PROXY=${http_proxy}
export HTTPS_PROXY=${https_proxy}
The external dependencies for EMCO are captured partly in the environment
variables above and partly in a configuration file config/config.txt
.
The configuration file specifies two important parameters:
BUILD_BASE_IMAGE
: The name and version of the base image used for
building EMCO components themselves.SERVICE_BASE_IMAGE
: The name and version of the base image used to
deploy the microservices that constitute EMCO.By default, config.txt
has the following content:
BUILD_BASE_IMAGE_NAME=emco-service-build-base
BUILD_BASE_IMAGE_VERSION=:1.1
SERVICE_BASE_IMAGE_NAME=alpine
SERVICE_BASE_IMAGE_VERSION=:3.12
By default, emco-service-build-base
is built from golang:1.14.1-alpine
, with the make
utility added.
You may want to review and possibly update the base image names and versions.
Note: The build base image should be based on a Linux distribution that uses apt
for package management, such as Alpine, Debian or Ubuntu. It should also provide Go language version 1.14.
Populate the EMCODOCKERREPO registry with base images listed in config/config.txt
, along with mongodb
and etcd
images.
The base images and versions that have been validated are as below:
EMCO does not assume that the base build image, such as golang:1.14.1-alpine
, has the necessary utilities such as make
.
Run the following to create the final build container image and populate that
in the EMCODOCKERREPO
registry.
make build-base
You can build and deploy the EMCO components in your local environment (and use them to deploy your workload in a set of remote Kubernetes clusters).
This is done in two stages:
make all
This spawns a build container that generates the needed EMCO binaries and
container images.docker-compose up
using deployments/docker/docker-compose.yml
. This spawns a set of
containers, each running one EMCO component.See this tutorial for further details.
Alternatively, you can build EMCO locally and deploy EMCO components in a Kubernetes cluster using Helm charts (and use them to deploy your workload in another set of Kubernetes clusters).
This requires the locally built container images to be pushed to the
container registry EMCODOCKERREPO
with the appropriate tag, so that the
Kubernetes cluster can pull images from that container registry. The tag can
be set based on whether it is a developer/test build or a release build.
Do the following steps:
Set up the environment:
For development/testing:
export BUILD_CAUSE=DEV_TEST
This sets the image tags to the form ${USER}-latest
.
For release:
export BUILD_CAUSE=RELEASE
export EMCOSRV_RELEASE_TAG=openness-${release_number}tag
This sets the image tags to the specified tag. Note that if you set
BUILD_CAUSE=RELEASE
but do not set EMCOSRV_RELEASE_TAG
, the image tags
will be set to any tag defined on the git HEAD
of the current git
branch. If no git tag is defined on the HEAD, the build will fail.
Set up the Helm charts: Be sure to reference those image names and tags in your Helm charts.
Build and deploy EMCO:
make deploy
See this Readme on how to setup environment and running few test cases with EMCO.
See this tutorial for further details.