Skip to content

Add link to Helm in README #6583

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

Merged
merged 1 commit into from
Jul 16, 2025
Merged
Show file tree
Hide file tree
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
20 changes: 19 additions & 1 deletion container/helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,32 @@ To install openQA, update helm dependencies and install the parent chart.
helm dependency update charts/openqa/
helm install openqa charts/openqa/
```
The dependency subcommand will build the manifests of the services, which can
be
found under the root chart (helm/charts/openqa/charts).
The install will deploy the services in the cluster.

To uninstall and start over, use `helm uninstall openqa`.
To uninstall and start over, use `helm uninstall openqa` and delete the tgz
archives and rerun `helm dependency update charts/openqa/`.


Check that everything is up and running:

```
helm status --show-resources openqa
```

## Configuration

It might be necessary to customize the charts by overriding some of the
variables inside _charts/values.yaml_ to suit your needs.

For testing, it is also useful to create a `my_values.yaml` and run:

```
helm install openqa helm/charts/openqa/ -f my_values.yaml
```

### Worker

The worker requires some basic configuration, as described in the
Expand Down
5 changes: 5 additions & 0 deletions docs/Installing.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,11 @@ Take a look at
https://registry.opensuse.org/cgi-bin/cooverview?srch_term=project%3Ddevel%3AopenQA[openSUSE's registry]
for all available container images.

=== Kubernetes

Find a guide and the helm charts for Kubernetes deployment of openQA in
link:https://github.com/os-autoinst/openQA/blob/master/container/helm/README.md[Helm README].

== Quick bootstrapping under openSUSE
[id="bootstrapping"]

Expand Down