This re-institutes some of the rolled-back logic from previous commits. It bounds the scope of what the deepcopy generator is willing to do with regards to generating and calling generated functions.
82 lines
2.8 KiB
Go
82 lines
2.8 KiB
Go
/*
|
|
Copyright 2015 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.
|
|
*/
|
|
|
|
// deepcopy-gen is a tool for auto-generating DeepCopy functions.
|
|
//
|
|
// Structs in the input directories with the below line in their comments
|
|
// will be ignored during generation.
|
|
// // +gencopy=false
|
|
package main
|
|
|
|
import (
|
|
"k8s.io/kubernetes/cmd/libs/go2idl/args"
|
|
"k8s.io/kubernetes/cmd/libs/go2idl/deepcopy-gen/generators"
|
|
|
|
"github.com/golang/glog"
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
func main() {
|
|
arguments := args.Default()
|
|
|
|
// Override defaults. These are Kubernetes specific input locations.
|
|
arguments.InputDirs = []string{
|
|
"k8s.io/kubernetes/pkg/api",
|
|
"k8s.io/kubernetes/pkg/api/v1",
|
|
"k8s.io/kubernetes/pkg/apis/authentication.k8s.io",
|
|
"k8s.io/kubernetes/pkg/apis/authentication.k8s.io/v1beta1",
|
|
"k8s.io/kubernetes/pkg/apis/authorization",
|
|
"k8s.io/kubernetes/pkg/apis/authorization/v1beta1",
|
|
"k8s.io/kubernetes/pkg/apis/autoscaling",
|
|
"k8s.io/kubernetes/pkg/apis/autoscaling/v1",
|
|
"k8s.io/kubernetes/pkg/apis/batch",
|
|
"k8s.io/kubernetes/pkg/apis/batch/v1",
|
|
"k8s.io/kubernetes/pkg/apis/batch/v2alpha1",
|
|
"k8s.io/kubernetes/pkg/apis/apps",
|
|
"k8s.io/kubernetes/pkg/apis/apps/v1alpha1",
|
|
"k8s.io/kubernetes/pkg/apis/certificates",
|
|
"k8s.io/kubernetes/pkg/apis/certificates/v1alpha1",
|
|
"k8s.io/kubernetes/pkg/apis/componentconfig",
|
|
"k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1",
|
|
"k8s.io/kubernetes/pkg/apis/policy",
|
|
"k8s.io/kubernetes/pkg/apis/policy/v1alpha1",
|
|
"k8s.io/kubernetes/pkg/apis/extensions",
|
|
"k8s.io/kubernetes/pkg/apis/extensions/v1beta1",
|
|
"k8s.io/kubernetes/pkg/apis/rbac",
|
|
"k8s.io/kubernetes/pkg/apis/rbac/v1alpha1",
|
|
"k8s.io/kubernetes/federation/apis/federation",
|
|
"k8s.io/kubernetes/federation/apis/federation/v1beta1",
|
|
}
|
|
|
|
// Custom args.
|
|
customArgs := &generators.CustomArgs{
|
|
BoundingDirs: []string{"k8s.io/kubernetes"},
|
|
}
|
|
pflag.CommandLine.StringSliceVar(&customArgs.BoundingDirs, "bounding-dirs", customArgs.BoundingDirs,
|
|
"Comma-separated list of import paths which bound the types for which deep-copies will be generated.")
|
|
arguments.CustomArgs = customArgs
|
|
|
|
// Run it.
|
|
if err := arguments.Execute(
|
|
generators.NameSystems(),
|
|
generators.DefaultNameSystem(),
|
|
generators.Packages,
|
|
); err != nil {
|
|
glog.Fatalf("Error: %v", err)
|
|
}
|
|
glog.Info("Completed successfully.")
|
|
}
|