mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-24 11:48:04 +00:00
* Less logging when not in DEBUG * Check helm is fine * Display kube context switch * Cosmetics * Displays list of chartss * Linter stuff * Fix option name
58 lines
2.5 KiB
HTML
58 lines
2.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="icon" href="https://komodor.com/wp-content/uploads/2021/05/favicon-50x50.png"/>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Helm Dashboard</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
|
|
<link href="static/styles.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<nav class="navbar navbar-expand-lg bg-light rounded" aria-label="Eleventh navbar example">
|
|
<div class="container-fluid">
|
|
<div style="line-height: 90%">
|
|
<a class="navbar-brand" href="#"><b>Helm Dashboard</b></a><br/>
|
|
<span style="font-size: smaller">by <a href="https://komodor.io">komodor.io</a></span>
|
|
</div>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarsExample09"
|
|
aria-controls="navbarsExample09" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarsExample09">
|
|
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" aria-current="page" href="/">Charts List</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link disabled">Repositories</a>
|
|
</li>
|
|
</ul>
|
|
<form class="d-flex flex-nowrap text-nowrap">
|
|
<label for="cluster" class="">K8s Context:</label>
|
|
<select id="cluster" class="form-control"></select>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
|
|
<div class="bg-light p-5 rounded">
|
|
<h1>Charts List</h1>
|
|
<div id="charts" class="row row-cols-1 row-cols-md-2 row-cols-lg-3 g-4">
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"
|
|
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
|
|
crossorigin="anonymous"></script>
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
<script src="static/scripts.js"></script>
|
|
</body>
|
|
</html> |