From cf8a1d84e120234fdb9744a6f9a70c126832c9679e630e78daa1f8fe4c78cf7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Mon, 17 Jun 2024 08:38:09 +0000 Subject: [PATCH] [info=cf74e6241e7777f81badebd988d024fd] OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/helm-image?expand=0&rev=93 --- README.md | 31 +++++++++++++++++++++++++++++-- helm-image.changes | 5 +++++ 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c7ae9e6..69589fb 100644 --- a/README.md +++ b/README.md @@ -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%% + +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 diff --git a/helm-image.changes b/helm-image.changes index e95900d..9093537 100644 --- a/helm-image.changes +++ b/helm-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jun 17 08:06:22 UTC 2024 - Alexandre Vicenzi + +- Extend README.md + ------------------------------------------------------------------- Mon Jun 10 15:11:25 UTC 2024 - Dirk Mueller