Skip to content
Snippets Groups Projects
Commit 2d2e84ea authored by Arie Peterson's avatar Arie Peterson
Browse files

Merge branch '85-release-helm-chart-update' into 'main'

Resolve "Release helm chart update"

Closes #85

See merge request stackspin/dashboard!54
parents 3ff81a9e 844ef7e8
No related branches found
No related tags found
No related merge requests found
# Changelog # Changelog
## [1.4.0]
* Fetch apps from Kubernetes back-end
* Also fetch external apps
* Only show installed apps on dashboard
* Use correct URLs for apps on dashboard (not hardcoded ones)
## [1.2.3] ## [1.2.3]
* Fix logging out of Hydra from the dashboard * Fix logging out of Hydra from the dashboard
......
annotations: annotations:
category: Dashboard category: Dashboard
apiVersion: v2 apiVersion: v2
appVersion: 0.3.0 appVersion: 0.4.0
dependencies: dependencies:
- name: common - name: common
# https://artifacthub.io/packages/helm/bitnami/common # https://artifacthub.io/packages/helm/bitnami/common
...@@ -23,4 +23,4 @@ name: stackspin-dashboard ...@@ -23,4 +23,4 @@ name: stackspin-dashboard
sources: sources:
- https://open.greenhost.net/stackspin/dashboard/ - https://open.greenhost.net/stackspin/dashboard/
- https://open.greenhost.net/stackspin/dashboard-backend/ - https://open.greenhost.net/stackspin/dashboard-backend/
version: 1.3.0 version: 1.4.0
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "dashboard.serviceAccountName" . }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if or .Values.serviceAccount.annotations .Values.commonAnnotations }}
annotations:
{{- if .Values.serviceAccount.annotations }}
{{- toYaml .Values.serviceAccount.annotations | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" $) | nindent 4 }}
{{- end }}
{{- end }}
{{- end -}}
...@@ -68,7 +68,7 @@ dashboard: ...@@ -68,7 +68,7 @@ dashboard:
image: image:
registry: open.greenhost.net:4567 registry: open.greenhost.net:4567
repository: stackspin/dashboard/dashboard repository: stackspin/dashboard/dashboard
tag: 0-2-8 tag: 0-3-0
digest: "" digest: ""
## Optionally specify an array of imagePullSecrets. ## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace. ## Secrets must be manually created in the namespace.
...@@ -236,7 +236,7 @@ backend: ...@@ -236,7 +236,7 @@ backend:
image: image:
registry: open.greenhost.net:4567 registry: open.greenhost.net:4567
repository: stackspin/dashboard-backend/dashboard-backend repository: stackspin/dashboard-backend/dashboard-backend
tag: 0-3-1 tag: 0-4-1
digest: "" digest: ""
## Optionally specify an array of imagePullSecrets. ## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace. ## Secrets must be manually created in the namespace.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment