Skip to content

Commit

Permalink
Merge pull request #2300 from SUSE/for-deploy-7
Browse files Browse the repository at this point in the history
🤖: Update build recipes for SP7
  • Loading branch information
dirkmueller authored Feb 20, 2025
2 parents c5c4972 + dd7b946 commit b726f08
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,10 +17,10 @@
#!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
#!BuildName: suse-helm-3.16
#!BuildVersion: 15.7.3.16
#!BuildName: suse-helm-3.17
#!BuildVersion: 15.7.3.17
FROM bci/bci-micro:15.7 AS target
FROM suse/sle15:15.7 AS builder
COPY --from=target / /target
Expand All @@ -32,7 +32,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 bci/bci-micro:15.7
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:48 UTC 2025 - SUSE Update Bot <[email protected]>

- helm update to 3.17

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

Expand Down

0 comments on commit b726f08

Please sign in to comment.