Aviad Deri
09/25/2024, 8:54 AMuser
09/25/2024, 8:55 AMDefault Values
and compare the value file between the new version and the version you're currently running. You can run helm list -n <NAMESPACE>
to check the CHART version you're using. 3. Update your values.yaml
file if necessary. 4. Upgrade the Helm app by running: bash helm upgrade --install <RELEASE-NAME> airbyte/airbyte --values <VALUE.YAML> --version <HELM-APP-VERSION>
After 2-5 minutes, Helm will print a message showing how to port-forward Airbyte. This may take longer on Kubernetes clusters with slow internet connections. In general the message is the following: bash export POD_NAME=$(kubectl get pods -l "<http://app.kubernetes.io/name=webapp|app.kubernetes.io/name=webapp>" -o jsonpath="{.items[0].metadata.name}") export CONTAINER_PORT=$(kubectl get pod $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}") echo "Visit <http://127.0.0.1:8080> to use your application" kubectl port-forward $POD_NAME 8080:$CONTAINER_PORT
Please note that the upgrade process might vary depending on your specific setup and configuration. Always make sure to backup your data before performing an upgrade. For more details, you can refer to the [official Airbyte documentation](https://docs.airbyte.com/operator-guides/upgrading-airbyte#upgrading-on-k8s-using-helm).Aviad Deri
09/25/2024, 8:56 AMuser
09/25/2024, 8:56 AMuser
09/25/2024, 8:56 AMAviad Deri
09/25/2024, 8:58 AMuser
09/25/2024, 8:58 AMuser
09/25/2024, 8:58 AM