The leaf hub status sync component of Hub-of-Hubs.
-
Set the
REGISTRY
environment variable to hold the name of your docker registry:$ export REGISTRY=...
-
Set the
IMAGE_TAG
environment variable to hold the required version of the image.
default value islatest
, so in that case no need to specify this variable:$ export IMAGE_TAG=latest
-
Run make to build and push the image:
$ make push-images
-
Set the
REGISTRY
environment variable to hold the name of your docker registry:$ export REGISTRY=...
-
Set the
IMAGE
environment variable to hold the name of the image.$ export IMAGE=$REGISTRY/$(basename $(pwd)):latest
-
Set the
SYNC_SERVICE_PORT
environment variable to hold the ESS port as was setup in the leaf hub.$ export SYNC_SERVICE_PORT=...
-
Set the
LH_ID
environment variable to hold the leaf hub unique id.$ export LH_ID=...
-
Run the following command to deploy the
leaf-hub-status-sync
to your leaf hub cluster:envsubst < deploy/leaf-hub-status-sync.yaml.template | kubectl apply -f -
- Run the following command to clean
leaf-hub-status-sync
from your leaf hub cluster:envsubst < deploy/leaf-hub-status-sync.yaml.template | kubectl delete -f -