31 lines
688 B
YAML
31 lines
688 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: inv-sig-helper
|
|
namespace: default
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: inv-sig-helper
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: inv-sig-helper
|
|
spec:
|
|
containers:
|
|
- name: inv-sig-helper
|
|
image: quay.io/invidious/inv-sig-helper@sha256:b5466c9add729e82e4e3ee5515c30b69df02d78ebb2486dbc9c63e456f29083d
|
|
args: ["--tcp", "0.0.0.0:12999"]
|
|
env:
|
|
- name: RUST_LOG
|
|
value: "info"
|
|
ports:
|
|
- containerPort: 12999
|
|
securityContext:
|
|
readOnlyRootFilesystem: true
|
|
capabilities:
|
|
drop:
|
|
- ALL
|