Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable/cachet] DB_DRIVER defined twice #557

Merged
merged 1 commit into from
Jan 8, 2024
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 stable/cachet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "2.3.15"
description: The open source status page system
name: cachet
version: 1.3.3
version: 1.3.4
home: https://cachethq.io/
sources:
- https://github.com/CachetHQ/Docker
Expand Down
3 changes: 1 addition & 2 deletions stable/cachet/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cachet

![Version: 1.3.3](https://img.shields.io/badge/Version-1.3.3-informational?style=flat-square) ![AppVersion: 2.3.15](https://img.shields.io/badge/AppVersion-2.3.15-informational?style=flat-square)
![Version: 1.3.4](https://img.shields.io/badge/Version-1.3.4-informational?style=flat-square) ![AppVersion: 2.3.15](https://img.shields.io/badge/AppVersion-2.3.15-informational?style=flat-square)

The open source status page system

Expand Down Expand Up @@ -53,7 +53,6 @@ helm install my-release deliveryhero/cachet -f values.yaml

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| database.driver | string | `"pssql"` | |
| database.host | string | `"cachet-db.example.com"` | |
| database.name | string | `"cachet"` | |
| database.password | string | `""` | |
Expand Down
1 change: 0 additions & 1 deletion stable/cachet/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ data:
DB_HOST: {{ .Values.database.host }}
DB_DATABASE: {{ .Values.database.name }}
DB_USERNAME: {{ .Values.database.username }}
DB_DRIVER: {{ .Values.database.driver }}
DB_PORT: {{ .Values.database.port | quote }}
APP_ENV: {{ default "production" .Values.env.APP_ENV | quote }}
APP_URL: {{ .Values.ingress.host }}
Expand Down
1 change: 0 additions & 1 deletion stable/cachet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ database:
name: cachet
username: cachet
password: ""
driver: pssql

env:
public:
Expand Down
Loading