Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ A collection of Helm charts primarily used for **Lifecycle** application deploym
| Chart | Version | App Version | Description |
| :--- | :--- | :--- | :--- |
| [keycloak-operator](./charts/keycloak-operator) | `0.1.0` | `26.4.7` | Helm chart for Keycloak operator based on the [official manifests](https://www.keycloak.org/operator/installation#_installing_by_using_kubectl_without_operator_lifecycle_manager) |
| [lifecycle](./charts/lifecycle) | `0.9.3` | `0.1.14` | A Helm umbrella chart for full Lifecycle stack |
| [lifecycle](./charts/lifecycle) | `0.9.4` | `0.1.14` | A Helm umbrella chart for full Lifecycle stack |
| [lifecycle-keycloak](./charts/lifecycle-keycloak) | `0.7.2` | `0.0.0` | Keycloak instance for Lifecycle stack with automated Operator-driven setup and imports |
| [lifecycle-ui](./charts/lifecycle-ui) | `0.3.1` | `0.1.3` | A Helm chart for Lifecycle UI (Next.js) |
4 changes: 2 additions & 2 deletions charts/lifecycle/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apiVersion: v2
name: lifecycle
description: A Helm umbrella chart for full Lifecycle stack
type: application
version: 0.9.3
version: 0.9.4
appVersion: 0.1.14

dependencies:
Expand Down Expand Up @@ -51,7 +51,7 @@ dependencies:
# lifecycle-keycloak (Keycloak instance for Lifecycle) Dependency
- name: lifecycle-keycloak
alias: keycloak
version: 0.7.1
version: 0.7.2
repository: "https://goodrxoss.github.io/helm-charts"
condition: keycloak.enabled

Expand Down
7 changes: 4 additions & 3 deletions charts/lifecycle/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# lifecycle

![Version: 0.9.3](https://img.shields.io/badge/Version-0.9.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.14](https://img.shields.io/badge/AppVersion-0.1.14-informational?style=flat-square)
![Version: 0.9.4](https://img.shields.io/badge/Version-0.9.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.14](https://img.shields.io/badge/AppVersion-0.1.14-informational?style=flat-square)

A Helm umbrella chart for full Lifecycle stack

Expand Down Expand Up @@ -40,7 +40,7 @@ buildkit:
```bash
helm upgrade -i lifecycle \
oci://ghcr.io/goodrxoss/helm-charts/lifecycle \
--version 0.9.3 \
--version 0.9.4 \
-f values.yaml \
-n lifecycle-app \
--create-namespace
Expand All @@ -54,7 +54,7 @@ helm upgrade -i lifecycle \
| https://charts.bitnami.com/bitnami | minio(minio) | 17.0.21 |
| https://charts.bitnami.com/bitnami | postgres(postgresql) | 15.5.19 |
| https://charts.bitnami.com/bitnami | redis(redis) | 19.6.3 |
| https://goodrxoss.github.io/helm-charts | keycloak(lifecycle-keycloak) | 0.7.1 |
| https://goodrxoss.github.io/helm-charts | keycloak(lifecycle-keycloak) | 0.7.2 |
| https://goodrxoss.github.io/helm-charts | ui(lifecycle-ui) | 0.3.1 |
| https://jouve.github.io/charts | distribution(distribution) | 0.1.7 |

Expand Down Expand Up @@ -221,6 +221,7 @@ helm upgrade -i lifecycle \
| keycloak.githubIdp.clientId.secretKeyRef.name | string | `"{{ include \"lifecycle-keycloak.parentChartPrefix\" . }}-bootstrap"` | |
| keycloak.githubIdp.clientSecret.secretKeyRef.key | string | `"GITHUB_CLIENT_SECRET"` | |
| keycloak.githubIdp.clientSecret.secretKeyRef.name | string | `"{{ include \"lifecycle-keycloak.parentChartPrefix\" . }}-bootstrap"` | |
| keycloak.githubIdp.githubJsonFormat | bool | `true` | |
| keycloak.hostname | string | `"https://auth.example.com"` | |
| keycloak.keycloakPostgres.enabled | bool | `true` | |
| keycloak.keycloakPostgres.nameOverride | string | `"keycloak-postgres"` | |
Expand Down
1 change: 1 addition & 0 deletions charts/lifecycle/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@ keycloak:
url: https://ui.example.com

githubIdp:
githubJsonFormat: true
clientId:
secretKeyRef:
name: '{{ include "lifecycle-keycloak.parentChartPrefix" . }}-bootstrap'
Expand Down
Loading