### Install KubeView using the install script Source: https://kubeview.benco.io This command downloads and executes the install script to automatically install the latest release of KubeView. ```bash curl -sL https://raw.githubusercontent.com/benc-uk/kubeview/main/scripts/install.sh | sh ``` -------------------------------- ### Run KubeView binary Source: https://kubeview.benco.io After installation, you can run KubeView directly from the command line. ```bash ./kubeview ``` -------------------------------- ### Install KubeView to a custom location Source: https://kubeview.benco.io If you need to install KubeView to a custom directory or lack write permissions to the default location, you can set the KUBEVIEW_INSTALL_DIR environment variable. ```bash curl -sL https://raw.githubusercontent.com/benc-uk/kubeview/main/scripts/install.sh | KUBEVIEW_INSTALL_DIR=$HOME/.local/bin sh ``` -------------------------------- ### Makefile Commands Source: https://kubeview.benco.io A list of useful commands provided by the makefile for development and deployment tasks. ```makefile help ๐Ÿ’ฌ This help message :) lint ๐Ÿ” Lint & format check only, use for CI lint-fix โœจ Lint & try to format & fix run ๐Ÿƒ Run application, used for local development build ๐Ÿ”จ Build application binary clean ๐Ÿงน Clean up and reset image ๐Ÿ“ฆ Build container image from Dockerfile helm-docs ๐Ÿ“œ Update docs & readme for Helm chart helm-package ๐Ÿ”  Package Helm chart and update index ``` -------------------------------- ### Run KubeView from container Source: https://kubeview.benco.io This command runs KubeView using Docker, mounting your local Kubernetes configuration to allow access to your cluster. The application will be accessible at http://localhost:8000. ```bash docker run --rm -it --volume "$HOME/.kube:/root/.kube" \ --port 8000:8000 ghcr.io/benc-uk/kubeview:latest ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.