From 3f1721deff60a5d51da7082ca31857a9f6d7141d27aaa8ee1585e849571b7d83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Wed, 1 Jan 2025 14:16:10 +0000 Subject: [PATCH] [info=419ef71f1bfde09f956762cfde6c306a] OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/helm-image?expand=0&rev=216 --- .gitattributes | 23 ++++++++ .gitignore | 1 + Dockerfile | 55 +++++++++++++++++++ README.md | 46 ++++++++++++++++ _service | 10 ++++ helm-image.changes | 129 +++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 264 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 Dockerfile create mode 100644 README.md create mode 100644 _service create mode 100644 helm-image.changes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8fed32b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,55 @@ +# SPDX-License-Identifier: Apache-2.0 + +# Copyright (c) 2025 SUSE LLC + +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. + +# The content of THIS FILE IS AUTOGENERATED and should not be manually modified. +# It is maintained by the BCI team and generated by +# https://github.com/SUSE/BCI-dockerfile-generator + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# You can contact the BCI team via https://github.com/SUSE/bci/discussions + +#!UseOBSRepositories + +#!BuildTag: opensuse/helm:%%helm_version%%-%RELEASE% +#!BuildTag: opensuse/helm:%%helm_version%% +#!BuildTag: opensuse/helm:3.16 +#!BuildTag: opensuse/helm:3 +#!BuildTag: opensuse/helm:latest + +FROM opensuse/bci/bci-micro:latest AS target +FROM opensuse/tumbleweed:latest AS builder +COPY --from=target / /target + +RUN set -euo pipefail; \ + zypper -n --installroot /target --gpg-auto-import-keys install --no-recommends ca-certificates-mozilla helm; \ + zypper -n clean; \ + rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2} +# sanity check that the version from the tag is equal to the version of helm that we expect +RUN set -euo pipefail; \ + [ "$(rpm --root /target -q --qf '%{version}' helm | \ + cut -d '.' -f -2)" = "3.16" ] +FROM opensuse/bci/bci-micro:latest +COPY --from=builder /target / +# Define labels according to https://en.opensuse.org/Building_derived_containers +# labelprefix=org.opensuse.application.helm +LABEL org.opencontainers.image.title="openSUSE Tumbleweed Helm (Kubernetes Package Manager)" +LABEL org.opencontainers.image.description="Helm (Kubernetes Package Manager) container based on the openSUSE Tumbleweed Base Container Image." +LABEL org.opencontainers.image.version="%%helm_version%%" +LABEL org.opencontainers.image.url="https://www.opensuse.org" +LABEL org.opencontainers.image.created="%BUILDTIME%" +LABEL org.opencontainers.image.vendor="openSUSE Project" +LABEL org.opencontainers.image.source="%SOURCEURL%" +LABEL org.opencontainers.image.ref.name="%%helm_version%%-%RELEASE%" +LABEL org.opensuse.reference="registry.opensuse.org/opensuse/helm:%%helm_version%%-%RELEASE%" +LABEL org.openbuildservice.disturl="%DISTURL%" +LABEL org.opensuse.lifecycle-url="https://en.opensuse.org/Lifetime#openSUSE_BCI" +LABEL org.opensuse.release-stage="released" +# endlabelprefix +LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/SUSE/BCI-dockerfile-generator/Tumbleweed/helm-image/README.md" +ENTRYPOINT ["/usr/bin/helm"] +CMD ["help"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..fe5522c --- /dev/null +++ b/README.md @@ -0,0 +1,46 @@ +# Helm (Kubernetes Package Manager) container image + +![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green) + + +## 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 command: + +```ShellSession +$ podman run --rm -it registry.opensuse.org/opensuse/helm:3.16 +``` + +For instance, to display the Helm version, run: +```ShellSession +$ podman run --rm -it registry.opensuse.org/opensuse/helm:3.16 version --template='{{.Version}}' +v3.16 +``` + +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, mount the Kubernetes configuration file (`kubeconfig`) from the container host into the container (use the `--net=host` flag to allow the container to use the host’s network): + +```ShellSession +$ podman run --rm -it --net=host -v /path/to/kubeconfig:/root/.kube/config:Z registry.opensuse.org/opensuse/helm:3.16 +``` + +## Licensing + +`SPDX-License-Identifier: Apache-2.0` + +This documentation and the build recipe are licensed as Apache-2.0. +The container itself contains various software components under various open source licenses listed in the associated +Software Bill of Materials (SBOM). + +This image is based on [openSUSE Tumbleweed](https://get.opensuse.org/tumbleweed/). diff --git a/_service b/_service new file mode 100644 index 0000000..978525b --- /dev/null +++ b/_service @@ -0,0 +1,10 @@ + + + + + Dockerfile + %%helm_version%% + helm + patch + + \ No newline at end of file diff --git a/helm-image.changes b/helm-image.changes new file mode 100644 index 0000000..e7e3238 --- /dev/null +++ b/helm-image.changes @@ -0,0 +1,129 @@ +------------------------------------------------------------------- +Wed Jan 1 14:13:48 UTC 2025 - SUSE Update Bot + +- update copyright year + +------------------------------------------------------------------- +Tue Dec 10 16:28:02 UTC 2024 - SUSE Update Bot + +- update container description + +------------------------------------------------------------------- +Mon Dec 9 20:58:52 UTC 2024 - SUSE Update Bot + +- switch to multibuild and add a version check at build time to avoid releasing incorrectly tagged containers + +------------------------------------------------------------------- +Wed Oct 30 15:34:45 UTC 2024 - SUSE Update Bot + +- remove nonsensical org.opencontainers.image.authors - duplication of .vendor + +------------------------------------------------------------------- +Fri Oct 11 15:12:52 UTC 2024 - SUSE Update Bot + +- make the tag with -%RELEASE% the first tag listed + +------------------------------------------------------------------- +Wed Sep 25 17:12:11 UTC 2024 - Dirk Mueller + +- improved log cleaning + +------------------------------------------------------------------- +Wed Sep 25 09:30:18 UTC 2024 - Dirk Mueller + +- adjust for new helm version + +------------------------------------------------------------------- +Fri Sep 13 09:56:19 UTC 2024 - Dirk Mueller + +- Remove trailing whitespace + +------------------------------------------------------------------- +Thu Aug 8 19:28:10 UTC 2024 - Dirk Mueller + +- add oci.image.ref.name + +------------------------------------------------------------------- +Thu Aug 8 16:43:43 UTC 2024 - Dirk Mueller + +- remove oci reference annotation again + +------------------------------------------------------------------- +Mon Aug 5 11:38:13 UTC 2024 - Dirk Mueller + +- add OCI reference annotation + +------------------------------------------------------------------- +Sat Aug 3 08:56:51 UTC 2024 - Dirk Mueller + +- set OCI.authors attribute instead of deprecated MAINTAINER + +------------------------------------------------------------------- +Wed Jul 31 12:06:45 UTC 2024 - Dirk Mueller + +- set specific lifecycle url for openSUSE BCI + +------------------------------------------------------------------- +Tue Jul 16 15:20:06 UTC 2024 - Dirk Mueller + +- Re-render templates (no functional change) + +------------------------------------------------------------------- +Wed Jun 19 07:36:33 UTC 2024 - Dan Čermák + +- improve README + +------------------------------------------------------------------- +Mon Jun 17 08:06:22 UTC 2024 - Alexandre Vicenzi + +- Extend README.md + +------------------------------------------------------------------- +Mon Jun 10 15:11:25 UTC 2024 - Dirk Mueller + +- update README; reduce unnecessary newlines + +------------------------------------------------------------------- +Wed Jun 5 15:13:27 UTC 2024 - Dirk Mueller + +- Don't add artifacthub labels into labelprefix section + +------------------------------------------------------------------- +Tue Jun 4 12:35:15 UTC 2024 - Alexandre Vicenzi + +- Fix grammar mistake in licensing footer + +------------------------------------------------------------------- +Tue May 7 19:07:24 UTC 2024 - Dirk Mueller + +- extend READMEs; correct eula for application images + +------------------------------------------------------------------- +Fri Apr 19 10:31:30 UTC 2024 - Dirk Mueller + +- Bump kiwi schema version + +------------------------------------------------------------------- +Fri Apr 12 12:03:53 UTC 2024 - Dirk Mueller + +- Don't wipe everything in /var/log, only remove log files (this omits directories owned by packages) + +------------------------------------------------------------------- +Wed Jan 17 14:29:14 UTC 2024 - Dan Čermák + +- Add initial README stub + +------------------------------------------------------------------- +Tue Jan 2 08:26:58 UTC 2024 - Dirk Mueller + +- update year to 2024 + +------------------------------------------------------------------- +Thu Sep 28 14:29:09 UTC 2023 - Dirk Mueller + +- add copyright and description header + +------------------------------------------------------------------- +Thu Jul 06 11:04:01 UTC 2023 - SUSE Update Bot + +- First version of the Kubernetes Package Manager BCI