Seppo Puusa
10/17/2024, 7:12 PMTEMPORAL_HOST
- Defines the url where Temporal is hosted at. Please include the port. Airbyte services use this information.
2. INTERNAL_API_HOST
- Defines the url where the Airbyte Server is hosted at. Please include the port. Airbyte services use this information.
3. WEBAPP_URL
- Defines the url the Airbyte Webapp is hosted at. Please include the port. Airbyte services use this information. You can set this variable to your custom domain name to change the Airbyte instance URL provided in notifications.user
10/17/2024, 7:13 PMvalues.yaml
file. This file is used to provide specific overrides for your Helm Chart configuration. For the environment variables you mentioned: 1. `TEMPORAL_HOST`: This is not directly set in the values.yaml
file. It's usually set in the environment of the Kubernetes deployment. 2. `INTERNAL_API_HOST`: This is also not directly set in the values.yaml
file. It's usually set in the environment of the Kubernetes deployment. However, there have been issues reported where the INTERNAL_API_HOST
value needs to include the http://
scheme for certain components to function correctly. This can be done by setting the env_vars
under airbyte-api-server
in the values.yaml
file like so: yaml airbyte-api-server: env_vars: INTERNAL_API_HOST: <http://airbyte-airbyte-server-svc:8001>
(Source: [Github Issue 32577](https://github.com/airbytehq/airbyte/issues/32577), [Github Issue 29506](https://github.com/airbytehq/airbyte/issues/29506)) 3. `WEBAPP_URL`: This can be set in the values.yaml
file under webapp.url
. If you want to explicitly set the WEBAPP_URL
environment variable in the webapp pod, you can do so by setting the webapp.extraEnv
in the values.yaml
file like so: yaml extraEnv: - name: WEBAPP_URL valueFrom: configMapKeyRef: name: airbyte-env key: WEBAPP_URL
(Source: [Github Issue 33942](https://github.com/airbytehq/airbyte/issues/33942)) Please note that these configurations might vary depending on your specific setup and requirements. Always refer to the [official Airbyte documentation](https://docs.airbyte.com/operator-guides/configuring-airbyte) for the most accurate information.