1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- image:
- repository: joplin/server
- pullPolicy: IfNotPresent
- tag: 3.3.4-beta
- resources:
- limits:
- cpu: 4000m
- memory: 8Gi
- joplinConfig:
- baseUrl: http://localhost:30063
- additionalEnvs: []
- joplinNetwork:
- webPort: 30063
- hostNetwork: false
- joplinStorage:
- pgData:
- type: ixVolume
- ixVolumeConfig:
- datasetName: pgData
- pgBackup:
- type: ixVolume
- ixVolumeConfig:
- datasetName: pgBackup
- additionalStorages: []
- notes:
- custom: |
- ## Default Credentials
- - Username: `admin@localhost`
- - Password: `admin`
- ## Database
- You can connect to the database using the pgAdmin App from the catalog
- <details>
- <summary>Database Details</summary>
- - Database: `joplin`
- - Username: `joplin`
- - Password: `{{ .Values.joplinDbPass }}`
- - Host: `{{ .Values.joplinDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
- - Port: `5432`
- </details>
- {{- $_ := unset .Values "joplinDbPass" }}
- {{- $_ := unset .Values "joplinDbHost" }}
|