Skip to content

Commit 1f435c8

Browse files
authored
Merge pull request #307 from Kuadrant/gh-306-remove-probes
ensure we remove healthcheckprobes if healthcheck unset
2 parents 47863b2 + b478ba6 commit 1f435c8

7 files changed

+46
-17
lines changed

api/v1alpha1/dnshealthcheckprobe_types.go

-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ type DNSHealthCheckProbeStatus struct {
8686
//+kubebuilder:object:root=true
8787
//+kubebuilder:subresource:status
8888
//+kubebuilder:printcolumn:name="Healthy",type="boolean",JSONPath=".status.healthy",description="DNSHealthCheckProbe healthy."
89-
//+kubebuilder:printcolumn:name="Last Checked",type="date",JSONPath=".status.lastCheckedAt",description="Last checked at."
9089

9190
// DNSHealthCheckProbe is the Schema for the dnshealthcheckprobes API
9291
type DNSHealthCheckProbe struct {

bundle/manifests/dns-operator.clusterserviceversion.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ metadata:
5858
capabilities: Basic Install
5959
categories: Integration & Delivery
6060
containerImage: quay.io/kuadrant/dns-operator:latest
61-
createdAt: "2024-11-14T13:59:23Z"
61+
createdAt: "2024-11-15T11:06:08Z"
6262
description: A Kubernetes Operator to manage the lifecycle of DNS resources
6363
operators.operatorframework.io/builder: operator-sdk-v1.33.0
6464
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4

bundle/manifests/kuadrant.io_dnshealthcheckprobes.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ spec:
1919
jsonPath: .status.healthy
2020
name: Healthy
2121
type: boolean
22-
- description: Last checked at.
23-
jsonPath: .status.lastCheckedAt
24-
name: Last Checked
25-
type: date
2622
name: v1alpha1
2723
schema:
2824
openAPIV3Schema:

charts/dns-operator/templates/manifests.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ spec:
2020
jsonPath: .status.healthy
2121
name: Healthy
2222
type: boolean
23-
- description: Last checked at.
24-
jsonPath: .status.lastCheckedAt
25-
name: Last Checked
26-
type: date
2723
name: v1alpha1
2824
schema:
2925
openAPIV3Schema:

config/crd/bases/kuadrant.io_dnshealthcheckprobes.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ spec:
1919
jsonPath: .status.healthy
2020
name: Healthy
2121
type: boolean
22-
- description: Last checked at.
23-
jsonPath: .status.lastCheckedAt
24-
name: Last Checked
25-
type: date
2622
name: v1alpha1
2723
schema:
2824
openAPIV3Schema:

internal/controller/dnsrecord_healthchecks.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func (r *DNSRecordReconciler) ReconcileHealthChecks(ctx context.Context, dnsReco
2828

2929
// Probes enabled but no health check spec yet. Nothing to do
3030
if dnsRecord.Spec.HealthCheck == nil {
31-
return nil
31+
return r.DeleteHealthChecks(ctx, dnsRecord)
3232
}
3333

3434
// we don't support probes for wildcard hosts

internal/controller/dnsrecord_healthchecks_test.go

+44-2
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,46 @@ var _ = Describe("DNSRecordReconciler_HealthChecks", func() {
167167
}, TestTimeoutMedium, time.Second).Should(Succeed())
168168
})
169169

170+
It("Should create valid probe CRs and remove them when definition removed", func() {
171+
//Create default test dnsrecord
172+
Expect(k8sClient.Create(ctx, dnsRecord)).To(Succeed())
173+
174+
By("Validating created probes")
175+
Eventually(func(g Gomega) {
176+
probes := &v1alpha1.DNSHealthCheckProbeList{}
177+
178+
g.Expect(k8sClient.List(ctx, probes, &client.ListOptions{
179+
LabelSelector: labels.SelectorFromSet(map[string]string{
180+
ProbeOwnerLabel: BuildOwnerLabelValue(dnsRecord),
181+
}),
182+
Namespace: dnsRecord.Namespace,
183+
})).To(Succeed())
184+
185+
g.Expect(probes.Items).To(HaveLen(2))
186+
187+
}, TestTimeoutMedium, time.Second).Should(Succeed())
188+
189+
By("updating the DNSRecord and and ensuring the healthcheck is removed")
190+
Eventually(func(g Gomega) {
191+
recordCopy := &v1alpha1.DNSRecord{}
192+
g.Expect(k8sClient.Get(ctx, client.ObjectKeyFromObject(dnsRecord), recordCopy)).
193+
Should(Succeed())
194+
recordCopy.Spec.HealthCheck = nil
195+
g.Expect(k8sClient.Update(ctx, recordCopy)).
196+
Should(Succeed())
197+
probes := &v1alpha1.DNSHealthCheckProbeList{}
198+
199+
g.Expect(k8sClient.List(ctx, probes, &client.ListOptions{
200+
LabelSelector: labels.SelectorFromSet(map[string]string{
201+
ProbeOwnerLabel: BuildOwnerLabelValue(dnsRecord),
202+
}),
203+
Namespace: dnsRecord.Namespace,
204+
})).To(Succeed())
205+
206+
g.Expect(probes.Items).To(HaveLen(0))
207+
}, TestTimeoutMedium, time.Second).Should(Succeed())
208+
})
209+
170210
It("Should create valid probe CRs with default values", func() {
171211
//Create test dnsrecord with nils for optional fields
172212
dnsRecord.Spec.HealthCheck = &v1alpha1.HealthCheckSpec{
@@ -495,8 +535,10 @@ var _ = Describe("DNSRecordReconciler_HealthChecks", func() {
495535

496536
By("Remove health spec")
497537
Eventually(func(g Gomega) {
498-
dnsRecord.Spec.HealthCheck = nil
499-
g.Expect(k8sClient.Update(ctx, dnsRecord)).To(Succeed())
538+
Expect(k8sClient.Get(ctx, client.ObjectKeyFromObject(dnsRecord), dnsRecord)).To(Succeed())
539+
cpRecord := dnsRecord.DeepCopy()
540+
cpRecord.Spec.HealthCheck = nil
541+
g.Expect(k8sClient.Update(ctx, cpRecord)).To(Succeed())
500542
}, TestTimeoutMedium, time.Second).Should(Succeed())
501543

502544
// we don't remove EPs if this leads to empty EPs

0 commit comments

Comments
 (0)