-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
247 lines (238 loc) · 8.09 KB
/
main.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
/*******************************************************************************
*
* Copyright 2010-2023 SAP SE
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You should have received a copy of the License along with this
* program. If not, 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 main
import (
"context"
"errors"
"flag"
"fmt"
net2 "net"
"os"
"github.com/prometheus/client_golang/prometheus"
"github.com/sapcc/go-netbox-go/dcim"
"github.com/sapcc/go-netbox-go/ipam"
"github.com/sapcc/go-netbox-go/models"
"github.com/sapcc/go-netbox-go/virtualization"
uberzap "go.uber.org/zap"
corev1 "k8s.io/api/core/v1"
_ "k8s.io/client-go/plugin/pkg/client/auth/oidc"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client/config"
"sigs.k8s.io/controller-runtime/pkg/controller"
"sigs.k8s.io/controller-runtime/pkg/handler"
logf "sigs.k8s.io/controller-runtime/pkg/log"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
"sigs.k8s.io/controller-runtime/pkg/manager"
"sigs.k8s.io/controller-runtime/pkg/manager/signals"
"sigs.k8s.io/controller-runtime/pkg/metrics"
"sigs.k8s.io/controller-runtime/pkg/metrics/server"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
"sigs.k8s.io/controller-runtime/pkg/source"
)
var (
netboxFails = prometheus.NewCounter(
prometheus.CounterOpts{
Name: "netbox_fails",
Help: "number of failed netbox requests",
},
)
netboxResultFails = prometheus.NewCounter(
prometheus.CounterOpts{
Name: "netbox_result_fails",
Help: "number of times netbox results are too few or too many",
},
)
k8sFails = prometheus.NewCounter(
prometheus.CounterOpts{
Name: "k8s_fails",
Help: "number of times k8s operations failed",
},
)
)
func init() {
metrics.Registry.MustRegister(netboxFails, netboxResultFails, k8sFails)
}
func main() {
var debug bool
var kubeContext string
var netboxURL string
var netboxToken string
flag.BoolVar(&debug, "debug", false, "enable debug logging")
flag.StringVar(&kubeContext, "kubecontext", "", "the context to use from kube_config")
flag.StringVar(&netboxURL, "netboxURL", "https://netbox.global.cloud.sap", "the netbox to query for the node")
flag.StringVar(&netboxToken, "netboxtoken", "", "the netbox token to use")
flag.Parse()
ctrl.SetLogger(zap.New(func(o *zap.Options) {
o.Development = true
if !debug {
o.Level = uberzap.NewAtomicLevelAt(uberzap.InfoLevel)
}
}))
var opts manager.Options
opts.Metrics = server.Options{BindAddress: ":32280"}
opts.HealthProbeBindAddress = ":32281"
var log = logf.Log.WithName("ccloud-nodeCIDR-controller")
if kubeContext == "" {
kubeContext = os.Getenv("KUBECONTEXT")
}
restConfig, err := config.GetConfigWithContext(kubeContext)
if err != nil {
log.Error(err, "unable to setup config")
os.Exit(1)
}
mgr, err := manager.New(restConfig, opts)
if err != nil {
log.Error(err, "cloud not create manager")
os.Exit(1)
}
c, err := controller.New("ccloud-nodeCIDR-controller", mgr, controller.Options{
Reconciler: reconcile.Func(func(ctx context.Context, request reconcile.Request) (reconcile.Result, error) {
log.Info("Node: " + request.Name)
node := &corev1.Node{}
err := mgr.GetClient().Get(context.Background(), request.NamespacedName, node)
if err != nil {
log.Error(err, "could not get client from manager")
k8sFails.Inc()
return reconcile.Result{}, err
}
if node.Spec.PodCIDR == "" {
log.Info("No PodCIDR set getting from netbox")
nbIpam, err := ipam.New(netboxURL, netboxToken, false)
if err != nil {
return reconcile.Result{}, err
}
opts := models.ListIpAddressesRequest{}
opts.Q = node.Name
res, err := nbIpam.ListIpAddresses(opts)
if err != nil {
log.Error(err, "error searching ips for hostname")
netboxFails.Inc()
return reconcile.Result{}, err
}
if res.Count != 1 {
err := fmt.Errorf("too many results: got %d results for %s", res.Count, node.Name)
log.Error(err, "error getting node ip")
netboxResultFails.Inc()
return reconcile.Result{}, err
}
log.Info(fmt.Sprintf("%+v", res.Results[0]))
var deviceID int
objecttype := res.Results[0].AssignedObjectType
ipOpts := models.ListIpAddressesRequest{}
switch objecttype {
case "dcim.interface":
deviceID = res.Results[0].AssignedInterface.Device.Id
interfaceOpts := models.ListInterfacesRequest{}
interfaceOpts.DeviceId = deviceID
interfaceOpts.Name = "cbr0"
log.Info(fmt.Sprintf("looking for device %d and interface cbr0", deviceID))
nbDcim, err := dcim.New(netboxURL, netboxToken, false)
if err != nil {
log.Error(err, "error getting dcim client")
netboxFails.Inc()
return reconcile.Result{}, err
}
interf, err := nbDcim.ListInterfaces(interfaceOpts)
if err != nil {
log.Error(err, "error searching interfaces")
netboxFails.Inc()
return reconcile.Result{}, err
}
if interf.Count != 1 {
err := fmt.Errorf("too many results: got %d results for device %d", interf.Count, deviceID)
log.Error(err, "error getting node device")
netboxResultFails.Inc()
return reconcile.Result{}, err
}
ipOpts.InterfaceId = interf.Results[0].Id
case "virtualization.vminterface":
deviceID = res.Results[0].AssignedVMInterface.VirtualMachine.Id
interfaceOpts := models.ListVMInterfacesRequest{}
interfaceOpts.Name = "cbr0"
interfaceOpts.VmId = deviceID
nbVirt, err := virtualization.New(netboxURL, netboxToken, false)
if err != nil {
log.Error(err, "error getting virtualization client")
netboxFails.Inc()
return reconcile.Result{}, err
}
interf, err := nbVirt.ListVMInterfaces(interfaceOpts)
if err != nil {
log.Error(err, "error searching vm interfaces")
netboxFails.Inc()
return reconcile.Result{}, err
}
if interf.Count != 1 {
err := fmt.Errorf("too many results: got %d results for device %d", interf.Count, deviceID)
log.Error(err, "error getting vm device")
netboxResultFails.Inc()
return reconcile.Result{}, err
}
ipOpts.VmInterfaceId = interf.Results[0].Id
default:
err := errors.New("no interface assigned to ip")
log.Error(err, "error finding interface")
netboxResultFails.Inc()
return reconcile.Result{}, err
}
theIP, err := nbIpam.ListIpAddresses(ipOpts)
if err != nil {
log.Error(err, "error searching cbr0 ip")
netboxFails.Inc()
return reconcile.Result{}, err
}
if theIP.Count != 1 {
err := fmt.Errorf("too many results: got %d results for interface", theIP.Count)
log.Error(err, "error getting node device")
netboxResultFails.Inc()
return reconcile.Result{}, err
}
_, net, err := net2.ParseCIDR(theIP.Results[0].Address)
if err != nil {
log.Error(err, "error parsing network string")
k8sFails.Inc()
return reconcile.Result{}, err
}
log.Info("net: " + net.String())
node.Spec.PodCIDR = net.String()
err = mgr.GetClient().Update(context.Background(), node)
if err != nil {
log.Error(err, "error updating node")
k8sFails.Inc()
return reconcile.Result{}, err
}
}
return reconcile.Result{}, nil
}),
})
if err != nil {
log.Error(err, "unable to create ccloud-nodeCIDR-controller")
os.Exit(1)
}
err = c.Watch(source.Kind(mgr.GetCache(), &corev1.Node{}, &handler.TypedEnqueueRequestForObject[*corev1.Node]{}))
if err != nil {
log.Error(err, "unable to watch nodes")
k8sFails.Inc()
os.Exit(1)
}
if err := mgr.Start(signals.SetupSignalHandler()); err != nil {
log.Error(err, "unable to continue running manager")
os.Exit(1)
}
}