| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*
- Copyright 2016 The Kubernetes 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 main
- import (
- "flag"
- "github.com/spf13/pflag"
- "k8s.io/code-generator/cmd/informer-gen/args"
- "k8s.io/code-generator/cmd/informer-gen/generators"
- "k8s.io/code-generator/pkg/util"
- "k8s.io/gengo/v2"
- "k8s.io/gengo/v2/generator"
- "k8s.io/klog/v2"
- )
- func main() {
- klog.InitFlags(nil)
- args := args.New()
- args.AddFlags(pflag.CommandLine)
- flag.Set("logtostderr", "true")
- pflag.CommandLine.AddGoFlagSet(flag.CommandLine)
- pflag.Parse()
- if err := args.Validate(); err != nil {
- klog.Fatalf("Error: %v", err)
- }
- myTargets := func(context *generator.Context) []generator.Target {
- return generators.GetTargets(context, args)
- }
- // Run it.
- if err := gengo.Execute(
- generators.NameSystems(util.PluralExceptionListToMapOrDie(args.PluralExceptions)),
- generators.DefaultNameSystem(),
- myTargets,
- gengo.StdBuildTag,
- pflag.Args(),
- ); err != nil {
- klog.Fatalf("Error: %v", err)
- }
- klog.V(2).Info("Completed successfully.")
- }
|