-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding README.md #3
base: master
Are you sure you want to change the base?
Conversation
@@ -0,0 +1,44 @@ | |||
# Simple Kubernetes controller | |||
|
|||
A simple controller that exposes your Kubernetes deployment automatically to external world. Please find youtube series . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A simple controller that exposes your Kubernetes deployment automatically to external world. Please find youtube series . | |
A simple controller that exposes your Kubernetes deployment automatically to external world. Please find youtube series. |
|
||
## install using `manifests` folder | ||
|
||
```python |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
```python | |
```bash |
serviceaccount/ekspose-sa created | ||
``` | ||
|
||
## status Checking . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
## status Checking . | |
## Testing it, by creating a simple deployment |
``` | ||
|
||
## status Checking . | ||
1- create a deployment . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1- create a deployment . | |
1. Create a deployment |
kubectl create deployment test-ekpose --image=nginx | ||
deployment.apps/test-ekpose created | ||
``` | ||
2- check if ing is created or no . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2- check if ing is created or no . | |
2. Check if the deployment has automatically been exposed, by listing the ingress resource |
test-ekpose <none> * c04c862c-306f-48d0-84c0-54a80730d855.k8s.civo.com 80 44s | ||
``` | ||
|
||
## Contributing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't usually accept pull requests because people are going to follow this repo after watching the youtube video and they would be confused to see some changes here that are not covered in the videos. So, let's remove this section.
|
||
Please make sure to update tests as appropriate. | ||
|
||
## License |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please explain this a bit, why did we explicitly choose MIT? We can remove as well.
Adding a README guide for how to use this code before statring building it from scratch again.