Skip to content

Commit

Permalink
docs: add arm build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
oilbeater committed Apr 10, 2020
1 parent 8a9bcb5 commit d274a97
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ The Kube-OVN community is waiting for you participation!
- **Direct External Connectivity**:Pod IP can be exposed to external network directly.
- **Traffic Mirror**: Duplicated container network traffic for monitoring, diagnosing and replay.
- **IPv6 Support**: Kube-OVN supports ipv6-only mode pod network.
- **ARM Support**: Kube-OVN can run on x86_64 and arm64 platforms.
- **TroubleShooting Tools**: Handy tools to diagnose, trace, monitor and dump container network traffic to help troubleshooting complicate network issues.
- **Prometheus & Grafana Integration**: Exposing network quality metrics like pod/node/service/dns connectivity/latency in Prometheus format.

Expand Down
8 changes: 7 additions & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ To minimize image size we use docker experiment buildx features, please enable i
```
git clone https://github.com/alauda/kube-ovn.git
cd kube-ovn
make ovs
make release
```

Expand All @@ -24,3 +23,10 @@ make kind-init
make e2e
```

## ARM support

If you want to run Kube-OVN on arm64 platform, you need to build the arm64 images with following steps.

1. Edit the Makefile, change `ARCH=amd64` to `ARCH=arm64` and `RPM_ARCH=x86_64` to `RPM_ARCH=aarch64`
2. Run `make release` to build the images for arm64 platform

0 comments on commit d274a97

Please sign in to comment.