mirror of
https://github.com/coder/coder.git
synced 2026-06-03 04:58:23 +00:00
21af020386
* Refactor helm to extract common templates to libcoder Signed-off-by: Spike Curtis <spike@coder.com> * Remove comment from libcoder Chart.yaml Signed-off-by: Spike Curtis <spike@coder.com> * Add provisioner helm chart * Fix prettier, linting, docs Signed-off-by: Spike Curtis <spike@coder.com> * Log at INFO when provisionerd connects to coderd Signed-off-by: Spike Curtis <spike@coder.com> * remove unnecessary exports in helm tests Signed-off-by: Spike Curtis <spike@coder.com> --------- Signed-off-by: Spike Curtis <spike@coder.com>
26 lines
600 B
Makefile
26 lines
600 B
Makefile
# Use a single bash shell for each job, and immediately exit on failure
|
|
SHELL := bash
|
|
.SHELLFLAGS = -ceu
|
|
.ONESHELL:
|
|
|
|
# This doesn't work on directories.
|
|
# See https://stackoverflow.com/questions/25752543/make-delete-on-error-for-directory-targets
|
|
.DELETE_ON_ERROR:
|
|
|
|
all: lint
|
|
.PHONY: all
|
|
|
|
lint: lint/helm
|
|
.PHONY: lint
|
|
|
|
lint/helm: lint/helm/coder lint/helm/provisioner
|
|
.PHONY: lint/helm
|
|
|
|
lint/helm/coder:
|
|
helm lint --strict --set coder.image.tag=v0.0.1 coder/
|
|
.PHONY: lint/helm/coder
|
|
|
|
lint/helm/provisioner:
|
|
helm lint --strict --set coder.image.tag=v0.0.1 provisioner/
|
|
.PHONY: lint/helm/provisioner
|