Webserver 404 with Airflow Deployed on Minikube

6/30/2018

I followed the instructions in the official repo on installing on kubernetes, however I get a 404 when I try to use the UI. Could anyone tell me what the issue might be?

Repo: https://github.com/apache/incubator-airflow/tree/master/scripts/ci/kubernetes

To clarify, the instructions I followed were:

  • Point kubectl to the local minikube cluster (v1.10.0)
  • Clone repo (commit 89c1f530da04088300312ad3cec9fa74c3703176)
  • cd incubator-airflow/scripts/ci/kubernetes
  • ./docker/build.sh
  • ./kube/deploy.sh

kubectl get pods airflow airflow minikube 404

-- eamon1234
airflow
kubernetes
minikube

1 Answer

6/30/2018

nevermind... I must have missed the memo that the default username/password is airflow/airflow even though I thought that authenticate was set to False.

Solution:

Go to localhost:8080/login and enter username/password airflow/airflow.

-- eamon1234
Source: StackOverflow