An open API service indexing awesome lists of open source software.

https://github.com/spekulatius/notes-on-faasd

Personal notes on faasd / openfaas
https://github.com/spekulatius/notes-on-faasd

faas faas-cli faas-framework faas-platform faasd openfaas

Last synced: 2 months ago
JSON representation

Personal notes on faasd / openfaas

Awesome Lists containing this project

README

          

# Personal Notes on faasd

## Articles

- [Faasd with Caddy & Terraform](https://www.openfaas.com/blog/faasd-tls-terraform/) - demonstrates Caddy for Let's Encrypt as well as usage of secrets.

## Videos

- [Hands-on with faasd & Inlets](https://www.youtube.com/watch?v=AFx0Wap3Z8E)
- [faasd walk-through with cloud-init and Multipass](https://www.youtube.com/watch?v=WX1tZoSXy8E)
- [OpenFaaS: keeping serverless simple](https://www.youtube.com/watch?v=jRG2ZAaEG2U)
- [Meet Derek, the contribution bot for GitHub](https://www.youtube.com/watch?v=ibPwVggXAFI)

## Handy One-Liners

Mostly utilizing [faas cli](https://github.com/openfaas/faas-cli) here are some one-liners to shortcut typing:

### Login

```bash
export IP="faas1" &&
export PASSWORD=$(ssh root@$IP "sudo cat /var/lib/faasd/secrets/basic-auth-password") &&
export OPENFAAS_URL=http://$IP:8080 &&
echo $PASSWORD | faas-cli login --password-stdin
```

You can also use a hostname as IP.