[refactor] Move scripts to hack directory (#1863)

## What this PR does

- Move `common-envs.mk` and `package.mk` from `scripts/` to `hack/`
directory
- Update all Makefile includes to use new paths
- Remove unused `issue-flux-certificates.sh` script

### Release note

```release-note
[refactor] Move build scripts from scripts/ to hack/ directory
```

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Chores**
* Reorganized build infrastructure by consolidating helper scripts and
configuration paths.
  * Removed deprecated script from the build tooling.

<sub>✏️ Tip: You can customize this high-level summary in your review
settings.</sub>

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
Andrei Kvapil 2026-01-15 17:15:12 +01:00 committed by GitHub
commit c3ccf5a0bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
136 changed files with 166 additions and 227 deletions

View file

@ -1,5 +1,7 @@
.PHONY: manifests assets unit-tests helm-unit-tests
include hack/common-envs.mk
build-deps:
@command -V find docker skopeo jq gh helm > /dev/null
@yq --version | grep -q "mikefarah" || (echo "mikefarah/yq is required" && exit 1)

View file

@ -1,7 +1,7 @@
OUT=../../_out/repos/apps
CHARTS := $(shell find . -maxdepth 2 -name Chart.yaml | awk -F/ '{print $$2}')
include ../../scripts/common-envs.mk
include ../../hack/common-envs.mk
repo:
rm -rf "$(OUT)"

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,7 +1,7 @@
CLICKHOUSE_BACKUP_TAG = $(shell awk '$$0 ~ /^version:/ {print $$2}' Chart.yaml)
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,7 +1,7 @@
NGINX_CACHE_TAG = $(shell awk '$$1 == "version:" {print $$2}' Chart.yaml)
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
image: image-nginx

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
PRESET_ENUM := ["nano","micro","small","medium","large","xlarge","2xlarge"]
generate:

View file

@ -1,8 +1,8 @@
KUBERNETES_VERSION = v1.33
KUBERNETES_PKG_TAG = $(shell awk '$$1 == "version:" {print $$2}' Chart.yaml)
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,7 +1,7 @@
MARIADB_BACKUP_TAG = $(shell awk '$$1 == "version:" {print $$2}' Chart.yaml)
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,7 +1,7 @@
NAME=flux-aio
NAMESPACE=cozy-$(NAME)
include ../../../scripts/common-envs.mk
include ../../../hack/common-envs.mk
show:
cozyhr show -n $(NAMESPACE) $(NAME) --plain

View file

@ -1,7 +1,7 @@
NAME=installer
NAMESPACE=cozy-system
include ../../../scripts/common-envs.mk
include ../../../hack/common-envs.mk
pre-checks:
../../../hack/pre-checks.sh

View file

@ -1,7 +1,7 @@
NAME=platform
NAMESPACE=cozy-system
include ../../../scripts/common-envs.mk
include ../../../hack/common-envs.mk
show:
cozyhr show --namespace $(NAMESPACE) $(NAME) --plain

View file

@ -3,7 +3,7 @@ NAMESPACE=cozy-system
TALOS_VERSION=$(shell awk '/^version:/ {print $$2}' images/talos/profiles/installer.yaml)
include ../../../scripts/common-envs.mk
include ../../../hack/common-envs.mk
update:
hack/gen-profiles.sh

View file

@ -6,7 +6,7 @@ SANDBOX_NAME := cozy-e2e-sandbox-$(shell echo "$$(hostname):$$(pwd)" | sha256sum
ROOT_DIR = $(dir $(abspath $(firstword $(MAKEFILE_LIST))/../../..))
include ../../../scripts/common-envs.mk
include ../../../hack/common-envs.mk
help: ## Show this help.

View file

@ -1,7 +1,7 @@
OUT=../../_out/repos/extra
CHARTS := $(shell find . -maxdepth 2 -name Chart.yaml | awk -F/ '{print $$2}')
include ../../scripts/common-envs.mk
include ../../hack/common-envs.mk
repo:
rm -rf "$(OUT)"

View file

@ -1,7 +1,7 @@
NAME=bootbox
NAMESPACE=tenant-root
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,6 +1,6 @@
NAME=etcd
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,6 +1,6 @@
NAME=etcd
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,6 +1,6 @@
NAME=ingress
include ../../../scripts/package.mk
include ../../../hack/package.mk
update: get-cloudflare-ips

View file

@ -2,8 +2,8 @@ GRAFANA_TAG = $(shell awk '$$1 == "version:" {print $$2}' Chart.yaml)
NAME=monitoring
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,6 +1,6 @@
NAME=seaweedfs
include ../../../scripts/package.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -1,7 +1,7 @@
OUT=../../_out/repos/library
CHARTS := $(shell find . -maxdepth 2 -name Chart.yaml | awk -F/ '{print $$2}')
include ../../scripts/common-envs.mk
include ../../hack/common-envs.mk
repo:
rm -rf "$(OUT)"

View file

@ -1,5 +1,5 @@
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
generate:
cozyvalues-gen -v values.yaml -s values.schema.json -r README.md

View file

@ -2,7 +2,7 @@ OUT=../../_out/repos/system
CHARTS := $(shell grep -F 'version: 0.0.0' */Chart.yaml | cut -f1 -d/)
VERSIONED_CHARTS := $(shell grep '^version:' */Chart.yaml | grep -Fv '0.0.0' | cut -f1 -d/)
include ../../scripts/common-envs.mk
include ../../hack/common-envs.mk
repo:
rm -rf "$(OUT)"

View file

@ -1,8 +1,8 @@
NAME=backup-controller
NAMESPACE=cozy-backup-controller
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
image: image-backup-controller

View file

@ -1,8 +1,8 @@
NAME=backupstrategy-controller
NAMESPACE=cozy-backup-controller
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
image: image-backupstrategy-controller

View file

@ -1,4 +1,4 @@
export NAME=bootbox-rd
export NAMESPACE=cozy-system
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,7 +1,7 @@
export NAME=bootbox
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,4 +1,4 @@
export NAME=bucket-rd
export NAMESPACE=cozy-system
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -2,8 +2,8 @@ S3MANAGER_TAG=v0.5.0
export NAME=s3manager-system
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
update:
@echo Nothing to update

View file

@ -5,7 +5,7 @@ export REPO_URL=https://kubernetes-sigs.github.io/cluster-api-operator
export CHART_NAME=cluster-api-operator
export CHART_VERSION=^0.19
include ../../../scripts/package.mk
include ../../../hack/package.mk
update: clean capi-operator-update
rm -rf charts/cluster-api-operator/charts/

View file

@ -1,4 +1,4 @@
export NAME=capi-providers-bootstrap
export NAMESPACE=cozy-cluster-api
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,4 +1,4 @@
export NAME=capi-providers-core
export NAMESPACE=cozy-cluster-api
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,4 +1,4 @@
export NAME=capi-providers-cpprovider
export NAMESPACE=cozy-cluster-api
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,4 +1,4 @@
export NAME=capi-providers-infraprovider
export NAMESPACE=cozy-cluster-api
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,4 +1,4 @@
export NAME=cert-manager-issuers
export NAMESPACE=cozy-cert-manager
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,7 +1,7 @@
export NAME=cert-manager
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,5 +1,5 @@
export NAME=cilium-networkpolicy
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk

View file

@ -3,8 +3,8 @@ CILIUM_TAG=$(shell awk '$$1 == "version:" {print $$2}' charts/cilium/Chart.yaml)
export NAME=cilium
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,7 +1,7 @@
export NAME=clickhouse-operator
export NAMESPACE=cozy-clickhouse-operator
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,4 +1,4 @@
export NAME=clickhouse-rd
export NAMESPACE=cozy-system
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,7 +1,7 @@
export NAME=coredns
export NAMESPACE=kube-system
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,8 +1,8 @@
NAME=cozy-proxy
NAMESPACE=cozy-system
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,8 +1,8 @@
NAME=cozystack-api
NAMESPACE=cozy-system
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
run-local:
openssl req -nodes -new -x509 -keyout /tmp/ca.key -out /tmp/ca.crt -subj "/CN=kube-ca"

View file

@ -1,4 +1,4 @@
export NAME=tenant-root
export NAMESPACE=cozy-system
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,8 +1,8 @@
NAME=cozystack-controller
NAMESPACE=cozy-system
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
image: image-cozystack-controller update-version

View file

@ -1,4 +1,4 @@
export NAME=cozystack-resource-definition-crd
export NAMESPACE=cozy-system
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,8 +1,8 @@
export NAME=dashboard
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
update: update-crd update-dockerfiles
image: image-openapi-ui image-openapi-ui-k8s-bff image-token-proxy update-tenant-text

View file

@ -1,7 +1,7 @@
export NAME=etcd-operator
export NAMESPACE=cozy-${NAME}
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,4 +1,4 @@
export NAME=etcd-rd
export NAMESPACE=cozy-system
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,7 +1,7 @@
export NAME=external-dns
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,7 +1,7 @@
export NAME=external-secrets-operator
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,4 +1,4 @@
export NAME=ferretdb-rd
export NAMESPACE=cozy-system
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,7 +1,7 @@
NAME=fluxcd-operator
NAMESPACE=cozy-fluxcd
include ../../../scripts/package.mk
include ../../../hack/package.mk
apply-locally:
cozyhr apply --plain -n $(NAMESPACE) $(NAME)

View file

@ -1,7 +1,7 @@
NAME=fluxcd
NAMESPACE=cozy-$(NAME)
include ../../../scripts/package.mk
include ../../../hack/package.mk
apply-locally:
cozyhr apply --plain -n $(NAMESPACE) $(NAME)

View file

@ -1,7 +1,7 @@
export NAME=foundationdb-operator
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,4 +1,4 @@
export NAME=foundationdb-rd
export NAMESPACE=cozy-system
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,7 +1,7 @@
export NAME=gateway-api-crds
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf templates

View file

@ -1,4 +1,4 @@
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,8 +1,8 @@
export NAME=gpu-operator
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,8 +1,8 @@
export NAME=grafana-operator
export NAMESPACE=cozy-grafana-operator
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,7 +1,7 @@
export NAME=hetzner-robotlb
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,4 +1,4 @@
export NAME=http-cache-rd
export NAMESPACE=cozy-system
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,4 +1,4 @@
export NAME=info-rd
export NAMESPACE=cozy-system
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,6 +1,6 @@
NAME=ingress-nginx-system
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,4 +1,4 @@
export NAME=ingress-rd
export NAMESPACE=cozy-system
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,7 +1,7 @@
export NAME=kafka-operator
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,4 +1,4 @@
export NAME=kafka-rd
export NAMESPACE=cozy-system
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,8 +1,8 @@
export NAME=kamaji
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,5 +1,5 @@
export NAME=keycloak-configure
export NAMESPACE=cozy-keycloak
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk

View file

@ -1,8 +1,8 @@
export NAME=keycloak-operator
export NAMESPACE=cozy-keycloak
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,5 +1,5 @@
export NAME=keycloak
export NAMESPACE=cozy-keycloak
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk

View file

@ -1,8 +1,8 @@
export NAME=kubeovn-plunger
export NAMESPACE=cozy-kubeovn
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
image:
docker buildx build -f images/kubeovn-plunger/Dockerfile ../../../ \

View file

@ -1,8 +1,8 @@
export NAME=kubeovn-webhook
export NAMESPACE=cozy-kubeovn
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
image:
docker buildx build images/kubeovn-webhook \

View file

@ -3,8 +3,8 @@ KUBEOVN_TAG=v0.40.0
export NAME=kubeovn
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
update:
rm -rf charts values.yaml Chart.yaml

View file

@ -1,4 +1,4 @@
export NAME=kubernetes-rd
export NAMESPACE=cozy-system
include ../../../scripts/package.mk
include ../../../hack/package.mk

View file

@ -1,7 +1,7 @@
export NAME=kubevirt-cdi-operator
export NAMESPACE=cozy-kubevirt-cdi
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf templates

View file

@ -1,7 +1,7 @@
export NAME=kubevirt-cdi
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf templates

View file

@ -1,7 +1,7 @@
export NAME=kubevirt-instancetypes
export NAMESPACE=cozy-kubevirt
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf templates

View file

@ -1,7 +1,7 @@
export NAME=kubevirt-operator
export NAMESPACE=cozy-kubevirt
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf templates

View file

@ -1,7 +1,7 @@
export NAME=kubevirt
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf templates

View file

@ -1,8 +1,8 @@
NAME=lineage-controller-webhook
NAMESPACE=cozy-system
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
image: image-lineage-controller-webhook

View file

@ -1,7 +1,7 @@
export NAME=linstor-scheduler
export NAMESPACE=cozy-linstor
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

View file

@ -1,8 +1,8 @@
export NAME=linstor
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/common-envs.mk
include ../../../scripts/package.mk
include ../../../hack/common-envs.mk
include ../../../hack/package.mk
LINSTOR_VERSION ?= 1.32.3
LINSTOR_CSI_VERSION ?= v1.10.5

View file

@ -1,7 +1,7 @@
export NAME=mariadb-operator
export NAMESPACE=cozy-$(NAME)
include ../../../scripts/package.mk
include ../../../hack/package.mk
update:
rm -rf charts

Some files were not shown because too many files have changed in this diff Show more