forked from projectcalico/libcalico-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobalbgppeer.go
131 lines (112 loc) · 3.63 KB
/
globalbgppeer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
// Copyright (c) 2017 Tigera, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package resources
import (
"reflect"
"github.com/projectcalico/libcalico-go/lib/api"
"github.com/projectcalico/libcalico-go/lib/backend/k8s/custom"
"github.com/projectcalico/libcalico-go/lib/backend/model"
"github.com/projectcalico/libcalico-go/lib/converter"
"github.com/projectcalico/libcalico-go/lib/scope"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
)
const (
BGPPeerResourceName = "BGPPeers"
BGPPeerCRDName = "bgppeers.crd.projectcalico.org"
)
func NewGlobalBGPPeerClient(c *kubernetes.Clientset, r *rest.RESTClient) K8sResourceClient {
return &customK8sResourceClient{
clientSet: c,
restClient: r,
name: BGPPeerCRDName,
resource: BGPPeerResourceName,
description: "Calico BGP Peers",
k8sResourceType: reflect.TypeOf(custom.BGPPeer{}),
k8sListType: reflect.TypeOf(custom.BGPPeerList{}),
converter: GlobalBGPPeerConverter{},
}
}
// GlobalBGPPeerConverter implements the CustomK8sResourceConverter interface.
type GlobalBGPPeerConverter struct {
// Since the Spec is identical to the Calico API Spec, we use the
// API converter to convert to and from the model representation.
converter.BGPPeerConverter
}
func (_ GlobalBGPPeerConverter) ListInterfaceToKey(l model.ListInterface) model.Key {
pl := l.(model.GlobalBGPPeerListOptions)
if pl.PeerIP.IP != nil {
return model.GlobalBGPPeerKey{PeerIP: pl.PeerIP}
}
return nil
}
func (_ GlobalBGPPeerConverter) KeyToName(k model.Key) (string, error) {
pk := k.(model.GlobalBGPPeerKey)
// Convert the IP address to a k8s compatible name by replacing periods
// and colons with dashes.
return IPToResourceName(pk.PeerIP), nil
}
func (_ GlobalBGPPeerConverter) NameToKey(name string) (model.Key, error) {
ip, err := ResourceNameToIP(name)
if err != nil {
return nil, err
}
return model.GlobalBGPPeerKey{
PeerIP: *ip,
}, nil
}
func (c GlobalBGPPeerConverter) ToKVPair(r CustomK8sResource) (*model.KVPair, error) {
// Since we are using the Calico API Spec definition to store the Calico
// BGP Peer, use the client conversion helper to convert between KV and API.
t := r.(*custom.BGPPeer)
peer := api.BGPPeer{
Metadata: api.BGPPeerMetadata{
PeerIP: t.Spec.PeerIP,
Scope: scope.Global,
Node: "",
},
Spec: t.Spec.BGPPeerSpec,
}
kvp, err := c.ConvertAPIToKVPair(peer)
if err != nil {
return nil, err
}
kvp.Revision = t.Metadata.ResourceVersion
return kvp, nil
}
func (c GlobalBGPPeerConverter) FromKVPair(kvp *model.KVPair) (CustomK8sResource, error) {
r, err := c.ConvertKVPairToAPI(kvp)
if err != nil {
return nil, err
}
crdName, err := c.KeyToName(kvp.Key)
if err != nil {
return nil, err
}
crd := custom.BGPPeer{
Metadata: metav1.ObjectMeta{
Name: crdName,
},
Spec: custom.BGPPeerSpec{
BGPPeerSpec: r.(*api.BGPPeer).Spec,
Scope: scope.Global,
PeerIP: r.(*api.BGPPeer).Metadata.PeerIP,
Node: "",
},
}
if kvp.Revision != nil {
crd.Metadata.ResourceVersion = kvp.Revision.(string)
}
return &crd, nil
}