Compare commits

...

5 Commits

Author SHA1 Message Date
0fdfe811f8 Version 0.1.1 2021-12-24 06:35:45 +00:00
5a45c4c0d4 Fix k8s applications name sorting 2021-12-24 06:35:31 +00:00
67b5acddc5 Bump chart version 2021-12-24 06:29:11 +00:00
90737c3b1b Version 0.1.0 2021-12-24 06:24:05 +00:00
1c4e8a524f Switch to Alpine docker base 2021-12-24 06:20:35 +00:00
5 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
name: release chart
name: Release Helm Chart
"on":
push:

View File

@@ -1,4 +1,4 @@
FROM python:3.9
FROM python:3.9-alpine
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt

View File

@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: 0.0.1
appVersion: 0.1.0
description: Ohayo Dash is a Kubernetes driven start page and dashboard. All configuration is done by standard Kubernetes objects and ConfigMaps.
name: ohayodash
version: 0.0.3
version: 0.1.1
kubeVersion: ">=1.16.0-0"
keywords:
- ohayodash

View File

@@ -45,7 +45,7 @@ def get_k8s_applications() -> list:
application_values[annotation_key] = value
applications.append(application_values)
return sorted(applications, key=lambda item: item['appName'])
return sorted(applications, key=lambda item: item['name'])
def get_bookmarks() -> list:

View File

@@ -1,6 +1,6 @@
[metadata]
name = ohayodash
version = 0.0.2
version = 0.1.1
description = A Kubernetes driven start page and dashboard. All configuration is done by standard Kubernetes objects and ConfigMaps.
long_description = file: README.md, LICENSE
license = MIT