fix(pydio-cells): Use different port for healthcheck (#1949)
* fix(pydio-cells): Use different port for healthcheck * stupid * allow rootfs for s3 storage * revert root fs access * try persistence * rofs * runAsRoot, so s3 compatible storage works.. * make healthcheck service internal only * https? * check without clusterip * try clIP again * more generous probes * use number port * clip is def * remove timeouts
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
name: pydio-cells
|
name: pydio-cells
|
||||||
version: 1.0.3
|
version: 1.0.4
|
||||||
appVersion: "3.0.4"
|
appVersion: "3.0.4"
|
||||||
description: Pydio-cells is the nextgen file sharing platform for organizations.
|
description: Pydio-cells is the nextgen file sharing platform for organizations.
|
||||||
type: application
|
type: application
|
||||||
|
|||||||
@@ -461,7 +461,7 @@ questions:
|
|||||||
label: "runAsNonRoot"
|
label: "runAsNonRoot"
|
||||||
schema:
|
schema:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: true
|
default: false
|
||||||
# Include{securityContextAdvanced}
|
# Include{securityContextAdvanced}
|
||||||
|
|
||||||
- variable: podSecurityContext
|
- variable: podSecurityContext
|
||||||
@@ -476,13 +476,13 @@ questions:
|
|||||||
description: "The UserID of the user running the application"
|
description: "The UserID of the user running the application"
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 568
|
default: 0
|
||||||
- variable: runAsGroup
|
- variable: runAsGroup
|
||||||
label: "runAsGroup"
|
label: "runAsGroup"
|
||||||
description: The groupID this App of the user running the application"
|
description: The groupID this App of the user running the application"
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 568
|
default: 0
|
||||||
- variable: fsGroup
|
- variable: fsGroup
|
||||||
label: "fsGroup"
|
label: "fsGroup"
|
||||||
description: "The group that should own ALL storage."
|
description: "The group that should own ALL storage."
|
||||||
|
|||||||
@@ -3,11 +3,19 @@ image:
|
|||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: v3.0.4@sha256:81c6f8675ffc243af9ffab5a43da0ed50f33f0c153c352aad027127c3c0318ad
|
tag: v3.0.4@sha256:81c6f8675ffc243af9ffab5a43da0ed50f33f0c153c352aad027127c3c0318ad
|
||||||
|
|
||||||
|
securityContext:
|
||||||
|
readOnlyRootFilesystem: false
|
||||||
|
runAsNonRoot: false
|
||||||
|
|
||||||
|
podSecurityContext:
|
||||||
|
runAsUser: 0
|
||||||
|
runAsGroup: 0
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CELLS_EXTERNAL: ""
|
CELLS_EXTERNAL: ""
|
||||||
CELLS_GRPC_EXTERNAL: "{{ .Values.service.gprc.ports.gprc.targetPort }}"
|
CELLS_GRPC_EXTERNAL: "{{ .Values.service.gprc.ports.gprc.port }}"
|
||||||
CELLS_HEALTHCHECK: "{{ .Values.service.main.ports.main.targetPort }}"
|
CELLS_HEALTHCHECK: "{{ .Values.service.healthcheck.ports.healthcheck.port }}"
|
||||||
CELLS_BIND: "0.0.0.0:{{ .Values.service.main.ports.main.targetPort }}"
|
CELLS_BIND: "0.0.0.0:{{ .Values.service.main.ports.main.port }}"
|
||||||
CELLS_WORKING_DIR: "/cells"
|
CELLS_WORKING_DIR: "/cells"
|
||||||
CELLS_DATA_DIR: "/cells/data"
|
CELLS_DATA_DIR: "/cells/data"
|
||||||
CELLS_LOG_DIR: "/cells/logs"
|
CELLS_LOG_DIR: "/cells/logs"
|
||||||
@@ -21,28 +29,45 @@ pydioinstall:
|
|||||||
|
|
||||||
probes:
|
probes:
|
||||||
liveness:
|
liveness:
|
||||||
|
custom: true
|
||||||
|
spec:
|
||||||
|
httpGet:
|
||||||
|
scheme: HTTP
|
||||||
path: "/healthcheck"
|
path: "/healthcheck"
|
||||||
|
port: 10162
|
||||||
readiness:
|
readiness:
|
||||||
|
custom: true
|
||||||
|
spec:
|
||||||
|
httpGet:
|
||||||
|
scheme: HTTP
|
||||||
path: "/healthcheck"
|
path: "/healthcheck"
|
||||||
|
port: 10162
|
||||||
startup:
|
startup:
|
||||||
|
custom: true
|
||||||
|
spec:
|
||||||
|
httpGet:
|
||||||
|
scheme: HTTP
|
||||||
path: "/healthcheck"
|
path: "/healthcheck"
|
||||||
|
port: 10162
|
||||||
|
|
||||||
service:
|
service:
|
||||||
main:
|
main:
|
||||||
ports:
|
ports:
|
||||||
main:
|
main:
|
||||||
protocol: HTTPS
|
protocol: HTTPS
|
||||||
targetPort: 10150
|
|
||||||
port: 10150
|
port: 10150
|
||||||
gprc:
|
gprc:
|
||||||
enabled: true
|
enabled: true
|
||||||
ports:
|
ports:
|
||||||
gprc:
|
gprc:
|
||||||
enabled: true
|
enabled: true
|
||||||
targetPort: 33060
|
|
||||||
port: 33060
|
port: 33060
|
||||||
|
healthcheck:
|
||||||
|
enabled: true
|
||||||
|
ports:
|
||||||
|
healthcheck:
|
||||||
|
enabled: true
|
||||||
|
port: 10162
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
cells:
|
cells:
|
||||||
|
|||||||
@@ -316,6 +316,7 @@ These defaults can of course be changed, but as we guarantee "sane, working defa
|
|||||||
| photoview | main | main | 10159 | TCP | |
|
| photoview | main | main | 10159 | TCP | |
|
||||||
| linkace | main | main | 10160 | TCP | |
|
| linkace | main | main | 10160 | TCP | |
|
||||||
| librephotos | main | main | 10161 | TCP | |
|
| librephotos | main | main | 10161 | TCP | |
|
||||||
|
| pydio-cells | healthcheck | healthcheck | 10162 | TCP | |
|
||||||
| satisfactory | beacon | beacon | 15000 | UDP | |
|
| satisfactory | beacon | beacon | 15000 | UDP | |
|
||||||
| satisfactory | query | query | 15777 | UDP | |
|
| satisfactory | query | query | 15777 | UDP | |
|
||||||
| minecraft-bedrock | main | main | 19132 | UDP | |
|
| minecraft-bedrock | main | main | 19132 | UDP | |
|
||||||
|
|||||||
Reference in New Issue
Block a user