General-purpose web UI for Kubernetes clusters
Go to file
dependabot[bot] 1c53e490bc
chore(deps-dev): bump @typescript-eslint/parser in /modules/web (#10280)
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 8.31.1 to 8.39.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.39.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 00:01:43 -07:00
.github chore(deps): bump docker/login-action from 3.4.0 to 3.5.0 (#10279) 2025-08-07 23:43:43 -07:00
charts/kubernetes-dashboard feat: release 7.13.0 (#10206) 2025-05-28 08:12:18 -07:00
docs Correct misplaced quoting in sample user documentation. (#9742) 2024-12-13 10:52:26 +01:00
hack chore(deps): Bump k8s modules to 0.32.0 (#9794) 2025-01-07 12:38:28 +01:00
modules chore(deps-dev): bump @typescript-eslint/parser in /modules/web (#10280) 2025-08-08 00:01:43 -07:00
.codecov.yml Make API container fully stateless and independent of frontend (#8708) 2024-03-01 15:05:47 +01:00
.ct.yml feat: update helm chart to work with kong as a gateway (#8735) 2024-03-06 13:03:52 +01:00
.dockerignore Make API container fully stateless and independent of frontend (#8708) 2024-03-01 15:05:47 +01:00
.editorconfig Add more strict rxjs lint rules and get rid of rxjs 5 usages (#5478) 2020-08-27 15:19:48 +02:00
.gitignore Make API container fully stateless and independent of frontend (#8708) 2024-03-01 15:05:47 +01:00
.golangci.yml feat: add cache invalidation support based on Cache-Control header (#10205) 2025-05-28 06:38:18 -07:00
.kubeconform Make API container fully stateless and independent of frontend (#8708) 2024-03-01 15:05:47 +01:00
.licenserc.yaml Make API container fully stateless and independent of frontend (#8708) 2024-03-01 15:05:47 +01:00
CONTRIBUTING.md Update CONTRIBUTING.md (#6783) 2022-02-09 01:48:17 -08:00
DEVELOPMENT.md feat: update helm chart to work with kong as a gateway (#8735) 2024-03-06 13:03:52 +01:00
LICENSE Set project license to Apache 2.0 2015-10-16 10:15:00 +02:00
Makefile feat: bump dependencies and add owner ref information to object meta (#9483) 2024-09-24 18:30:53 +02:00
OWNERS Updated OWNERS file to include link to docs (#3547) 2019-02-05 23:38:15 -08:00
OWNERS_ALIASES Update OWNERS_ALIASES (#7620) 2023-02-14 02:39:30 -08:00
README.md Update README.md 2024-03-08 12:49:41 +01:00
ROLES.md Make API container fully stateless and independent of frontend (#8708) 2024-03-01 15:05:47 +01:00
SECURITY.md Add SECURITY.md (#5393) 2020-08-02 12:43:40 -07:00
SECURITY_CONTACTS Remove inactive members from OWNERS (#5359) 2020-07-16 02:25:41 -07:00
code-of-conduct.md Move template files to root (#3468) 2018-12-27 01:33:09 -08:00

README.md

Kubernetes Dashboard

Go Report Card Coverage Status License

Introduction

Kubernetes Dashboard is a general purpose, web-based UI for Kubernetes clusters. It allows users to manage applications running in the cluster and troubleshoot them, as well as manage the cluster itself.

As of version 7.0.0, we have dropped support for Manifest-based installation. Only Helm-based installation is supported now. Due to multi-container setup and hard dependency on Kong gateway API proxy it would not be feasible to easily support Manifest-based installation.

Additionally, we have changed the versioning scheme and dropped appVersion from Helm chart. It is because, with a multi-container setup, every module is now versioned separately. Helm chart version can be considered an app version now.

Dashboard UI workloads page

Installation

Kubernetes Dashboard supports only Helm-based installation currently as it is faster and gives us better control over all dependencies required by Dashboard to run. We now use a single-container, DBless Kong installation as a gateway that connects all our containers and exposes the UI. Users can then use any ingress controller or proxy in front of kong gateway. To find out more about ways to customize your installation check out helm chart values.

In order to install Kubernetes Dashboard simply run:

# Add kubernetes-dashboard repository
helm repo add kubernetes-dashboard https://kubernetes.github.io/dashboard/
# Deploy a Helm Release named "kubernetes-dashboard" using the kubernetes-dashboard chart
helm upgrade --install kubernetes-dashboard kubernetes-dashboard/kubernetes-dashboard --create-namespace --namespace kubernetes-dashboard

For more information about our Helm chart visit ArtifactHub.

Documentation

Dashboard documentation can be found in the docs directory which contains:

  • Common: Entry-level overview.
  • User Guide: Helpful information for users.
  • How to access Dashboard - Everything you need to know to get access to you Kubernetes Dashboard instance after installation.
  • Access Control: Find out how to control access to your Kubernetes Dashboard and create sample user that can be used to log in.
  • Developer Guide: Important information for contributors that would like to test, run and work on Dashboard locally.

Community, discussion, contribution, and support

Learn how to engage with the Kubernetes community on the community page.

You can reach the maintainers of this project at:

Contribution

Learn how to start contributing to the Contributing Guideline.

Code of conduct

Participation in the Kubernetes community is governed by the Kubernetes Code of Conduct.

License

Apache License 2.0


Copyright 2019 The Kubernetes Dashboard Authors