https://github.com/gitopsbook/sample-app-deployment
Sample Application used to demonstrate GitOps driven deployment
https://github.com/gitopsbook/sample-app-deployment
Last synced: 2 months ago
JSON representation
Sample Application used to demonstrate GitOps driven deployment
- Host: GitHub
- URL: https://github.com/gitopsbook/sample-app-deployment
- Owner: gitopsbook
- Created: 2020-01-27T05:50:23.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-27T09:35:19.000Z (about 3 years ago)
- Last Synced: 2023-03-06T14:57:17.720Z (about 3 years ago)
- Homepage:
- Size: 3.91 KB
- Stars: 12
- Watchers: 4
- Forks: 235
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sample Application Deployment
The repository contains Kubernetes manifests that defines the deployment of the
[sample application](https://github.com/gitopsbook/sample-app).
To deploy the application manually run the following command:
```
kubectl create ns sample-app
kubectl apply -f . -n sample-app
```
To test the application run the command below and access http://localhost:8080/
```
kubectl port-forward svc/sample-app 8080:80 -n sample-app
```