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

README: fix installation instructions #146

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Changes from all 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: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,27 @@ You’ll need a Kubernetes cluster to run against. You can use [KIND](https://si
make install
```

2. Install Instances of Custom Resources:

2. Add the api key and region as environment variables (or later as flags):
```sh
kubectl apply -f config/samples/
$ export CORALOGIX_API_KEY="<api-key>"
$ export CORALOGIX_REGION="<region>"
```

3. Build and push your image to the location specified by `IMG`:

```sh
make docker-build docker-push IMG=<some-registry>/coralogix-operator:tag
```

4. Deploy the controller to the cluster with the image specified by `IMG`:

4. Deploy the controller to the cluster with the image specified by `IMG`:
```sh
make deploy IMG=<some-registry>/coralogix-operator:tag
```

5. Install custom resources samples into the cluster:
```sh
kubectl apply -R -f config/samples/
```

### Uninstall CRDs
To delete the CRDs from the cluster:

Expand Down
Loading