Hi <@U04SE163WC8>, where are all the helm charts l...
# ask-ai
i
Hi @kapa.ai, where are all the helm charts located. I am looking for the helm chart for airbyte version 0.58.0
u
The Helm charts for Airbyte are stored in the
helm-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)
i
@kapa.ai how do i specify airbyte version while doing helm repo add
u
A message from kapa.ai
u
To specify the Airbyte version while using Helm charts, you can set the version in the values in the following manner:
Copy code
yaml 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.
Copy code
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:
Copy code
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)
i
@kapa.ai whats the airbyte install command ?
u
A message from kapa.ai
u
The command to install Airbyte depends on the platform you are using. Here are some examples: 1. DigitalOcean Droplet:
Copy code
bash 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:
Copy code
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:
Copy code
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:
Copy code
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.