-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
100 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
AIRBYTE_VERSION=0.27.2-alpha | ||
|
||
# Airbyte Internal Database, see https://docs.airbyte.io/operator-guides/configuring-airbyte-db | ||
DATABASE_USER=docker | ||
DATABASE_PASSWORD=docker | ||
DATABASE_HOST=airbyte-db-svc | ||
DATABASE_PORT=5432 | ||
DATABASE_DB=airbyte | ||
# translate manually DATABASE_URL=jdbc:postgresql://${DATABASE_HOST}:${DATABASE_PORT/${DATABASE_DB} | ||
DATABASE_URL=jdbc:postgresql://airbyte-db-svc:5432/airbyte | ||
|
||
# When using the airbyte-db via default docker image: | ||
CONFIG_ROOT=/configs | ||
DATA_DOCKER_MOUNT=airbyte_data | ||
DB_DOCKER_MOUNT=airbyte_db | ||
|
||
# Temporal.io worker configuration | ||
TEMPORAL_HOST=airbyte-temporal-svc:7233 | ||
TEMPORAL_WORKER_PORTS=9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030 | ||
|
||
# Workspace storage for running jobs (logs, etc) | ||
WORKSPACE_ROOT=/workspace | ||
WORKSPACE_DOCKER_MOUNT=airbyte_workspace | ||
|
||
LOCAL_ROOT=/tmp/airbyte_local | ||
|
||
# Miscellaneous | ||
TRACKING_STRATEGY=segment | ||
WEBAPP_URL=airbyte-webapp-svc:80 | ||
API_URL=/api/v1/ | ||
INTERNAL_API_HOST=airbyte-server-svc:8001 | ||
|
||
WORKER_ENVIRONMENT=kubernetes | ||
PAPERCUPS_STORYTIME=enabled | ||
FULLSTORY=enabled | ||
IS_DEMO=false | ||
LOG_LEVEL=INFO | ||
|
||
# S3/Minio Log Configuration | ||
S3_LOG_BUCKET=airbyte-dev-logs | ||
S3_LOG_BUCKET_REGION=us-east-1 | ||
AWS_ACCESS_KEY_ID=minio | ||
AWS_SECRET_ACCESS_KEY=minio123 | ||
S3_MINIO_ENDPOINT=http://airbyte-minio-svc:9000 | ||
S3_PATH_STYLE_ACCESS=true | ||
|
||
# GCS Log Configuration | ||
GCP_STORAGE_BUCKET= | ||
GOOGLE_APPLICATION_CREDENTIALS= | ||
|
||
# Docker Resource Limits | ||
RESOURCE_CPU_REQUEST= | ||
RESOURCE_CPU_LIMIT= | ||
RESOURCE_MEMORY_REQUEST= | ||
RESOURCE_MEMORY_LIMIT= |
28 changes: 28 additions & 0 deletions
28
kube/overlays/stable-with-resource-limits/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
namespace: default | ||
|
||
bases: | ||
- ../../resources | ||
|
||
images: | ||
- name: airbyte/seed | ||
newTag: 0.27.2-alpha | ||
- name: airbyte/db | ||
newTag: 0.27.2-alpha | ||
- name: airbyte/scheduler | ||
newTag: 0.27.2-alpha | ||
- name: airbyte/server | ||
newTag: 0.27.2-alpha | ||
- name: airbyte/webapp | ||
newTag: 0.27.2-alpha | ||
- name: temporalio/auto-setup | ||
newTag: 1.7.0 | ||
|
||
configMapGenerator: | ||
- name: airbyte-env | ||
env: .env | ||
|
||
patchesStrategicMerge: | ||
- set-resource-limits.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ spec: | |
resources: | ||
limits: | ||
cpu: 2 | ||
memory: 4Gi | ||
memory: 2Gi | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,3 @@ images: | |
configMapGenerator: | ||
- name: airbyte-env | ||
env: .env | ||
|
||
patchesStrategicMerge: | ||
- set-resource-limits.yaml |