From a0b271216edf1c218b238e0d2481268ff7fe3a8d Mon Sep 17 00:00:00 2001 From: Varac <varac@varac.net> Date: Wed, 22 Dec 2021 16:02:07 +0100 Subject: [PATCH] Include dependencies in Chart.yaml, bump version --- helmchart/single-sign-on/CHANGELOG.md | 5 +++++ helmchart/single-sign-on/Chart.yaml | 25 +++++++++++++++++++-- helmchart/single-sign-on/requirements.yaml | 26 ---------------------- 3 files changed, 28 insertions(+), 28 deletions(-) delete mode 100644 helmchart/single-sign-on/requirements.yaml diff --git a/helmchart/single-sign-on/CHANGELOG.md b/helmchart/single-sign-on/CHANGELOG.md index b6080a0..d656c06 100644 --- a/helmchart/single-sign-on/CHANGELOG.md +++ b/helmchart/single-sign-on/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this helm chart will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.1] - 2021-12-22 + +- Include dependencies in Chart.yaml +- Use default hydra image + ## [0.6.0] - 2021-12-21 - Switch to using Hydra Maester instead of cronjobs for creating OAuth2 clients diff --git a/helmchart/single-sign-on/Chart.yaml b/helmchart/single-sign-on/Chart.yaml index a00a0e8..f382b54 100644 --- a/helmchart/single-sign-on/Chart.yaml +++ b/helmchart/single-sign-on/Chart.yaml @@ -1,4 +1,25 @@ -apiVersion: v1 +apiVersion: v2 description: A Helm chart for Stackspin's Single sign-on components +icon: https://raw.githubusercontent.com/ory/docs/master/docs/static/img/logo-hydra.svg name: single-sign-on -version: 0.6.0 +version: 0.6.1 +dependencies: + # https://k8s.ory.sh/helm/hydra.html + - name: hydra + version: 0.21.0 + repository: "https://k8s.ory.sh/helm/charts" + tags: + - single-sign-on + # https://github.com/bitnami/charts/tree/master/bitnami/postgresql + # https://artifacthub.io/packages/helm/bitnami/postgresql + - name: postgresql + version: 10.12.4 + repository: "https://charts.bitnami.com/bitnami" + tags: + - single-sign-on + # https://k8s.ory.sh/helm/kratos.html + - name: kratos + version: 0.21.0 + repository: "https://k8s.ory.sh/helm/charts" + tags: + - single-sign-on diff --git a/helmchart/single-sign-on/requirements.yaml b/helmchart/single-sign-on/requirements.yaml deleted file mode 100644 index ffcc3cd..0000000 --- a/helmchart/single-sign-on/requirements.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# https://k8s.ory.sh/helm/hydra.html -dependencies: - - name: hydra - version: 0.21.0 - repository: "https://k8s.ory.sh/helm/charts" - tags: - - single-sign-on - - -# https://github.com/bitnami/charts/tree/master/bitnami/postgresql -# https://artifacthub.io/packages/helm/bitnami/postgresql - - name: postgresql - version: 10.12.4 - repository: "https://charts.bitnami.com/bitnami" - tags: - - single-sign-on - - -# https://k8s.ory.sh/helm/kratos.html - - name: kratos - version: 0.21.0 - repository: "https://k8s.ory.sh/helm/charts" - tags: - - single-sign-on - - -- GitLab