diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..2a76bb15 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,3 @@ +## Code of Conduct + +Flagger follows the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8ab63153..8974fd42 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,10 +14,28 @@ Origin (DCO). This document was created by the Linux Kernel community and is a simple statement that you, as a contributor, have the legal right to make the contribution. -## Chat +We require all commits to be signed. By signing off with your signature, you +certify that you wrote the patch or otherwise have the right to contribute the +material by the rules of the [DCO](DCO): + +`Signed-off-by: Jane Doe ` + +The signature must contain your real name +(sorry, no pseudonyms or anonymous contributions) +If your `user.name` and `user.email` are configured in your Git config, +you can sign your commit automatically with `git commit -s`. + +## Communications The project uses Slack: To join the conversation, simply join the -[Weave community](https://slack.weave.works/) Slack workspace #flagger channel. +[CNCF](https://slack.cncf.io/) Slack workspace and use the +[#flux](https://cloud-native.slack.com/messages/flux/) channel. + +The developers use a mailing list to discuss development as well. +Simply subscribe to [flux-dev on cncf.io](https://lists.cncf.io/g/cncf-flux-dev) +to join the conversation (this will also add an invitation to your +Google calendar for our [Flux +meeting](https://docs.google.com/document/d/1l_M0om0qUEN_NNiGgpqJ2tvsF2iioHkaARDeh6b70B0/edit#)). ## Getting Started @@ -69,4 +87,3 @@ For Flagger we prefer the following rules for good commit messages: The [following article](https://chris.beams.io/posts/git-commit/#seven-rules) has some more helpful advice on documenting your work. -This doc is adapted from [FluxCD](https://github.com/fluxcd/flux/blob/master/CONTRIBUTING.md). diff --git a/DCO b/DCO new file mode 100644 index 00000000..716561d5 --- /dev/null +++ b/DCO @@ -0,0 +1,36 @@ +Developer Certificate of Origin +Version 1.1 + +Copyright (C) 2004, 2006 The Linux Foundation and its contributors. +660 York Street, Suite 102, +San Francisco, CA 94110 USA + +Everyone is permitted to copy and distribute verbatim copies of this +license document, but changing it is not allowed. + + +Developer's Certificate of Origin 1.1 + +By making a contribution to this project, I certify that: + +(a) The contribution was created in whole or in part by me and I + have the right to submit it under the open source license + indicated in the file; or + +(b) The contribution is based upon previous work that, to the best + of my knowledge, is covered under an appropriate open source + license and I have the right under that license to submit that + work with modifications, whether created in whole or in part + by me, under the same open source license (unless I am + permitted to submit under a different license), as indicated + in the file; or + +(c) The contribution was provided directly to me by some other + person who certified (a), (b) or (c) and I have not modified + it. + +(d) I understand and agree that this project and the contribution + are public and that a record of the contribution (including all + personal information I submit with it, including my sign-off) is + maintained indefinitely and may be redistributed consistent with + this project or the open source license(s) involved. diff --git a/LICENSE b/LICENSE index 6e292ed2..261eeb9e 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018 Weaveworks. All rights reserved. + Copyright [yyyy] [name of copyright owner] 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/README.md b/README.md index 62aa862a..6b27dbd5 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,9 @@ # flagger -[![build](https://img.shields.io/circleci/build/github/weaveworks/flagger/master.svg)](https://circleci.com/gh/weaveworks/flagger) +[![build](https://github.com/fluxcd/flagger/workflows/build/badge.svg)](https://github.com/fluxcd/flagger/actions) [![report](https://goreportcard.com/badge/github.com/fluxcd/flagger)](https://goreportcard.com/report/github.com/fluxcd/flagger) -[![codecov](https://codecov.io/gh/weaveworks/flagger/branch/master/graph/badge.svg)](https://codecov.io/gh/weaveworks/flagger) -[![license](https://img.shields.io/github/license/weaveworks/flagger.svg)](https://github.com/fluxcd/flagger/blob/master/LICENSE) -[![release](https://img.shields.io/github/release/weaveworks/flagger/all.svg)](https://github.com/fluxcd/flagger/releases) +[![license](https://img.shields.io/github/license/fluxcd/flagger.svg)](https://github.com/fluxcd/flagger/blob/main/LICENSE) +[![release](https://img.shields.io/github/release/fluxcd/flagger/all.svg)](https://github.com/fluxcd/flagger/releases) Flagger is a progressive delivery tool that automates the release process for applications running on Kubernetes. It reduces the risk of introducing a new software version in production @@ -212,7 +211,7 @@ For more details on how the canary analysis and promotion works please [read the ### Roadmap -#### [GitOps Toolkit](https://github.com/fluxcd/toolkit) compatibility +#### [GitOps Toolkit](https://github.com/fluxcd/flux2) compatibility * Migrate Flagger to Kubernetes controller-runtime and [kubebuilder](https://github.com/kubernetes-sigs/kubebuilder) * Make the Canary status compatible with [kstatus](https://github.com/kubernetes-sigs/cli-utils) diff --git a/cmd/flagger/main.go b/cmd/flagger/main.go index 5e05fc61..7944e427 100644 --- a/cmd/flagger/main.go +++ b/cmd/flagger/main.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package main import ( diff --git a/cmd/loadtester/main.go b/cmd/loadtester/main.go index 08399ec4..f7821b48 100644 --- a/cmd/loadtester/main.go +++ b/cmd/loadtester/main.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package main import ( diff --git a/code-of-conduct.md b/code-of-conduct.md deleted file mode 100644 index 6aa7f9a2..00000000 --- a/code-of-conduct.md +++ /dev/null @@ -1,73 +0,0 @@ -# Contributor Covenant Code of Conduct - -## Our Pledge - -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to making participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, gender identity and expression, level of experience, -education, socio-economic status, nationality, personal appearance, race, -religion, or sexual identity and orientation. - -## Our Standards - -Examples of behavior that contributes to creating a positive environment -include: - -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery and unwelcome sexual attention or - advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Our Responsibilities - -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. - -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. - -## Scope - -This Code of Conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. Examples of -representing a project or community include using an official project e-mail -address, posting via an official social media account, or acting as an appointed -representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior -may be reported by contacting stefan.prodan(at)gmail.com. -All complaints will be reviewed and investigated and will result in a response that is deemed -necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of -an incident. Further details of specific enforcement policies may be -posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 1.4, -available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html - diff --git a/hack/boilerplate.go.txt b/hack/boilerplate.go.txt index ccbde0e2..ce851357 100755 --- a/hack/boilerplate.go.txt +++ b/hack/boilerplate.go.txt @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/appmesh/v1beta1/zz_generated.deepcopy.go b/pkg/apis/appmesh/v1beta1/zz_generated.deepcopy.go index 55cd4e19..f81f6a26 100644 --- a/pkg/apis/appmesh/v1beta1/zz_generated.deepcopy.go +++ b/pkg/apis/appmesh/v1beta1/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/appmesh/v1beta2/zz_generated.deepcopy.go b/pkg/apis/appmesh/v1beta2/zz_generated.deepcopy.go index 62cb3db2..34a62c70 100644 --- a/pkg/apis/appmesh/v1beta2/zz_generated.deepcopy.go +++ b/pkg/apis/appmesh/v1beta2/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/flagger/v1beta1/zz_generated.deepcopy.go b/pkg/apis/flagger/v1beta1/zz_generated.deepcopy.go index cfb31b73..5e568ec3 100644 --- a/pkg/apis/flagger/v1beta1/zz_generated.deepcopy.go +++ b/pkg/apis/flagger/v1beta1/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/gloo/v1/zz_generated.deepcopy.go b/pkg/apis/gloo/v1/zz_generated.deepcopy.go index 909575ed..db498aef 100644 --- a/pkg/apis/gloo/v1/zz_generated.deepcopy.go +++ b/pkg/apis/gloo/v1/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/istio/v1alpha3/zz_generated.deepcopy.go b/pkg/apis/istio/v1alpha3/zz_generated.deepcopy.go index b2d56543..c0173ba2 100644 --- a/pkg/apis/istio/v1alpha3/zz_generated.deepcopy.go +++ b/pkg/apis/istio/v1alpha3/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/projectcontour/v1/zz_generated.deepcopy.go b/pkg/apis/projectcontour/v1/zz_generated.deepcopy.go index 98f2dcb2..967601b7 100644 --- a/pkg/apis/projectcontour/v1/zz_generated.deepcopy.go +++ b/pkg/apis/projectcontour/v1/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/smi/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/smi/v1alpha1/zz_generated.deepcopy.go index b7b5f657..0013d998 100644 --- a/pkg/apis/smi/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/smi/v1alpha1/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/smi/v1alpha2/zz_generated.deepcopy.go b/pkg/apis/smi/v1alpha2/zz_generated.deepcopy.go index a5a52abd..e07e5994 100644 --- a/pkg/apis/smi/v1alpha2/zz_generated.deepcopy.go +++ b/pkg/apis/smi/v1alpha2/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/traefik/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/traefik/v1alpha1/zz_generated.deepcopy.go index 7b07d795..958cca34 100644 --- a/pkg/apis/traefik/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/traefik/v1alpha1/zz_generated.deepcopy.go @@ -1,7 +1,7 @@ // +build !ignore_autogenerated /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/canary/config_tracker.go b/pkg/canary/config_tracker.go index 480c7840..23e80feb 100644 --- a/pkg/canary/config_tracker.go +++ b/pkg/canary/config_tracker.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/config_tracker_test.go b/pkg/canary/config_tracker_test.go index 423befc7..3399db95 100644 --- a/pkg/canary/config_tracker_test.go +++ b/pkg/canary/config_tracker_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/controller.go b/pkg/canary/controller.go index 36e13f1c..86241d4e 100644 --- a/pkg/canary/controller.go +++ b/pkg/canary/controller.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/daemonset_controller.go b/pkg/canary/daemonset_controller.go index 3c02e9ec..89494ea3 100644 --- a/pkg/canary/daemonset_controller.go +++ b/pkg/canary/daemonset_controller.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/daemonset_controller_test.go b/pkg/canary/daemonset_controller_test.go index 81af35c4..e5e8effd 100644 --- a/pkg/canary/daemonset_controller_test.go +++ b/pkg/canary/daemonset_controller_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/daemonset_fixture_test.go b/pkg/canary/daemonset_fixture_test.go index 1feb18d3..f309172a 100644 --- a/pkg/canary/daemonset_fixture_test.go +++ b/pkg/canary/daemonset_fixture_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/daemonset_ready.go b/pkg/canary/daemonset_ready.go index fbfff4b9..5ac8d03e 100644 --- a/pkg/canary/daemonset_ready.go +++ b/pkg/canary/daemonset_ready.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/daemonset_ready_test.go b/pkg/canary/daemonset_ready_test.go index 93b11287..5d214852 100644 --- a/pkg/canary/daemonset_ready_test.go +++ b/pkg/canary/daemonset_ready_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/daemonset_status.go b/pkg/canary/daemonset_status.go index b3927f05..746d612b 100644 --- a/pkg/canary/daemonset_status.go +++ b/pkg/canary/daemonset_status.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/daemonset_status_test.go b/pkg/canary/daemonset_status_test.go index 457dc515..14d502f2 100644 --- a/pkg/canary/daemonset_status_test.go +++ b/pkg/canary/daemonset_status_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/deployment_controller.go b/pkg/canary/deployment_controller.go index 050b73fe..bec31c7e 100644 --- a/pkg/canary/deployment_controller.go +++ b/pkg/canary/deployment_controller.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/deployment_controller_test.go b/pkg/canary/deployment_controller_test.go index 265f2d52..c4e22380 100644 --- a/pkg/canary/deployment_controller_test.go +++ b/pkg/canary/deployment_controller_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/deployment_fixture_test.go b/pkg/canary/deployment_fixture_test.go index 67ea95c0..da423fd7 100644 --- a/pkg/canary/deployment_fixture_test.go +++ b/pkg/canary/deployment_fixture_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/deployment_ready.go b/pkg/canary/deployment_ready.go index 0bb54ac5..bfcfeed5 100644 --- a/pkg/canary/deployment_ready.go +++ b/pkg/canary/deployment_ready.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/deployment_ready_test.go b/pkg/canary/deployment_ready_test.go index 48da6a47..9dfbc47f 100644 --- a/pkg/canary/deployment_ready_test.go +++ b/pkg/canary/deployment_ready_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/deployment_status.go b/pkg/canary/deployment_status.go index 97cd571c..46027499 100644 --- a/pkg/canary/deployment_status.go +++ b/pkg/canary/deployment_status.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/deployment_status_test.go b/pkg/canary/deployment_status_test.go index 31c5e386..cb1910ba 100644 --- a/pkg/canary/deployment_status_test.go +++ b/pkg/canary/deployment_status_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/factory.go b/pkg/canary/factory.go index 9e82232d..55672be7 100644 --- a/pkg/canary/factory.go +++ b/pkg/canary/factory.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/nop_tracker.go b/pkg/canary/nop_tracker.go index 7a696c00..e578a6d7 100644 --- a/pkg/canary/nop_tracker.go +++ b/pkg/canary/nop_tracker.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/service_controller.go b/pkg/canary/service_controller.go index 4856f3aa..2f53edca 100644 --- a/pkg/canary/service_controller.go +++ b/pkg/canary/service_controller.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/spec.go b/pkg/canary/spec.go index 7e191ed3..f7c087b4 100644 --- a/pkg/canary/spec.go +++ b/pkg/canary/spec.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/status.go b/pkg/canary/status.go index 9b821ab9..fbd7020a 100644 --- a/pkg/canary/status.go +++ b/pkg/canary/status.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/tracker.go b/pkg/canary/tracker.go index ab8292ac..a2b31cff 100644 --- a/pkg/canary/tracker.go +++ b/pkg/canary/tracker.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/util.go b/pkg/canary/util.go index e1688e5e..e7deb6c0 100644 --- a/pkg/canary/util.go +++ b/pkg/canary/util.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/canary/util_test.go b/pkg/canary/util_test.go index e8e36f01..b0ed41e5 100644 --- a/pkg/canary/util_test.go +++ b/pkg/canary/util_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package canary import ( diff --git a/pkg/client/clientset/versioned/clientset.go b/pkg/client/clientset/versioned/clientset.go index 6ecfd15e..c8b0a2ae 100644 --- a/pkg/client/clientset/versioned/clientset.go +++ b/pkg/client/clientset/versioned/clientset.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/doc.go b/pkg/client/clientset/versioned/doc.go index a095dc95..8c3bbfc6 100644 --- a/pkg/client/clientset/versioned/doc.go +++ b/pkg/client/clientset/versioned/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/fake/clientset_generated.go b/pkg/client/clientset/versioned/fake/clientset_generated.go index 863f403e..bb5e26c7 100644 --- a/pkg/client/clientset/versioned/fake/clientset_generated.go +++ b/pkg/client/clientset/versioned/fake/clientset_generated.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/fake/doc.go b/pkg/client/clientset/versioned/fake/doc.go index 90e25643..bb4a7804 100644 --- a/pkg/client/clientset/versioned/fake/doc.go +++ b/pkg/client/clientset/versioned/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/fake/register.go b/pkg/client/clientset/versioned/fake/register.go index ee5fa03a..b67c97ea 100644 --- a/pkg/client/clientset/versioned/fake/register.go +++ b/pkg/client/clientset/versioned/fake/register.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/scheme/doc.go b/pkg/client/clientset/versioned/scheme/doc.go index 52ad2210..e32e9d94 100644 --- a/pkg/client/clientset/versioned/scheme/doc.go +++ b/pkg/client/clientset/versioned/scheme/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/scheme/register.go b/pkg/client/clientset/versioned/scheme/register.go index bf7a9984..25d23a6d 100644 --- a/pkg/client/clientset/versioned/scheme/register.go +++ b/pkg/client/clientset/versioned/scheme/register.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta1/appmesh_client.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/appmesh_client.go index 539b0de7..606925e1 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta1/appmesh_client.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/appmesh_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta1/doc.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/doc.go index 4796e182..668ff388 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta1/doc.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta1/fake/doc.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/doc.go index 7a3b19cb..1ccd9119 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta1/fake/fake_appmesh_client.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/fake_appmesh_client.go index 616c8937..87aee5b9 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/fake_appmesh_client.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/fake_appmesh_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta1/fake/fake_mesh.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/fake_mesh.go index 12fab18f..da61e980 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/fake_mesh.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/fake_mesh.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta1/fake/fake_virtualnode.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/fake_virtualnode.go index 4a20c08d..59223a03 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/fake_virtualnode.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/fake_virtualnode.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta1/fake/fake_virtualservice.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/fake_virtualservice.go index e4c59492..270dcc87 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/fake_virtualservice.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/fake/fake_virtualservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta1/generated_expansion.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/generated_expansion.go index 66f15ec1..e8ba9c03 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta1/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/generated_expansion.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta1/mesh.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/mesh.go index 446a4ec3..ef48a770 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta1/mesh.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/mesh.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta1/virtualnode.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/virtualnode.go index 4746998b..4f2f36e2 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta1/virtualnode.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/virtualnode.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta1/virtualservice.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/virtualservice.go index 2e3157df..4e42f17a 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta1/virtualservice.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta1/virtualservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta2/appmesh_client.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/appmesh_client.go index 3b8befd1..1d962d5a 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta2/appmesh_client.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/appmesh_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta2/doc.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/doc.go index a36957cd..aee3cf82 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta2/doc.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta2/fake/doc.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/doc.go index 7a3b19cb..1ccd9119 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta2/fake/fake_appmesh_client.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/fake_appmesh_client.go index 92989c14..43b685d0 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/fake_appmesh_client.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/fake_appmesh_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta2/fake/fake_virtualnode.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/fake_virtualnode.go index 0557ae62..33bc6282 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/fake_virtualnode.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/fake_virtualnode.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta2/fake/fake_virtualrouter.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/fake_virtualrouter.go index 3edd7660..558d1444 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/fake_virtualrouter.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/fake_virtualrouter.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta2/fake/fake_virtualservice.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/fake_virtualservice.go index 08106c00..14f4985e 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/fake_virtualservice.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/fake/fake_virtualservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta2/generated_expansion.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/generated_expansion.go index 7803347c..06f727ff 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta2/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/generated_expansion.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta2/virtualnode.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/virtualnode.go index 7adb535c..2ca0f710 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta2/virtualnode.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/virtualnode.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta2/virtualrouter.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/virtualrouter.go index e6df6a8b..bd2daad1 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta2/virtualrouter.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/virtualrouter.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/appmesh/v1beta2/virtualservice.go b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/virtualservice.go index b63cbcdd..caa79fbf 100644 --- a/pkg/client/clientset/versioned/typed/appmesh/v1beta2/virtualservice.go +++ b/pkg/client/clientset/versioned/typed/appmesh/v1beta2/virtualservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/flagger/v1beta1/alertprovider.go b/pkg/client/clientset/versioned/typed/flagger/v1beta1/alertprovider.go index c7954374..8210838b 100644 --- a/pkg/client/clientset/versioned/typed/flagger/v1beta1/alertprovider.go +++ b/pkg/client/clientset/versioned/typed/flagger/v1beta1/alertprovider.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/flagger/v1beta1/canary.go b/pkg/client/clientset/versioned/typed/flagger/v1beta1/canary.go index 778229f7..18a332c1 100644 --- a/pkg/client/clientset/versioned/typed/flagger/v1beta1/canary.go +++ b/pkg/client/clientset/versioned/typed/flagger/v1beta1/canary.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/flagger/v1beta1/doc.go b/pkg/client/clientset/versioned/typed/flagger/v1beta1/doc.go index 4796e182..668ff388 100644 --- a/pkg/client/clientset/versioned/typed/flagger/v1beta1/doc.go +++ b/pkg/client/clientset/versioned/typed/flagger/v1beta1/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/flagger/v1beta1/fake/doc.go b/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/doc.go index 7a3b19cb..1ccd9119 100644 --- a/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/flagger/v1beta1/fake/fake_alertprovider.go b/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/fake_alertprovider.go index 2350529e..cf2c91c8 100644 --- a/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/fake_alertprovider.go +++ b/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/fake_alertprovider.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/flagger/v1beta1/fake/fake_canary.go b/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/fake_canary.go index 56840107..93892da4 100644 --- a/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/fake_canary.go +++ b/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/fake_canary.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/flagger/v1beta1/fake/fake_flagger_client.go b/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/fake_flagger_client.go index 08d591f4..0961c6be 100644 --- a/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/fake_flagger_client.go +++ b/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/fake_flagger_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/flagger/v1beta1/fake/fake_metrictemplate.go b/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/fake_metrictemplate.go index 1d00bc1a..9f10d7ad 100644 --- a/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/fake_metrictemplate.go +++ b/pkg/client/clientset/versioned/typed/flagger/v1beta1/fake/fake_metrictemplate.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/flagger/v1beta1/flagger_client.go b/pkg/client/clientset/versioned/typed/flagger/v1beta1/flagger_client.go index 48a958e2..f755721b 100644 --- a/pkg/client/clientset/versioned/typed/flagger/v1beta1/flagger_client.go +++ b/pkg/client/clientset/versioned/typed/flagger/v1beta1/flagger_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/flagger/v1beta1/generated_expansion.go b/pkg/client/clientset/versioned/typed/flagger/v1beta1/generated_expansion.go index 2d9f05ef..f68ed72b 100644 --- a/pkg/client/clientset/versioned/typed/flagger/v1beta1/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/flagger/v1beta1/generated_expansion.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/flagger/v1beta1/metrictemplate.go b/pkg/client/clientset/versioned/typed/flagger/v1beta1/metrictemplate.go index 432f6902..071cc254 100644 --- a/pkg/client/clientset/versioned/typed/flagger/v1beta1/metrictemplate.go +++ b/pkg/client/clientset/versioned/typed/flagger/v1beta1/metrictemplate.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/gloo/v1/doc.go b/pkg/client/clientset/versioned/typed/gloo/v1/doc.go index fb0cec7d..49093caf 100644 --- a/pkg/client/clientset/versioned/typed/gloo/v1/doc.go +++ b/pkg/client/clientset/versioned/typed/gloo/v1/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/gloo/v1/fake/doc.go b/pkg/client/clientset/versioned/typed/gloo/v1/fake/doc.go index 7a3b19cb..1ccd9119 100644 --- a/pkg/client/clientset/versioned/typed/gloo/v1/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/gloo/v1/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/gloo/v1/fake/fake_gloo_client.go b/pkg/client/clientset/versioned/typed/gloo/v1/fake/fake_gloo_client.go index ab0b9f26..ad0765f7 100644 --- a/pkg/client/clientset/versioned/typed/gloo/v1/fake/fake_gloo_client.go +++ b/pkg/client/clientset/versioned/typed/gloo/v1/fake/fake_gloo_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/gloo/v1/fake/fake_upstreamgroup.go b/pkg/client/clientset/versioned/typed/gloo/v1/fake/fake_upstreamgroup.go index 200b2f08..efc80800 100644 --- a/pkg/client/clientset/versioned/typed/gloo/v1/fake/fake_upstreamgroup.go +++ b/pkg/client/clientset/versioned/typed/gloo/v1/fake/fake_upstreamgroup.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/gloo/v1/generated_expansion.go b/pkg/client/clientset/versioned/typed/gloo/v1/generated_expansion.go index a727e452..6f708157 100644 --- a/pkg/client/clientset/versioned/typed/gloo/v1/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/gloo/v1/generated_expansion.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/gloo/v1/gloo_client.go b/pkg/client/clientset/versioned/typed/gloo/v1/gloo_client.go index 3cd1da5e..b952e19c 100644 --- a/pkg/client/clientset/versioned/typed/gloo/v1/gloo_client.go +++ b/pkg/client/clientset/versioned/typed/gloo/v1/gloo_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/gloo/v1/upstreamgroup.go b/pkg/client/clientset/versioned/typed/gloo/v1/upstreamgroup.go index a007ec5c..767fe3db 100644 --- a/pkg/client/clientset/versioned/typed/gloo/v1/upstreamgroup.go +++ b/pkg/client/clientset/versioned/typed/gloo/v1/upstreamgroup.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/istio/v1alpha3/destinationrule.go b/pkg/client/clientset/versioned/typed/istio/v1alpha3/destinationrule.go index c0fd5fab..27223f2a 100644 --- a/pkg/client/clientset/versioned/typed/istio/v1alpha3/destinationrule.go +++ b/pkg/client/clientset/versioned/typed/istio/v1alpha3/destinationrule.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/istio/v1alpha3/doc.go b/pkg/client/clientset/versioned/typed/istio/v1alpha3/doc.go index d49e3fd3..9e20709b 100644 --- a/pkg/client/clientset/versioned/typed/istio/v1alpha3/doc.go +++ b/pkg/client/clientset/versioned/typed/istio/v1alpha3/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/istio/v1alpha3/fake/doc.go b/pkg/client/clientset/versioned/typed/istio/v1alpha3/fake/doc.go index 7a3b19cb..1ccd9119 100644 --- a/pkg/client/clientset/versioned/typed/istio/v1alpha3/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/istio/v1alpha3/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/istio/v1alpha3/fake/fake_destinationrule.go b/pkg/client/clientset/versioned/typed/istio/v1alpha3/fake/fake_destinationrule.go index 4d04e845..92a1acb0 100644 --- a/pkg/client/clientset/versioned/typed/istio/v1alpha3/fake/fake_destinationrule.go +++ b/pkg/client/clientset/versioned/typed/istio/v1alpha3/fake/fake_destinationrule.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/istio/v1alpha3/fake/fake_istio_client.go b/pkg/client/clientset/versioned/typed/istio/v1alpha3/fake/fake_istio_client.go index fbb1b6e0..60e44838 100644 --- a/pkg/client/clientset/versioned/typed/istio/v1alpha3/fake/fake_istio_client.go +++ b/pkg/client/clientset/versioned/typed/istio/v1alpha3/fake/fake_istio_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/istio/v1alpha3/fake/fake_virtualservice.go b/pkg/client/clientset/versioned/typed/istio/v1alpha3/fake/fake_virtualservice.go index fef478b4..2fc43653 100644 --- a/pkg/client/clientset/versioned/typed/istio/v1alpha3/fake/fake_virtualservice.go +++ b/pkg/client/clientset/versioned/typed/istio/v1alpha3/fake/fake_virtualservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/istio/v1alpha3/generated_expansion.go b/pkg/client/clientset/versioned/typed/istio/v1alpha3/generated_expansion.go index da0d96c9..7af9213c 100644 --- a/pkg/client/clientset/versioned/typed/istio/v1alpha3/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/istio/v1alpha3/generated_expansion.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/istio/v1alpha3/istio_client.go b/pkg/client/clientset/versioned/typed/istio/v1alpha3/istio_client.go index 7de40b32..d47a25ea 100644 --- a/pkg/client/clientset/versioned/typed/istio/v1alpha3/istio_client.go +++ b/pkg/client/clientset/versioned/typed/istio/v1alpha3/istio_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/istio/v1alpha3/virtualservice.go b/pkg/client/clientset/versioned/typed/istio/v1alpha3/virtualservice.go index ca83e152..493b538c 100644 --- a/pkg/client/clientset/versioned/typed/istio/v1alpha3/virtualservice.go +++ b/pkg/client/clientset/versioned/typed/istio/v1alpha3/virtualservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/projectcontour/v1/doc.go b/pkg/client/clientset/versioned/typed/projectcontour/v1/doc.go index fb0cec7d..49093caf 100644 --- a/pkg/client/clientset/versioned/typed/projectcontour/v1/doc.go +++ b/pkg/client/clientset/versioned/typed/projectcontour/v1/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/projectcontour/v1/fake/doc.go b/pkg/client/clientset/versioned/typed/projectcontour/v1/fake/doc.go index 7a3b19cb..1ccd9119 100644 --- a/pkg/client/clientset/versioned/typed/projectcontour/v1/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/projectcontour/v1/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/projectcontour/v1/fake/fake_httpproxy.go b/pkg/client/clientset/versioned/typed/projectcontour/v1/fake/fake_httpproxy.go index 1256d724..e1067f87 100644 --- a/pkg/client/clientset/versioned/typed/projectcontour/v1/fake/fake_httpproxy.go +++ b/pkg/client/clientset/versioned/typed/projectcontour/v1/fake/fake_httpproxy.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/projectcontour/v1/fake/fake_projectcontour_client.go b/pkg/client/clientset/versioned/typed/projectcontour/v1/fake/fake_projectcontour_client.go index 36d2028f..1dbb458b 100644 --- a/pkg/client/clientset/versioned/typed/projectcontour/v1/fake/fake_projectcontour_client.go +++ b/pkg/client/clientset/versioned/typed/projectcontour/v1/fake/fake_projectcontour_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/projectcontour/v1/generated_expansion.go b/pkg/client/clientset/versioned/typed/projectcontour/v1/generated_expansion.go index a2adb4fb..47b0195b 100644 --- a/pkg/client/clientset/versioned/typed/projectcontour/v1/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/projectcontour/v1/generated_expansion.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/projectcontour/v1/httpproxy.go b/pkg/client/clientset/versioned/typed/projectcontour/v1/httpproxy.go index 24fda92c..b7528fe7 100644 --- a/pkg/client/clientset/versioned/typed/projectcontour/v1/httpproxy.go +++ b/pkg/client/clientset/versioned/typed/projectcontour/v1/httpproxy.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/projectcontour/v1/projectcontour_client.go b/pkg/client/clientset/versioned/typed/projectcontour/v1/projectcontour_client.go index 9dc8b6cd..54703a8c 100644 --- a/pkg/client/clientset/versioned/typed/projectcontour/v1/projectcontour_client.go +++ b/pkg/client/clientset/versioned/typed/projectcontour/v1/projectcontour_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha1/doc.go b/pkg/client/clientset/versioned/typed/smi/v1alpha1/doc.go index 20b3d7fd..9c7b8cc3 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha1/doc.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha1/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha1/fake/doc.go b/pkg/client/clientset/versioned/typed/smi/v1alpha1/fake/doc.go index 7a3b19cb..1ccd9119 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha1/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha1/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha1/fake/fake_smi_client.go b/pkg/client/clientset/versioned/typed/smi/v1alpha1/fake/fake_smi_client.go index bf77283b..53bb984a 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha1/fake/fake_smi_client.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha1/fake/fake_smi_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha1/fake/fake_trafficsplit.go b/pkg/client/clientset/versioned/typed/smi/v1alpha1/fake/fake_trafficsplit.go index f455131a..e91f949e 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha1/fake/fake_trafficsplit.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha1/fake/fake_trafficsplit.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha1/generated_expansion.go b/pkg/client/clientset/versioned/typed/smi/v1alpha1/generated_expansion.go index 4cc5c42a..463a2aca 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha1/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha1/generated_expansion.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha1/smi_client.go b/pkg/client/clientset/versioned/typed/smi/v1alpha1/smi_client.go index 0168e9b9..5cb5cf28 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha1/smi_client.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha1/smi_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha1/trafficsplit.go b/pkg/client/clientset/versioned/typed/smi/v1alpha1/trafficsplit.go index 4a774e5a..649b9e0d 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha1/trafficsplit.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha1/trafficsplit.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha2/doc.go b/pkg/client/clientset/versioned/typed/smi/v1alpha2/doc.go index 0b3efa15..c0e4eb6f 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha2/doc.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha2/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha2/fake/doc.go b/pkg/client/clientset/versioned/typed/smi/v1alpha2/fake/doc.go index 7a3b19cb..1ccd9119 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha2/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha2/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha2/fake/fake_smi_client.go b/pkg/client/clientset/versioned/typed/smi/v1alpha2/fake/fake_smi_client.go index 964c2e47..0c31e872 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha2/fake/fake_smi_client.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha2/fake/fake_smi_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha2/fake/fake_trafficsplit.go b/pkg/client/clientset/versioned/typed/smi/v1alpha2/fake/fake_trafficsplit.go index f5353664..56281889 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha2/fake/fake_trafficsplit.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha2/fake/fake_trafficsplit.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha2/generated_expansion.go b/pkg/client/clientset/versioned/typed/smi/v1alpha2/generated_expansion.go index fe431406..95c3f471 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha2/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha2/generated_expansion.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha2/smi_client.go b/pkg/client/clientset/versioned/typed/smi/v1alpha2/smi_client.go index c9efe50f..77345883 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha2/smi_client.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha2/smi_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/smi/v1alpha2/trafficsplit.go b/pkg/client/clientset/versioned/typed/smi/v1alpha2/trafficsplit.go index 6acad046..45f5f4fd 100644 --- a/pkg/client/clientset/versioned/typed/smi/v1alpha2/trafficsplit.go +++ b/pkg/client/clientset/versioned/typed/smi/v1alpha2/trafficsplit.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/traefik/v1alpha1/doc.go b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/doc.go index 20b3d7fd..9c7b8cc3 100644 --- a/pkg/client/clientset/versioned/typed/traefik/v1alpha1/doc.go +++ b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/traefik/v1alpha1/fake/doc.go b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/fake/doc.go index 7a3b19cb..1ccd9119 100644 --- a/pkg/client/clientset/versioned/typed/traefik/v1alpha1/fake/doc.go +++ b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/fake/doc.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/traefik/v1alpha1/fake/fake_traefik_client.go b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/fake/fake_traefik_client.go index f51840b4..f42c070b 100644 --- a/pkg/client/clientset/versioned/typed/traefik/v1alpha1/fake/fake_traefik_client.go +++ b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/fake/fake_traefik_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/traefik/v1alpha1/fake/fake_traefikservice.go b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/fake/fake_traefikservice.go index 18e518e2..186eb0af 100644 --- a/pkg/client/clientset/versioned/typed/traefik/v1alpha1/fake/fake_traefikservice.go +++ b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/fake/fake_traefikservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/traefik/v1alpha1/generated_expansion.go b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/generated_expansion.go index 9a4fb62a..7ae345c1 100644 --- a/pkg/client/clientset/versioned/typed/traefik/v1alpha1/generated_expansion.go +++ b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/generated_expansion.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/traefik/v1alpha1/traefik_client.go b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/traefik_client.go index 61463a03..9005c094 100644 --- a/pkg/client/clientset/versioned/typed/traefik/v1alpha1/traefik_client.go +++ b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/traefik_client.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/versioned/typed/traefik/v1alpha1/traefikservice.go b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/traefikservice.go index b6823996..3d1ce472 100644 --- a/pkg/client/clientset/versioned/typed/traefik/v1alpha1/traefikservice.go +++ b/pkg/client/clientset/versioned/typed/traefik/v1alpha1/traefikservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/appmesh/interface.go b/pkg/client/informers/externalversions/appmesh/interface.go index 22439cad..a1d7fb74 100644 --- a/pkg/client/informers/externalversions/appmesh/interface.go +++ b/pkg/client/informers/externalversions/appmesh/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/appmesh/v1beta1/interface.go b/pkg/client/informers/externalversions/appmesh/v1beta1/interface.go index 37b7ddb2..1a701ba9 100644 --- a/pkg/client/informers/externalversions/appmesh/v1beta1/interface.go +++ b/pkg/client/informers/externalversions/appmesh/v1beta1/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/appmesh/v1beta1/mesh.go b/pkg/client/informers/externalversions/appmesh/v1beta1/mesh.go index 012d834c..933d9316 100644 --- a/pkg/client/informers/externalversions/appmesh/v1beta1/mesh.go +++ b/pkg/client/informers/externalversions/appmesh/v1beta1/mesh.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/appmesh/v1beta1/virtualnode.go b/pkg/client/informers/externalversions/appmesh/v1beta1/virtualnode.go index c7d028fb..5aa9e35a 100644 --- a/pkg/client/informers/externalversions/appmesh/v1beta1/virtualnode.go +++ b/pkg/client/informers/externalversions/appmesh/v1beta1/virtualnode.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/appmesh/v1beta1/virtualservice.go b/pkg/client/informers/externalversions/appmesh/v1beta1/virtualservice.go index 2a84f9a0..b3143b3d 100644 --- a/pkg/client/informers/externalversions/appmesh/v1beta1/virtualservice.go +++ b/pkg/client/informers/externalversions/appmesh/v1beta1/virtualservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/appmesh/v1beta2/interface.go b/pkg/client/informers/externalversions/appmesh/v1beta2/interface.go index d4037207..67fc7c20 100644 --- a/pkg/client/informers/externalversions/appmesh/v1beta2/interface.go +++ b/pkg/client/informers/externalversions/appmesh/v1beta2/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/appmesh/v1beta2/virtualnode.go b/pkg/client/informers/externalversions/appmesh/v1beta2/virtualnode.go index a3ed0c03..37e1d02d 100644 --- a/pkg/client/informers/externalversions/appmesh/v1beta2/virtualnode.go +++ b/pkg/client/informers/externalversions/appmesh/v1beta2/virtualnode.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/appmesh/v1beta2/virtualrouter.go b/pkg/client/informers/externalversions/appmesh/v1beta2/virtualrouter.go index a501f86c..b085a515 100644 --- a/pkg/client/informers/externalversions/appmesh/v1beta2/virtualrouter.go +++ b/pkg/client/informers/externalversions/appmesh/v1beta2/virtualrouter.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/appmesh/v1beta2/virtualservice.go b/pkg/client/informers/externalversions/appmesh/v1beta2/virtualservice.go index 532eeff3..c823f2fb 100644 --- a/pkg/client/informers/externalversions/appmesh/v1beta2/virtualservice.go +++ b/pkg/client/informers/externalversions/appmesh/v1beta2/virtualservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/factory.go b/pkg/client/informers/externalversions/factory.go index 3d3da082..cd9df556 100644 --- a/pkg/client/informers/externalversions/factory.go +++ b/pkg/client/informers/externalversions/factory.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/flagger/interface.go b/pkg/client/informers/externalversions/flagger/interface.go index 4f29e6fa..e9c1fffe 100644 --- a/pkg/client/informers/externalversions/flagger/interface.go +++ b/pkg/client/informers/externalversions/flagger/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/flagger/v1beta1/alertprovider.go b/pkg/client/informers/externalversions/flagger/v1beta1/alertprovider.go index 238b6ca9..e0ed1827 100644 --- a/pkg/client/informers/externalversions/flagger/v1beta1/alertprovider.go +++ b/pkg/client/informers/externalversions/flagger/v1beta1/alertprovider.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/flagger/v1beta1/canary.go b/pkg/client/informers/externalversions/flagger/v1beta1/canary.go index 970d954a..11b58cad 100644 --- a/pkg/client/informers/externalversions/flagger/v1beta1/canary.go +++ b/pkg/client/informers/externalversions/flagger/v1beta1/canary.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/flagger/v1beta1/interface.go b/pkg/client/informers/externalversions/flagger/v1beta1/interface.go index 5d69058a..b7fada6d 100644 --- a/pkg/client/informers/externalversions/flagger/v1beta1/interface.go +++ b/pkg/client/informers/externalversions/flagger/v1beta1/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/flagger/v1beta1/metrictemplate.go b/pkg/client/informers/externalversions/flagger/v1beta1/metrictemplate.go index da1a3e67..56dab237 100644 --- a/pkg/client/informers/externalversions/flagger/v1beta1/metrictemplate.go +++ b/pkg/client/informers/externalversions/flagger/v1beta1/metrictemplate.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/generic.go b/pkg/client/informers/externalversions/generic.go index 4075893e..efc6c50e 100644 --- a/pkg/client/informers/externalversions/generic.go +++ b/pkg/client/informers/externalversions/generic.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/gloo/interface.go b/pkg/client/informers/externalversions/gloo/interface.go index f61200d1..23b732a3 100644 --- a/pkg/client/informers/externalversions/gloo/interface.go +++ b/pkg/client/informers/externalversions/gloo/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/gloo/v1/interface.go b/pkg/client/informers/externalversions/gloo/v1/interface.go index ac9aa50a..84676e08 100644 --- a/pkg/client/informers/externalversions/gloo/v1/interface.go +++ b/pkg/client/informers/externalversions/gloo/v1/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/gloo/v1/upstreamgroup.go b/pkg/client/informers/externalversions/gloo/v1/upstreamgroup.go index beb7a5a3..74faa191 100644 --- a/pkg/client/informers/externalversions/gloo/v1/upstreamgroup.go +++ b/pkg/client/informers/externalversions/gloo/v1/upstreamgroup.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/internalinterfaces/factory_interfaces.go b/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go index 5e76f9d7..e235777d 100644 --- a/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go +++ b/pkg/client/informers/externalversions/internalinterfaces/factory_interfaces.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/istio/interface.go b/pkg/client/informers/externalversions/istio/interface.go index 168c81f2..80750d2d 100644 --- a/pkg/client/informers/externalversions/istio/interface.go +++ b/pkg/client/informers/externalversions/istio/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/istio/v1alpha3/destinationrule.go b/pkg/client/informers/externalversions/istio/v1alpha3/destinationrule.go index d638cae5..7db83c28 100644 --- a/pkg/client/informers/externalversions/istio/v1alpha3/destinationrule.go +++ b/pkg/client/informers/externalversions/istio/v1alpha3/destinationrule.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/istio/v1alpha3/interface.go b/pkg/client/informers/externalversions/istio/v1alpha3/interface.go index ae54b8a2..68fb9deb 100644 --- a/pkg/client/informers/externalversions/istio/v1alpha3/interface.go +++ b/pkg/client/informers/externalversions/istio/v1alpha3/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/istio/v1alpha3/virtualservice.go b/pkg/client/informers/externalversions/istio/v1alpha3/virtualservice.go index 6a278953..c251756a 100644 --- a/pkg/client/informers/externalversions/istio/v1alpha3/virtualservice.go +++ b/pkg/client/informers/externalversions/istio/v1alpha3/virtualservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/projectcontour/interface.go b/pkg/client/informers/externalversions/projectcontour/interface.go index 519b4f95..31b56d85 100644 --- a/pkg/client/informers/externalversions/projectcontour/interface.go +++ b/pkg/client/informers/externalversions/projectcontour/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/projectcontour/v1/httpproxy.go b/pkg/client/informers/externalversions/projectcontour/v1/httpproxy.go index faa77e01..c1718e71 100644 --- a/pkg/client/informers/externalversions/projectcontour/v1/httpproxy.go +++ b/pkg/client/informers/externalversions/projectcontour/v1/httpproxy.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/projectcontour/v1/interface.go b/pkg/client/informers/externalversions/projectcontour/v1/interface.go index 0aa3558e..f1ccf29c 100644 --- a/pkg/client/informers/externalversions/projectcontour/v1/interface.go +++ b/pkg/client/informers/externalversions/projectcontour/v1/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/smi/interface.go b/pkg/client/informers/externalversions/smi/interface.go index eb9bb560..60398833 100644 --- a/pkg/client/informers/externalversions/smi/interface.go +++ b/pkg/client/informers/externalversions/smi/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/smi/v1alpha1/interface.go b/pkg/client/informers/externalversions/smi/v1alpha1/interface.go index 7f7582b5..85943745 100644 --- a/pkg/client/informers/externalversions/smi/v1alpha1/interface.go +++ b/pkg/client/informers/externalversions/smi/v1alpha1/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/smi/v1alpha1/trafficsplit.go b/pkg/client/informers/externalversions/smi/v1alpha1/trafficsplit.go index 79860836..2c08949f 100644 --- a/pkg/client/informers/externalversions/smi/v1alpha1/trafficsplit.go +++ b/pkg/client/informers/externalversions/smi/v1alpha1/trafficsplit.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/smi/v1alpha2/interface.go b/pkg/client/informers/externalversions/smi/v1alpha2/interface.go index 69166394..13c56511 100644 --- a/pkg/client/informers/externalversions/smi/v1alpha2/interface.go +++ b/pkg/client/informers/externalversions/smi/v1alpha2/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/smi/v1alpha2/trafficsplit.go b/pkg/client/informers/externalversions/smi/v1alpha2/trafficsplit.go index 6641216e..c4dd6ef4 100644 --- a/pkg/client/informers/externalversions/smi/v1alpha2/trafficsplit.go +++ b/pkg/client/informers/externalversions/smi/v1alpha2/trafficsplit.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/traefik/interface.go b/pkg/client/informers/externalversions/traefik/interface.go index d2523a3d..c888a59b 100644 --- a/pkg/client/informers/externalversions/traefik/interface.go +++ b/pkg/client/informers/externalversions/traefik/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/traefik/v1alpha1/interface.go b/pkg/client/informers/externalversions/traefik/v1alpha1/interface.go index 5f45b608..c5605b65 100644 --- a/pkg/client/informers/externalversions/traefik/v1alpha1/interface.go +++ b/pkg/client/informers/externalversions/traefik/v1alpha1/interface.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/informers/externalversions/traefik/v1alpha1/traefikservice.go b/pkg/client/informers/externalversions/traefik/v1alpha1/traefikservice.go index 32ff698e..2c40b896 100644 --- a/pkg/client/informers/externalversions/traefik/v1alpha1/traefikservice.go +++ b/pkg/client/informers/externalversions/traefik/v1alpha1/traefikservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/appmesh/v1beta1/expansion_generated.go b/pkg/client/listers/appmesh/v1beta1/expansion_generated.go index c3100366..ab5a3484 100644 --- a/pkg/client/listers/appmesh/v1beta1/expansion_generated.go +++ b/pkg/client/listers/appmesh/v1beta1/expansion_generated.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/appmesh/v1beta1/mesh.go b/pkg/client/listers/appmesh/v1beta1/mesh.go index 16a887b6..1dd1d92a 100644 --- a/pkg/client/listers/appmesh/v1beta1/mesh.go +++ b/pkg/client/listers/appmesh/v1beta1/mesh.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/appmesh/v1beta1/virtualnode.go b/pkg/client/listers/appmesh/v1beta1/virtualnode.go index 9e9ca9cb..b5b9c119 100644 --- a/pkg/client/listers/appmesh/v1beta1/virtualnode.go +++ b/pkg/client/listers/appmesh/v1beta1/virtualnode.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/appmesh/v1beta1/virtualservice.go b/pkg/client/listers/appmesh/v1beta1/virtualservice.go index 1c26595b..146fa41c 100644 --- a/pkg/client/listers/appmesh/v1beta1/virtualservice.go +++ b/pkg/client/listers/appmesh/v1beta1/virtualservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/appmesh/v1beta2/expansion_generated.go b/pkg/client/listers/appmesh/v1beta2/expansion_generated.go index c5778459..8c9a938c 100644 --- a/pkg/client/listers/appmesh/v1beta2/expansion_generated.go +++ b/pkg/client/listers/appmesh/v1beta2/expansion_generated.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/appmesh/v1beta2/virtualnode.go b/pkg/client/listers/appmesh/v1beta2/virtualnode.go index 15c86222..01d9dc65 100644 --- a/pkg/client/listers/appmesh/v1beta2/virtualnode.go +++ b/pkg/client/listers/appmesh/v1beta2/virtualnode.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/appmesh/v1beta2/virtualrouter.go b/pkg/client/listers/appmesh/v1beta2/virtualrouter.go index 5e1e8a2f..82b6378d 100644 --- a/pkg/client/listers/appmesh/v1beta2/virtualrouter.go +++ b/pkg/client/listers/appmesh/v1beta2/virtualrouter.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/appmesh/v1beta2/virtualservice.go b/pkg/client/listers/appmesh/v1beta2/virtualservice.go index 90162264..9459c484 100644 --- a/pkg/client/listers/appmesh/v1beta2/virtualservice.go +++ b/pkg/client/listers/appmesh/v1beta2/virtualservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/flagger/v1beta1/alertprovider.go b/pkg/client/listers/flagger/v1beta1/alertprovider.go index 2e1459f7..419d3326 100644 --- a/pkg/client/listers/flagger/v1beta1/alertprovider.go +++ b/pkg/client/listers/flagger/v1beta1/alertprovider.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/flagger/v1beta1/canary.go b/pkg/client/listers/flagger/v1beta1/canary.go index 6929af96..45b26700 100644 --- a/pkg/client/listers/flagger/v1beta1/canary.go +++ b/pkg/client/listers/flagger/v1beta1/canary.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/flagger/v1beta1/expansion_generated.go b/pkg/client/listers/flagger/v1beta1/expansion_generated.go index d26fc6d2..2e6e7ee3 100644 --- a/pkg/client/listers/flagger/v1beta1/expansion_generated.go +++ b/pkg/client/listers/flagger/v1beta1/expansion_generated.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/flagger/v1beta1/metrictemplate.go b/pkg/client/listers/flagger/v1beta1/metrictemplate.go index 875d1cb2..396da956 100644 --- a/pkg/client/listers/flagger/v1beta1/metrictemplate.go +++ b/pkg/client/listers/flagger/v1beta1/metrictemplate.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/gloo/v1/expansion_generated.go b/pkg/client/listers/gloo/v1/expansion_generated.go index aee9e464..3e8810cc 100644 --- a/pkg/client/listers/gloo/v1/expansion_generated.go +++ b/pkg/client/listers/gloo/v1/expansion_generated.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/gloo/v1/upstreamgroup.go b/pkg/client/listers/gloo/v1/upstreamgroup.go index cd6a4665..430a31e5 100644 --- a/pkg/client/listers/gloo/v1/upstreamgroup.go +++ b/pkg/client/listers/gloo/v1/upstreamgroup.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/istio/v1alpha3/destinationrule.go b/pkg/client/listers/istio/v1alpha3/destinationrule.go index bbf329b9..bac14669 100644 --- a/pkg/client/listers/istio/v1alpha3/destinationrule.go +++ b/pkg/client/listers/istio/v1alpha3/destinationrule.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/istio/v1alpha3/expansion_generated.go b/pkg/client/listers/istio/v1alpha3/expansion_generated.go index 6c0921d5..3438c697 100644 --- a/pkg/client/listers/istio/v1alpha3/expansion_generated.go +++ b/pkg/client/listers/istio/v1alpha3/expansion_generated.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/istio/v1alpha3/virtualservice.go b/pkg/client/listers/istio/v1alpha3/virtualservice.go index ba1a7707..ff496b56 100644 --- a/pkg/client/listers/istio/v1alpha3/virtualservice.go +++ b/pkg/client/listers/istio/v1alpha3/virtualservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/projectcontour/v1/expansion_generated.go b/pkg/client/listers/projectcontour/v1/expansion_generated.go index c65e0392..f6d3ef16 100644 --- a/pkg/client/listers/projectcontour/v1/expansion_generated.go +++ b/pkg/client/listers/projectcontour/v1/expansion_generated.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/projectcontour/v1/httpproxy.go b/pkg/client/listers/projectcontour/v1/httpproxy.go index da0e8b9e..7e9119eb 100644 --- a/pkg/client/listers/projectcontour/v1/httpproxy.go +++ b/pkg/client/listers/projectcontour/v1/httpproxy.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/smi/v1alpha1/expansion_generated.go b/pkg/client/listers/smi/v1alpha1/expansion_generated.go index 271ee243..fa440f1e 100644 --- a/pkg/client/listers/smi/v1alpha1/expansion_generated.go +++ b/pkg/client/listers/smi/v1alpha1/expansion_generated.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/smi/v1alpha1/trafficsplit.go b/pkg/client/listers/smi/v1alpha1/trafficsplit.go index 6f189cbb..6f08be66 100644 --- a/pkg/client/listers/smi/v1alpha1/trafficsplit.go +++ b/pkg/client/listers/smi/v1alpha1/trafficsplit.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/smi/v1alpha2/expansion_generated.go b/pkg/client/listers/smi/v1alpha2/expansion_generated.go index 94025c94..260226f1 100644 --- a/pkg/client/listers/smi/v1alpha2/expansion_generated.go +++ b/pkg/client/listers/smi/v1alpha2/expansion_generated.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/smi/v1alpha2/trafficsplit.go b/pkg/client/listers/smi/v1alpha2/trafficsplit.go index 085caa6c..b9966201 100644 --- a/pkg/client/listers/smi/v1alpha2/trafficsplit.go +++ b/pkg/client/listers/smi/v1alpha2/trafficsplit.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/traefik/v1alpha1/expansion_generated.go b/pkg/client/listers/traefik/v1alpha1/expansion_generated.go index cb41928e..b9ce400f 100644 --- a/pkg/client/listers/traefik/v1alpha1/expansion_generated.go +++ b/pkg/client/listers/traefik/v1alpha1/expansion_generated.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/listers/traefik/v1alpha1/traefikservice.go b/pkg/client/listers/traefik/v1alpha1/traefikservice.go index 16978f1a..7c103e31 100644 --- a/pkg/client/listers/traefik/v1alpha1/traefikservice.go +++ b/pkg/client/listers/traefik/v1alpha1/traefikservice.go @@ -1,5 +1,5 @@ /* -Copyright The Flagger Authors. +Copyright 2020 The Flux 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/controller/controller.go b/pkg/controller/controller.go index 799c8945..aad82e4c 100644 --- a/pkg/controller/controller.go +++ b/pkg/controller/controller.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/events.go b/pkg/controller/events.go index 16a45288..1b1d6e3e 100644 --- a/pkg/controller/events.go +++ b/pkg/controller/events.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/finalizer.go b/pkg/controller/finalizer.go index 677a3a95..92503dc9 100644 --- a/pkg/controller/finalizer.go +++ b/pkg/controller/finalizer.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/finalizer_test.go b/pkg/controller/finalizer_test.go index 4be7db78..0d2827bf 100644 --- a/pkg/controller/finalizer_test.go +++ b/pkg/controller/finalizer_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/job.go b/pkg/controller/job.go index 0b54ea56..83227be7 100644 --- a/pkg/controller/job.go +++ b/pkg/controller/job.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import "time" diff --git a/pkg/controller/scheduler.go b/pkg/controller/scheduler.go index ea613700..36b8759a 100644 --- a/pkg/controller/scheduler.go +++ b/pkg/controller/scheduler.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/scheduler_daemonset_fixture_test.go b/pkg/controller/scheduler_daemonset_fixture_test.go index b2b2ca64..e0ac8ba8 100644 --- a/pkg/controller/scheduler_daemonset_fixture_test.go +++ b/pkg/controller/scheduler_daemonset_fixture_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/scheduler_daemonset_test.go b/pkg/controller/scheduler_daemonset_test.go index 01b62c3d..e7677669 100644 --- a/pkg/controller/scheduler_daemonset_test.go +++ b/pkg/controller/scheduler_daemonset_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/scheduler_deployment_fixture_test.go b/pkg/controller/scheduler_deployment_fixture_test.go index 7861bfa6..6fb5c89e 100644 --- a/pkg/controller/scheduler_deployment_fixture_test.go +++ b/pkg/controller/scheduler_deployment_fixture_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/scheduler_deployment_test.go b/pkg/controller/scheduler_deployment_test.go index 9e3f4796..cf1fd0ff 100644 --- a/pkg/controller/scheduler_deployment_test.go +++ b/pkg/controller/scheduler_deployment_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/scheduler_hooks.go b/pkg/controller/scheduler_hooks.go index f3b7df75..d535cdd9 100644 --- a/pkg/controller/scheduler_hooks.go +++ b/pkg/controller/scheduler_hooks.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/scheduler_metrics.go b/pkg/controller/scheduler_metrics.go index 46e132c9..9e94f770 100644 --- a/pkg/controller/scheduler_metrics.go +++ b/pkg/controller/scheduler_metrics.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/scheduler_metrics_test.go b/pkg/controller/scheduler_metrics_test.go index e8335e82..81ec50cc 100644 --- a/pkg/controller/scheduler_metrics_test.go +++ b/pkg/controller/scheduler_metrics_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/scheduler_svc_test.go b/pkg/controller/scheduler_svc_test.go index 6add255c..4cad2a22 100644 --- a/pkg/controller/scheduler_svc_test.go +++ b/pkg/controller/scheduler_svc_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/scheduler_test.go b/pkg/controller/scheduler_test.go index a488b4c6..3f7d78a4 100644 --- a/pkg/controller/scheduler_test.go +++ b/pkg/controller/scheduler_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/webhook.go b/pkg/controller/webhook.go index 99a48647..300ae8ec 100644 --- a/pkg/controller/webhook.go +++ b/pkg/controller/webhook.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/controller/webhook_test.go b/pkg/controller/webhook_test.go index 329be41d..e8ee7654 100644 --- a/pkg/controller/webhook_test.go +++ b/pkg/controller/webhook_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controller import ( diff --git a/pkg/loadtester/bash.go b/pkg/loadtester/bash.go index 67064c20..22942b70 100644 --- a/pkg/loadtester/bash.go +++ b/pkg/loadtester/bash.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/loadtester/concord.go b/pkg/loadtester/concord.go index 0d0bc602..b392e97a 100644 --- a/pkg/loadtester/concord.go +++ b/pkg/loadtester/concord.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/loadtester/concord_test.go b/pkg/loadtester/concord_test.go index 9cd2ba2a..9f2940a1 100644 --- a/pkg/loadtester/concord_test.go +++ b/pkg/loadtester/concord_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/loadtester/gate.go b/pkg/loadtester/gate.go index fdacdd7e..32412489 100644 --- a/pkg/loadtester/gate.go +++ b/pkg/loadtester/gate.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import "sync" diff --git a/pkg/loadtester/helm.go b/pkg/loadtester/helm.go index 98b44b3e..b045e680 100644 --- a/pkg/loadtester/helm.go +++ b/pkg/loadtester/helm.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/loadtester/helmv3.go b/pkg/loadtester/helmv3.go index 90d3322d..29f3e1c8 100644 --- a/pkg/loadtester/helmv3.go +++ b/pkg/loadtester/helmv3.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/loadtester/runner.go b/pkg/loadtester/runner.go index 31f34467..a57fa4c9 100644 --- a/pkg/loadtester/runner.go +++ b/pkg/loadtester/runner.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/loadtester/runner_test.go b/pkg/loadtester/runner_test.go index 11829f1b..32fa4341 100644 --- a/pkg/loadtester/runner_test.go +++ b/pkg/loadtester/runner_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/loadtester/server.go b/pkg/loadtester/server.go index 9fd31575..e485018e 100644 --- a/pkg/loadtester/server.go +++ b/pkg/loadtester/server.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/loadtester/server_fixture_test.go b/pkg/loadtester/server_fixture_test.go index 1f7d248d..ae5ad263 100644 --- a/pkg/loadtester/server_fixture_test.go +++ b/pkg/loadtester/server_fixture_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/loadtester/server_test.go b/pkg/loadtester/server_test.go index 624e6a9e..281b770b 100644 --- a/pkg/loadtester/server_test.go +++ b/pkg/loadtester/server_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/loadtester/task.go b/pkg/loadtester/task.go index b17604b3..f9037a24 100644 --- a/pkg/loadtester/task.go +++ b/pkg/loadtester/task.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/loadtester/task_ngrinder.go b/pkg/loadtester/task_ngrinder.go index 488cbf28..0ee155b0 100644 --- a/pkg/loadtester/task_ngrinder.go +++ b/pkg/loadtester/task_ngrinder.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/loadtester/task_ngrinder_test.go b/pkg/loadtester/task_ngrinder_test.go index 52b5c441..7568e447 100644 --- a/pkg/loadtester/task_ngrinder_test.go +++ b/pkg/loadtester/task_ngrinder_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/loadtester/task_shell.go b/pkg/loadtester/task_shell.go index 6801be78..3db6f92b 100644 --- a/pkg/loadtester/task_shell.go +++ b/pkg/loadtester/task_shell.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package loadtester import ( diff --git a/pkg/logger/logger.go b/pkg/logger/logger.go index 87ba8d76..678ee3e3 100644 --- a/pkg/logger/logger.go +++ b/pkg/logger/logger.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package logger import ( diff --git a/pkg/metrics/observers/appmesh.go b/pkg/metrics/observers/appmesh.go index 9314ee78..f2900c92 100644 --- a/pkg/metrics/observers/appmesh.go +++ b/pkg/metrics/observers/appmesh.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/appmesh_test.go b/pkg/metrics/observers/appmesh_test.go index ee23ca47..bb4c5bff 100644 --- a/pkg/metrics/observers/appmesh_test.go +++ b/pkg/metrics/observers/appmesh_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/contour.go b/pkg/metrics/observers/contour.go index 92c8360c..2ccadbc9 100644 --- a/pkg/metrics/observers/contour.go +++ b/pkg/metrics/observers/contour.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/contour_test.go b/pkg/metrics/observers/contour_test.go index d19c0865..4c050b47 100644 --- a/pkg/metrics/observers/contour_test.go +++ b/pkg/metrics/observers/contour_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/factory.go b/pkg/metrics/observers/factory.go index 4d39cb75..901d5857 100644 --- a/pkg/metrics/observers/factory.go +++ b/pkg/metrics/observers/factory.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/gloo.go b/pkg/metrics/observers/gloo.go index 387a8c97..716c5c1f 100644 --- a/pkg/metrics/observers/gloo.go +++ b/pkg/metrics/observers/gloo.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/gloo_test.go b/pkg/metrics/observers/gloo_test.go index 320efae3..830e3a7d 100644 --- a/pkg/metrics/observers/gloo_test.go +++ b/pkg/metrics/observers/gloo_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/http.go b/pkg/metrics/observers/http.go index d5adc328..5f137d6c 100644 --- a/pkg/metrics/observers/http.go +++ b/pkg/metrics/observers/http.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/http_test.go b/pkg/metrics/observers/http_test.go index 54fe5344..09f78f9a 100644 --- a/pkg/metrics/observers/http_test.go +++ b/pkg/metrics/observers/http_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/istio.go b/pkg/metrics/observers/istio.go index 50acf231..5d564184 100644 --- a/pkg/metrics/observers/istio.go +++ b/pkg/metrics/observers/istio.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/istio_test.go b/pkg/metrics/observers/istio_test.go index 313df0f6..8dcfc410 100644 --- a/pkg/metrics/observers/istio_test.go +++ b/pkg/metrics/observers/istio_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/linkerd.go b/pkg/metrics/observers/linkerd.go index cb5bd3e0..37021b2a 100644 --- a/pkg/metrics/observers/linkerd.go +++ b/pkg/metrics/observers/linkerd.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/linkerd_test.go b/pkg/metrics/observers/linkerd_test.go index 8794829c..facfaebb 100644 --- a/pkg/metrics/observers/linkerd_test.go +++ b/pkg/metrics/observers/linkerd_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/nginx.go b/pkg/metrics/observers/nginx.go index 582477f7..c4f5f83b 100644 --- a/pkg/metrics/observers/nginx.go +++ b/pkg/metrics/observers/nginx.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/nginx_test.go b/pkg/metrics/observers/nginx_test.go index 0b68920e..5c3285d1 100644 --- a/pkg/metrics/observers/nginx_test.go +++ b/pkg/metrics/observers/nginx_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/observer.go b/pkg/metrics/observers/observer.go index 37d8a537..467660a7 100644 --- a/pkg/metrics/observers/observer.go +++ b/pkg/metrics/observers/observer.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/render.go b/pkg/metrics/observers/render.go index 7416be2e..7a8ff062 100644 --- a/pkg/metrics/observers/render.go +++ b/pkg/metrics/observers/render.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/skipper.go b/pkg/metrics/observers/skipper.go index 155c032c..31054f86 100644 --- a/pkg/metrics/observers/skipper.go +++ b/pkg/metrics/observers/skipper.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/skipper_test.go b/pkg/metrics/observers/skipper_test.go index 84b8ed41..8b7c8bf4 100644 --- a/pkg/metrics/observers/skipper_test.go +++ b/pkg/metrics/observers/skipper_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/traefik.go b/pkg/metrics/observers/traefik.go index 9836cafd..af4fa1cd 100644 --- a/pkg/metrics/observers/traefik.go +++ b/pkg/metrics/observers/traefik.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/observers/traefik_test.go b/pkg/metrics/observers/traefik_test.go index cb057d03..51086bbf 100644 --- a/pkg/metrics/observers/traefik_test.go +++ b/pkg/metrics/observers/traefik_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package observers import ( diff --git a/pkg/metrics/providers/cloudwatch.go b/pkg/metrics/providers/cloudwatch.go index d213f0d8..7aaa8fb9 100644 --- a/pkg/metrics/providers/cloudwatch.go +++ b/pkg/metrics/providers/cloudwatch.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package providers import ( diff --git a/pkg/metrics/providers/cloudwatch_test.go b/pkg/metrics/providers/cloudwatch_test.go index 31e77573..d799014d 100644 --- a/pkg/metrics/providers/cloudwatch_test.go +++ b/pkg/metrics/providers/cloudwatch_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package providers import ( diff --git a/pkg/metrics/providers/datadog.go b/pkg/metrics/providers/datadog.go index 455b7ee6..759e660b 100644 --- a/pkg/metrics/providers/datadog.go +++ b/pkg/metrics/providers/datadog.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package providers import ( diff --git a/pkg/metrics/providers/datadog_test.go b/pkg/metrics/providers/datadog_test.go index 35683f51..8bcb7aa0 100644 --- a/pkg/metrics/providers/datadog_test.go +++ b/pkg/metrics/providers/datadog_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package providers import ( diff --git a/pkg/metrics/providers/errors.go b/pkg/metrics/providers/errors.go index 90a6f01f..35512839 100644 --- a/pkg/metrics/providers/errors.go +++ b/pkg/metrics/providers/errors.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package providers import "errors" diff --git a/pkg/metrics/providers/factory.go b/pkg/metrics/providers/factory.go index 61b954ad..a575c82d 100644 --- a/pkg/metrics/providers/factory.go +++ b/pkg/metrics/providers/factory.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package providers import ( diff --git a/pkg/metrics/providers/newrelic.go b/pkg/metrics/providers/newrelic.go index 9b7cd526..5f90369e 100644 --- a/pkg/metrics/providers/newrelic.go +++ b/pkg/metrics/providers/newrelic.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package providers import ( diff --git a/pkg/metrics/providers/newrelic_test.go b/pkg/metrics/providers/newrelic_test.go index c5488162..fc2fbf26 100644 --- a/pkg/metrics/providers/newrelic_test.go +++ b/pkg/metrics/providers/newrelic_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package providers import ( diff --git a/pkg/metrics/providers/prometheus.go b/pkg/metrics/providers/prometheus.go index 5b9711cd..42719083 100644 --- a/pkg/metrics/providers/prometheus.go +++ b/pkg/metrics/providers/prometheus.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package providers import ( diff --git a/pkg/metrics/providers/prometheus_test.go b/pkg/metrics/providers/prometheus_test.go index ac1b5ce6..a0ad1a65 100644 --- a/pkg/metrics/providers/prometheus_test.go +++ b/pkg/metrics/providers/prometheus_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package providers import ( diff --git a/pkg/metrics/providers/provider.go b/pkg/metrics/providers/provider.go index e64bd947..6831c43e 100644 --- a/pkg/metrics/providers/provider.go +++ b/pkg/metrics/providers/provider.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package providers type Interface interface { diff --git a/pkg/metrics/recorder.go b/pkg/metrics/recorder.go index fb215983..fea9e330 100644 --- a/pkg/metrics/recorder.go +++ b/pkg/metrics/recorder.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package metrics import ( diff --git a/pkg/notifier/client.go b/pkg/notifier/client.go index b966368d..0e0f7495 100644 --- a/pkg/notifier/client.go +++ b/pkg/notifier/client.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package notifier import ( diff --git a/pkg/notifier/client_test.go b/pkg/notifier/client_test.go index 8682df9e..022dbfb3 100644 --- a/pkg/notifier/client_test.go +++ b/pkg/notifier/client_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package notifier import ( diff --git a/pkg/notifier/discord.go b/pkg/notifier/discord.go index 61e45346..0f6553df 100644 --- a/pkg/notifier/discord.go +++ b/pkg/notifier/discord.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package notifier import ( diff --git a/pkg/notifier/discord_test.go b/pkg/notifier/discord_test.go index e409dac6..bc33a5a1 100644 --- a/pkg/notifier/discord_test.go +++ b/pkg/notifier/discord_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package notifier import ( diff --git a/pkg/notifier/factory.go b/pkg/notifier/factory.go index 3aad5806..bc4ab46c 100644 --- a/pkg/notifier/factory.go +++ b/pkg/notifier/factory.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package notifier import ( diff --git a/pkg/notifier/nop.go b/pkg/notifier/nop.go index b8eced3b..58f3d3b7 100644 --- a/pkg/notifier/nop.go +++ b/pkg/notifier/nop.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package notifier type NopNotifier struct{} diff --git a/pkg/notifier/notifier.go b/pkg/notifier/notifier.go index 4b7fd977..4f26700d 100644 --- a/pkg/notifier/notifier.go +++ b/pkg/notifier/notifier.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package notifier type Interface interface { diff --git a/pkg/notifier/rocket.go b/pkg/notifier/rocket.go index d15fef89..dff6f142 100644 --- a/pkg/notifier/rocket.go +++ b/pkg/notifier/rocket.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package notifier import ( diff --git a/pkg/notifier/rocket_test.go b/pkg/notifier/rocket_test.go index 7ad99cc1..bd45e7ec 100644 --- a/pkg/notifier/rocket_test.go +++ b/pkg/notifier/rocket_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package notifier import ( diff --git a/pkg/notifier/slack.go b/pkg/notifier/slack.go index 88e4fb5e..50688dad 100644 --- a/pkg/notifier/slack.go +++ b/pkg/notifier/slack.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package notifier import ( diff --git a/pkg/notifier/slack_test.go b/pkg/notifier/slack_test.go index a235bb6b..add5f57f 100644 --- a/pkg/notifier/slack_test.go +++ b/pkg/notifier/slack_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package notifier import ( diff --git a/pkg/notifier/teams.go b/pkg/notifier/teams.go index 7acc6054..c97833c5 100644 --- a/pkg/notifier/teams.go +++ b/pkg/notifier/teams.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package notifier import ( diff --git a/pkg/notifier/teams_test.go b/pkg/notifier/teams_test.go index 270d492e..191c7799 100644 --- a/pkg/notifier/teams_test.go +++ b/pkg/notifier/teams_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package notifier import ( diff --git a/pkg/router/appmesh.go b/pkg/router/appmesh.go index 0936b5f8..8f8300ea 100644 --- a/pkg/router/appmesh.go +++ b/pkg/router/appmesh.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/appmesh_test.go b/pkg/router/appmesh_test.go index 80470749..b983935f 100644 --- a/pkg/router/appmesh_test.go +++ b/pkg/router/appmesh_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/appmesh_v1beta2.go b/pkg/router/appmesh_v1beta2.go index 3cd3a332..20e06916 100644 --- a/pkg/router/appmesh_v1beta2.go +++ b/pkg/router/appmesh_v1beta2.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/appmesh_v1beta2_test.go b/pkg/router/appmesh_v1beta2_test.go index 473a368d..b41162ae 100644 --- a/pkg/router/appmesh_v1beta2_test.go +++ b/pkg/router/appmesh_v1beta2_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/contour.go b/pkg/router/contour.go index 4ada17fd..18ddabef 100644 --- a/pkg/router/contour.go +++ b/pkg/router/contour.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/contour_test.go b/pkg/router/contour_test.go index abb6562d..c54f9c52 100644 --- a/pkg/router/contour_test.go +++ b/pkg/router/contour_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/factory.go b/pkg/router/factory.go index 6ad89e64..a9f2fbc4 100644 --- a/pkg/router/factory.go +++ b/pkg/router/factory.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/gloo.go b/pkg/router/gloo.go index 25056043..86e97193 100644 --- a/pkg/router/gloo.go +++ b/pkg/router/gloo.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/gloo_test.go b/pkg/router/gloo_test.go index e3306a32..13f97e41 100644 --- a/pkg/router/gloo_test.go +++ b/pkg/router/gloo_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/ingress.go b/pkg/router/ingress.go index b0123a5b..d53594d1 100644 --- a/pkg/router/ingress.go +++ b/pkg/router/ingress.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/ingress_test.go b/pkg/router/ingress_test.go index ab760d99..81d24d27 100644 --- a/pkg/router/ingress_test.go +++ b/pkg/router/ingress_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/istio.go b/pkg/router/istio.go index 3ee4b9f8..a42b6e6d 100644 --- a/pkg/router/istio.go +++ b/pkg/router/istio.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/istio_test.go b/pkg/router/istio_test.go index 5cd14f3f..350acc57 100644 --- a/pkg/router/istio_test.go +++ b/pkg/router/istio_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/kubernetes.go b/pkg/router/kubernetes.go index f97bc31a..78305144 100644 --- a/pkg/router/kubernetes.go +++ b/pkg/router/kubernetes.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/kubernetes_default.go b/pkg/router/kubernetes_default.go index ad5374b9..a289ae3a 100644 --- a/pkg/router/kubernetes_default.go +++ b/pkg/router/kubernetes_default.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/kubernetes_default_test.go b/pkg/router/kubernetes_default_test.go index 051e1fb8..4121199c 100644 --- a/pkg/router/kubernetes_default_test.go +++ b/pkg/router/kubernetes_default_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/kubernetes_noop.go b/pkg/router/kubernetes_noop.go index 93dffb6c..41e32995 100644 --- a/pkg/router/kubernetes_noop.go +++ b/pkg/router/kubernetes_noop.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/nop.go b/pkg/router/nop.go index aab6d7a0..a290c28d 100644 --- a/pkg/router/nop.go +++ b/pkg/router/nop.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/router.go b/pkg/router/router.go index 426912c0..55fd83ed 100644 --- a/pkg/router/router.go +++ b/pkg/router/router.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import flaggerv1 "github.com/fluxcd/flagger/pkg/apis/flagger/v1beta1" diff --git a/pkg/router/router_test.go b/pkg/router/router_test.go index a9047b6e..c6e2de9c 100644 --- a/pkg/router/router_test.go +++ b/pkg/router/router_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/skipper.go b/pkg/router/skipper.go index 3a48a2b6..a33208ab 100644 --- a/pkg/router/skipper.go +++ b/pkg/router/skipper.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/skipper_test.go b/pkg/router/skipper_test.go index 6301af57..3b96f0bc 100644 --- a/pkg/router/skipper_test.go +++ b/pkg/router/skipper_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/smi.go b/pkg/router/smi.go index b803c0bc..45f96e4f 100644 --- a/pkg/router/smi.go +++ b/pkg/router/smi.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/smi_test.go b/pkg/router/smi_test.go index ea605722..e89e4892 100644 --- a/pkg/router/smi_test.go +++ b/pkg/router/smi_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/traefik.go b/pkg/router/traefik.go index bbc594c0..b502d0a1 100644 --- a/pkg/router/traefik.go +++ b/pkg/router/traefik.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/router/traefik_test.go b/pkg/router/traefik_test.go index 077c17fe..69d9a40d 100644 --- a/pkg/router/traefik_test.go +++ b/pkg/router/traefik_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package router import ( diff --git a/pkg/server/server.go b/pkg/server/server.go index b4ba1687..868a7dab 100644 --- a/pkg/server/server.go +++ b/pkg/server/server.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package server import ( diff --git a/pkg/version/version.go b/pkg/version/version.go index 2caecdcf..a7716a41 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,3 +1,19 @@ +/* +Copyright 2020 The Flux authors + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package version var VERSION = "1.4.2"