1
0
mirror of https://github.com/coreos/prometheus-operator.git synced 2026-02-05 15:46:31 +01:00
Files
prometheus-operator/pkg/operator/validations.go
Jayapriya Pai cc19d0e3fc feat: add support for UTF8 labels and rules (#7637)
for admission webhook default is legacy validation

Assissted-By: Cursor
Signed-off-by: Jayapriya Pai <slashpai9@gmail.com>
Co-authored-by: Simon Pasquier <spasquie@redhat.com>
2025-10-06 15:03:21 +05:30

37 lines
1.3 KiB
Go

// Copyright 2025 The prometheus-operator Authors
//
// 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 operator
import (
"github.com/blang/semver/v4"
"github.com/prometheus/common/model"
)
// ValidationSchemeForPrometheus returns the appropriate validation scheme based on Prometheus version.
func ValidationSchemeForPrometheus(version semver.Version) model.ValidationScheme {
if version.GTE(semver.MustParse("3.0.0")) {
return model.UTF8Validation
}
return model.LegacyValidation
}
// ValidationSchemeForThanos returns the appropriate validation scheme based on Thanos version.
func ValidationSchemeForThanos(version semver.Version) model.ValidationScheme {
if version.GTE(semver.MustParse("0.38.0")) {
return model.UTF8Validation
}
return model.LegacyValidation
}