Skip to content

Commit 893f4f6

Browse files
authored
Sync with Monorepo 2025-01-15 (#3)
Sync with Greptile Monorepo
1 parent fcf20e6 commit 893f4f6

File tree

4 files changed

+38
-11
lines changed

4 files changed

+38
-11
lines changed

.gitignore

+32-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,43 @@
1-
*.rdb
21
*.tfvars
32
.terraform*
43
*.tfstate*
54
*.tar.gz
5+
*.tgz
66

77
values-override*.yaml
88

9+
!jest.config.js
10+
node_modules
11+
.DS_stores
912
.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__
1124
.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+
1241
/apps
1342
/packages
14-
/infra
15-
/node_modules
16-
/tmp
43+
/infra

helm/templates/secrets.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ data:
2323
DATABASE_POSTGRES_PASSWORD: {{ "hatchet" | b64enc | quote }}
2424
DATABASE_POSTGRES_DB_NAME: {{ "hatchet" | b64enc | quote }}
2525
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 }}

helm/templates/web/configmap.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ data:
1010
AUTH_SAML_ONLY: {{ .Values.web.config.authSamlOnly | default true | quote }}
1111
AUTH_EMAIL_FROM: {{ .Values.web.config.authEmailFrom | quote }}
1212
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 }}
1314
AUTH_BOXYHQ_URL: {{ .Values.jackson.config.url | default (printf "jackson.%s.svc.cluster.local:%v" .Release.Namespace .Values.jackson.service.port) }}
1415
AUTH_BOXYHQ_SAML_ISSUER: {{ .Values.jackson.config.url | default (printf "jackson.%s.svc.cluster.local:%v" .Release.Namespace .Values.jackson.service.port) }}
1516
# TODO: configurable github oauth
16-
GREPTILE_API_URL: {{ printf "http://api.%s.svc.cluster.local:%v" .Release.Namespace (.Values.api.service.port | int) | quote }}
1717
GITHUB_OAUTH_ENABLED: {{ .Values.github.oauth.enabled | quote }}
1818
POSTHOG_KEY: "dummy"
1919
POSTHOG_HOST: "dummy"

helm/values.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ indexer:
130130
pullPolicy: Always
131131
resources:
132132
limits:
133-
cpu: 500m
134-
memory: 512Mi
133+
cpu: "2"
134+
memory: "8Gi"
135135
requests:
136-
cpu: 100m
137-
memory: 128Mi
136+
cpu: "1"
137+
memory: "4Gi"
138138
config:
139139
batchSize: 100
140140
rootDir: "/mnt/data/"

0 commit comments

Comments
 (0)