Skip to content

Commit

Permalink
iits-admin-dashboard: Bugfix website and remove favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Getz committed May 9, 2023
1 parent 1347e1d commit aabc313
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 64 deletions.
2 changes: 1 addition & 1 deletion charts/iits-admin-dashboard/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v2
description: admin dashboard with urls
name: iits-admin-dashboard
version: 1.0.1
version: 1.0.2
Binary file removed charts/iits-admin-dashboard/files/favicon.ico
Binary file not shown.
9 changes: 3 additions & 6 deletions charts/iits-admin-dashboard/files/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,15 @@
<h1>Tech Admin Board</h1>
<div class="tiles">
<a href="argocd" class="tile">
<img src="https://cncf-branding.netlify.app/img/projects/argo/stacked/color/argo-stacked-color.png"
alt="ArgoCD">
<img src="https://cncf-branding.netlify.app/img/projects/argo/stacked/color/argo-stacked-color.png" alt="ArgoCD">
</a>
<a href="akhq/ui/kafka/topic" class="tile">
<img src="https://kafka.apache.org/images/apache-kafka.png" alt="akhq (kafka headquarter)">
</a>
<a href="dashboard/#/" class="tile">
<img src="https://raw.githubusercontent.com/docker-library/docs/a6cc2c5f4bc6658168f2a0abbb0307acaefff80e/traefik/logo.png"
alt="Traefik Dashboard">
<a href="dashboard/" class="tile">
<img src="https://raw.githubusercontent.com/docker-library/docs/a6cc2c5f4bc6658168f2a0abbb0307acaefff80e/traefik/logo.png" alt="Traefik Dashboard">
</a>
</div>
</div>
</body>

</html>
86 changes: 29 additions & 57 deletions charts/iits-admin-dashboard/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,60 +16,32 @@ resources:
memory: "8Mi"
cpu: "10m"
# You can add here a custom HTML website
website: |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tech Admin Board</title>
<link rel="stylesheet" href="styles.css"> <!-- Link the new CSS file -->
</head>
<body>
<div class="container">
<img class="logo" src="https://iits-consulting.de/wp-content/uploads/2021/08/iits-logo-2021-red-square-xl.png"
alt="IITS Consulting Logo"/>
<h1>Tech Admin Board</h1>
<div class="tiles">
<a href="argocd" class="tile">
<img src="https://cncf-branding.netlify.app/img/projects/argo/stacked/color/argo-stacked-color.png" alt="ArgoCD">
</a>
<a href="akhq/ui/kafka/topic" class="tile">
<img src="https://kafka.apache.org/images/apache-kafka.png" alt="akhq (kafka headquarter)">
</a>
<a href="dashboard/" class="tile">
<img src="https://raw.githubusercontent.com/docker-library/docs/a6cc2c5f4bc6658168f2a0abbb0307acaefff80e/traefik/logo.png" alt="Traefik Dashboard">
</a>
</div>
</div>
</body>
</html>
#website: |
# <!DOCTYPE html>
# <html lang="en">
#
# <head>
# <meta charset="UTF-8">
# <title>Tech Admin Board</title>
# <link rel="stylesheet" href="styles.css"> <!-- Link the new CSS file -->
# </head>
#
# <body>
# <div class="container">
# <img class="logo" src="https://iits-consulting.de/wp-content/uploads/2021/08/iits-logo-2021-red-square-xl.png"
# alt="IITS Consulting Logo"/>
# <h1>Tech Admin Board</h1>
# <div class="tiles">
# <a href="argocd" class="tile">
# <img src="https://cncf-branding.netlify.app/img/projects/argo/stacked/color/argo-stacked-color.png" alt="ArgoCD">
# </a>
# <a href="akhq/ui/kafka/topic" class="tile">
# <img src="https://kafka.apache.org/images/apache-kafka.png" alt="akhq (kafka headquarter)">
# </a>
# <a href="dashboard/" class="tile">
# <img src="https://raw.githubusercontent.com/docker-library/docs/a6cc2c5f4bc6658168f2a0abbb0307acaefff80e/traefik/logo.png" alt="Traefik Dashboard">
# </a>
# </div>
# </div>
# </body>
# </html>

0 comments on commit aabc313

Please sign in to comment.