Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dizys/aes-kustomization-example
Kubernetes kustomization example for setting up Ambassador Edge Stack (AES), basic auth and more...
https://github.com/dizys/aes-kustomization-example
Last synced: 15 days ago
JSON representation
Kubernetes kustomization example for setting up Ambassador Edge Stack (AES), basic auth and more...
- Host: GitHub
- URL: https://github.com/dizys/aes-kustomization-example
- Owner: dizys
- License: mit
- Created: 2021-06-09T11:16:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-02T11:28:09.000Z (over 3 years ago)
- Last Synced: 2024-12-20T20:03:03.129Z (21 days ago)
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aes-kustomization-example
Kubernetes kustomization example for setting up Ambassador Edge Stack ([AES](https://www.getambassador.io/docs/edge-stack)), basic auth and more...
## Getting started
All the Kubernetes resources are described in this repository and managed with a single Kustomization entry `kustomization.yaml`.
**1. Apply kustomization**
```bash
$ kubectl apply -k ./
```**2. Check out pods**
Under all namespaces:
```bash
$ kubectl get pods --all-namespaces
```or under `ambassador` namespace:
```bash
$ kubectl get pods --namespace ambassador
```**3. Delete deployments**
```bash
$ kubectl delete -k ./
```### Tunnel when using minikube
When using [minikube](https://minikube.sigs.k8s.io/docs/start/), use the following command to tunnel 80 and 443 ports in order to make gateway accessible from host:
```bash
$ minikube tunnel
```Then visit http://127.0.0.1/backend/get-quote/
## License
MIT