-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Documentation for deploying Antrea with Rancher cluster
Signed-off-by: Pulkit Jain <[email protected]>
- Loading branch information
Pulkit Jain
committed
Mar 30, 2023
1 parent
02b3779
commit 754a16b
Showing
7 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Deploying Antrea on Rancher Managed Cluster | ||
|
||
<!-- toc --> | ||
- [Deploy Rancher Server](#deploy-rancher-server) | ||
- [Deploy Antrea Using Rancher UI](#deploy-antrea-using-rancher-ui) | ||
<!-- /toc --> | ||
|
||
## Deploy Rancher Server | ||
|
||
Follow these [steps](https://rancher.com/docs/rancher/v1.6/en/installing-rancher/installing-server/) to deploy rancher server ui dashboard. | ||
|
||
## Deploy Antrea Using Rancher UI | ||
|
||
* Sign-in to the UI dashboard, and switch to cluster management. | ||
|
||
![rancher_cluster_management](https://raw.githubusercontent.com/antrea-io/antrea/main/docs/assets/rancher_cluster_management.png) | ||
|
||
* Create new Node template there under the RKE configuration section. | ||
|
||
![rancher_node_template](https://raw.githubusercontent.com/antrea-io/antrea/main/docs/assets/rancher_node_template.png) | ||
|
||
* After saving the template, proceed with creating new cluster, under the clusters tab click on create button, then enter the name, and number of worker and controlplane Nodes respectively. | ||
|
||
![rancher_create](https://raw.githubusercontent.com/antrea-io/antrea/main/docs/assets/rancher_create.png) | ||
|
||
* click on “Edit as YAML", and set the network plugin to null, and add a addon for antrea, in the following manner: | ||
addons_include: | ||
-<link of the antrea.yml file> | ||
|
||
You can find few screenshots for validation after following the above steps: | ||
![rancher_cluster](https://raw.githubusercontent.com/antrea-io/antrea/main/docs/assets/rancher_cluster.png) | ||
![rancher_node](https://raw.githubusercontent.com/antrea-io/antrea/main/docs/assets/rancher_node.png) | ||
|
||
Note: Antrea(version v1.10+) is supported on rancher version v2.7.0+. |