diff --git a/Makefile b/Makefile index 47dff8b..c6fd85e 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ REVISION := $(shell git rev-parse HEAD) # Some constants to describe the repository. SRCDIR = src GENDIR = generated -CRDDIR = charts/unikorn-core/crds +CRDDIR = charts/core/crds # Source files defining custom resource APIs APISRC = $(shell find pkg/apis -name *types.go -type f) @@ -91,7 +91,7 @@ touch: lint: $(GENDIR) @go install github.com/golangci/golangci-lint/cmd/golangci-lint@$(LINT_VERSION) $(GOBIN)/golangci-lint run ./... - helm lint --strict charts/unikorn-core + helm lint --strict charts/core # Perform license checking. # This must pass or you will be denied by CI. diff --git a/charts/unikorn-core/Chart.yaml b/charts/core/Chart.yaml similarity index 75% rename from charts/unikorn-core/Chart.yaml rename to charts/core/Chart.yaml index a5d7784..2cc8757 100644 --- a/charts/unikorn-core/Chart.yaml +++ b/charts/core/Chart.yaml @@ -1,10 +1,10 @@ apiVersion: v2 -name: unikorn-core +name: core description: A Helm chart for deploying Unikorn Core type: application -version: v0.1.1 -appVersion: v0.1.1 +version: v0.1.0 +appVersion: v0.1.0 icon: https://assets.unikorn-cloud.org/images/logos/dark-on-light/icon.svg diff --git a/charts/unikorn-core/crds/unikorn-cloud.org_helmapplications.yaml b/charts/core/crds/unikorn-cloud.org_helmapplications.yaml similarity index 100% rename from charts/unikorn-core/crds/unikorn-cloud.org_helmapplications.yaml rename to charts/core/crds/unikorn-cloud.org_helmapplications.yaml diff --git a/charts/unikorn-core/values.yaml b/charts/core/values.yaml similarity index 100% rename from charts/unikorn-core/values.yaml rename to charts/core/values.yaml