Version: 4.2.1
Helm Development Guide
info
This document is currently in progress and will be expanded in the future.
Building Images
The images references by the helm charts are built in two stages.
Base Images
Changes to these happen infrequently, so not every dev cycle requires this step.
- Ensure your docker hub credentials are set
docker login
- Create and push images to docker hub
cd deploy/stratos-base-images
./build-base-images.sh -o dockerhuborgname -p
p
pushes the images to dockerhub. Replacedockerhuborgname
with the docker hub org where test images should be pushed
- Wait for script to complete, this may take a while
note
If you receive the error "--squash" is only supported on a Docker daemon with experimental features enabled
during build enable
experimental feature by
- Add
"experimental": true
to ~/.docker/config.json - Restart docker -
sudo systemctl restart docker
docker version
should show client with experimental feature enabled
All Other Images
Changes to these will occur more often and are built upon the base images created above. This step is executed with the command command used to build the charts below.
Building Charts
- Ensure your docker hub credentials are set
docker login
- Create the charts, and create and push images to docker hub
cd deploy/kubernetes
./build.sh -t 4.0.1 -o dockerhuborgname -p
-p
pushes the images to dockerhub. Replacedockerhuborgname
with the docker hub org where test images should be pushed. This should match where your base images are -t
will tag the images with a version- The new charts with updated image references will be created in
deploy/kubernetes/helm-charts
Testing built output
cd deploy/kubernetes
- Install the usual way, with your namespace and values (if required). For examplehelm install console helm-chart --namespace=console --values stratos-values.yaml