Skip to content

Commit

Permalink
Test build for #1286
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkmueller authored and SUSE Update Bot committed Jun 14, 2024
1 parent aa353fd commit 4b60c29
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions helm-image/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,34 @@
# The openSUSE Tumbleweed Kubernetes Package Manager Container Image
# Kubernetes Package Manager container image

![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green)

Kubernetes Package Manager container based on the openSUSE Tumbleweed Base Container Image.

## Description

[Helm](https://helm.sh/) is a tool for managing [Kubernetes](https://kubernetes.io/) charts, which are packages of pre-configured Kubernetes resources. This container image simplifies the deployment and use of Helm by packaging it into a ready-to-use container.


## Usage

To run Helm, use the following comamand:

```ShellSession
# podman run --rm -it registry.opensuse.org/opensuse/helm:%%helm_version%% <helm-sub-command>

podman run --rm -it registry.opensuse.org/opensuse/helm:%%helm_version%% version
```

Refer to the full list of Helm commands, flags and environment variables, in the [official Helm documentation](https://helm.sh/docs/helm/helm/).

For a comprehensive guide on getting started with Helm, refer to the [official Helm tutorial](https://helm.sh/docs/chart_template_guide/getting_started/).

### Connecting Helm container to the Host's Kubernetes Cluster

To interact with a Kubernetes cluster running on the host, mount the Kubernetes configuration file (`kubeconfig`) into the container (use `--net=host` flag to allow container to use host’s network):

```ShellSession
podman run --rm -it --net=host -v /path/to/kubeconfig:/root/.kube/config registry.opensuse.org/opensuse/helm:%%helm_version%%
```

## Licensing

Expand Down

0 comments on commit 4b60c29

Please sign in to comment.