-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
107 lines (105 loc) · 2.29 KB
/
Copy pathvalues.yaml
File metadata and controls
107 lines (105 loc) · 2.29 KB
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
build-operator:
installCRDs: true
operator:
image:
repository: ghcr.io/builderhub/build-operator
tag: d5e94efb7668ff4847da94921020791cd2622852
pullPolicy: IfNotPresent
replicaCount: 1
leaderElection: true
resources:
limits:
cpu: 500m
memory: 128Mi
requests:
cpu: 10m
memory: 64Mi
securityContext:
runAsUser: 65532
serviceAccount:
create: true
rbac:
create: true
nodeSelector: {}
build-api:
replicaCount: 1
image:
repository: ghcr.io/builderhub/build-api
pullPolicy: IfNotPresent
tag: "032be5f308e65710d6f463f7da8b7e086536284a"
database:
url: "postgres://builderhub:builderhub123@postgres:5432/builderhub?sslmode=disable"
jwt:
secret: "dev-secret-change-in-production"
cors:
allowedOrigins: "http://localhost:3000,http://localhost:3001,http://build-console:80,https://console.builder-hub.dev"
# Set to the public DNS suffix (e.g. builder-hub.dev) to expose builders via ingress.
builderBaseDomain: ""
service:
type: ClusterIP
httpPort: 8090
grpcPort: 9090
annotations: {}
serviceAccount:
create: true
automount: true
rbac:
create: true
ingress:
enabled: false
autoscaling:
enabled: false
nodeSelector: {}
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 500m
memory: 256Mi
build-console:
replicaCount: 2
image:
repository: ghcr.io/builderhub/build-console
pullPolicy: IfNotPresent
tag: "4a70899143a04577f0fd47d5e5048f2733141eb8"
serviceAccount:
create: true
automount: true
podSecurityContext:
runAsNonRoot: true
runAsUser: 1000
fsGroup: 1000
seccompProfile:
type: RuntimeDefault
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: false
service:
type: ClusterIP
port: 80
targetPort: 3001
ingress:
enabled: false
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 100m
memory: 256Mi
autoscaling:
enabled: false
env:
- name: NODE_ENV
value: "production"
- name: PORT
value: "3001"
- name: HOSTNAME
value: "0.0.0.0"
api:
buildApiUrl: "http://builderhub-build-api:8090"
nodeSelector: {}