You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
414 B
11 lines
414 B
KUBERAY_RELEASE_VERSION ?= 1.3.2
|
|
KUBERAY_HELM_CHART_REPO ?= https://ray-project.github.io/kuberay-helm/
|
|
|
|
.PHONY: kuberay-operator/base
|
|
kuberay-operator/base:
|
|
mkdir -p kuberay-operator/base
|
|
cd kuberay-operator/base && helm template --include-crds kuberay-operator kuberay-operator --version ${KUBERAY_RELEASE_VERSION} --repo ${KUBERAY_HELM_CHART_REPO} > resources.yaml
|
|
|
|
.PHONY: test
|
|
test:
|
|
./test.sh ${KF_PROFILE}
|