Commit 893f4f6 1 parent fcf20e6 commit 893f4f6 Copy full SHA for 893f4f6
File tree 4 files changed +38
-11
lines changed
4 files changed +38
-11
lines changed Original file line number Diff line number Diff line change 1
- * .rdb
2
1
* .tfvars
3
2
.terraform *
4
3
* .tfstate *
5
4
* .tar.gz
5
+ * .tgz
6
6
7
7
values-override * .yaml
8
8
9
+ ! jest.config.js
10
+ node_modules
11
+ .DS_stores
9
12
.DS_Store
10
- .turbo
13
+ dist
14
+
15
+ # CDK asset staging directory
16
+ .cdk.staging
17
+ cdk.out
18
+ ** /cdk.out
19
+
20
+ .env *
21
+ ! .env * .example
22
+
23
+ __pycache__
11
24
.vscode
25
+ clusters
26
+
27
+ * .zip
28
+
29
+ coverage
30
+ dist
31
+ tmp
32
+ build
33
+ log
34
+ logs
35
+
36
+ .turbo
37
+ * .tsbuildinfo
38
+ out
39
+ * .rdb
40
+
12
41
/apps
13
42
/packages
14
- /infra
15
- /node_modules
16
- /tmp
43
+ /infra
Original file line number Diff line number Diff line change 23
23
DATABASE_POSTGRES_PASSWORD : {{ "hatchet" | b64enc | quote }}
24
24
DATABASE_POSTGRES_DB_NAME : {{ "hatchet" | b64enc | quote }}
25
25
DATABASE_POSTGRES_SSL_MODE : {{ "require" | b64enc | quote }}
26
- DATABASE_URL : {{ printf "postgresql://%s:%s@%s:%s/%s?sslmode=require" "hatchet" "hatchet" .Values.database.env.host (.Values.database.env.port | toString) "hatchet" | b64enc | quote }}
26
+ DATABASE_URL : {{ printf "postgresql://%s:%s@%s:%s/%s?sslmode=require" "hatchet" "hatchet" .Values.database.env.host (.Values.database.env.port | toString) "hatchet" | b64enc | quote }}
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ data:
10
10
AUTH_SAML_ONLY : {{ .Values.web.config.authSamlOnly | default true | quote }}
11
11
AUTH_EMAIL_FROM : {{ .Values.web.config.authEmailFrom | quote }}
12
12
GREPTILE_AUTH_SERVER : {{ printf "http://auth.%s.svc.cluster.local:%v" .Release.Namespace (.Values.auth.service.port | int) | quote }}
13
+ GREPTILE_API_URL : {{ printf "http://api.%s.svc.cluster.local:%v" .Release.Namespace (.Values.api.service.port | int) | quote }}
13
14
AUTH_BOXYHQ_URL : {{ .Values.jackson.config.url | default (printf "jackson.%s.svc.cluster.local:%v" .Release.Namespace .Values.jackson.service.port) }}
14
15
AUTH_BOXYHQ_SAML_ISSUER : {{ .Values.jackson.config.url | default (printf "jackson.%s.svc.cluster.local:%v" .Release.Namespace .Values.jackson.service.port) }}
15
16
# TODO: configurable github oauth
16
- GREPTILE_API_URL : {{ printf "http://api.%s.svc.cluster.local:%v" .Release.Namespace (.Values.api.service.port | int) | quote }}
17
17
GITHUB_OAUTH_ENABLED : {{ .Values.github.oauth.enabled | quote }}
18
18
POSTHOG_KEY : " dummy"
19
19
POSTHOG_HOST : " dummy"
Original file line number Diff line number Diff line change @@ -130,11 +130,11 @@ indexer:
130
130
pullPolicy : Always
131
131
resources :
132
132
limits :
133
- cpu : 500m
134
- memory : 512Mi
133
+ cpu : " 2 "
134
+ memory : " 8Gi "
135
135
requests :
136
- cpu : 100m
137
- memory : 128Mi
136
+ cpu : " 1 "
137
+ memory : " 4Gi "
138
138
config :
139
139
batchSize : 100
140
140
rootDir : " /mnt/data/"
You can’t perform that action at this time.
0 commit comments