From 7a66224d25d01dd875c777dc9c9ba167fbd6fef3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Arild=20T=C3=B8rresdal?= Date: Sat, 9 Feb 2019 21:44:58 +0100 Subject: [PATCH] Added proper licensed headers for all code files --- .../controller/clock.go | 16 ++++++++++++++++ .../controller/controller.go | 5 ++++- .../controller/handler.go | 19 +++++++++++++++++++ .../controller/secret_handler.go | 16 ++++++++++++++++ .../controller/secret_handler_test.go | 16 ++++++++++++++++ cmd/azure-keyvault-controller/main.go | 6 ++++-- .../vault/azure_keyvault_service.go | 16 ++++++++++++++++ .../vault/certificate.go | 16 ++++++++++++++++ .../vault/certificate_test.go | 16 ++++++++++++++++ hack/custom-boilerplate.go.txt | 5 ++++- hack/update-codegen.sh | 2 +- .../v1alpha1/zz_generated.deepcopy.go | 15 ++++++++++++++- pkg/client/clientset/versioned/clientset.go | 15 ++++++++++++++- pkg/client/clientset/versioned/doc.go | 15 ++++++++++++++- .../versioned/fake/clientset_generated.go | 15 ++++++++++++++- pkg/client/clientset/versioned/fake/doc.go | 15 ++++++++++++++- .../clientset/versioned/fake/register.go | 15 ++++++++++++++- pkg/client/clientset/versioned/scheme/doc.go | 15 ++++++++++++++- .../clientset/versioned/scheme/register.go | 15 ++++++++++++++- .../azurekeyvaultcontroller_client.go | 15 ++++++++++++++- .../v1alpha1/azurekeyvaultsecret.go | 15 ++++++++++++++- .../azurekeyvaultcontroller/v1alpha1/doc.go | 15 ++++++++++++++- .../v1alpha1/fake/doc.go | 15 ++++++++++++++- .../fake_azurekeyvaultcontroller_client.go | 15 ++++++++++++++- .../v1alpha1/fake/fake_azurekeyvaultsecret.go | 15 ++++++++++++++- .../v1alpha1/generated_expansion.go | 15 ++++++++++++++- .../azurekeyvaultcontroller/interface.go | 15 ++++++++++++++- .../v1alpha1/azurekeyvaultsecret.go | 15 ++++++++++++++- .../v1alpha1/interface.go | 15 ++++++++++++++- .../informers/externalversions/factory.go | 15 ++++++++++++++- .../informers/externalversions/generic.go | 15 ++++++++++++++- .../internalinterfaces/factory_interfaces.go | 15 ++++++++++++++- .../v1alpha1/azurekeyvaultsecret.go | 15 ++++++++++++++- .../v1alpha1/expansion_generated.go | 15 ++++++++++++++- 34 files changed, 450 insertions(+), 28 deletions(-) diff --git a/cmd/azure-keyvault-controller/controller/clock.go b/cmd/azure-keyvault-controller/controller/clock.go index 23527933..2c0927ad 100644 --- a/cmd/azure-keyvault-controller/controller/clock.go +++ b/cmd/azure-keyvault-controller/controller/clock.go @@ -1,3 +1,19 @@ +/* +Copyright Sparebanken Vest + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/cmd/azure-keyvault-controller/controller/controller.go b/cmd/azure-keyvault-controller/controller/controller.go index 17d9ada2..3a4e826e 100644 --- a/cmd/azure-keyvault-controller/controller/controller.go +++ b/cmd/azure-keyvault-controller/controller/controller.go @@ -1,5 +1,8 @@ /* -Copyright 2017 The Kubernetes Authors. +Copyright Sparebanken Vest + +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller 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/cmd/azure-keyvault-controller/controller/handler.go b/cmd/azure-keyvault-controller/controller/handler.go index f3b3f29d..d4ab12c2 100644 --- a/cmd/azure-keyvault-controller/controller/handler.go +++ b/cmd/azure-keyvault-controller/controller/handler.go @@ -1,3 +1,22 @@ +/* +Copyright Sparebanken Vest + +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/cmd/azure-keyvault-controller/controller/secret_handler.go b/cmd/azure-keyvault-controller/controller/secret_handler.go index 0cdd3521..7c098de2 100644 --- a/cmd/azure-keyvault-controller/controller/secret_handler.go +++ b/cmd/azure-keyvault-controller/controller/secret_handler.go @@ -1,3 +1,19 @@ +/* +Copyright Sparebanken Vest + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/cmd/azure-keyvault-controller/controller/secret_handler_test.go b/cmd/azure-keyvault-controller/controller/secret_handler_test.go index 1700b93b..fb50b38a 100644 --- a/cmd/azure-keyvault-controller/controller/secret_handler_test.go +++ b/cmd/azure-keyvault-controller/controller/secret_handler_test.go @@ -1,3 +1,19 @@ +/* +Copyright Sparebanken Vest + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/cmd/azure-keyvault-controller/main.go b/cmd/azure-keyvault-controller/main.go index 8fec9575..98df9b04 100644 --- a/cmd/azure-keyvault-controller/main.go +++ b/cmd/azure-keyvault-controller/main.go @@ -1,5 +1,8 @@ /* -Copyright 2017 The Kubernetes Authors. +Copyright Sparebanken Vest + +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -109,7 +112,6 @@ func main() { vaultService := vault.NewService() recorder := eventBroadcaster.NewRecorder(scheme.Scheme, corev1.EventSource{Component: controllerAgentName}) - handler := controller.NewHandler(kubeClient, azureKeyVaultSecretClient, kubeInformerFactory.Core().V1().Secrets().Lister(), azureKeyVaultSecretInformerFactory.Azurekeyvaultcontroller().V1alpha1().AzureKeyVaultSecrets().Lister(), recorder, vaultService, azurePollFrequency) controller := controller.NewController(handler, diff --git a/cmd/azure-keyvault-controller/vault/azure_keyvault_service.go b/cmd/azure-keyvault-controller/vault/azure_keyvault_service.go index 9d172110..9d1a1836 100644 --- a/cmd/azure-keyvault-controller/vault/azure_keyvault_service.go +++ b/cmd/azure-keyvault-controller/vault/azure_keyvault_service.go @@ -1,3 +1,19 @@ +/* +Copyright Sparebanken Vest + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package vault import ( diff --git a/cmd/azure-keyvault-controller/vault/certificate.go b/cmd/azure-keyvault-controller/vault/certificate.go index 4d316cf2..7d8b7cfd 100644 --- a/cmd/azure-keyvault-controller/vault/certificate.go +++ b/cmd/azure-keyvault-controller/vault/certificate.go @@ -1,3 +1,19 @@ +/* +Copyright Sparebanken Vest + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package vault import ( diff --git a/cmd/azure-keyvault-controller/vault/certificate_test.go b/cmd/azure-keyvault-controller/vault/certificate_test.go index 2edd516b..fa643023 100644 --- a/cmd/azure-keyvault-controller/vault/certificate_test.go +++ b/cmd/azure-keyvault-controller/vault/certificate_test.go @@ -1,3 +1,19 @@ +/* +Copyright Sparebanken Vest + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package vault import ( diff --git a/hack/custom-boilerplate.go.txt b/hack/custom-boilerplate.go.txt index e4cd20e3..863526dd 100644 --- a/hack/custom-boilerplate.go.txt +++ b/hack/custom-boilerplate.go.txt @@ -1,5 +1,8 @@ /* -Copyright YEAR The Kubernetes sample-controller Authors. +Copyright Sparebanken Vest + +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller 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/hack/update-codegen.sh b/hack/update-codegen.sh index 5d61446d..98d5cf18 100755 --- a/hack/update-codegen.sh +++ b/hack/update-codegen.sh @@ -28,7 +28,7 @@ CODEGEN_PKG=${CODEGEN_PKG:-$(cd ${SCRIPT_ROOT}; ls -d -1 ${GOPATH}/src/k8s.io/co ${CODEGEN_PKG}/generate-groups.sh "deepcopy,client,informer,lister" \ github.com/SparebankenVest/azure-keyvault-controller/pkg/client github.com/SparebankenVest/azure-keyvault-controller/pkg/apis \ azurekeyvaultcontroller:v1alpha1 \ - --go-header-file ${SCRIPT_ROOT}/hack/boilerplate.go.txt + --go-header-file ${SCRIPT_ROOT}/hack/custom-boilerplate.go.txt # To use your own boilerplate text use: # --go-header-file ${SCRIPT_ROOT}/hack/custom-boilerplate.go.txt diff --git a/pkg/apis/azurekeyvaultcontroller/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/azurekeyvaultcontroller/v1alpha1/zz_generated.deepcopy.go index e8babd57..4fafb265 100644 --- a/pkg/apis/azurekeyvaultcontroller/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/azurekeyvaultcontroller/v1alpha1/zz_generated.deepcopy.go @@ -3,7 +3,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/clientset.go b/pkg/client/clientset/versioned/clientset.go index 89c2f852..f91924c3 100644 --- a/pkg/client/clientset/versioned/clientset.go +++ b/pkg/client/clientset/versioned/clientset.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/doc.go b/pkg/client/clientset/versioned/doc.go index e7e655dd..a199efd0 100644 --- a/pkg/client/clientset/versioned/doc.go +++ b/pkg/client/clientset/versioned/doc.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/fake/clientset_generated.go b/pkg/client/clientset/versioned/fake/clientset_generated.go index 5654a8a7..e4be7a09 100644 --- a/pkg/client/clientset/versioned/fake/clientset_generated.go +++ b/pkg/client/clientset/versioned/fake/clientset_generated.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/fake/doc.go b/pkg/client/clientset/versioned/fake/doc.go index c33ffb78..c0583bd2 100644 --- a/pkg/client/clientset/versioned/fake/doc.go +++ b/pkg/client/clientset/versioned/fake/doc.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/fake/register.go b/pkg/client/clientset/versioned/fake/register.go index d7483bf3..bb60f17d 100644 --- a/pkg/client/clientset/versioned/fake/register.go +++ b/pkg/client/clientset/versioned/fake/register.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/scheme/doc.go b/pkg/client/clientset/versioned/scheme/doc.go index ef01de54..672859a6 100644 --- a/pkg/client/clientset/versioned/scheme/doc.go +++ b/pkg/client/clientset/versioned/scheme/doc.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/scheme/register.go b/pkg/client/clientset/versioned/scheme/register.go index b7bd9748..12a20039 100644 --- a/pkg/client/clientset/versioned/scheme/register.go +++ b/pkg/client/clientset/versioned/scheme/register.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/azurekeyvaultcontroller_client.go b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/azurekeyvaultcontroller_client.go index d571a07b..715abfd0 100644 --- a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/azurekeyvaultcontroller_client.go +++ b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/azurekeyvaultcontroller_client.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/azurekeyvaultsecret.go b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/azurekeyvaultsecret.go index 7968b782..cc4ebfcd 100644 --- a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/azurekeyvaultsecret.go +++ b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/azurekeyvaultsecret.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/doc.go b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/doc.go index d44b0e0f..8a94bd0d 100644 --- a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/doc.go +++ b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/doc.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/fake/doc.go b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/fake/doc.go index fa135a71..d55229c6 100644 --- a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/fake/doc.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/fake/fake_azurekeyvaultcontroller_client.go b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/fake/fake_azurekeyvaultcontroller_client.go index c3469975..7a8daaac 100644 --- a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/fake/fake_azurekeyvaultcontroller_client.go +++ b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/fake/fake_azurekeyvaultcontroller_client.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/fake/fake_azurekeyvaultsecret.go b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/fake/fake_azurekeyvaultsecret.go index 7ad471fc..aaf932a5 100644 --- a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/fake/fake_azurekeyvaultsecret.go +++ b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/fake/fake_azurekeyvaultsecret.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/generated_expansion.go b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/generated_expansion.go index e5282a1c..2da4004e 100644 --- a/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/azurekeyvaultcontroller/v1alpha1/generated_expansion.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/client/informers/externalversions/azurekeyvaultcontroller/interface.go b/pkg/client/informers/externalversions/azurekeyvaultcontroller/interface.go index 08cefeff..98ba09cf 100644 --- a/pkg/client/informers/externalversions/azurekeyvaultcontroller/interface.go +++ b/pkg/client/informers/externalversions/azurekeyvaultcontroller/interface.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/client/informers/externalversions/azurekeyvaultcontroller/v1alpha1/azurekeyvaultsecret.go b/pkg/client/informers/externalversions/azurekeyvaultcontroller/v1alpha1/azurekeyvaultsecret.go index ed61b005..def75c38 100644 --- a/pkg/client/informers/externalversions/azurekeyvaultcontroller/v1alpha1/azurekeyvaultsecret.go +++ b/pkg/client/informers/externalversions/azurekeyvaultcontroller/v1alpha1/azurekeyvaultsecret.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/client/informers/externalversions/azurekeyvaultcontroller/v1alpha1/interface.go b/pkg/client/informers/externalversions/azurekeyvaultcontroller/v1alpha1/interface.go index a11025a7..7c7b85fe 100644 --- a/pkg/client/informers/externalversions/azurekeyvaultcontroller/v1alpha1/interface.go +++ b/pkg/client/informers/externalversions/azurekeyvaultcontroller/v1alpha1/interface.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/client/informers/externalversions/factory.go b/pkg/client/informers/externalversions/factory.go index 0f74c18e..e9e812d7 100644 --- a/pkg/client/informers/externalversions/factory.go +++ b/pkg/client/informers/externalversions/factory.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/client/informers/externalversions/generic.go b/pkg/client/informers/externalversions/generic.go index 4447b31b..3aae8501 100644 --- a/pkg/client/informers/externalversions/generic.go +++ b/pkg/client/informers/externalversions/generic.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go b/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go index f50e04cc..e4593e12 100644 --- a/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go +++ b/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/client/listers/azurekeyvaultcontroller/v1alpha1/azurekeyvaultsecret.go b/pkg/client/listers/azurekeyvaultcontroller/v1alpha1/azurekeyvaultsecret.go index 4524767f..933926eb 100644 --- a/pkg/client/listers/azurekeyvaultcontroller/v1alpha1/azurekeyvaultsecret.go +++ b/pkg/client/listers/azurekeyvaultcontroller/v1alpha1/azurekeyvaultsecret.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by lister-gen. DO NOT EDIT. diff --git a/pkg/client/listers/azurekeyvaultcontroller/v1alpha1/expansion_generated.go b/pkg/client/listers/azurekeyvaultcontroller/v1alpha1/expansion_generated.go index fbc627ea..a95f112e 100644 --- a/pkg/client/listers/azurekeyvaultcontroller/v1alpha1/expansion_generated.go +++ b/pkg/client/listers/azurekeyvaultcontroller/v1alpha1/expansion_generated.go @@ -1,7 +1,20 @@ /* Copyright Sparebanken Vest -Authored by The Cumulus Team. +Based on the Kubernetes controller example at +https://github.com/kubernetes/sample-controller + +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. */ // Code generated by lister-gen. DO NOT EDIT.