Skip to content
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

update documents #162

Merged
merged 2 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,4 @@ spec:
provider:
name: Foundation Model Stack
version: 0.0.0
replaces: multi-nic-cni-operator.v1.0.2
replaces: multi-nic-cni-operator.v1.2.1
51 changes: 42 additions & 9 deletions document/docs/release/alpha.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@

![](../img/alpha-release.png)

## v1.2.2

**Improvements:**

* Multi-config IPAM (`multi-config`)

ipam: |
{
"type": "multi-config",
"ipam_type": "whereabouts",
"args": {
"eth1": {
"range": "192.168.0.0/18"
},
"eth2": {
"range": "192.168.64.0/18"
}
}
}

* Static IP support

annotations:
k8s.v1.cni.cncf.io/networks: |
[{
"name": "multinic-network",
"cni-args": {
"masters": ["eth1", "eth2"]
},
"ips": [ "192.168.0.1/18", "192.168.64.1/18" ]
}]

## v1.2.1

**Improvements:**
Expand Down Expand Up @@ -35,15 +67,16 @@
metadata:
name: node-1
labels:
unmanaged: true
hostName: node-1
interfaces:
- hostIP: ""
interfaceName: eth1
netAddress: 192.168.0.0/24
- hostIP: ""
interfaceName: eth2
netAddress: 192.168.1.0/24
multi-nic-unmanaged: "true"
spec:
hostName: node-1
interfaces:
- hostIP: ""
interfaceName: eth1
netAddress: 192.168.0.0/24
- hostIP: ""
interfaceName: eth2
netAddress: 192.168.1.0/24

* Multi-gateway route configuration support

Expand Down
10 changes: 5 additions & 5 deletions document/docs/release/index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Release

Channel|Version|IPVLAN L2/L3|AWS IPVLAN|Mellanox Host Device|IP-less (zero host block)
---|---|---|---|---|---
[stable (default)](./stable.md)|v1.0.5|✓|X|X|X
[beta](./beta.md)|v1.2.0|✓|✓|✓|X
[alpha](./alpha.md)|v1.2.1|✓|✓|✓|✓
Channel|Version|IPVLAN L2/L3|AWS IPVLAN|Mellanox Host Device|IP-less (zero host block)|Multi-config IPAM
---|---|---|---|---|---|---
[stable (default)](./stable.md)|v1.0.5|✓|X|X|X|X
[beta](./beta.md)|v1.2.0|✓|✓|✓|X|X
[alpha](./alpha.md)|v1.2.2|✓|✓|✓|✓|✓

Loading