mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-27 10:18:39 +00:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit Based on the comprehensive summary of changes, here are the release notes: - **New Features** - Added a new Kubernetes controller for managing workload monitoring - Introduced telemetry collection capabilities with configurable options - Added new Custom Resource Definitions (CRDs) for Workload and WorkloadMonitor - **Improvements** - Enhanced API infrastructure with new API group and version - Improved deployment configurations for various system components - Added development container and workflow configurations - **Bug Fixes** - Updated import paths to correct domain naming - **Chores** - Updated copyright years - Refined module dependencies - Standardized code linting and testing configurations - **Infrastructure** - Increased `cozystack-api` deployment replicas from 1 to 2 for improved availability <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
.PHONY: manifests repos assets
|
|
|
|
build:
|
|
make -C packages/apps/http-cache image
|
|
make -C packages/apps/postgres image
|
|
make -C packages/apps/mysql image
|
|
make -C packages/apps/clickhouse image
|
|
make -C packages/apps/kubernetes image
|
|
make -C packages/system/cozystack-api image
|
|
make -C packages/system/cilium image
|
|
make -C packages/system/kubeovn image
|
|
make -C packages/system/dashboard image
|
|
make -C packages/system/kamaji image
|
|
make -C packages/system/bucket image
|
|
make -C packages/core/testing image
|
|
make -C packages/core/installer image
|
|
make manifests
|
|
|
|
manifests:
|
|
(cd packages/core/installer/; helm template -n cozy-installer installer .) > manifests/cozystack-installer.yaml
|
|
sed -i 's|@sha256:[^"]\+||' manifests/cozystack-installer.yaml
|
|
|
|
repos:
|
|
rm -rf _out
|
|
make -C packages/apps check-version-map
|
|
make -C packages/extra check-version-map
|
|
make -C packages/system repo
|
|
make -C packages/apps repo
|
|
make -C packages/extra repo
|
|
mkdir -p _out/logos
|
|
cp ./packages/apps/*/logos/*.svg ./packages/extra/*/logos/*.svg _out/logos/
|
|
|
|
assets:
|
|
make -C packages/core/installer/ assets
|
|
|
|
test:
|
|
make -C packages/core/testing apply
|
|
make -C packages/core/testing test
|
|
make -C packages/core/testing test-applications
|
|
|
|
generate:
|
|
hack/update-codegen.sh
|