-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Tidy up dnspolicy controller code and files (#967)
Follow on from #937 to cleanup controller files to bring them more inline with the current sotw approach. There are no logical changes in this commit, existing code is just being moved. Signed-off-by: Michael Nairn <mnairn@redhat.com>
- Loading branch information
Showing
9 changed files
with
229 additions
and
265 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
Copyright 2024. | ||
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 controllers | ||
|
||
import ( | ||
"github.com/prometheus/client_golang/prometheus" | ||
|
||
"k8s.io/apimachinery/pkg/api/meta" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"sigs.k8s.io/controller-runtime/pkg/metrics" | ||
|
||
kuadrantv1alpha1 "github.com/kuadrant/kuadrant-operator/api/v1alpha1" | ||
) | ||
|
||
const ( | ||
dnsPolicyNameLabel = "dns_policy_name" | ||
dnsPolicyNamespaceLabel = "dns_policy_namespace" | ||
dnsPolicyCondition = "dns_policy_condition" | ||
) | ||
|
||
var ( | ||
dnsPolicyReady = prometheus.NewGaugeVec( | ||
prometheus.GaugeOpts{ | ||
Name: "kuadrant_dns_policy_ready", | ||
Help: "DNS Policy ready", | ||
}, | ||
[]string{dnsPolicyNameLabel, dnsPolicyNamespaceLabel, dnsPolicyCondition}) | ||
) | ||
|
||
func emitConditionMetrics(dnsPolicy *kuadrantv1alpha1.DNSPolicy) { | ||
readyStatus := meta.FindStatusCondition(dnsPolicy.Status.Conditions, ReadyConditionType) | ||
if readyStatus == nil { | ||
dnsPolicyReady.WithLabelValues(dnsPolicy.Name, dnsPolicy.Namespace, "true").Set(0) | ||
dnsPolicyReady.WithLabelValues(dnsPolicy.Name, dnsPolicy.Namespace, "false").Set(0) | ||
dnsPolicyReady.WithLabelValues(dnsPolicy.Name, dnsPolicy.Namespace, "unknown").Set(1) | ||
} else if readyStatus.Status != metav1.ConditionTrue { | ||
dnsPolicyReady.WithLabelValues(dnsPolicy.Name, dnsPolicy.Namespace, "true").Set(0) | ||
dnsPolicyReady.WithLabelValues(dnsPolicy.Name, dnsPolicy.Namespace, "false").Set(1) | ||
dnsPolicyReady.WithLabelValues(dnsPolicy.Name, dnsPolicy.Namespace, "unknown").Set(0) | ||
} else { | ||
dnsPolicyReady.WithLabelValues(dnsPolicy.Name, dnsPolicy.Namespace, "true").Set(1) | ||
dnsPolicyReady.WithLabelValues(dnsPolicy.Name, dnsPolicy.Namespace, "false").Set(0) | ||
dnsPolicyReady.WithLabelValues(dnsPolicy.Name, dnsPolicy.Namespace, "unknown").Set(0) | ||
} | ||
} | ||
|
||
func init() { | ||
metrics.Registry.MustRegister(dnsPolicyReady) | ||
} |
Oops, something went wrong.