🤖: sync package with devel:BCI:Tumbleweed from OBS OBS-URL: https://build.opensuse.org/request/show/1350810 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kubectl-1.36-image?expand=0&rev=2
kubectl Container Image
Kubectl is a command line tool for communicating with a Kubernetes cluster's control plane, using the Kubernetes API.
How to use this Container Image
To run commands inside the container for the current cluster for which the kubeconfig is available in /root/.kube.config:
podman run --rm --name kubectl \
registry.opensuse.org/opensuse/kubectl:1.36 get nodes
To pass configuration of a remote cluster to the container:
podman run --rm --name kubectl \
-v /localpath/to/kubeconfig:/root/.kube/config:Z
registry.opensuse.org/opensuse/kubectl:1.36 get nodes
This container also includes Helm, the package manager for Kubernetes and Helm charts.
You can use kubectl customize --enable-helm for charts:
podman run --rm --name kubectl \
-v /localpath/to/customize:/home/user:Z
registry.opensuse.org/opensuse/kubectl:1.36 kustomize --enable-helm
Running as a regular user
The container provides a preconfigured user called "user" which can be explicitly set to lower the permissions of kubectl within the container
podman run --rm --name kubectl \
--user user \
-v /localpath/to/kubeconfig:/home/user/.kube/config:Z \
registry.opensuse.org/opensuse/kubectl:1.36 version
## 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/).
Description
Languages
Dockerfile
100%