diff --git a/Makefile b/Makefile index 387a1526..1f2bf37f 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ config: crds: mkdir -p deploy/helm/hbase-operator/crds - cat deploy/crd/*.yaml | yq eval '.metadata.annotations["helm.sh/resource-policy"]="keep"' - > deploy/helm/hbase-operator/crds/crds.yaml + cargo run crd | yq eval '.metadata.annotations["helm.sh/resource-policy"]="keep"' - > deploy/helm/hbase-operator/crds/crds.yaml chart-lint: compile-chart docker run -it -v $(shell pwd):/build/helm-charts -w /build/helm-charts quay.io/helmpack/chart-testing:v3.5.0 ct lint --config deploy/helm/ct.yaml @@ -59,11 +59,4 @@ clean-manifests: generate-manifests: clean-manifests compile-chart ./scripts/generate-manifests.sh -clean-crds: - rm -rf deploy/crd/* - -generate-crds: - touch rust/operator-binary/build.rs - cargo build - -regenerate-charts: clean-crds chart-clean clean-manifests generate-crds compile-chart generate-manifests +regenerate-charts: chart-clean clean-manifests compile-chart generate-manifests diff --git a/deploy/helm/hbase-operator/README.md b/deploy/helm/hbase-operator/README.md index db0889c7..6632b617 100644 --- a/deploy/helm/hbase-operator/README.md +++ b/deploy/helm/hbase-operator/README.md @@ -20,8 +20,9 @@ helm install hbase-operator deploy/helm/hbase-operator The usage of this operator and its CRDs is described in the [documentation](https://docs.stackable.tech/hbase/index.html) -The operator has example requests included in the [`/examples`](https://github.com/stackabletech/hbase/operator/tree/main/examples) directory. +The operator has example requests included in the [`/examples`](https://github.com/stackabletech/hbase-operator/tree/main/examples) directory. ## Links https://github.com/stackabletech/hbase-operator +