cert-manager/pkg/webhook/configfile/configfile.go
Richard Wall e21a57a88c Enable metrics server on the webhook
Signed-off-by: Richard Wall <richard.wall@venafi.com>
2024-07-19 17:04:52 +01:00

89 lines
2.4 KiB
Go

/*
Copyright 2021 The cert-manager 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 configfile
import (
"fmt"
"k8s.io/apimachinery/pkg/runtime/serializer"
config "github.com/cert-manager/cert-manager/internal/apis/config/webhook"
"github.com/cert-manager/cert-manager/internal/apis/config/webhook/scheme"
)
type WebhookConfigFile struct {
Config *config.WebhookConfiguration
}
func New() *WebhookConfigFile {
return &WebhookConfigFile{
Config: &config.WebhookConfiguration{},
}
}
func decodeConfiguration(data []byte) (*config.WebhookConfiguration, error) {
_, codec, err := scheme.NewSchemeAndCodecs(serializer.EnableStrict)
if err != nil {
return nil, err
}
obj, _, err := codec.UniversalDecoder().Decode(data, nil, nil)
if err != nil {
return nil, fmt.Errorf("failed to decode: %w", err)
}
c, ok := obj.(*config.WebhookConfiguration)
if !ok {
return nil, fmt.Errorf("failed to cast object to WebhookConfiguration, unexpected type")
}
return c, nil
}
func (cfg *WebhookConfigFile) DecodeAndConfigure(data []byte) error {
config, err := decodeConfiguration(data)
if err != nil {
return err
}
cfg.Config = config
return nil
}
func (cfg *WebhookConfigFile) GetPathRefs() ([]*string, error) {
paths, err := WebhookConfigurationPathRefs(cfg.Config)
if err != nil {
return nil, err
}
return paths, err
}
// webhookConfigurationPathRefs returns pointers to all the WebhookConfiguration fields that contain filepaths.
// You might use this, for example, to resolve all relative paths against some common root before
// passing the configuration to the application. This method must be kept up to date as new fields are added.
func WebhookConfigurationPathRefs(cfg *config.WebhookConfiguration) ([]*string, error) {
return []*string{
&cfg.TLSConfig.Filesystem.KeyFile,
&cfg.TLSConfig.Filesystem.CertFile,
&cfg.MetricsTLSConfig.Filesystem.KeyFile,
&cfg.MetricsTLSConfig.Filesystem.CertFile,
&cfg.KubeConfig,
}, nil
}