https://github.com/victorboissiere/k8s-image-dashboard
Show k8s pods and current images used on a simple dashboard
https://github.com/victorboissiere/k8s-image-dashboard
devops-tools docker kubernetes kubernetes-monitoring
Last synced: 2 months ago
JSON representation
Show k8s pods and current images used on a simple dashboard
- Host: GitHub
- URL: https://github.com/victorboissiere/k8s-image-dashboard
- Owner: victorboissiere
- Created: 2018-04-21T13:27:55.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-07T08:36:16.000Z (over 6 years ago)
- Last Synced: 2025-03-29T04:12:47.796Z (3 months ago)
- Topics: devops-tools, docker, kubernetes, kubernetes-monitoring
- Language: HTML
- Homepage: https://hub.docker.com/r/gitcommit/k8s-image-dashboard/
- Size: 794 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# K8S Image Dashboard
Simple dashboard to list all pods and associated images to quickly check
which version of your images you are using.This project aims to quickly check the state of your deployed images.

## Configuration
**Available environment variables**
(optional) `PORT`: Running application port. Default: 3000
(optional) `EXCLUDE_NAMESPACES`: Do not show pods in the selected namespaces
_Example_: `EXCLUDE_NAMESPACES:kube-system,kube-public`
(optional) `REPO_REGEX`: Link to your own repository
Add a link to a specific image by using a matching regex.
_Example_: `REPO_REGEX=gitcommit/([a-zA-Z-_]+)|https://github.com/victorboissiere/$1`
## K8S deployment
```bash
kubectl create -f https://raw.githubusercontent.com/victorboissiere/k8s-image-dashboard/master/k8s/deployment.yaml
```The default service type is ClusterIP. Feel free to update
the yaml configuration files to your needs.