diff --git a/Makefile b/Makefile index 9140d70db6..8d3bd229d7 100644 --- a/Makefile +++ b/Makefile @@ -167,7 +167,7 @@ upup/models/bindata.go: ${UPUP_MODELS_BINDATA_SOURCES} codegen: kops-gobindata go install k8s.io/kops/upup/tools/generators/... ${GOPATH_1ST}/bin/fitask --input-dirs k8s.io/kops/upup/pkg/fi/... \ - --go-header-file "hack/boilerplate/boilerplate.go.txt" + --go-header-file "hack/boilerplate/boilerplate.generatego.txt" .PHONY: protobuf protobuf: @@ -549,20 +549,20 @@ apimachinery-codegen: # These code-generator tools still depend on the kops repo being in GOPATH # ref: https://github.com/kubernetes/gengo/issues/64 ${KOPS_ROOT}/_output/bin/conversion-gen ${API_OPTIONS} --skip-unsafe=true --input-dirs k8s.io/kops/pkg/apis/kops/v1alpha2 --v=0 --output-file-base=zz_generated.conversion \ - --go-header-file "hack/boilerplate/boilerplate.go.txt" + --go-header-file "hack/boilerplate/boilerplate.generatego.txt" ${KOPS_ROOT}/_output/bin/deepcopy-gen ${API_OPTIONS} --input-dirs k8s.io/kops/pkg/apis/kops --v=0 --output-file-base=zz_generated.deepcopy \ - --go-header-file "hack/boilerplate/boilerplate.go.txt" + --go-header-file "hack/boilerplate/boilerplate.generatego.txt" ${KOPS_ROOT}/_output/bin/deepcopy-gen ${API_OPTIONS} --input-dirs k8s.io/kops/pkg/apis/kops/v1alpha2 --v=0 --output-file-base=zz_generated.deepcopy \ - --go-header-file "hack/boilerplate/boilerplate.go.txt" + --go-header-file "hack/boilerplate/boilerplate.generatego.txt" ${KOPS_ROOT}/_output/bin/defaulter-gen ${API_OPTIONS} --input-dirs k8s.io/kops/pkg/apis/kops/v1alpha2 --v=0 --output-file-base=zz_generated.defaults \ - --go-header-file "hack/boilerplate/boilerplate.go.txt" + --go-header-file "hack/boilerplate/boilerplate.generatego.txt" #go install github.com/ugorji/go/codec/codecgen # codecgen works only if invoked from directory where the file is located. #cd pkg/apis/kops/ && ~/k8s/bin/codecgen -d 1234 -o types.generated.go instancegroup.go cluster.go ${KOPS_ROOT}/_output/bin/client-gen ${API_OPTIONS} --input-base k8s.io/kops/pkg/apis/ --input="kops/,kops/v1alpha2" --clientset-path k8s.io/kops/pkg/client/clientset_generated/ \ - --go-header-file "hack/boilerplate/boilerplate.go.txt" + --go-header-file "hack/boilerplate/boilerplate.generatego.txt" ${KOPS_ROOT}/_output/bin/client-gen ${API_OPTIONS} --clientset-name="clientset" --input-base k8s.io/kops/pkg/apis/ --input="kops/,kops/v1alpha2" --clientset-path k8s.io/kops/pkg/client/clientset_generated/ \ - --go-header-file "hack/boilerplate/boilerplate.go.txt" + --go-header-file "hack/boilerplate/boilerplate.generatego.txt" .PHONY: verify-apimachinery verify-apimachinery: diff --git a/hack/boilerplate/boilerplate.generatego.txt b/hack/boilerplate/boilerplate.generatego.txt new file mode 100644 index 0000000000..b7c650da47 --- /dev/null +++ b/hack/boilerplate/boilerplate.generatego.txt @@ -0,0 +1,16 @@ +/* +Copyright 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. +*/ + diff --git a/hack/boilerplate/boilerplate.py b/hack/boilerplate/boilerplate.py index 93b432b29a..5992a4eb24 100755 --- a/hack/boilerplate/boilerplate.py +++ b/hack/boilerplate/boilerplate.py @@ -17,10 +17,9 @@ from __future__ import print_function import argparse +import datetime import difflib import glob -import json -import mmap import os import re import sys @@ -49,6 +48,7 @@ args = parser.parse_args() verbose_out = sys.stderr if args.verbose else open("/dev/null", "w") + def get_refs(): refs = {} @@ -62,6 +62,16 @@ def get_refs(): return refs + +def is_generated_file(filename, data, regexs): + for d in skipped_ungenerated_files: + if d in filename: + return False + + p = regexs["generated"] + return p.search(data) + + def file_passes(filename, refs, regexs): try: f = open(filename, 'r') @@ -72,15 +82,24 @@ def file_passes(filename, refs, regexs): data = f.read() f.close() + # determine if the file is automatically generated + generated = is_generated_file(filename, data, regexs) + basename = os.path.basename(filename) extension = file_extension(filename) + if generated: + if extension == "go": + extension = "generatego" + elif extension == "bzl": + extension = "generatebzl" + if extension != "": ref = refs[extension] else: ref = refs[basename] - # remove build tags from the top of Go files - if extension == "go": + # remove extra content from the top of files + if extension == "go" or extension == "generatego": p = regexs["go_build_constraints"] (data, found) = p.subn("", data, 1) @@ -104,19 +123,26 @@ def file_passes(filename, refs, regexs): p = regexs["year"] for d in data: if p.search(d): - print('File %s is missing the year' % filename, file=verbose_out) + if generated: + print('File %s has the YEAR field, but it should not be in generated file' % + filename, file=verbose_out) + else: + print('File %s has the YEAR field, but missing the year of date' % + filename, file=verbose_out) return False - # Replace all occurrences of the regex "2017|2016|2015|2014" with "YEAR" - p = regexs["date"] - for i, d in enumerate(data): - (data[i], found) = p.subn('YEAR', d) - if found != 0: - break + if not generated: + # Replace all occurrences of the regex "2014|2015|2016|2017|2018" with "YEAR" + p = regexs["date"] + for i, d in enumerate(data): + (data[i], found) = p.subn('YEAR', d) + if found != 0: + break # if we don't match the reference at this point, fail if ref != data: - print("Header in %s does not match reference, diff:" % filename, file=verbose_out) + print("Header in %s does not match reference, diff:" % + filename, file=verbose_out) if args.verbose: print(file=verbose_out) for line in difflib.unified_diff(ref, data, 'reference', filename, lineterm=''): @@ -126,13 +152,19 @@ def file_passes(filename, refs, regexs): return True + def file_extension(filename): return os.path.splitext(filename)[1].split(".")[-1].lower() + skipped_dirs = ['third_party', '_gopath', '_output', '.git', 'cluster/env.sh', "vendor", "test/e2e/generated/bindata.go", "hack/boilerplate/test", "pkg/generated/bindata.go"] +# list all the files contain 'DO NOT EDIT', but are not generated +skipped_ungenerated_files = ['hack/boilerplate/boilerplate.py'] + + def normalize_files(files): newfiles = [] for pathname in files: @@ -144,6 +176,7 @@ def normalize_files(files): newfiles[i] = os.path.join(args.rootdir, pathname) return newfiles + def get_files(extensions): files = [] if len(args.filenames) > 0: @@ -171,18 +204,29 @@ def get_files(extensions): outfiles.append(pathname) return outfiles + +def get_dates(): + years = datetime.datetime.now().year + return '(%s)' % '|'.join((str(year) for year in range(2014, years+1))) + + def get_regexs(): regexs = {} # Search for "YEAR" which exists in the boilerplate, but shouldn't in the real thing - regexs["year"] = re.compile( 'YEAR' ) - # dates can be 2014, 2015, 2016, or 2017; company holder names can be anything - regexs["date"] = re.compile( '(2014|2015|2016|2017|2018|2019|2020|2021|2022)' ) + regexs["year"] = re.compile('YEAR') + # get_dates return 2014, 2015, 2016, 2017, or 2018 until the current year as a regex like: "(2014|2015|2016|2017|2018)"; + # company holder names can be anything + regexs["date"] = re.compile(get_dates()) # strip // +build \n\n build constraints - regexs["go_build_constraints"] = re.compile(r"^(// \+build.*\n)+\n", re.MULTILINE) - # strip #!.* from shell scripts + regexs["go_build_constraints"] = re.compile( + r"^(// \+build.*\n)+\n", re.MULTILINE) + # strip #!.* from scripts regexs["shebang"] = re.compile(r"^(#!.*\n)\n*", re.MULTILINE) + # Search for generated files + regexs["generated"] = re.compile('DO NOT EDIT') return regexs + def main(): regexs = get_regexs() refs = get_refs() @@ -194,5 +238,6 @@ def main(): return 0 + if __name__ == "__main__": - sys.exit(main()) + sys.exit(main()) diff --git a/pkg/apis/kops/v1alpha2/zz_generated.conversion.go b/pkg/apis/kops/v1alpha2/zz_generated.conversion.go index eb69446bbf..3a54fe7b45 100644 --- a/pkg/apis/kops/v1alpha2/zz_generated.conversion.go +++ b/pkg/apis/kops/v1alpha2/zz_generated.conversion.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/apis/kops/v1alpha2/zz_generated.deepcopy.go b/pkg/apis/kops/v1alpha2/zz_generated.deepcopy.go index 82d5e699ec..2962e81c07 100644 --- a/pkg/apis/kops/v1alpha2/zz_generated.deepcopy.go +++ b/pkg/apis/kops/v1alpha2/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/apis/kops/v1alpha2/zz_generated.defaults.go b/pkg/apis/kops/v1alpha2/zz_generated.defaults.go index bc7af2eed1..b33eae67f5 100644 --- a/pkg/apis/kops/v1alpha2/zz_generated.defaults.go +++ b/pkg/apis/kops/v1alpha2/zz_generated.defaults.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/apis/kops/zz_generated.deepcopy.go b/pkg/apis/kops/zz_generated.deepcopy.go index c9265408a6..e7f08eb085 100644 --- a/pkg/apis/kops/zz_generated.deepcopy.go +++ b/pkg/apis/kops/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/clientset.go b/pkg/client/clientset_generated/clientset/clientset.go index ea44331974..665ecb3a27 100644 --- a/pkg/client/clientset_generated/clientset/clientset.go +++ b/pkg/client/clientset_generated/clientset/clientset.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/doc.go b/pkg/client/clientset_generated/clientset/doc.go index a32783653c..ee865e56d1 100644 --- a/pkg/client/clientset_generated/clientset/doc.go +++ b/pkg/client/clientset_generated/clientset/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/fake/clientset_generated.go b/pkg/client/clientset_generated/clientset/fake/clientset_generated.go index f56050b4cb..351a836dde 100644 --- a/pkg/client/clientset_generated/clientset/fake/clientset_generated.go +++ b/pkg/client/clientset_generated/clientset/fake/clientset_generated.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/fake/doc.go b/pkg/client/clientset_generated/clientset/fake/doc.go index d6baf01acb..9b99e71670 100644 --- a/pkg/client/clientset_generated/clientset/fake/doc.go +++ b/pkg/client/clientset_generated/clientset/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/fake/register.go b/pkg/client/clientset_generated/clientset/fake/register.go index ee936b83ac..a6f6b181f0 100644 --- a/pkg/client/clientset_generated/clientset/fake/register.go +++ b/pkg/client/clientset_generated/clientset/fake/register.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/scheme/doc.go b/pkg/client/clientset_generated/clientset/scheme/doc.go index 7d06c9402d..7dc3756168 100644 --- a/pkg/client/clientset_generated/clientset/scheme/doc.go +++ b/pkg/client/clientset_generated/clientset/scheme/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/scheme/register.go b/pkg/client/clientset_generated/clientset/scheme/register.go index f379f1a234..1a67605b90 100644 --- a/pkg/client/clientset_generated/clientset/scheme/register.go +++ b/pkg/client/clientset_generated/clientset/scheme/register.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/cluster.go b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/cluster.go index ce6c842e3b..2900a0e4ae 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/cluster.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/cluster.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/doc.go b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/doc.go index c6f18dc80a..86602442ba 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/doc.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/doc.go b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/doc.go index 0243e68ff4..16f4439906 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/doc.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_cluster.go b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_cluster.go index ca6479f3b7..26319e5dbb 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_cluster.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_cluster.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_instancegroup.go b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_instancegroup.go index 4957cc2ba2..bfb999ea36 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_instancegroup.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_instancegroup.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_keyset.go b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_keyset.go index f43d247061..315446d074 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_keyset.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_keyset.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_kops_client.go b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_kops_client.go index 225221cb4a..fd33676590 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_kops_client.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_kops_client.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_sshcredential.go b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_sshcredential.go index a3194bfe9b..b32cbb6c64 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_sshcredential.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/fake/fake_sshcredential.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/generated_expansion.go b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/generated_expansion.go index e2c4ebc855..ddd32c934f 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/generated_expansion.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/generated_expansion.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/instancegroup.go b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/instancegroup.go index 8e2fe9b3aa..b7c5c17444 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/instancegroup.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/instancegroup.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/keyset.go b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/keyset.go index 5edead3e56..2ea8899c28 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/keyset.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/keyset.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/kops_client.go b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/kops_client.go index 582d86faa9..8343ae5a24 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/kops_client.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/kops_client.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/sshcredential.go b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/sshcredential.go index e28ed0966b..a160482b0b 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/internalversion/sshcredential.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/internalversion/sshcredential.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/cluster.go b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/cluster.go index c235bee26f..ce09fcc8ac 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/cluster.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/cluster.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/doc.go b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/doc.go index 545cbe53a7..baaf2d9853 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/doc.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/doc.go b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/doc.go index 0243e68ff4..16f4439906 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/doc.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_cluster.go b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_cluster.go index b73222c32f..c794ae1756 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_cluster.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_cluster.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_instancegroup.go b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_instancegroup.go index c81f4bcea3..9e43f6d7a9 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_instancegroup.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_instancegroup.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_keyset.go b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_keyset.go index e5b42eb085..3d65c4a82b 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_keyset.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_keyset.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_kops_client.go b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_kops_client.go index c083594d20..2f9d66b910 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_kops_client.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_kops_client.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_sshcredential.go b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_sshcredential.go index 6cf77fc5a3..96aa12ed33 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_sshcredential.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/fake/fake_sshcredential.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/generated_expansion.go b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/generated_expansion.go index 3e905eb469..751d6113e1 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/generated_expansion.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/generated_expansion.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/instancegroup.go b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/instancegroup.go index 3e1c2a9036..84e00070f1 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/instancegroup.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/instancegroup.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/keyset.go b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/keyset.go index ee8e147047..648b78e92b 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/keyset.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/keyset.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/kops_client.go b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/kops_client.go index 1ff799cae7..07489ccfb7 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/kops_client.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/kops_client.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/sshcredential.go b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/sshcredential.go index 278959e447..a646f622b3 100644 --- a/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/sshcredential.go +++ b/pkg/client/clientset_generated/clientset/typed/kops/v1alpha2/sshcredential.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/clientset.go b/pkg/client/clientset_generated/internalclientset/clientset.go index 4e3523ecd7..76333ed348 100644 --- a/pkg/client/clientset_generated/internalclientset/clientset.go +++ b/pkg/client/clientset_generated/internalclientset/clientset.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/doc.go b/pkg/client/clientset_generated/internalclientset/doc.go index 124908d4b4..01b3d5e0f6 100644 --- a/pkg/client/clientset_generated/internalclientset/doc.go +++ b/pkg/client/clientset_generated/internalclientset/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/fake/clientset_generated.go b/pkg/client/clientset_generated/internalclientset/fake/clientset_generated.go index 70d80f4f0e..9e30bb0877 100644 --- a/pkg/client/clientset_generated/internalclientset/fake/clientset_generated.go +++ b/pkg/client/clientset_generated/internalclientset/fake/clientset_generated.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/fake/doc.go b/pkg/client/clientset_generated/internalclientset/fake/doc.go index d6baf01acb..9b99e71670 100644 --- a/pkg/client/clientset_generated/internalclientset/fake/doc.go +++ b/pkg/client/clientset_generated/internalclientset/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/fake/register.go b/pkg/client/clientset_generated/internalclientset/fake/register.go index ee936b83ac..a6f6b181f0 100644 --- a/pkg/client/clientset_generated/internalclientset/fake/register.go +++ b/pkg/client/clientset_generated/internalclientset/fake/register.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/scheme/doc.go b/pkg/client/clientset_generated/internalclientset/scheme/doc.go index 7d06c9402d..7dc3756168 100644 --- a/pkg/client/clientset_generated/internalclientset/scheme/doc.go +++ b/pkg/client/clientset_generated/internalclientset/scheme/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/scheme/register.go b/pkg/client/clientset_generated/internalclientset/scheme/register.go index f379f1a234..1a67605b90 100644 --- a/pkg/client/clientset_generated/internalclientset/scheme/register.go +++ b/pkg/client/clientset_generated/internalclientset/scheme/register.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/cluster.go b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/cluster.go index 1e130f68b5..55b0a9ee9b 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/cluster.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/cluster.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/doc.go b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/doc.go index c6f18dc80a..86602442ba 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/doc.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/doc.go b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/doc.go index 0243e68ff4..16f4439906 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/doc.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_cluster.go b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_cluster.go index ca6479f3b7..26319e5dbb 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_cluster.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_cluster.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_instancegroup.go b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_instancegroup.go index 4957cc2ba2..bfb999ea36 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_instancegroup.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_instancegroup.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_keyset.go b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_keyset.go index f43d247061..315446d074 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_keyset.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_keyset.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_kops_client.go b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_kops_client.go index 0a7ed854b0..f13fcb4c6d 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_kops_client.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_kops_client.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_sshcredential.go b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_sshcredential.go index a3194bfe9b..b32cbb6c64 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_sshcredential.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/fake/fake_sshcredential.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/generated_expansion.go b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/generated_expansion.go index e2c4ebc855..ddd32c934f 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/generated_expansion.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/generated_expansion.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/instancegroup.go b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/instancegroup.go index a70ecf2c92..6b995e3cc4 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/instancegroup.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/instancegroup.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/keyset.go b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/keyset.go index 83a054ae77..8a038dd224 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/keyset.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/keyset.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/kops_client.go b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/kops_client.go index 57d513a128..223993d1c2 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/kops_client.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/kops_client.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/sshcredential.go b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/sshcredential.go index 1cc525b266..ae8c99ac37 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/sshcredential.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/internalversion/sshcredential.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/cluster.go b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/cluster.go index 6cc6ead04b..4b988a8312 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/cluster.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/cluster.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/doc.go b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/doc.go index 545cbe53a7..baaf2d9853 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/doc.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/doc.go b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/doc.go index 0243e68ff4..16f4439906 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/doc.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_cluster.go b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_cluster.go index b73222c32f..c794ae1756 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_cluster.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_cluster.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_instancegroup.go b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_instancegroup.go index c81f4bcea3..9e43f6d7a9 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_instancegroup.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_instancegroup.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_keyset.go b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_keyset.go index e5b42eb085..3d65c4a82b 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_keyset.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_keyset.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_kops_client.go b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_kops_client.go index 30c6b879c3..537e8e2317 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_kops_client.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_kops_client.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_sshcredential.go b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_sshcredential.go index 6cf77fc5a3..96aa12ed33 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_sshcredential.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/fake/fake_sshcredential.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/generated_expansion.go b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/generated_expansion.go index 3e905eb469..751d6113e1 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/generated_expansion.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/generated_expansion.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/instancegroup.go b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/instancegroup.go index 3893e76578..1bde21e2d0 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/instancegroup.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/instancegroup.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/keyset.go b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/keyset.go index 8daa24072a..5413677539 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/keyset.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/keyset.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/kops_client.go b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/kops_client.go index e5a9e0f673..368dc7d699 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/kops_client.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/kops_client.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/sshcredential.go b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/sshcredential.go index 46a4ebf2b0..9507fdef2c 100644 --- a/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/sshcredential.go +++ b/pkg/client/clientset_generated/internalclientset/typed/kops/v1alpha2/sshcredential.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/protokube/pkg/gossip/mesh/mesh.pb.go b/protokube/pkg/gossip/mesh/mesh.pb.go index 757454f70a..9aac54a70b 100644 --- a/protokube/pkg/gossip/mesh/mesh.pb.go +++ b/protokube/pkg/gossip/mesh/mesh.pb.go @@ -1,5 +1,5 @@ /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/assettasks/copydockerimage_fitask.go b/upup/pkg/fi/assettasks/copydockerimage_fitask.go index 43f22b3fa2..93b3584179 100644 --- a/upup/pkg/fi/assettasks/copydockerimage_fitask.go +++ b/upup/pkg/fi/assettasks/copydockerimage_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/assettasks/copyfile_fitask.go b/upup/pkg/fi/assettasks/copyfile_fitask.go index aba3923c9a..dacc9c96e5 100644 --- a/upup/pkg/fi/assettasks/copyfile_fitask.go +++ b/upup/pkg/fi/assettasks/copyfile_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/disk_fitask.go b/upup/pkg/fi/cloudup/alitasks/disk_fitask.go index f0ffcecb66..b96ba5d2b7 100644 --- a/upup/pkg/fi/cloudup/alitasks/disk_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/disk_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/eip_fitask.go b/upup/pkg/fi/cloudup/alitasks/eip_fitask.go index 940364bc7c..fb9fa44df7 100644 --- a/upup/pkg/fi/cloudup/alitasks/eip_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/eip_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/launchconfiguration_fitask.go b/upup/pkg/fi/cloudup/alitasks/launchconfiguration_fitask.go index a337349122..83f7832236 100644 --- a/upup/pkg/fi/cloudup/alitasks/launchconfiguration_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/launchconfiguration_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/loadbalancer_fitask.go b/upup/pkg/fi/cloudup/alitasks/loadbalancer_fitask.go index 7eef3c8bab..9981ead7f8 100644 --- a/upup/pkg/fi/cloudup/alitasks/loadbalancer_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/loadbalancer_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/loadbalanceracl_fitask.go b/upup/pkg/fi/cloudup/alitasks/loadbalanceracl_fitask.go index 2877c441f5..e7cd406774 100644 --- a/upup/pkg/fi/cloudup/alitasks/loadbalanceracl_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/loadbalanceracl_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/loadbalancerlistener_fitask.go b/upup/pkg/fi/cloudup/alitasks/loadbalancerlistener_fitask.go index 8848e0ef99..5b3eca6492 100644 --- a/upup/pkg/fi/cloudup/alitasks/loadbalancerlistener_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/loadbalancerlistener_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/natgateway_fitask.go b/upup/pkg/fi/cloudup/alitasks/natgateway_fitask.go index 8c1c423f59..d1440afbff 100644 --- a/upup/pkg/fi/cloudup/alitasks/natgateway_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/natgateway_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/rampolicy_fitask.go b/upup/pkg/fi/cloudup/alitasks/rampolicy_fitask.go index 7590a8d623..08b96b5a4f 100644 --- a/upup/pkg/fi/cloudup/alitasks/rampolicy_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/rampolicy_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/ramrole_fitask.go b/upup/pkg/fi/cloudup/alitasks/ramrole_fitask.go index 6f6066e21b..32d5d118ec 100644 --- a/upup/pkg/fi/cloudup/alitasks/ramrole_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/ramrole_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/scalinggroup_fitask.go b/upup/pkg/fi/cloudup/alitasks/scalinggroup_fitask.go index 1d03c5599b..cf6b8b4720 100644 --- a/upup/pkg/fi/cloudup/alitasks/scalinggroup_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/scalinggroup_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/securitygroup_fitask.go b/upup/pkg/fi/cloudup/alitasks/securitygroup_fitask.go index de67907d79..4be3866869 100644 --- a/upup/pkg/fi/cloudup/alitasks/securitygroup_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/securitygroup_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/securitygrouprule_fitask.go b/upup/pkg/fi/cloudup/alitasks/securitygrouprule_fitask.go index d927b3522b..4e31a605e9 100644 --- a/upup/pkg/fi/cloudup/alitasks/securitygrouprule_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/securitygrouprule_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/sshkey_fitask.go b/upup/pkg/fi/cloudup/alitasks/sshkey_fitask.go index 3d905dc785..8aea7613d4 100644 --- a/upup/pkg/fi/cloudup/alitasks/sshkey_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/sshkey_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/vpc_fitask.go b/upup/pkg/fi/cloudup/alitasks/vpc_fitask.go index 4160a34a22..399d25b869 100644 --- a/upup/pkg/fi/cloudup/alitasks/vpc_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/vpc_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/vswitch_fitask.go b/upup/pkg/fi/cloudup/alitasks/vswitch_fitask.go index 73ae7eaaab..61d6fdcf14 100644 --- a/upup/pkg/fi/cloudup/alitasks/vswitch_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/vswitch_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/alitasks/vswitchsnat_fitask.go b/upup/pkg/fi/cloudup/alitasks/vswitchsnat_fitask.go index eb944c681e..ad949226b2 100644 --- a/upup/pkg/fi/cloudup/alitasks/vswitchsnat_fitask.go +++ b/upup/pkg/fi/cloudup/alitasks/vswitchsnat_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/autoscalinggroup_fitask.go b/upup/pkg/fi/cloudup/awstasks/autoscalinggroup_fitask.go index 7de2a7f0df..c62e4bfed6 100644 --- a/upup/pkg/fi/cloudup/awstasks/autoscalinggroup_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/autoscalinggroup_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/classicloadbalancer_fitask.go b/upup/pkg/fi/cloudup/awstasks/classicloadbalancer_fitask.go index b11a641994..ce61d39b1d 100644 --- a/upup/pkg/fi/cloudup/awstasks/classicloadbalancer_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/classicloadbalancer_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/dhcpoptions_fitask.go b/upup/pkg/fi/cloudup/awstasks/dhcpoptions_fitask.go index 16cf7b78d1..c38a626928 100644 --- a/upup/pkg/fi/cloudup/awstasks/dhcpoptions_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/dhcpoptions_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/dnsname_fitask.go b/upup/pkg/fi/cloudup/awstasks/dnsname_fitask.go index d09376d6ca..ee3dda69ec 100644 --- a/upup/pkg/fi/cloudup/awstasks/dnsname_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/dnsname_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/dnszone_fitask.go b/upup/pkg/fi/cloudup/awstasks/dnszone_fitask.go index e86058aa74..91fe7efadd 100644 --- a/upup/pkg/fi/cloudup/awstasks/dnszone_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/dnszone_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/ebsvolume_fitask.go b/upup/pkg/fi/cloudup/awstasks/ebsvolume_fitask.go index c13f10c56b..6e17b800fc 100644 --- a/upup/pkg/fi/cloudup/awstasks/ebsvolume_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/ebsvolume_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/elasticip_fitask.go b/upup/pkg/fi/cloudup/awstasks/elasticip_fitask.go index f96fb621bc..1161d8862b 100644 --- a/upup/pkg/fi/cloudup/awstasks/elasticip_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/elasticip_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/iaminstanceprofile_fitask.go b/upup/pkg/fi/cloudup/awstasks/iaminstanceprofile_fitask.go index de3741efdc..c64d085eb1 100644 --- a/upup/pkg/fi/cloudup/awstasks/iaminstanceprofile_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/iaminstanceprofile_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/iaminstanceprofilerole_fitask.go b/upup/pkg/fi/cloudup/awstasks/iaminstanceprofilerole_fitask.go index 7106bbb8d4..a04ea862fb 100644 --- a/upup/pkg/fi/cloudup/awstasks/iaminstanceprofilerole_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/iaminstanceprofilerole_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/iamoidcprovider_fitask.go b/upup/pkg/fi/cloudup/awstasks/iamoidcprovider_fitask.go index 07fa0cd2d6..48257b57b1 100644 --- a/upup/pkg/fi/cloudup/awstasks/iamoidcprovider_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/iamoidcprovider_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/iamrole_fitask.go b/upup/pkg/fi/cloudup/awstasks/iamrole_fitask.go index 0c3fe54bcf..114ba12858 100644 --- a/upup/pkg/fi/cloudup/awstasks/iamrole_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/iamrole_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/iamrolepolicy_fitask.go b/upup/pkg/fi/cloudup/awstasks/iamrolepolicy_fitask.go index d03b3e4761..ad634a0935 100644 --- a/upup/pkg/fi/cloudup/awstasks/iamrolepolicy_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/iamrolepolicy_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/instance_fitask.go b/upup/pkg/fi/cloudup/awstasks/instance_fitask.go index f2c85b911d..a35ee7df04 100644 --- a/upup/pkg/fi/cloudup/awstasks/instance_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/instance_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/internetgateway_fitask.go b/upup/pkg/fi/cloudup/awstasks/internetgateway_fitask.go index 03b3125f94..401ea7d98b 100644 --- a/upup/pkg/fi/cloudup/awstasks/internetgateway_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/internetgateway_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/launchconfiguration_fitask.go b/upup/pkg/fi/cloudup/awstasks/launchconfiguration_fitask.go index a30ccdadc0..614c7a91eb 100644 --- a/upup/pkg/fi/cloudup/awstasks/launchconfiguration_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/launchconfiguration_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/launchtemplate_fitask.go b/upup/pkg/fi/cloudup/awstasks/launchtemplate_fitask.go index b532b1e9cf..bcaeb072fd 100644 --- a/upup/pkg/fi/cloudup/awstasks/launchtemplate_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/launchtemplate_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/natgateway_fitask.go b/upup/pkg/fi/cloudup/awstasks/natgateway_fitask.go index 5f53aecf7f..63a5a2bceb 100644 --- a/upup/pkg/fi/cloudup/awstasks/natgateway_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/natgateway_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/networkloadbalancer_fitask.go b/upup/pkg/fi/cloudup/awstasks/networkloadbalancer_fitask.go index 48e05045d3..9f300fbd23 100644 --- a/upup/pkg/fi/cloudup/awstasks/networkloadbalancer_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/networkloadbalancer_fitask.go @@ -1,5 +1,5 @@ /* -Copyright 2019 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/route_fitask.go b/upup/pkg/fi/cloudup/awstasks/route_fitask.go index 43f218ed5c..c1b76ff505 100644 --- a/upup/pkg/fi/cloudup/awstasks/route_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/route_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/routetable_fitask.go b/upup/pkg/fi/cloudup/awstasks/routetable_fitask.go index 10509f063b..7ef94c0c1d 100644 --- a/upup/pkg/fi/cloudup/awstasks/routetable_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/routetable_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/routetableassociation_fitask.go b/upup/pkg/fi/cloudup/awstasks/routetableassociation_fitask.go index 168725c55b..826af696f8 100644 --- a/upup/pkg/fi/cloudup/awstasks/routetableassociation_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/routetableassociation_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/securitygroup_fitask.go b/upup/pkg/fi/cloudup/awstasks/securitygroup_fitask.go index 8d4e90411f..70a2ccd21c 100644 --- a/upup/pkg/fi/cloudup/awstasks/securitygroup_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/securitygroup_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/securitygrouprule_fitask.go b/upup/pkg/fi/cloudup/awstasks/securitygrouprule_fitask.go index d10c5551bc..e07abd79e3 100644 --- a/upup/pkg/fi/cloudup/awstasks/securitygrouprule_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/securitygrouprule_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/sshkey_fitask.go b/upup/pkg/fi/cloudup/awstasks/sshkey_fitask.go index dff512d106..9d09ecc374 100644 --- a/upup/pkg/fi/cloudup/awstasks/sshkey_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/sshkey_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/subnet_fitask.go b/upup/pkg/fi/cloudup/awstasks/subnet_fitask.go index 4479028a73..6c143bc84a 100644 --- a/upup/pkg/fi/cloudup/awstasks/subnet_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/subnet_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/targetgroup_fitask.go b/upup/pkg/fi/cloudup/awstasks/targetgroup_fitask.go index ddf0bc9d8f..484aed48ac 100644 --- a/upup/pkg/fi/cloudup/awstasks/targetgroup_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/targetgroup_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/vpc_fitask.go b/upup/pkg/fi/cloudup/awstasks/vpc_fitask.go index db427529ec..c2e664075b 100644 --- a/upup/pkg/fi/cloudup/awstasks/vpc_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/vpc_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/vpccidrblock_fitask.go b/upup/pkg/fi/cloudup/awstasks/vpccidrblock_fitask.go index ecf270cb2e..bd9431d8ca 100644 --- a/upup/pkg/fi/cloudup/awstasks/vpccidrblock_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/vpccidrblock_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/awstasks/vpcdhcpoptionsassociation_fitask.go b/upup/pkg/fi/cloudup/awstasks/vpcdhcpoptionsassociation_fitask.go index 1e037b5732..7c12b1053b 100644 --- a/upup/pkg/fi/cloudup/awstasks/vpcdhcpoptionsassociation_fitask.go +++ b/upup/pkg/fi/cloudup/awstasks/vpcdhcpoptionsassociation_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/azuretasks/disk_fitask.go b/upup/pkg/fi/cloudup/azuretasks/disk_fitask.go index 00639f4e0e..4dcf50cfb9 100644 --- a/upup/pkg/fi/cloudup/azuretasks/disk_fitask.go +++ b/upup/pkg/fi/cloudup/azuretasks/disk_fitask.go @@ -1,5 +1,5 @@ /* -Copyright 2019 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/azuretasks/resourcegroup_fitask.go b/upup/pkg/fi/cloudup/azuretasks/resourcegroup_fitask.go index d610f10d44..79d28c3c04 100644 --- a/upup/pkg/fi/cloudup/azuretasks/resourcegroup_fitask.go +++ b/upup/pkg/fi/cloudup/azuretasks/resourcegroup_fitask.go @@ -1,5 +1,5 @@ /* -Copyright 2019 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/azuretasks/roleassignment_fitask.go b/upup/pkg/fi/cloudup/azuretasks/roleassignment_fitask.go index 8208b20ffa..5df6c1b1ef 100644 --- a/upup/pkg/fi/cloudup/azuretasks/roleassignment_fitask.go +++ b/upup/pkg/fi/cloudup/azuretasks/roleassignment_fitask.go @@ -1,5 +1,5 @@ /* -Copyright 2019 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/azuretasks/routetable_fitask.go b/upup/pkg/fi/cloudup/azuretasks/routetable_fitask.go index 48bac71f2d..8b5a7d51b8 100644 --- a/upup/pkg/fi/cloudup/azuretasks/routetable_fitask.go +++ b/upup/pkg/fi/cloudup/azuretasks/routetable_fitask.go @@ -1,5 +1,5 @@ /* -Copyright 2019 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/azuretasks/subnet_fitask.go b/upup/pkg/fi/cloudup/azuretasks/subnet_fitask.go index f67820bcab..8fe17ff36e 100644 --- a/upup/pkg/fi/cloudup/azuretasks/subnet_fitask.go +++ b/upup/pkg/fi/cloudup/azuretasks/subnet_fitask.go @@ -1,5 +1,5 @@ /* -Copyright 2019 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/azuretasks/virtualnetwork_fitask.go b/upup/pkg/fi/cloudup/azuretasks/virtualnetwork_fitask.go index bfa03a2a9e..771ba0a478 100644 --- a/upup/pkg/fi/cloudup/azuretasks/virtualnetwork_fitask.go +++ b/upup/pkg/fi/cloudup/azuretasks/virtualnetwork_fitask.go @@ -1,5 +1,5 @@ /* -Copyright 2019 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/azuretasks/vmscaleset_fitask.go b/upup/pkg/fi/cloudup/azuretasks/vmscaleset_fitask.go index 1acb229a12..f220bc674d 100644 --- a/upup/pkg/fi/cloudup/azuretasks/vmscaleset_fitask.go +++ b/upup/pkg/fi/cloudup/azuretasks/vmscaleset_fitask.go @@ -1,5 +1,5 @@ /* -Copyright 2019 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/dotasks/droplet_fitask.go b/upup/pkg/fi/cloudup/dotasks/droplet_fitask.go index 8be601fbfe..1d31da818d 100644 --- a/upup/pkg/fi/cloudup/dotasks/droplet_fitask.go +++ b/upup/pkg/fi/cloudup/dotasks/droplet_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/dotasks/loadbalancer_fitask.go b/upup/pkg/fi/cloudup/dotasks/loadbalancer_fitask.go index 18169e7ea2..1389380bba 100644 --- a/upup/pkg/fi/cloudup/dotasks/loadbalancer_fitask.go +++ b/upup/pkg/fi/cloudup/dotasks/loadbalancer_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/dotasks/volume_fitask.go b/upup/pkg/fi/cloudup/dotasks/volume_fitask.go index c0c8bd9d5a..0100038eb1 100644 --- a/upup/pkg/fi/cloudup/dotasks/volume_fitask.go +++ b/upup/pkg/fi/cloudup/dotasks/volume_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/gcetasks/address_fitask.go b/upup/pkg/fi/cloudup/gcetasks/address_fitask.go index ee5b570379..84f36073a4 100644 --- a/upup/pkg/fi/cloudup/gcetasks/address_fitask.go +++ b/upup/pkg/fi/cloudup/gcetasks/address_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/gcetasks/disk_fitask.go b/upup/pkg/fi/cloudup/gcetasks/disk_fitask.go index 87b6fcec69..8dccbbd9de 100644 --- a/upup/pkg/fi/cloudup/gcetasks/disk_fitask.go +++ b/upup/pkg/fi/cloudup/gcetasks/disk_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/gcetasks/firewallrule_fitask.go b/upup/pkg/fi/cloudup/gcetasks/firewallrule_fitask.go index 8210e1b8b5..549cda8166 100644 --- a/upup/pkg/fi/cloudup/gcetasks/firewallrule_fitask.go +++ b/upup/pkg/fi/cloudup/gcetasks/firewallrule_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/gcetasks/forwardingrule_fitask.go b/upup/pkg/fi/cloudup/gcetasks/forwardingrule_fitask.go index 57c5cc7362..3e16eb9341 100644 --- a/upup/pkg/fi/cloudup/gcetasks/forwardingrule_fitask.go +++ b/upup/pkg/fi/cloudup/gcetasks/forwardingrule_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/gcetasks/instance_fitask.go b/upup/pkg/fi/cloudup/gcetasks/instance_fitask.go index 34c0f815d3..94ca5b901c 100644 --- a/upup/pkg/fi/cloudup/gcetasks/instance_fitask.go +++ b/upup/pkg/fi/cloudup/gcetasks/instance_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/gcetasks/instancegroupmanager_fitask.go b/upup/pkg/fi/cloudup/gcetasks/instancegroupmanager_fitask.go index 3e235de8c1..527cc7ae3f 100644 --- a/upup/pkg/fi/cloudup/gcetasks/instancegroupmanager_fitask.go +++ b/upup/pkg/fi/cloudup/gcetasks/instancegroupmanager_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/gcetasks/instancetemplate_fitask.go b/upup/pkg/fi/cloudup/gcetasks/instancetemplate_fitask.go index 647ecbaddd..06530db375 100644 --- a/upup/pkg/fi/cloudup/gcetasks/instancetemplate_fitask.go +++ b/upup/pkg/fi/cloudup/gcetasks/instancetemplate_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/gcetasks/network_fitask.go b/upup/pkg/fi/cloudup/gcetasks/network_fitask.go index 9ec6c85eb7..0b23e45784 100644 --- a/upup/pkg/fi/cloudup/gcetasks/network_fitask.go +++ b/upup/pkg/fi/cloudup/gcetasks/network_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/gcetasks/storagebucketacl_fitask.go b/upup/pkg/fi/cloudup/gcetasks/storagebucketacl_fitask.go index 5946a6896d..3b4d22f6f6 100644 --- a/upup/pkg/fi/cloudup/gcetasks/storagebucketacl_fitask.go +++ b/upup/pkg/fi/cloudup/gcetasks/storagebucketacl_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/gcetasks/storagebucketiam_fitask.go b/upup/pkg/fi/cloudup/gcetasks/storagebucketiam_fitask.go index 68dfbc7a5b..c9e951365f 100644 --- a/upup/pkg/fi/cloudup/gcetasks/storagebucketiam_fitask.go +++ b/upup/pkg/fi/cloudup/gcetasks/storagebucketiam_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/gcetasks/storageobjectacl_fitask.go b/upup/pkg/fi/cloudup/gcetasks/storageobjectacl_fitask.go index bdf2b73086..947bfc11b0 100644 --- a/upup/pkg/fi/cloudup/gcetasks/storageobjectacl_fitask.go +++ b/upup/pkg/fi/cloudup/gcetasks/storageobjectacl_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/gcetasks/subnet_fitask.go b/upup/pkg/fi/cloudup/gcetasks/subnet_fitask.go index 114ac2afcf..c28673ad15 100644 --- a/upup/pkg/fi/cloudup/gcetasks/subnet_fitask.go +++ b/upup/pkg/fi/cloudup/gcetasks/subnet_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/gcetasks/targetpool_fitask.go b/upup/pkg/fi/cloudup/gcetasks/targetpool_fitask.go index fe6682adaf..c6faa6ee27 100644 --- a/upup/pkg/fi/cloudup/gcetasks/targetpool_fitask.go +++ b/upup/pkg/fi/cloudup/gcetasks/targetpool_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/floatingip_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/floatingip_fitask.go index 83263d9988..95f2f725d2 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/floatingip_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/floatingip_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/instance_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/instance_fitask.go index fa55dad5f2..2e451810f8 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/instance_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/instance_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/lb_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/lb_fitask.go index 37af424826..60a773bb9c 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/lb_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/lb_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/lblistener_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/lblistener_fitask.go index 55a37a1f70..d425eef93c 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/lblistener_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/lblistener_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/lbpool_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/lbpool_fitask.go index b77ad4157e..4257f2fe3b 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/lbpool_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/lbpool_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/network_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/network_fitask.go index a1f1fb3992..f02e8d474c 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/network_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/network_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/poolassociation_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/poolassociation_fitask.go index 134879c0b4..e0249bd84a 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/poolassociation_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/poolassociation_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/port_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/port_fitask.go index 19a2712e08..1c66a77935 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/port_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/port_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/router_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/router_fitask.go index 16120273f6..9261d79ddd 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/router_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/router_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/routerinterface_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/routerinterface_fitask.go index fb3052de3d..6345322d3d 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/routerinterface_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/routerinterface_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/securitygroup_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/securitygroup_fitask.go index ae3a8e2b0b..692d5fec60 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/securitygroup_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/securitygroup_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/servergroup_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/servergroup_fitask.go index 7c8e287e02..03951bbf70 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/servergroup_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/servergroup_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/sshkey_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/sshkey_fitask.go index ea51b377c4..0607a86a3a 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/sshkey_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/sshkey_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/subnet_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/subnet_fitask.go index 41d071e79e..1952c033d5 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/subnet_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/subnet_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/openstacktasks/volume_fitask.go b/upup/pkg/fi/cloudup/openstacktasks/volume_fitask.go index 7c8a236ea9..363273cbd7 100644 --- a/upup/pkg/fi/cloudup/openstacktasks/volume_fitask.go +++ b/upup/pkg/fi/cloudup/openstacktasks/volume_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/spotinsttasks/elastigroup_fitask.go b/upup/pkg/fi/cloudup/spotinsttasks/elastigroup_fitask.go index 94e24aeec2..5ab9d19825 100644 --- a/upup/pkg/fi/cloudup/spotinsttasks/elastigroup_fitask.go +++ b/upup/pkg/fi/cloudup/spotinsttasks/elastigroup_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/spotinsttasks/launchspec_fitask.go b/upup/pkg/fi/cloudup/spotinsttasks/launchspec_fitask.go index 9a88d94d50..2b57f3d9d4 100644 --- a/upup/pkg/fi/cloudup/spotinsttasks/launchspec_fitask.go +++ b/upup/pkg/fi/cloudup/spotinsttasks/launchspec_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/cloudup/spotinsttasks/ocean_fitask.go b/upup/pkg/fi/cloudup/spotinsttasks/ocean_fitask.go index 23b12fd9ca..c1fc22a5f4 100644 --- a/upup/pkg/fi/cloudup/spotinsttasks/ocean_fitask.go +++ b/upup/pkg/fi/cloudup/spotinsttasks/ocean_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/fitasks/keypair_fitask.go b/upup/pkg/fi/fitasks/keypair_fitask.go index 487db73f9d..b24f988c1f 100644 --- a/upup/pkg/fi/fitasks/keypair_fitask.go +++ b/upup/pkg/fi/fitasks/keypair_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/fitasks/managedfile_fitask.go b/upup/pkg/fi/fitasks/managedfile_fitask.go index 6b37cea961..a9bba794f4 100644 --- a/upup/pkg/fi/fitasks/managedfile_fitask.go +++ b/upup/pkg/fi/fitasks/managedfile_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/fitasks/mirrorkeystore_fitask.go b/upup/pkg/fi/fitasks/mirrorkeystore_fitask.go index 2a32801168..ea3b39ba7b 100644 --- a/upup/pkg/fi/fitasks/mirrorkeystore_fitask.go +++ b/upup/pkg/fi/fitasks/mirrorkeystore_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/fitasks/mirrorsecrets_fitask.go b/upup/pkg/fi/fitasks/mirrorsecrets_fitask.go index 9f0b571d44..b8c91c73c2 100644 --- a/upup/pkg/fi/fitasks/mirrorsecrets_fitask.go +++ b/upup/pkg/fi/fitasks/mirrorsecrets_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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. diff --git a/upup/pkg/fi/fitasks/secret_fitask.go b/upup/pkg/fi/fitasks/secret_fitask.go index 0b89268f7d..05a16c3c86 100644 --- a/upup/pkg/fi/fitasks/secret_fitask.go +++ b/upup/pkg/fi/fitasks/secret_fitask.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright 2020 The Kubernetes Authors. +Copyright 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.