Skip to content

Commit 80a1998

Browse files
vhosakotchrisplo
authored andcommitted
Upgrade CNI to 0.6.0 in netplugin (#1100)
This PR upgrades CNI to 0.6.0 in netplugin. It has the following changes: Update ImportPath, version and Rev (git commit SHA) in Godeps.json for CNI 0.6.0. Update CNI version to 0.6.0 in the following k8s YAML files: install/k8s/contiv/contiv.yaml install/k8s/contiv/contiv_aci.yaml install/k8s/contiv/contiv_devtest.yaml Replace legacy import path appc/cni with the correct import path containernetworking/cni in k8s_cni.go and update required code to handle IPv4 and IPv6 addresses with CNI 0.6.0. Removed legacy vendor dir netplugin/vendor/github.com/appc. Added new vendor dir netplugin/vendor/github.com/containernetworking/cni needed for CNI 0.6.0. Signed-off-by: Vikram Hosakote <[email protected]>
1 parent 0308c0f commit 80a1998

File tree

22 files changed

+1336
-660
lines changed

22 files changed

+1336
-660
lines changed

Godeps/Godeps.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

install/k8s/contiv/contiv.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ data:
1818
# The CNI network configuration to install on each node.
1919
contiv_cni_config: |-
2020
{
21-
"cniVersion": "0.1.0",
21+
"cniVersion": "0.6.0",
2222
"name": "contiv-net",
2323
"type": "contivk8s"
2424
}

install/k8s/contiv/contiv_aci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ data:
1818
# The CNI network configuration to install on each node.
1919
contiv_cni_config: |-
2020
{
21-
"cniVersion": "0.1.0",
21+
"cniVersion": "0.6.0",
2222
"name": "contiv-net",
2323
"type": "contivk8s"
2424
}

install/k8s/contiv/contiv_devtest.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ data:
2020
# The CNI network configuration to install on each node.
2121
contiv_cni_config: |-
2222
{
23-
"cniVersion": "0.1.0",
23+
"cniVersion": "0.6.0",
2424
"name": "contiv-net",
2525
"type": "contivk8s"
2626
}

mgmtfn/k8splugin/contivk8s/k8s_cni.go

+14-12
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ import (
2828
"github.com/contiv/netplugin/version"
2929

3030
logger "github.com/Sirupsen/logrus"
31-
ip "github.com/appc/cni/pkg/ip"
32-
cni "github.com/appc/cni/pkg/plugin"
31+
ip "github.com/containernetworking/cni/pkg/types"
32+
cni "github.com/containernetworking/cni/pkg/types/current"
3333
)
3434

35-
// CNIResponse response format expected from CNI plugins(version 0.1.0)
35+
// CNIResponse response format expected from CNI plugins(version 0.6.0)
3636
type CNIResponse struct {
3737
CNIVersion string `json:"cniVersion"`
3838
cni.Result
@@ -41,7 +41,7 @@ type CNIResponse struct {
4141
//CNIError : return format from CNI plugin
4242
type CNIError struct {
4343
CNIVersion string `json:"cniVersion"`
44-
cni.Error
44+
ip.Error
4545
}
4646

4747
var log *logger.Entry
@@ -75,7 +75,7 @@ func addPodToContiv(nc *clients.NWClient, pInfo *cniapi.CNIPodAttr) {
7575
log.Errorf("EP create failed for pod: %s/%s",
7676
pInfo.K8sNameSpace, pInfo.Name)
7777
cerr := CNIError{}
78-
cerr.CNIVersion = "0.1.0"
78+
cerr.CNIVersion = "0.6.0"
7979

8080
if result != nil {
8181
cerr.Code = result.Result
@@ -107,12 +107,13 @@ func addPodToContiv(nc *clients.NWClient, pInfo *cniapi.CNIPodAttr) {
107107
}
108108

109109
out := CNIResponse{
110-
CNIVersion: "0.1.0",
110+
CNIVersion: "0.6.0",
111111
}
112112

113-
out.IP4 = &cni.IPConfig{
114-
IP: net.IPNet{IP: ip4Net.IP, Mask: ip4Net.Mask},
115-
}
113+
out.IPs = append(out.IPs, &cni.IPConfig{
114+
Version: "4",
115+
Address: net.IPNet{IP: ip4Net.IP, Mask: ip4Net.Mask},
116+
})
116117

117118
if result.IPv6Address != "" {
118119
ip6Net, err := ip.ParseCIDR(result.IPv6Address)
@@ -121,9 +122,10 @@ func addPodToContiv(nc *clients.NWClient, pInfo *cniapi.CNIPodAttr) {
121122
return
122123
}
123124

124-
out.IP6 = &cni.IPConfig{
125-
IP: net.IPNet{IP: ip6Net.IP, Mask: ip6Net.Mask},
126-
}
125+
out.IPs = append(out.IPs, &cni.IPConfig{
126+
Version: "6",
127+
Address: net.IPNet{IP: ip6Net.IP, Mask: ip6Net.Mask},
128+
})
127129
}
128130

129131
data, err := json.MarshalIndent(out, "", " ")

vendor/github.com/appc/cni/pkg/ip/cidr.go

-86
This file was deleted.

vendor/github.com/appc/cni/pkg/ip/ipmasq.go

-66
This file was deleted.

0 commit comments

Comments
 (0)