46 lines
855 B
YAML
46 lines
855 B
YAML
image:
|
|
repository: archivebox/archivebox
|
|
pullPolicy: IfNotPresent
|
|
tag: latest@sha256:7b00a9db94cff768f4f17d18742724136435501e359a1c5127b5fb062000f6e3
|
|
|
|
config:
|
|
admin_username: "admin"
|
|
admin_password: "changeme"
|
|
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
runAsGroup: 0
|
|
runAsUser: 0
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 9598
|
|
protocol: http
|
|
targetPort: 8000
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
type: http
|
|
path: /health/
|
|
env:
|
|
ADMIN_USERNAME: "{{ .Values.config.admin_username }}"
|
|
ADMIN_PASSWORD: "{{ .Values.config.admin_password }}"
|
|
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/data"
|
|
|
|
portal:
|
|
open:
|
|
enabled: true
|