# FusionAuth

FusionAuth is the service that provides identity and access management. We are using it for the email and password authentication only.

Docs: https://fusionauth.io/download

We're using this script to install the helm chart:

```bash
helm repo add fusionauth https://fusionauth.github.io/charts
curl -o values.yaml https://raw.githubusercontent.com/FusionAuth/charts/master/chart/values.yaml
helm install wavtool-idp fusionauth/fusionauth -f values.yaml --namespace fusionauth
export SVC_NAME=$(kubectl get svc --namespace fusionauth -l "app.kubernetes.io/name=fusionauth,app.kubernetes.io/instance=wavtool-idp" -o jsonpath="{.items[0].metadata.name}")
kubectl port-forward --namespace fusionauth svc/$SVC_NAME 9011:9011

# To uninstall (Please do not run this unless you know what you're doing)
helm uninstall wavtool-idp --namespace fusionauth
```

Then open http://127.0.0.1:9011 in your browser.
