Add a new target in kubernetes/Makefile that creates a .tar.xz file containing all the files needed to deploy containers to the Kubernetes cluster.
No intermediate files should be included in the archive. Only files that are actually used during deployment.
The archive should be called concent-deployment-<image prefix>-<cluster>-<version>.tar.xz and the same name should be used for the archive. Put the archive in a dist/ directory next to the build/ directory.
For example running a build could produce kubernetes/dist/concent-deployment-concent-dev-0.7.2-189-g16b6321.tar.xz. The archive would contain create-services.sh and all the other files produced during the build.
Add a new target in kubernetes/Makefile that creates a
.tar.xz
file containing all the files needed to deploy containers to the Kubernetes cluster.No intermediate files should be included in the archive. Only files that are actually used during deployment.
The archive should be called
concent-deployment-<image prefix>-<cluster>-<version>.tar.xz
and the same name should be used for the archive. Put the archive in adist/
directory next to thebuild/
directory.For example running a build could produce
kubernetes/dist/concent-deployment-concent-dev-0.7.2-189-g16b6321.tar.xz
. The archive would containcreate-services.sh
and all the other files produced during the build.