fab-city-software-kit/Makefile
2022-07-27 17:25:36 +02:00

96 lines
3.4 KiB
Makefile

##@ General
# The help target prints out all targets with their descriptions organized
# beneath their categories. The categories are represented by '##@' and the
# target descriptions by '##'. The awk commands is responsible for reading the
# entire set of makefiles included in this invocation, looking for lines of the
# file as xyz: ## something, and then pretty-format the target and help. Then,
# if there's a line with ##@ something, that gets pretty-printed as a category.
# More info on the usage of ANSI control characters for terminal formatting:
# https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters
# More info on the awk command:
# http://linuxcommand.org/lc3_adv_awk.php
help: ## Display this help.
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
##@ Setup
up: k3d-create olm-install ## Create a local k3d development cluster with operator lifecycle manager.
down: k3d-delete ## Delete the local k3d development cluster.
olm-install: ## Install the Operator Framework Lifecycle Manager.
operator-sdk olm install
olm-uninstall: ## Uninstall the Operator Framework Lifecycle Manager.
operator-sdk olm uninstall
k3d-create: ## Create a local K3D development cluster.
k3d cluster create fcos-dev --config ci/k3d-fcos-dev.yaml
k3d-delete: ## Delete the local K3D development cluster
k3d cluster delete fcos-dev
##@ Lint
lint: yaml-lint markdown-lint ## Lint all input files.
yaml-lint: ## Lint all YAML files.
yamllint -f auto .
markdown-lint: ## Lint all Markdown files.
mdl .
manifest-lint: ## Lint the Kubenetes manifest.
kubectl kustomize overlays/dev --enable-helm | kubeconform -ignore-missing-schemas -strict
##@ Test
conftest: ## Test the Kubernetes manifest against the policies.
kubectl kustomize overlays/dev --enable-helm | conftest test -p test -
##@ Build
manifest: ## Build Kubernetes manifest using Kustomize and Helm.
kubectl kustomize overlays/dev --enable-helm
deploy: ## Apply the manifest to the local Kubernetes development cluster.
kubectl kustomize overlays/dev/ --enable-helm | kubectl apply --server-side=true -f -
clean: down up ## Clean the local Kubernetes development cluster.
##@ Show
get-all: ## Get the state of all Kubernetes resources.
kubectl get all --all-namespaces
get-ns: ## Get all Kubernetes namespaces.
kubectl get namespaces
get-api: ## Get all Kubernetes api resources.
kubectl api-resources
watch-all: ## Watch the state of all Kubernetes resources.
watch -n 1 kubectl get all --all-namespaces
get-olm-status: ## Get the state of the Operator Framework Lifecycle Manager.
operator-sdk olm status
get-olm-cat: ## Get the catalog sources of the Operator Framework Lifecycle Manager.
kubectl get catalogsources.operators.coreos.com --all-namespaces
get-olm-subs: ## Get the catalog subscriptions of the Operator Framework Lifecycle Manager.
kubectl get subscriptions.operators.coreos.com --all-namespaces
get-olm-pkgs: ## Get the package manifest of the Operator Framework Lifecycle Manager.
kubectl get packagemanifest --all-namespaces
get-olm-ip: ## Get the install plans of the Operator Framework Lifecycle Manager.
kubectl get installplans.operators.coreos.com --all-namespaces
##@ Logs
logs-oml-op: ## Show logs of the Operator Framework Lifecycle Manager.
kubectl logs -f deployment.apps/olm-operator --all-containers -n olm