fix(guacd): run as root as it's needed for freerdp (#1695)
* fix(guacd): run as root as it's needed for freerdp * update chart.yaml
This commit is contained in:
parent
168eabdfe6
commit
085666851b
|
@ -1,7 +1,7 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
name: guacd
|
name: guacd
|
||||||
version: 0.0.12
|
version: 0.0.13
|
||||||
appVersion: "1.4.0"
|
appVersion: "1.4.0"
|
||||||
description: Guacd - Apache Guacamole is a clientless remote desktop gateway.
|
description: Guacd - Apache Guacamole is a clientless remote desktop gateway.
|
||||||
type: application
|
type: application
|
||||||
|
@ -10,8 +10,11 @@ home: https://github.com/truecharts/apps/tree/master/charts/stable/guacd
|
||||||
icon: https://truecharts.org/_static/img/appicons/guacd-icon.png
|
icon: https://truecharts.org/_static/img/appicons/guacd-icon.png
|
||||||
keywords:
|
keywords:
|
||||||
- guacd
|
- guacd
|
||||||
|
- guacamole
|
||||||
|
- remote
|
||||||
sources:
|
sources:
|
||||||
- https://hub.docker.com/r/linuxserver/guacd
|
- https://hub.docker.com/r/guacamole/guacd
|
||||||
|
- https://github.com/apache/guacamole-server
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: common
|
- name: common
|
||||||
repository: https://truecharts.org
|
repository: https://truecharts.org
|
||||||
|
|
|
@ -191,7 +191,7 @@ questions:
|
||||||
label: "ReadOnly Root Filesystem"
|
label: "ReadOnly Root Filesystem"
|
||||||
schema:
|
schema:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: true
|
default: false
|
||||||
- variable: allowPrivilegeEscalation
|
- variable: allowPrivilegeEscalation
|
||||||
label: "Allow Privilege Escalation"
|
label: "Allow Privilege Escalation"
|
||||||
schema:
|
schema:
|
||||||
|
@ -201,7 +201,7 @@ questions:
|
||||||
label: "runAsNonRoot"
|
label: "runAsNonRoot"
|
||||||
schema:
|
schema:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: true
|
default: false
|
||||||
|
|
||||||
- variable: podSecurityContext
|
- variable: podSecurityContext
|
||||||
group: "Security and Permissions"
|
group: "Security and Permissions"
|
||||||
|
@ -214,13 +214,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,6 +3,14 @@ image:
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: v1.4.0@sha256:6b67e159e4e24524bf025a419062249763967085f6111d73d9f3d9ee7b0c13ee
|
tag: v1.4.0@sha256:6b67e159e4e24524bf025a419062249763967085f6111d73d9f3d9ee7b0c13ee
|
||||||
|
|
||||||
|
securityContext:
|
||||||
|
readOnlyRootFilesystem: false
|
||||||
|
runAsNonRoot: false
|
||||||
|
|
||||||
|
podSecurityContext:
|
||||||
|
runAsUser: 0
|
||||||
|
runAsGroup: 0
|
||||||
|
|
||||||
service:
|
service:
|
||||||
main:
|
main:
|
||||||
ports:
|
ports:
|
||||||
|
|
Loading…
Reference in New Issue