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
- Host: GitHub
- URL: https://github.com/spekulatius/notes-on-faasd
- Owner: spekulatius
- Created: 2020-12-01T10:52:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-28T10:44:42.000Z (about 3 years ago)
- Last Synced: 2025-02-28T23:12:02.313Z (about 1 year ago)
- Topics: faas, faas-cli, faas-framework, faas-platform, faasd, openfaas
- Homepage: https://releasecandidate.dev/posts/2021/discovery-faasd-and-openfaas/
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
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.