-
Notifications
You must be signed in to change notification settings - Fork 3
/
values.yaml
108 lines (90 loc) · 2.08 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
replicaCount: 1
annotations:
configuration:
port: 3000
host: "0.0.0.0"
uploads:
driver: "s3"
s3:
bucket: "my-bucket"
region: "eu-central-1"
baseUrl: "http://docs-static.codex.so.s3-website.eu-central-1.amazonaws.com"
keyPrefix: "/"
accessKeyId: "my-access-key"
secretAccessKey: "my-secret-key"
frontend:
title: "CodeX Docs"
description: "A block-styled editor with clean JSON output"
startPage: ""
misprintsChatId: "12344564"
yandexMetrikaId: ""
carbon:
serve: ""
placement: ""
menu: []
auth:
password: "will be generated automatically"
secret: supersecret
database:
driver: mongodb # you can change database driver here. 'mongodb' or 'local'
mongodb:
uri: mongodb://localhost:27017/docs
# Additional Environment variables
env: {}
# - name: APP_CONFIG_hawk_backendToken
# valueFrom:
# secretKeyRef:
# key: backend-token
# name: hawk-creds
# Authentication parameters
auth:
# Auth password
# Defaults to a random 20-character alphanumeric string if not set
#
password: ""
# The name of an existing secret with auth credentials
# NOTE: When it's set, the previous `auth.password` parameter is ignored
#
existingSecret: ""
# Password key to be retrieved from existing secret
# NOTE: ignored unless `auth.existingSecret` parameter is set
#
existingSecretPasswordKey: ""
image:
repository: ghcr.io/codex-team/codex.docs
pullPolicy: IfNotPresent
tag: ""
imagePullSecrets: []
fullnameOverride: ""
podAnnotations: {}
podSecurityContext: {}
securityContext: {}
service:
type: ClusterIP
port: 3000
ingress:
enabled: false
className: ""
annotations: {}
hosts:
- host: codex-docs.local
paths:
- path: /
pathType: Prefix
backend:
service:
name: web
port:
number: 3000
tls: []
resources: {}
volumes:
db:
storage: 1Gi
storageClassName: ""
uploads:
storage: 5Gi
storageClassName: ""
nodeSelector: {}
tolerations: []
affinity: {}