this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(infra): use host network for local worker

Make sure that the worker can talk to minio, temporal and k3d the same
way with the host.

Khue Doan c18efc27 502bb7ba

+3 -2
+2 -1
compose.yaml
··· 29 29 volumes: 30 30 - /var/run/docker.sock:/var/run/docker.sock 31 31 environment: 32 - TEMPORAL_HOST: temporal:7233 32 + TEMPORAL_HOST: localhost:7233 33 33 TG_NON_INTERACTIVE: true 34 34 AWS_ACCESS_KEY_ID: minioadmin 35 35 AWS_SECRET_ACCESS_KEY: minioadmin 36 + network_mode: host 36 37 depends_on: 37 38 temporal: 38 39 condition: service_healthy
+1 -1
infra/local/root.hcl
··· 2 2 backend = "s3" 3 3 config = { 4 4 endpoints = { 5 - s3 = "http://tfstate:9000" 5 + s3 = "http://localhost:9000" 6 6 } 7 7 bucket = "tfstate" 8 8 key = "${path_relative_to_include()}/terraform.tfstate"