116 lines
3.5 KiB
YAML
116 lines
3.5 KiB
YAML
image:
|
|
pullPolicy: IfNotPresent
|
|
repository: ghcr.io/m1k1o/neko/firefox
|
|
tag: 3.0.4@sha256:c295df7dd047f5470d87ec83f7c2e29da238027d9f980042a48a228018779ba9
|
|
braveImage:
|
|
pullPolicy: IfNotPresent
|
|
repository: ghcr.io/m1k1o/neko/brave
|
|
tag: 3.0.4@sha256:c35813e2639a5e01ac219cbe0c5712e15d321f8d6ff1eb21d6966b4d55650e9b
|
|
chromeImage:
|
|
pullPolicy: IfNotPresent
|
|
repository: ghcr.io/m1k1o/neko/google-chrome
|
|
tag: 3.0.3@sha256:7218f0974f7009ded4e4684229d5fe7e9eda1d97b113af94c8e461e427323380
|
|
chromiumImage:
|
|
pullPolicy: IfNotPresent
|
|
repository: ghcr.io/m1k1o/neko/chromium
|
|
tag: 3.0.4@sha256:febd67a73b575df279ba2a070bd215949f5592bad10496149b360733f156d58c
|
|
edgeImage:
|
|
pullPolicy: IfNotPresent
|
|
repository: ghcr.io/m1k1o/neko/microsoft-edge
|
|
tag: 3.0.4@sha256:78d28dd53551cb672a00bd05d90384393bc3c99572dd3e82ca04b3c76df99f33
|
|
remminaImage:
|
|
pullPolicy: IfNotPresent
|
|
repository: ghcr.io/m1k1o/neko/remmina
|
|
tag: 3.0.3@sha256:19a0ac7a432672346aec8803bf10de6b1051cd48f86b1e16305a7f3bfe0d5809
|
|
torImage:
|
|
pullPolicy: IfNotPresent
|
|
repository: ghcr.io/m1k1o/neko/tor-browser
|
|
tag: 3.0.3@sha256:e12a6f5bc3ddfc9ac94be52507e3af223de78756e8d6210372cbf7f7d6712ecd
|
|
vivaldiImage:
|
|
pullPolicy: IfNotPresent
|
|
repository: ghcr.io/m1k1o/neko/vivaldi
|
|
tag: 3.0.3@sha256:7738ebfc7f65095b48910c6e412820b690fdbd989120abef97b99351b8f223c0
|
|
vlcImage:
|
|
pullPolicy: IfNotPresent
|
|
repository: ghcr.io/m1k1o/neko/vlc
|
|
tag: 3.0.3@sha256:c9c825028d5e0b3470795ceadbb1ba453af628ef46cf7d98f95dd032c7587104
|
|
xfceImage:
|
|
pullPolicy: IfNotPresent
|
|
repository: ghcr.io/m1k1o/neko/xfce
|
|
tag: 3.0.3@sha256:f2344d3cce04607e6baa57699dc5cc343a0d7e437da7d231303ac27128eb7495
|
|
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsGroup: 0
|
|
runAsUser: 0
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10294
|
|
protocol: http
|
|
mux:
|
|
enabled: true
|
|
ports:
|
|
tcp:
|
|
enabled: true
|
|
port: 52100
|
|
protocol: tcp
|
|
udp:
|
|
enabled: true
|
|
port: "{{ .Values.service.mux.ports.tcp.port }}"
|
|
protocol: udp
|
|
|
|
neko:
|
|
ip: "0.0.0.0"
|
|
auth:
|
|
user_pass: ""
|
|
admin_pass: ""
|
|
proxy: false
|
|
screen: "1920x1080@30"
|
|
control_protection: false
|
|
implicit_control: false
|
|
locks:
|
|
[]
|
|
# - control
|
|
# - login
|
|
# - file_transfer
|
|
cors:
|
|
- "*"
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
imageSelector: image
|
|
env:
|
|
NEKO_BIND: '{{ printf ":%v" .Values.service.main.ports.main.port }}'
|
|
NEKO_PATH_PREFIX: "/"
|
|
NEKO_NAT1TO1: "{{ .Values.neko.ip }}"
|
|
# NEKO_EPR
|
|
NEKO_TCPMUX: "{{ .Values.service.mux.ports.tcp.port }}"
|
|
NEKO_UDPMUX: "{{ .Values.service.mux.ports.tcp.port }}"
|
|
NEKO_FILE_TRANSFER_ENABLED: true
|
|
NEKO_FILE_TRANSFER_PATH: "{{.Values.persistence.downloads.mountPath }}"
|
|
NEKO_CONTROL_PROTECTION: "{{ .Values.neko.control_protection }}"
|
|
NEKO_IMPLICIT_CONTROL: "{{ .Values.neko.implicit_control }}"
|
|
NEKO_LOCKS: '{{ join " " .Values.neko.locks }}'
|
|
NEKO_PASSWORD: "{{ .Values.neko.auth.user_pass }}"
|
|
NEKO_PASSWORD_ADMIN: "{{ .Values.neko.auth.admin_pass }}"
|
|
NEKO_PROXY: "{{ .Values.neko.proxy }}"
|
|
NEKO_SCREEN: "{{ .Values.neko.screen }}"
|
|
NEKO_CORS: '{{ join " " .Values.neko.cors }}'
|
|
# NEKO_NAT1TO1: ""
|
|
# NEKO_IPFETCH: ""
|
|
# NEKO_ICELITE: false
|
|
# NEKO_ICESERVER: ""
|
|
# NEKO_ICESERVERS
|
|
|
|
persistence:
|
|
downloads:
|
|
enabled: true
|
|
mountPath: /home/neko/Downloads
|