https://github.com/altinn/app-kubernetes-wrapper
Altinn apps microservice for Kubernetes
https://github.com/altinn/app-kubernetes-wrapper
Last synced: about 1 year ago
JSON representation
Altinn apps microservice for Kubernetes
- Host: GitHub
- URL: https://github.com/altinn/app-kubernetes-wrapper
- Owner: Altinn
- License: bsd-3-clause
- Created: 2022-02-21T21:48:45.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-06-12T00:51:47.000Z (about 1 year ago)
- Last Synced: 2025-06-12T01:39:13.905Z (about 1 year ago)
- Language: C#
- Size: 13.4 MB
- Stars: 0
- Watchers: 19
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Kubernetes Wrapper
Application exposing information about deployments in kubernetes in a rest API
## Testing
### Linux and macOS
To test kuberneteswrapper in a kubernetes cluster (kind) lokally run the following command
```shell
make test
```
This will do the following
1. create a kind kubernetescluster
2. build kuberneteswrapper docker image
3. load the image into kind
4. deploy kuberneteswrapper and test services
5. add portfowrward to the kuberneteswrapper service in kind
6. test that kuberneteswrapper produces the expected responses
After the test command is executed a portforward on port 8080 is left intact if you want to execute api calls to kuberneteswrapper
To clean up after you are done testing run:
```shell
make clean
```