From 4e04b52aecb562b5dfab130d2bd06dae4cbe7fa2 Mon Sep 17 00:00:00 2001 From: RealAnna Date: Thu, 6 Oct 2022 09:36:03 +0200 Subject: [PATCH 1/4] chore: Updated scheduler readme and developer instructions Signed-off-by: RealAnna --- scheduler/README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/scheduler/README.md b/scheduler/README.md index 201723fe23..ef6f105097 100644 --- a/scheduler/README.md +++ b/scheduler/README.md @@ -12,23 +12,28 @@ You’ll need a Kubernetes cluster v0.24.0 or higher to run against. You can use 1. Build and push your image to the location specified by `RELEASE_REGISTRY`: ```sh -make push-release-images RELEASE_REGISTRY= +make build-and-push-local RELEASE_REGISTRY= ``` **NOTE:** Run `make --help` for more information on all potential `make` targets -2. Deploy the scheduler using helm, if you change the operator namespace, make sure you specify the same namespace (--set scheduler.namespace= ): +2. Generate your release manifest ```sh -cd manifest/install/charts -helm upgrade --install keptn-scheduler keptn-scheduler/ --set scheduler.image= +make release-manifests RELEASE_REGISTRY= +``` + +3. Deploy the scheduler using kubectl, if you change the operator namespace, make sure you specify the same namespace (--set scheduler.namespace= ): + +```sh +kubectl apply -f ./scheduler-manifest/release.yaml # install the scheduler ``` ### Uninstall To delete the scheduler: ```sh -helm uninstall keptn-scheduler +kubectl delete -f ./scheduler-manifest/release.yaml # install the scheduler ``` ## Contributing From f7e20cc50e451abca41843c83fdf213697272c0b Mon Sep 17 00:00:00 2001 From: RealAnna Date: Thu, 6 Oct 2022 09:38:02 +0200 Subject: [PATCH 2/4] chore: Updated scheduler readme and developer instructions Signed-off-by: RealAnna --- scheduler/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scheduler/README.md b/scheduler/README.md index ef6f105097..663f47019e 100644 --- a/scheduler/README.md +++ b/scheduler/README.md @@ -26,14 +26,14 @@ make release-manifests RELEASE_REGISTRY= 3. Deploy the scheduler using kubectl, if you change the operator namespace, make sure you specify the same namespace (--set scheduler.namespace= ): ```sh -kubectl apply -f ./scheduler-manifest/release.yaml # install the scheduler +kubectl apply -f ./config/rendered/release.yaml # install the scheduler ``` ### Uninstall To delete the scheduler: ```sh -kubectl delete -f ./scheduler-manifest/release.yaml # install the scheduler +kubectl delete -f ./config/rendered/release.yaml # install the scheduler ``` ## Contributing From 6179534e1048a25d6c650d90b5f02a38b79aaacc Mon Sep 17 00:00:00 2001 From: RealAnna Date: Thu, 6 Oct 2022 09:40:29 +0200 Subject: [PATCH 3/4] chore: Updated scheduler readme and developer instructions Signed-off-by: RealAnna --- scheduler/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scheduler/README.md b/scheduler/README.md index 663f47019e..a22497ce3b 100644 --- a/scheduler/README.md +++ b/scheduler/README.md @@ -23,7 +23,7 @@ make build-and-push-local RELEASE_REGISTRY= make release-manifests RELEASE_REGISTRY= ``` -3. Deploy the scheduler using kubectl, if you change the operator namespace, make sure you specify the same namespace (--set scheduler.namespace= ): +3. Deploy the scheduler using kubectl: ```sh kubectl apply -f ./config/rendered/release.yaml # install the scheduler From 9fd93ba86d5018f4a4584430be0867d9cfc28249 Mon Sep 17 00:00:00 2001 From: RealAnna Date: Thu, 6 Oct 2022 09:41:17 +0200 Subject: [PATCH 4/4] chore: Updated scheduler readme and developer instructions Signed-off-by: RealAnna --- scheduler/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scheduler/README.md b/scheduler/README.md index a22497ce3b..202ea357b8 100644 --- a/scheduler/README.md +++ b/scheduler/README.md @@ -33,7 +33,7 @@ kubectl apply -f ./config/rendered/release.yaml # install the scheduler To delete the scheduler: ```sh -kubectl delete -f ./config/rendered/release.yaml # install the scheduler +kubectl delete -f ./config/rendered/release.yaml # uninstall the scheduler ``` ## Contributing