Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Updated scheduler readme and developer instructions #123

Merged
merged 4 commits into from
Oct 6, 2022
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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, if you change the operator namespace, make sure you specify the same namespace (--set scheduler.namespace=<your-operator-namespace> ):

```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 # install the scheduler
RealAnna marked this conversation as resolved.
Show resolved Hide resolved
```

## Contributing
Expand Down