Skip to content

Commit

Permalink
Merge pull request #162 from foundation-model-stack/doc
Browse files Browse the repository at this point in the history
update documents
  • Loading branch information
sunya-ch authored Dec 5, 2023
2 parents 4cc4e28 + 48f67e1 commit 0415fbc
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 15 deletions.
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|✓|✓|✓|✓|✓

0 comments on commit 0415fbc

Please sign in to comment.