@@ -73,21 +73,25 @@ func (r *IngressReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ct
73
73
}
74
74
logger .Info ("Ingress Object found" )
75
75
76
- // Do we want to do anything with the ingress?
77
- // TODO: What if the annotation was deleted?
78
- _ , checklyAnnotationExists := ingress .Annotations [annotationEnabled ]
79
- if (! checklyAnnotationExists ) || (ingress .Annotations [annotationEnabled ] == "false" ) {
80
- logger .Info ("Ingress does not need to be handled by the operator, skipping." , "Ingress Name" , ingress .Name , "Ingress namespace" , ingress .Namespace )
81
- return ctrl.Result {}, nil
82
- }
83
-
84
76
// Gather data for the checkly check
85
77
logger .Info ("Gathering data for the check" )
86
78
apiCheckResources , err := r .gatherApiCheckData (& ingress )
87
79
if err != nil {
88
80
logger .Info ("unable to gather data for the apiCheck resource" , "Ingress Name" , ingress .Name , "Ingress namespace" , ingress .Namespace )
89
81
return ctrl.Result {}, err
90
82
}
83
+
84
+ // Do we want to do anything with the ingress?
85
+ _ , checklyAnnotationExists := ingress .Annotations [annotationEnabled ]
86
+ if (! checklyAnnotationExists ) || (ingress .Annotations [annotationEnabled ] == "false" ) {
87
+ logger .Info ("Checking to see if we need to delete any resources as we're not handling this ingress." , "Ingress Name" , ingress .Name , "Ingress namespace" , ingress .Namespace )
88
+
89
+ r .deleteIngressApiChecks (ctx , req , apiCheckResources , ingress )
90
+
91
+ if ingress .GetDeletionTimestamp () == nil {
92
+ return ctrl.Result {}, nil
93
+ }
94
+ }
91
95
// ////////////////////////////////
92
96
// Delete Logic
93
97
// ///////////////////////////////
@@ -96,24 +100,7 @@ func (r *IngressReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ct
96
100
if controllerutil .ContainsFinalizer (& ingress , checklyFinalizer ) {
97
101
logger .Info ("Finalizer present, need to delete ApiCheck first." , "Ingress Name" , ingress .Name , "Ingress namespace" , ingress .Namespace )
98
102
99
- for _ , apiCheckResource := range apiCheckResources {
100
-
101
- logger .Info ("Checking if ApiCheck was created" , "Ingress Name" , ingress .Name , "Ingress namespace" , ingress .Namespace )
102
- err = r .Get (ctx , req .NamespacedName , apiCheckResource )
103
- if err != nil {
104
- logger .Info ("ApiCheck resource is not present, we don't need to do anything." , "Ingress Name" , ingress .Name , "Ingress namespace" , ingress .Namespace )
105
- continue
106
- }
107
-
108
- logger .Info ("ApiCheck resource is present, we need to delete it.." , "Ingress Name" , ingress .Name , "Ingress namespace" , ingress .Namespace )
109
- err = r .Delete (ctx , apiCheckResource )
110
- if err != nil {
111
- logger .Error (err , "Failed to delete ApiCheck" , "Name:" , apiCheckResource .Name , "Namespace:" , apiCheckResource .Namespace )
112
- continue
113
- }
114
-
115
- logger .Info ("ApiCheck resource deleted successfully." , apiCheckResource .Name , "Namespace:" , apiCheckResource .Namespace )
116
- }
103
+ r .deleteIngressApiChecks (ctx , req , apiCheckResources , ingress )
117
104
118
105
// Delete finalizer logic
119
106
logger .Info ("Deleting finalizer" , "Ingress Name" , ingress .Name , "Ingress namespace" , ingress .Namespace )
@@ -236,6 +223,11 @@ func (r *IngressReconciler) gatherApiCheckData(ingress *networkingv1.Ingress) (a
236
223
labels ["ingress-controller" ] = ingress .Name
237
224
238
225
// Get the host(s) and path(s) from the ingress object
226
+ // No Rules specified, nothing to do
227
+ if len (ingress .Spec .Rules ) == 0 {
228
+ return
229
+ }
230
+
239
231
for _ , rule := range ingress .Spec .Rules {
240
232
241
233
// Get the host
@@ -247,18 +239,27 @@ func (r *IngressReconciler) gatherApiCheckData(ingress *networkingv1.Ingress) (a
247
239
}
248
240
249
241
// Get the path(s)
250
- var path string
251
- for _ , rulePath := range rule .HTTP .Paths {
252
- if ingress .Annotations [annotationPath ] == "" {
253
- if rulePath .Path == "" {
254
- path = "/"
242
+ var paths []string
243
+
244
+ if rule .HTTP == nil { // HTTP may not exist
245
+ paths = append (paths , "/" )
246
+ } else if rule .HTTP .Paths == nil { // Paths may not exist
247
+ paths = append (paths , "/" )
248
+ } else {
249
+ for _ , rulePath := range rule .HTTP .Paths {
250
+ if ingress .Annotations [annotationPath ] == "" {
251
+ if rulePath .Path == "" {
252
+ paths = append (paths , "/" )
253
+ } else {
254
+ paths = append (paths , rulePath .Path )
255
+ }
255
256
} else {
256
- path = rulePath . Path
257
+ paths = append ( paths , ingress . Annotations [ annotationPath ])
257
258
}
258
- } else {
259
- path = ingress .Annotations [annotationPath ]
260
259
}
260
+ }
261
261
262
+ for _ , path := range paths {
262
263
// Replace path /
263
264
path = strings .TrimPrefix (path , "/" )
264
265
@@ -271,7 +272,8 @@ func (r *IngressReconciler) gatherApiCheckData(ingress *networkingv1.Ingress) (a
271
272
// Set endpoint
272
273
endpoint := fmt .Sprintf ("https://%s/%s" , host , path )
273
274
274
- apiCheckSpec := checklyv1alpha1.ApiCheckSpec {
275
+ // Construct ApiCheck Spec
276
+ apiCheckSpec := & checklyv1alpha1.ApiCheckSpec {
275
277
Endpoint : endpoint ,
276
278
Group : group ,
277
279
Success : success ,
@@ -287,12 +289,11 @@ func (r *IngressReconciler) gatherApiCheckData(ingress *networkingv1.Ingress) (a
287
289
},
288
290
Labels : labels ,
289
291
},
290
- Spec : apiCheckSpec ,
292
+ Spec : * apiCheckSpec ,
291
293
}
292
294
293
295
apiChecks = append (apiChecks , newApiCheck )
294
296
}
295
-
296
297
}
297
298
298
299
// Last return
@@ -347,3 +348,27 @@ func (r *IngressReconciler) compareApiChecks(ctx context.Context, ingress *netwo
347
348
348
349
return
349
350
}
351
+
352
+ func (r * IngressReconciler ) deleteIngressApiChecks (ctx context.Context , req ctrl.Request , apiCheckResources []* checklyv1alpha1.ApiCheck , ingress networkingv1.Ingress ) {
353
+
354
+ logger := log .FromContext (ctx )
355
+
356
+ for _ , apiCheckResource := range apiCheckResources {
357
+
358
+ logger .Info ("Checking if ApiCheck was created" , "Ingress Name" , ingress .Name , "Ingress namespace" , ingress .Namespace )
359
+ err := r .Get (ctx , req .NamespacedName , apiCheckResource )
360
+ if err != nil {
361
+ logger .Info ("ApiCheck resource is not present, we don't need to do anything." , "Ingress Name" , ingress .Name , "Ingress namespace" , ingress .Namespace )
362
+ continue
363
+ }
364
+
365
+ logger .Info ("ApiCheck resource is present, we need to delete it.." , "Ingress Name" , ingress .Name , "Ingress namespace" , ingress .Namespace )
366
+ err = r .Delete (ctx , apiCheckResource )
367
+ if err != nil {
368
+ logger .Error (err , "Failed to delete ApiCheck" , "Name:" , apiCheckResource .Name , "Namespace:" , apiCheckResource .Namespace )
369
+ continue
370
+ }
371
+
372
+ logger .Info ("ApiCheck resource deleted successfully." , apiCheckResource .Name , "Namespace:" , apiCheckResource .Namespace )
373
+ }
374
+ }
0 commit comments