Compare commits

...

3 Commits
0.2.0 ... 0.2.1

Author SHA1 Message Date
0575196b06 Version 0.2.1 2022-01-08 16:17:06 +00:00
5e0a7f2826 Fix app links 2022-01-08 16:16:56 +00:00
ad300be0e6 Chart Version 0.2.0 2022-01-08 15:47:13 +00:00
5 changed files with 10 additions and 13 deletions

View File

@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: 0.1.2
appVersion: 0.2.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.1.2
version: 0.2.0
kubeVersion: ">=1.16.0-0"
keywords:
- ohayodash
@@ -17,4 +17,4 @@ maintainers:
dependencies:
- name: common
repository: https://library-charts.k8s-at-home.com
version: 4.2.0
version: 4.3.0

View File

@@ -1,6 +1,6 @@
# ohayodash
![Version: 0.1.2](https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square) ![AppVersion: 0.1.2](https://img.shields.io/badge/AppVersion-0.1.2-informational?style=flat-square)
![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![AppVersion: 0.2.0](https://img.shields.io/badge/AppVersion-0.2.0-informational?style=flat-square)
Ohayo Dash is a Kubernetes driven start page and dashboard. All configuration is done by standard Kubernetes objects and ConfigMaps.
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
| https://library-charts.k8s-at-home.com | common | 4.3.0 |
## TL;DR
@@ -74,11 +74,10 @@ helm install ohayodash ohayodash/ohayodash -f values.yaml
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| env | object | See below | environment variables. |
| env.DATE_FORMAT | string | `"%Y-%m-%d %H:%M"` | Python date format string to use for rendering the date/time |
| env.TZ | string | `"UTC"` | Set the container timezone |
| image.pullPolicy | string | `"Always"` | image pull policy |
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| image.repository | string | `"ghcr.io/nikdoof/ohayodash"` | image repository |
| image.tag | string | `"latest"` | image tag |
| image.tag | string | `"0.2.0"` | image tag |
| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
| service | object | See values.yaml | Configures service settings for the chart. |
| serviceAccount | object | See below | Configures service account needed for reading k8s ingress objects |

View File

@@ -11,15 +11,13 @@ image:
# -- image pull policy
pullPolicy: IfNotPresent
# -- image tag
tag: 0.1.2
tag: 0.2.0
# -- environment variables.
# @default -- See below
env:
# -- Set the container timezone
TZ: UTC
# -- Python date format string to use for rendering the date/time
DATE_FORMAT: "%Y-%m-%d %H:%M"
# -- Configures service settings for the chart.
# @default -- See values.yaml

View File

@@ -93,7 +93,7 @@
<span class="iconify icon" data-icon="mdi-{{icon}}"></span>
</div>
<div class="apps_text">
<a href="http://{{url}}" {{#if target}}target="{{target}}"{{/if}} >{{name}}</a>
<a href="{{url}}" {{#if target}}target="{{target}}"{{/if}} >{{name}}</a>
{{#if show_url}}<span id="app-address">{{url}}</span>{{/if}}
</div>
</div>

View File

@@ -1,6 +1,6 @@
[metadata]
name = ohayodash
version = 0.2.0
version = 0.2.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