Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Fixed README and added new subsection for DNS requirement #78

Merged
merged 2 commits into from
Jun 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* [Executables](#executables)
* [Systemd](#systemd)
* [Resources](#resources)
* [DNS](#dns)
* [Development](#development)
* [Build](#build)
- [Getting started](#getting-started)
Expand Down Expand Up @@ -79,7 +80,14 @@ A recent systemd version is better to gain:
* 4GB of memory is recommended
* 5GB of free disk space for the binaries and the container images

#### Development
#### DNS

Ensure your hostname is discoverable:
```bash
dig $(hostname) -short
```

### Development

Pupernetes must be run on linux (or linux VM).

Expand Down Expand Up @@ -113,7 +121,7 @@ chmod +x ./pupernetes
### Run

```bash
sudo ./pupernetes daemon run sandbox/
sudo ./pupernetes daemon run /opt/sandbox/
```

>Note:
Expand All @@ -123,7 +131,7 @@ sudo ./pupernetes daemon run sandbox/
>You need to run the following command to add `kubectl` to the `$PATH`:
>
>```bash
> sudo ./pupernetes run sandbox/ --kubectl-link /usr/local/bin/kubectl
> sudo ./pupernetes daemon run /opt/sandbox/ --kubectl-link /usr/local/bin/kubectl
>```

```bash
Expand Down