You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: helm-image/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,13 @@
14
14
To run Helm, use the following command:
15
15
16
16
```ShellSession
17
-
$ podman run --rm -it registry.suse.com/suse/helm:3.13<helm-sub-command>
17
+
$ podman run --rm -it registry.suse.com/suse/helm:3.16<helm-sub-command>
18
18
```
19
19
20
20
For instance, to display the Helm version, run:
21
21
```ShellSession
22
-
$ podman run --rm -it registry.suse.com/suse/helm:3.13 version --template='{{.Version}}'
23
-
v3.13
22
+
$ podman run --rm -it registry.suse.com/suse/helm:3.16 version --template='{{.Version}}'
23
+
v3.16
24
24
```
25
25
26
26
Refer to the full list of Helm commands, flags and environment variables, in the [official Helm documentation](https://helm.sh/docs/helm/helm/).
@@ -33,7 +33,7 @@ For a comprehensive guide on getting started with Helm, refer to the [official H
33
33
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):
34
34
35
35
```ShellSession
36
-
$ podman run --rm -it --net=host -v /path/to/kubeconfig:/root/.kube/config:Z registry.suse.com/suse/helm:3.13
36
+
$ podman run --rm -it --net=host -v /path/to/kubeconfig:/root/.kube/config:Z registry.suse.com/suse/helm:3.16
0 commit comments