Skip to content

Commit

Permalink
chore: Updated scheduler readme and developer instructions (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
RealAnna authored Oct 6, 2022
1 parent 812f2c5 commit 9bd5d14
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions scheduler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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=<some-registry>
make build-and-push-local RELEASE_REGISTRY=<some-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=<your-lfc-operator-namespace> ):
2. Generate your release manifest

```sh
cd manifest/install/charts
helm upgrade --install keptn-scheduler keptn-scheduler/ --set scheduler.image=<your-generated-image>
make release-manifests RELEASE_REGISTRY=<some-registry>
```

3. Deploy the scheduler using kubectl:

```sh
kubectl apply -f ./config/rendered/release.yaml # install the scheduler
```

### Uninstall
To delete the scheduler:

```sh
helm uninstall keptn-scheduler
kubectl delete -f ./config/rendered/release.yaml # uninstall the scheduler
```

## Contributing
Expand Down

0 comments on commit 9bd5d14

Please sign in to comment.