mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-05 08:17:59 +00:00
This change is aimed at improving the development experience. - The option `make delete` has been added. - Added check for `NAME` and `NAMESPACE` variables - Now, any package (not just system ones) can include options such as make show, make diff, make apply. - Applications from packages/extra require explicit specification of the `NAMESPACE`. - Applications from packages/apps require explicit specification of both `NAME` and `NAMESPACE`. Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
65 lines
2.9 KiB
Makefile
65 lines
2.9 KiB
Makefile
export NAME=dashboard
|
|
export NAMESPACE=cozy-$(NAME)
|
|
|
|
include ../../../scripts/common-envs.mk
|
|
include ../../../scripts/package.mk
|
|
|
|
update: update-chart update-dockerfiles
|
|
image: image-dashboard image-kubeapps-apis
|
|
|
|
update-chart:
|
|
rm -rf charts
|
|
helm repo add bitnami https://charts.bitnami.com/bitnami
|
|
helm repo update bitnami
|
|
helm pull bitnami/kubeapps --untar --untardir charts
|
|
rm -rf charts/kubeapps/charts/postgresql/
|
|
sed -i 's/.cluster.local//g' charts/kubeapps/templates/kubeappsapis/deployment.yaml
|
|
patch --no-backup-if-mismatch charts/kubeapps/templates/frontend/configmap.yaml < patches/logos.patch
|
|
|
|
update-dockerfiles:
|
|
tag=$$(git ls-remote --tags --sort="v:refname" https://github.com/vmware-tanzu/kubeapps | awk -F'[/^]' 'END{print $$3}') && \
|
|
wget https://github.com/vmware-tanzu/kubeapps/raw/$${tag}/cmd/kubeapps-apis/Dockerfile -O images/kubeapps-apis/Dockerfile && \
|
|
patch --no-backup-if-mismatch images/kubeapps-apis/Dockerfile < images/kubeapps-apis/dockerfile.diff && \
|
|
node_image=$$(wget -O- https://github.com/vmware-tanzu/kubeapps/raw/main/dashboard/Dockerfile | awk '/FROM bitnami\/node/ {print $$2}') && \
|
|
sed -i "s|FROM .* AS build|FROM $${node_image} AS build|" images/dashboard/Dockerfile && \
|
|
version=$$(echo "$$tag" | sed 's/^v//') && \
|
|
sed -i "s/ARG VERSION=.*/ARG VERSION=$${version}/" images/dashboard/Dockerfile
|
|
|
|
image-dashboard:
|
|
docker buildx build images/dashboard \
|
|
--provenance false \
|
|
--tag $(REGISTRY)/dashboard:$(call settag,$(TAG)) \
|
|
--cache-from type=registry,ref=$(REGISTRY)/dashboard:latest \
|
|
--cache-to type=inline \
|
|
--metadata-file images/dashboard.json \
|
|
--push=$(PUSH) \
|
|
--load=$(LOAD)
|
|
REGISTRY="$(REGISTRY)" \
|
|
yq -i '.kubeapps.dashboard.image.registry = strenv(REGISTRY)' values.yaml
|
|
REPOSITORY="dashboard" \
|
|
yq -i '.kubeapps.dashboard.image.repository = strenv(REPOSITORY)' values.yaml
|
|
TAG="$(call settag,$(TAG))" \
|
|
yq -i '.kubeapps.dashboard.image.tag = strenv(TAG)' values.yaml
|
|
DIGEST=$$(yq e '."containerimage.digest"' images/dashboard.json -o json -r) \
|
|
yq -i '.kubeapps.dashboard.image.digest = strenv(DIGEST)' values.yaml
|
|
rm -f images/dashboard.json
|
|
|
|
image-kubeapps-apis:
|
|
docker buildx build images/kubeapps-apis \
|
|
--provenance false \
|
|
--tag $(REGISTRY)/kubeapps-apis:$(call settag,$(TAG)) \
|
|
--cache-from type=registry,ref=$(REGISTRY)/kubeapps-apis:latest \
|
|
--cache-to type=inline \
|
|
--metadata-file images/kubeapps-apis.json \
|
|
--push=$(PUSH) \
|
|
--load=$(LOAD)
|
|
REGISTRY="$(REGISTRY)" \
|
|
yq -i '.kubeapps.kubeappsapis.image.registry = strenv(REGISTRY)' values.yaml
|
|
REPOSITORY="kubeapps-apis" \
|
|
yq -i '.kubeapps.kubeappsapis.image.repository = strenv(REPOSITORY)' values.yaml
|
|
TAG="$(call settag,$(TAG))" \
|
|
yq -i '.kubeapps.kubeappsapis.image.tag = strenv(TAG)' values.yaml
|
|
DIGEST=$$(yq e '."containerimage.digest"' images/kubeapps-apis.json -o json -r) \
|
|
yq -i '.kubeapps.kubeappsapis.image.digest = strenv(DIGEST)' values.yaml
|
|
rm -f images/kubeapps-apis.json
|