fix(rsshub): fix permission (#2889)

* fix(rsshub): fix permission

* bump

* bump again

Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
This commit is contained in:
sagit 2022-06-15 16:24:53 +08:00 committed by GitHub
parent 9a4418ee67
commit 12fe7cc5c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 5 deletions

View File

@ -1,7 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: rsshub
version: 3.0.9
version: 3.0.10
appVersion: "latest"
description: RSSHub can generate RSS feeds from pretty much everything
type: application

View File

@ -282,7 +282,7 @@ questions:
label: "ReadOnly Root Filesystem"
schema:
type: boolean
default: true
default: false
- variable: allowPrivilegeEscalation
label: "Allow Privilege Escalation"
schema:
@ -292,7 +292,7 @@ questions:
label: "runAsNonRoot"
schema:
type: boolean
default: true
default: false
# Include{securityContextAdvanced}
- variable: podSecurityContext
@ -307,13 +307,13 @@ questions:
description: "The UserID of the user running the application"
schema:
type: int
default: 568
default: 0
- variable: runAsGroup
label: "runAsGroup"
description: "The groupID this App of the user running the application"
schema:
type: int
default: 568
default: 0
- variable: fsGroup
label: "fsGroup"
description: "The group that should own ALL storage."

View File

@ -7,6 +7,14 @@ browserlessImage:
repository: tccr.io/truecharts/browserless-chrome
tag: v1.53.0-chrome@sha256:bba7c84a5c8c3c2b9518d8543f08b3669eeeda16837af4dc4c8065b7d87be08e
securityContext:
runAsNonRoot: false
readOnlyRootFilesystem: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
secretEnv:
HTTP_BASIC_AUTH_NAME: ""
HTTP_BASIC_AUTH_PASS: ""