- Added Apache Airflow with Makefile, README, and values.yaml for deployment. - Introduced ArgoCD with Makefile, README, and values.yaml for GitOps management. - Implemented Jenkins with Makefile, README, and values.yaml for CI/CD automation. - Included Nexus Repository Manager with Makefile, README, and values.yaml for artifact management. - Updated Gitea and Vault configurations for consistency and improved documentation. - Enhanced README files with installation instructions, usage, and configuration details in both English and Chinese.
17 lines
428 B
Makefile
17 lines
428 B
Makefile
HELM_RELEASE_NAME ?= argocd
|
|
HELM_APPLICATION_NAME ?= argo-cd
|
|
HELM_NAMESPACE ?= argocd
|
|
HELM_DIR ?= ./helm
|
|
HELM_CHART_VERSION ?=
|
|
HELM_VALUES_FILE ?= ./values.yaml
|
|
HELM_OCI_REGISTRY ?=
|
|
HELM_OCI_NAMESPACE ?=
|
|
HELM_OCI_USERNAME ?=
|
|
HELM_OCI_PASSWORD ?=
|
|
HELM_REPO_NAME ?= argo
|
|
HELM_REPO_URL ?= https://argoproj.github.io/argo-helm
|
|
HELM_CHART_REPO ?= $(HELM_REPO_NAME)/$(HELM_APPLICATION_NAME)
|
|
HELM_LANE ?=
|
|
|
|
include ../_template/base.mk
|