-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Samuel Ferino
committed
Mar 27, 2024
1 parent
692cd69
commit 82cfb41
Showing
5 changed files
with
59 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Kong API Gateway | ||
|
||
Este diretório contain informações relacionadas ao Kong API Gateway. | ||
|
||
## Como instalar? | ||
|
||
```bash | ||
$ microk8s helm repo add kong https://charts.konghq.com | ||
$ microk8s helm repo update | ||
$ microk8s helm install kong kong/kong --create-namespace kong-api-gateway -f values.yaml | ||
$ microk8s kubectl port-forward svc/kong-proxy 8001:8001 -n default | ||
``` | ||
|
||
## Como configurar? | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# values.yaml | ||
kongProxy: | ||
type: NodePort | ||
service: | ||
port: 8000 | ||
targetPort: 8000 |