mirror of
https://github.com/truenas/charts.git
synced 2026-04-08 21:28:46 +08:00
Publish new changes in catalog
This commit is contained in:
@@ -3,7 +3,7 @@ description: Planka is an Elegant open source project tracking
|
||||
annotations:
|
||||
title: Planka
|
||||
type: application
|
||||
version: 1.0.5
|
||||
version: 1.0.6
|
||||
apiVersion: v2
|
||||
appVersion: 1.14.2
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
@@ -2,6 +2,10 @@ plankaNetwork:
|
||||
webPort: 31000
|
||||
|
||||
plankaConfig:
|
||||
defaultAdminEmail: admin@example.com
|
||||
defaultAdminName: John Doe
|
||||
defaultAdminPassword: password
|
||||
defaultAdminUsername: admin
|
||||
baseURL: http://localhost:31000
|
||||
|
||||
plankaStorage:
|
||||
@@ -9,6 +9,10 @@ resources:
|
||||
memory: 8Gi
|
||||
|
||||
plankaConfig:
|
||||
defaultAdminEmail: ''
|
||||
defaultAdminName: ''
|
||||
defaultAdminPassword: ''
|
||||
defaultAdminUsername: ''
|
||||
trustProxy: false
|
||||
baseURL: http://localhost:30062
|
||||
additionalEnvs: []
|
||||
@@ -37,10 +41,6 @@ plankaStorage:
|
||||
|
||||
notes:
|
||||
custom: |
|
||||
Default credentials:
|
||||
- Username: `demo@demo.demo`
|
||||
- Password: `demo`
|
||||
|
||||
## Database
|
||||
You can connect to the database using the pgAdmin App from the catalog
|
||||
|
||||
@@ -25,6 +25,36 @@ questions:
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: defaultAdminEmail
|
||||
label: Default Admin Email
|
||||
description: The default admin email for Planka.
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: defaultAdminName
|
||||
label: Default Admin Name
|
||||
description: The default admin name for Planka.
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["defaultAdminEmail", "!=", ""]]
|
||||
required: true
|
||||
- variable: defaultAdminPassword
|
||||
label: Default Admin Password
|
||||
description: The default admin password for Planka.
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["defaultAdminEmail", "!=", ""]]
|
||||
required: true
|
||||
- variable: defaultAdminUsername
|
||||
label: Default Admin Username
|
||||
description: The default admin username for Planka.
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
show_if: [["defaultAdminEmail", "!=", ""]]
|
||||
required: true
|
||||
- variable: baseURL
|
||||
label: BaseURL
|
||||
description: |
|
||||
@@ -27,6 +27,12 @@ secret:
|
||||
data:
|
||||
SECRET_KEY: {{ $secretKey }}
|
||||
DATABASE_URL: {{ printf "postgresql://%s" $dbURL }}
|
||||
{{- if .Values.plankaConfig.defaultAdminEmail }}
|
||||
DEFAULT_ADMIN_EMAIL: {{ .Values.plankaConfig.defaultAdminEmail }}
|
||||
DEFAULT_ADMIN_PASSWORD: {{ .Values.plankaConfig.defaultAdminPassword }}
|
||||
DEFAULT_ADMIN_NAME: {{ .Values.plankaConfig.defaultAdminName }}
|
||||
DEFAULT_ADMIN_USERNAME: {{ .Values.plankaConfig.defaultAdminUsername }}
|
||||
{{- end }}
|
||||
|
||||
postgres-creds:
|
||||
enabled: true
|
||||
Reference in New Issue
Block a user