48 lines
910 B
YAML
48 lines
910 B
YAML
image:
|
|
repository: tccr.io/truecharts/dashdot
|
|
tag: v3.5.2@sha256:f396205662cb44b55eb52ec3e3a1b8bcfdaf5ca5b58c1be5f65b565fde36006a
|
|
pullPolicy: IfNotPresent
|
|
|
|
securityContext:
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
privileged: true
|
|
allowPrivilegeEscalation: true
|
|
capabilities:
|
|
add:
|
|
- SYS_ADMIN
|
|
- SYS_RAWIO
|
|
|
|
podSecurityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
env:
|
|
DASHDOT_PORT: "{{ .Values.service.main.ports.main.port}}"
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10044
|
|
|
|
persistence:
|
|
os:
|
|
enabled: true
|
|
type: hostPath
|
|
hostPath: "/etc/os-release"
|
|
mountPath: "/etc/os-release"
|
|
readOnly: true
|
|
net:
|
|
enabled: true
|
|
type: hostPath
|
|
hostPath: "/proc/1/ns/net"
|
|
mountPath: "/mnt/proc/1/ns/net"
|
|
readOnly: true
|
|
mem:
|
|
enabled: true
|
|
type: hostPath
|
|
hostPath: "/dev/mem"
|
|
mountPath: "/dev/mem"
|
|
readOnly: true
|