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

Add alternative installation to getting started page #114

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
17 changes: 17 additions & 0 deletions docs/user-guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,23 @@ This installation can be expanded to install multiple Discovery Handlers and/or

See [modifying an Akri Installation](customizing-an-akri-installation.md) to learn about how to use Akri's Helm chart to install additional Configurations and Discovery Handlers.

### Alternative installation method via Glasskube

To install Akri using [Glasskube](https://glasskube.dev/), you can select "Akri" from the "ClusterPackages" tab in the Glasskube GUI, choose your Kubernetes distrubtion and toggle whether you want to use the latest containers of the Akri components or not, then click "install" or you can run the following command:
```
glasskube install akri
```
Example with value definitions:
```
glasskube install akri --value=containerRuntimeSocket='' --value=useLatestContainers="True"
```
Enables Akri installation on Minikube or Kubernetes and uses the latest containers of the Akri components.

Uninstall command:
```
glasskube uninstall akri
```

### Inspecting an Akri Installation

* Run `kubectl get crd`, and you should see Akri's two CRDs listed.
Expand Down