-
Notifications
You must be signed in to change notification settings - Fork 40
Conversation
In this guide, we'll deploy a sample kedge file `httpd.yaml` to a Kubernetes cluster. | ||
|
||
Requirements: | ||
- [minikube](https://github.com/kubernetes/minikube) |
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.
put the downlaod instructions link!
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.
If people follow the link, they'll find the installation instructions :)
|
||
Requirements: | ||
- [minikube](https://github.com/kubernetes/minikube) | ||
- [kedge](https://github.com/kedgeproject/kedge) |
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.
put the downlaod instructions link!
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.
If people follow the link, they'll find the installation instructions :)
docs/getting-started.md
Outdated
__Download the [httpd.yaml](https://raw.githubusercontent.com/kedgeproject/kedge/master/examples/httpd/httpd.yaml) example file, or another example from the [examples](https://github.com/kedgeproject/kedge/tree/master/examples) GitHub directory:__ | ||
|
||
```sh | ||
wget https://raw.githubusercontent.com/kedgeproject/kedge/master/examples/httpd/httpd.yaml |
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.
nit: wget
is not installed in lot of machines by default, how about curl -O
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.
You're right. Added!
|
||
__Deploy directly to your OpenShift cluster with `kedge apply`:__ | ||
|
||
Run `kedge apply -f backend.yaml -f frontend.yaml -f db.yaml` in the same directory as your example files. |
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.
If we have only kedge files in the directory then we can always do kedge apply -f .
, .
being the directory all files in that directory will be taken.
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.
IMO, I think we should keep the same.
Adds a getting started guide on how to use minishift + kedge as well as minikube + kedge.
6266c8f
to
064c509
Compare
I'm going to merge this in for-now so we have a guide for getting-started during Kubecon |
Adds a getting started guide on how to use minishift + kedge as well as
minikube + kedge.