cert-manager/cmd/cainjector/app/cainjector.go
Nathan Baulch a39748ae77
Fix typos
Signed-off-by: Nathan Baulch <nathan.baulch@gmail.com>
2024-09-20 09:27:03 +10:00

176 lines
5.7 KiB
Go

/*
Copyright 2020 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 app
import (
"context"
"fmt"
"os"
"path/filepath"
"github.com/spf13/cobra"
"github.com/cert-manager/cert-manager/cainjector-binary/app/options"
config "github.com/cert-manager/cert-manager/internal/apis/config/cainjector"
"github.com/cert-manager/cert-manager/internal/apis/config/cainjector/validation"
cainjectorconfigfile "github.com/cert-manager/cert-manager/pkg/cainjector/configfile"
logf "github.com/cert-manager/cert-manager/pkg/logs"
"github.com/cert-manager/cert-manager/pkg/util"
"github.com/cert-manager/cert-manager/pkg/util/configfile"
utilfeature "github.com/cert-manager/cert-manager/pkg/util/feature"
)
const componentController = "cainjector"
func NewCAInjectorCommand(ctx context.Context) *cobra.Command {
return newCAInjectorCommand(
ctx,
func(ctx context.Context, cfg *config.CAInjectorConfiguration) error {
return Run(cfg, ctx)
},
os.Args[1:],
)
}
func newCAInjectorCommand(
setupCtx context.Context,
run func(context.Context, *config.CAInjectorConfiguration) error,
allArgs []string,
) *cobra.Command {
log := logf.FromContext(setupCtx, componentController)
cainjectorFlags := options.NewCAInjectorFlags()
cainjectorConfig, err := options.NewCAInjectorConfiguration()
if err != nil {
log.Error(err, "Failed to create new cainjector configuration")
os.Exit(1)
}
cmd := &cobra.Command{
Use: componentController,
Short: fmt.Sprintf("CA Injection Controller for Kubernetes (%s) (%s)", util.AppVersion, util.AppGitCommit),
Long: `
cert-manager CA injector is a Kubernetes addon to automate the injection of CA data into
webhooks and APIServices from cert-manager certificates.
It will ensure that annotated webhooks and API services always have the correct
CA data from the referenced certificates, which can then be used to serve API
servers and webhook servers.`,
SilenceErrors: true, // We already log errors in main.go
SilenceUsage: true, // Don't print usage on every error
PreRunE: func(cmd *cobra.Command, args []string) error {
if err := loadConfigFromFile(
cmd, allArgs, cainjectorFlags.Config, cainjectorConfig,
func() error {
// set feature gates from initial flags-based config
if err := utilfeature.DefaultMutableFeatureGate.SetFromMap(cainjectorConfig.FeatureGates); err != nil {
return fmt.Errorf("failed to set feature gates from initial flags-based config: %w", err)
}
return nil
},
); err != nil {
return err
}
if err := validation.ValidateCAInjectorConfiguration(cainjectorConfig, nil); len(err) > 0 {
return fmt.Errorf("error validating flags: %w", err.ToAggregate())
}
// ValidateCAInjectorConfiguration should already have validated the
// logging flags, the logging API does not have an Apply-only function
// so we validate again here. This should not catch any validation errors
// anymore.
if err := logf.ValidateAndApply(&cainjectorConfig.Logging); err != nil {
return fmt.Errorf("failed to validate cainjector logging flags: %w", err)
}
return nil
},
// nolint:contextcheck // False positive
RunE: func(cmd *cobra.Command, args []string) error {
return run(cmd.Context(), cainjectorConfig)
},
}
cainjectorFlags.AddFlags(cmd.Flags())
options.AddConfigFlags(cmd.Flags(), cainjectorConfig)
// explicitly set provided args in case it does not equal os.Args[:1],
// eg. when running tests
cmd.SetArgs(allArgs)
return cmd
}
// loadConfigFromFile loads the configuration from the provided config file
// path, if one is provided. After loading the config file, the flags are
// re-parsed to ensure that any flags provided to the command line override
// those provided in the config file.
// The newConfigHook is called when the options have been loaded from the
// flags (but not yet the config file) and is re-called after the config file
// has been loaded. This allows us to use the feature flags set by the flags
// while loading the config file.
func loadConfigFromFile(
cmd *cobra.Command,
allArgs []string,
configFilePath string,
cfg *config.CAInjectorConfiguration,
newConfigHook func() error,
) error {
if err := newConfigHook(); err != nil {
return err
}
if len(configFilePath) > 0 {
// compute absolute path based on current working dir
cainjectorConfigFile, err := filepath.Abs(configFilePath)
if err != nil {
return fmt.Errorf("failed to load config file %s, error %v", configFilePath, err)
}
loader, err := configfile.NewConfigurationFSLoader(nil, cainjectorConfigFile)
if err != nil {
return fmt.Errorf("failed to load config file %s, error %v", configFilePath, err)
}
cainjectorConfigFromFile := cainjectorconfigfile.New()
if err := loader.Load(cainjectorConfigFromFile); err != nil {
return fmt.Errorf("failed to load config file %s, error %v", configFilePath, err)
}
cainjectorConfigFromFile.Config.DeepCopyInto(cfg)
_, args, err := cmd.Root().Find(allArgs)
if err != nil {
return fmt.Errorf("failed to re-parse flags: %w", err)
}
if err := cmd.ParseFlags(args); err != nil {
return fmt.Errorf("failed to re-parse flags: %w", err)
}
if err := newConfigHook(); err != nil {
return err
}
}
return nil
}