Ishan Anilbhai Koradiya
10/21/2024, 9:22 AMuser
10/21/2024, 9:22 AMhelm-repo
. You can add this repository to your local index by running the command helm repo add airbyte <https://airbytehq.github.io/helm-charts>
. After adding the repo, you can perform the repo indexing process by running helm repo update
. You can then browse all charts uploaded to the repository by running helm search repo airbyte
. However, please note that the specific version of the Helm chart for Airbyte version 0.58.0 is not mentioned in the provided knowledge sources. You may want to check the Helm repository or the [Airbyte GitHub repository](https://github.com/airbytehq/airbyte) for the specific version you are looking for. Here are the steps to add the Helm repository: 1. Run: helm repo add airbyte <https://airbytehq.github.io/helm-charts>
. 2. After adding the repo, perform the repo indexing process by running helm repo update
. 3. You can now browse all charts uploaded to repository by running helm search repo airbyte
. Sources: - [Deploying Airbyte](https://docs.airbyte.com/deploying-airbyte/#1-add-the-helm-repository) - [Deploy Airbyte on Kubernetes using Helm](https://docs.airbyte.com/deploying-airbyte/on-kubernetes-via-helm#add-helm-repository)Ishan Anilbhai Koradiya
10/21/2024, 9:24 AMuser
10/21/2024, 9:24 AMuser
10/21/2024, 9:24 AMyaml version: "0.50.11" global: image: tag: "0.50.11"
Additionally, you can override the env_vars
and specify the version you want to use. You can change the global setting and impact all services or send the env_vars
to a single service. yaml env_vars: AIRBYTE_VERSION: 0.50.11
Please replace 0.50.11
with the version you want to use. However, please note that the command helm repo add
is used to add a Helm repository, and it does not have an option to specify the version of the application. The version is usually specified when you install or upgrade the Helm chart. For example, when upgrading the chart, you can specify the version like this: shell helm upgrade --install %RELEASE_NAME% airbyte/airbyte -n <NAMESPACE> --values /path/to/values.yaml --version 0.50.13
Please replace %RELEASE_NAME%
, <NAMESPACE>
, and /path/to/values.yaml
with your release name, namespace, and the path to your values file, respectively. Sources: - [Github Discussion](https://github.com/airbytehq/airbyte/discussions/32349) - [External Airbyte Database](https://docs.airbyte.com/deploying-airbyte/on-kubernetes-via-helm#external-airbyte-database)Ishan Anilbhai Koradiya
10/21/2024, 9:33 AMuser
10/21/2024, 9:33 AMuser
10/21/2024, 9:33 AMbash mkdir airbyte && cd airbyte wget <https://raw.githubusercontent.com/airbytehq/airbyte/master/run-ab-platform.sh> chmod +x run-ab-platform.sh ./run-ab-platform.sh -b
Verify the connection by visiting http://localhost:8000 in your browser. [Source](https://docs.airbyte.com/deploying-airbyte/on-digitalocean-droplet#install-airbyte) 2. AWS EC2: bash ssh -i $SSH_KEY ec2-user@$INSTANCE_IP mkdir airbyte && cd airbyte wget <https://raw.githubusercontent.com/airbytehq/airbyte/master/run-ab-platform.sh> chmod +x run-ab-platform.sh ./run-ab-platform.sh -b
[Source](https://docs.airbyte.com/deploying-airbyte/on-aws-ec2#install-and-start-airbyte) 3. GCP Compute Engine: bash gcloud --project=$PROJECT_ID beta compute ssh $INSTANCE_NAME mkdir airbyte && cd airbyte wget <https://raw.githubusercontent.com/airbytehq/airbyte/master/run-ab-platform.sh> chmod +x run-ab-platform.sh ./run-ab-platform.sh -b
[Source](https://docs.airbyte.com/deploying-airbyte/on-gcp-compute-engine#install-and-launch-airbyte) 4. Helm Install: bash helm install \ airbyte \ airbyte/airbyte \ --namespace airbyte \ --values ./values.yaml
[Source](https://docs.airbyte.com/deploying-airbyte/#5-installing-airbyte) Please replace the placeholders like $SSH_KEY
, $INSTANCE_IP
, $PROJECT_ID
, $INSTANCE_NAME
, and ./values.yaml
with your actual values.