Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harzu/otus-architecture
Otus architecture
https://github.com/harzu/otus-architecture
Last synced: 22 days ago
JSON representation
Otus architecture
- Host: GitHub
- URL: https://github.com/harzu/otus-architecture
- Owner: Harzu
- Created: 2020-04-10T17:33:21.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-16T10:07:12.000Z (over 4 years ago)
- Last Synced: 2024-10-25T10:50:14.696Z (2 months ago)
- Language: Go
- Size: 8.06 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pre-run
**HOSTNAME** - arch.homework
add etc/hosts INGRESS IP = HOSTNAMEStart minikube and enable ingress
```bash
minikube start --cpus=6 --memory=6g
minikube addons enable ingress
```Run hw pods
```bash
make auth-hw-run
```Wait for lunch (see pods status ```watch kubectl get all```)
Run test postman collection
```bash
newman run ./postman-collection/auth-hw.json
```Clear pods and stop minikube
```bash
make clean
minikube delete
```