fix(pydio-cells): fix configmap and main service (#1943)
* fix(pydio-cells): fix configmap and main service * update questions and configmap
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: pydio-cells
|
||||
version: 1.0.2
|
||||
version: 1.0.3
|
||||
appVersion: "3.0.4"
|
||||
description: Pydio-cells is the nextgen file sharing platform for organizations.
|
||||
type: application
|
||||
|
||||
@@ -111,7 +111,7 @@ questions:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: title
|
||||
- variable: password
|
||||
label: "Cells Admin Password (First install only)"
|
||||
description: "Cells Admin Password"
|
||||
schema:
|
||||
@@ -163,7 +163,7 @@ questions:
|
||||
label: "Port Type"
|
||||
schema:
|
||||
type: string
|
||||
default: "HTTP"
|
||||
default: "HTTPS"
|
||||
enum:
|
||||
- value: HTTP
|
||||
description: "HTTP"
|
||||
|
||||
@@ -9,13 +9,14 @@ metadata:
|
||||
data:
|
||||
pydiocells-install: |-
|
||||
frontendapplicationtitle: {{ .Values.pydioinstall.title }}
|
||||
frontendLogin: {{ .Values.pydioinstall.username }}
|
||||
frontendPassword: {{ .Values.pydioinstall.password }}
|
||||
frontendRepeatPassword: {{ .Values.pydioinstall.password }}
|
||||
dbConnectionType: tcp
|
||||
dbTCPHostname: {{ printf "%v-%v" .Release.Name "mariadb" }}
|
||||
dbTCPPort: 3306
|
||||
dbTCPName: {{ .Values.mariadb.mariadbDatabase }}
|
||||
dbTCPUser: {{ .Values.mariadb.mariadbUsername }}
|
||||
dbTCPPassword: {{ .Values.mariadb.mariadbPassword | trimAll "\"" }}
|
||||
frontendlogin: {{ .Values.pydioinstall.username }}
|
||||
frontendpassword: {{ .Values.pydioinstall.password }}
|
||||
frontendrepeatpassword: {{ .Values.pydioinstall.password }}
|
||||
dbconnectiontype: tcp
|
||||
dbtcphostname: {{ printf "%v-%v" .Release.Name "mariadb" }}
|
||||
dbtcpport: 3306
|
||||
dbtcpname: {{ .Values.mariadb.mariadbDatabase }}
|
||||
dbtcpuser: {{ .Values.mariadb.mariadbUsername }}
|
||||
dbtcppassword: {{ .Values.mariadb.mariadbPassword | trimAll "\"" }}
|
||||
|
||||
{{- end -}}
|
||||
|
||||
@@ -33,6 +33,7 @@ service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: HTTPS
|
||||
targetPort: 10150
|
||||
port: 10150
|
||||
gprc:
|
||||
|
||||
@@ -302,7 +302,7 @@ These defaults can of course be changed, but as we guarantee "sane, working defa
|
||||
| ipfs | gateway | gateway | 10147 | TCP | |
|
||||
| kodi-headless | main | main | 10148 | TCP | |
|
||||
| pwndrop | main | main | 10149 | TCP | |
|
||||
| pydio-cells | main | main | 10150 | TCP | |
|
||||
| pydio-cells | main | main | 10150 | HTTPS | |
|
||||
| scrutiny | main | main | 10151 | TCP | |
|
||||
| kodi-headless | websocket | websocket | 10152 | TCP | |
|
||||
| shlink | main | main | 10153 | TCP | |
|
||||
|
||||
Reference in New Issue
Block a user