Hello Team I am trying to enable basic auth in the...
# ask-ai
s
Hello Team I am trying to enable basic auth in the airbyte application which I have deployed in EKS using kubernetes with helm. I can't seem to find a way to do this in application directly, and rather need to do it by making changes in the annotations of the ingress controller (by enabling nginx). Is there way to enable basic auth directly in the application ? Kind help. TIA!
k
A message from kapa.ai
Yes, you can enable basic authentication directly in the Airbyte application. To do this, you need to set the
BASIC_AUTH_USERNAME
and
BASIC_AUTH_PASSWORD
environment variables in your deployment. Airbyte has added support for basic authentication since version 0.40.16 [source](https://airbytehq.slack.com/archives/C021JANJ6TY/p1671237581064489). To enable basic auth using the Helm chart, you can modify the
values.yaml
file and add the following environment variables:
Copy code
yaml env:   BASIC_AUTH_USERNAME: your_username   BASIC_AUTH_PASSWORD: your_password
Replace
your_username
and
your_password
with your desired credentials. After updating the
values.yaml
file, upgrade your Helm release to apply the changes. Please note that this information is based on the provided extracts, and there might be additional steps or changes required depending on your specific setup.
t
@Saptaswa Pal im currently having the same problem, did you manage to fix it ?