Skip to content

Commit

Permalink
Merge pull request #2301 from SUSE/for-deploy-6
Browse files Browse the repository at this point in the history
🤖: Update build recipes for SP6
  • Loading branch information
dirkmueller authored Feb 20, 2025
2 parents b678b53 + 455a311 commit 6333a22
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
8 changes: 4 additions & 4 deletions helm-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
#!ExclusiveArch: aarch64 ppc64le s390x x86_64
#!BuildTag: suse/helm:%%helm_version%%-%RELEASE%
#!BuildTag: suse/helm:%%helm_version%%
#!BuildTag: suse/helm:3.16
#!BuildTag: suse/helm:3.17
#!BuildTag: suse/helm:3
#!BuildTag: suse/helm:latest
#!BuildName: suse-helm-3.16
#!BuildVersion: 15.6.3.16
#!BuildName: suse-helm-3.17
#!BuildVersion: 15.6.3.17
#!BuildRelease: 35
FROM registry.suse.com/bci/bci-micro:15.6 AS target
FROM suse/sle15:15.6 AS builder
Expand All @@ -34,7 +34,7 @@ RUN set -euo pipefail; \
# 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" ]
cut -d '.' -f -2)" = "3.17" ]
FROM registry.suse.com/bci/bci-micro:15.6
COPY --from=builder /target /
# Define labels according to https://en.opensuse.org/Building_derived_containers
Expand Down
8 changes: 4 additions & 4 deletions helm-image/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
To run Helm, use the following command:

```ShellSession
$ podman run --rm -it registry.suse.com/suse/helm:3.16 <helm-sub-command>
$ podman run --rm -it registry.suse.com/suse/helm:3.17 <helm-sub-command>
```

For instance, to display the Helm version, run:
```ShellSession
$ podman run --rm -it registry.suse.com/suse/helm:3.16 version --template='{{.Version}}'
v3.16
$ podman run --rm -it registry.suse.com/suse/helm:3.17 version --template='{{.Version}}'
v3.17
```

Refer to the full list of Helm commands, flags and environment variables, in the [official Helm documentation](https://helm.sh/docs/helm/helm/).
Expand All @@ -33,7 +33,7 @@ For a comprehensive guide on getting started with Helm, refer to the [official H
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.suse.com/suse/helm:3.16
$ podman run --rm -it --net=host -v /path/to/kubeconfig:/root/.kube/config:Z registry.suse.com/suse/helm:3.17
```

## Licensing
Expand Down
5 changes: 5 additions & 0 deletions helm-image/helm-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Feb 20 17:45:54 UTC 2025 - SUSE Update Bot <[email protected]>

- helm update to 3.17

-------------------------------------------------------------------
Fri Jan 31 13:55:54 UTC 2025 - SUSE Update Bot <[email protected]>

Expand Down

0 comments on commit 6333a22

Please sign in to comment.