From 19db81f5a9c9bc417773af9927fa0bf02d12616b Mon Sep 17 00:00:00 2001 From: Joe Kratzat Date: Wed, 4 May 2022 10:54:18 -0400 Subject: [PATCH] docs: Content changes to merge after transfer to Kubernetes SIGs Update copyright and add kubernetes-template files before donating to kubernetes-sigs As part of https://github.com/kubernetes/community/blob/master/github-management/kubernetes-repositories.md#rules-for-donated-repositories we need to make sure our project contains template files as per the https://github.com/kubernetes/kubernetes-template-project --- OWNERS | 11 ++++ LICENSE.txt => LICENSE | 0 Makefile | 4 +- NOTICE.txt | 13 ---- OWNERS_ALIASES | 25 ++++++++ RELEASE.md | 9 +++ SECURITY.md | 62 +++++++------------ SECURITY_CONTACTS | 14 +++++ api/v1beta1/conditions_consts.go | 20 +++--- api/v1beta1/groupversion_info.go | 2 +- api/v1beta1/ocicluster_types.go | 2 +- api/v1beta1/ocicluster_webhook.go | 31 +++++----- api/v1beta1/ocicluster_webhook_test.go | 31 +++++----- api/v1beta1/ociclustertemplate_types.go | 2 +- api/v1beta1/ocimachine_types.go | 2 +- api/v1beta1/ocimachinetemplate_types.go | 20 +++--- api/v1beta1/ocimachinetemplate_webhook.go | 31 +++++----- .../ocimachinetemplate_webhook_test.go | 31 +++++----- api/v1beta1/types.go | 20 +++--- api/v1beta1/validator.go | 31 +++++----- api/v1beta1/zz_generated.deepcopy.go | 2 +- cloud/ociutil/ociutil.go | 20 +++--- cloud/ociutil/ociutil_test.go | 20 +++--- cloud/scope/clients.go | 2 +- cloud/scope/clients_mock.go | 2 +- cloud/scope/clients_test.go | 2 +- cloud/scope/cluster.go | 20 +++--- cloud/scope/cluster_client.go | 16 +++++ cloud/scope/cluster_test.go | 20 +++--- cloud/scope/defaults.go | 20 +++--- cloud/scope/drg_reconciler.go | 20 +++--- cloud/scope/drg_reconciler_test.go | 20 +++--- cloud/scope/drg_rpc_attachment_reconciler.go | 20 +++--- .../drg_rpc_attachment_reconciler_test.go | 20 +++--- cloud/scope/drg_vcn_attachment_reconciler.go | 20 +++--- .../drg_vcn_attachment_reconciler_test.go | 20 +++--- cloud/scope/internet_gateway_reconciler.go | 20 +++--- .../scope/internet_gateway_reconciler_test.go | 20 +++--- cloud/scope/load_balancer_reconciler.go | 20 +++--- cloud/scope/load_balancer_reconciler_test.go | 20 +++--- cloud/scope/machine.go | 20 +++--- cloud/scope/machine_test.go | 20 +++--- cloud/scope/nat_gateway_reconciler.go | 20 +++--- cloud/scope/nat_gateway_reconciler_test.go | 20 +++--- cloud/scope/nsg_reconciler.go | 20 +++--- cloud/scope/nsg_reconciler_test.go | 20 +++--- cloud/scope/route_table_reconciler.go | 20 +++--- cloud/scope/route_table_reconciler_test.go | 20 +++--- cloud/scope/security_list_reconciler.go | 20 +++--- cloud/scope/security_list_reconciler_test.go | 20 +++--- cloud/scope/service_gateway_reconciler.go | 20 +++--- .../scope/service_gateway_reconciler_test.go | 20 +++--- cloud/scope/subnet_reconciler.go | 20 +++--- cloud/scope/subnet_reconciler_test.go | 20 +++--- cloud/scope/suite_test.go | 2 +- cloud/scope/vcn_reconciler.go | 20 +++--- cloud/scope/vcn_reconciler_test.go | 20 +++--- cloud/services/compute/client.go | 20 +++--- cloud/services/identity/client.go | 20 +++--- cloud/services/networkloadbalancer/client.go | 20 +++--- cloud/services/vcn/client.go | 20 +++--- code-of-conduct.md | 3 + config/default/manager_image_patch.yaml | 2 +- controllers/ocicluster_controller.go | 2 +- controllers/ocicluster_controller_test.go | 16 +++++ controllers/ocimachine_controller.go | 2 +- controllers/ocimachine_controller_test.go | 20 +++--- controllers/suite_test.go | 2 +- exp/api/v1beta1/conditions_consts.go | 2 +- exp/api/v1beta1/groupversion_type.go | 2 +- exp/api/v1beta1/ocimachinepool_types.go | 2 +- exp/api/v1beta1/zz_generated.deepcopy.go | 2 +- exp/controllers/ocimachinepool_controller.go | 31 +++++----- hack/boilerplate.go.txt | 2 +- hack/ensure-go.sh | 14 ++++- hack/ensure-kind.sh | 14 ++++- hack/ensure-kubectl.sh | 14 ++++- hack/ensure-tags.sh | 14 ++++- hack/version.sh | 14 ++++- main.go | 2 +- test/e2e/capi_test.go | 20 +++--- test/e2e/ccm_helpers.go | 20 +++--- test/e2e/cluster_test.go | 20 +++--- test/e2e/common.go | 20 +++--- test/e2e/conformance_test.go | 20 +++--- test/e2e/e2e_suite_test.go | 20 +++--- test/e2e/log.go | 20 +++--- test/e2e/upgrade_test.go | 20 +++--- 88 files changed, 755 insertions(+), 652 deletions(-) create mode 100644 OWNERS rename LICENSE.txt => LICENSE (100%) delete mode 100644 NOTICE.txt create mode 100644 OWNERS_ALIASES create mode 100644 RELEASE.md create mode 100644 SECURITY_CONTACTS create mode 100644 code-of-conduct.md diff --git a/ OWNERS b/ OWNERS new file mode 100644 index 000000000..e03528420 --- /dev/null +++ b/ OWNERS @@ -0,0 +1,11 @@ +# See the OWNERS docs: https://git.k8s.io/community/contributors/guide/owners.md + +approvers: + - sig-cluster-lifecycle-leads + - cluster-api-admins + - cluster-api-maintainers + - cluster-api-oci-maintainers + +reviewers: + - cluster-api-oci-maintainers + - cluster-api-oci-reviewers diff --git a/LICENSE.txt b/LICENSE similarity index 100% rename from LICENSE.txt rename to LICENSE diff --git a/Makefile b/Makefile index c49bb76d6..54c902184 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,4 @@ -# -# Copyright (c) 2021, 2022 Oracle and/or its affiliates. +# Copyright 2022 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -12,7 +11,6 @@ # 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. -# SHELL:=/usr/bin/env bash diff --git a/NOTICE.txt b/NOTICE.txt deleted file mode 100644 index 0db45e6f7..000000000 --- a/NOTICE.txt +++ /dev/null @@ -1,13 +0,0 @@ -Copyright 2022 Oracle and/or its affiliates. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. diff --git a/OWNERS_ALIASES b/OWNERS_ALIASES new file mode 100644 index 000000000..d8a0b5663 --- /dev/null +++ b/OWNERS_ALIASES @@ -0,0 +1,25 @@ +# See the OWNERS_ALIASES docs: https://git.k8s.io/community/contributors/guide/owners.md#owners_aliases + +aliases: + sig-cluster-lifecycle-leads: + - fabriziopandini + - justinsb + - neolit123 + - timothysc + cluster-api-admins: + - CecileRobertMichon + - vincepri + cluster-api-maintainers: + - CecileRobertMichon + - enxebre + - fabriziopandini + - sbueringer + - vincepri + cluster-api-oci-maintainers: + - shyamradhakrishnan + - arindam-bandyopadhyay + - joekr + cluster-api-oci-reviewers: + - shyamradhakrishnan + - arindam-bandyopadhyay + - joekr \ No newline at end of file diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 000000000..7274b344e --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,9 @@ +# Release Process + +The Kubernetes Template Project is released on an as-needed basis. The process is as follows: + +1. An issue is proposing a new release with a changelog since the last release +1. All [OWNERS](OWNERS) must LGTM this release +1. An OWNER runs `git tag -s $VERSION` and inserts the changelog and pushes the tag with `git push $VERSION` +1. The release issue is closed +1. An announcement email is sent to `kubernetes-dev@googlegroups.com` with the subject `[ANNOUNCE] kubernetes-template-project $VERSION is released` diff --git a/SECURITY.md b/SECURITY.md index 3c4ad917a..2083d44cd 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,40 +1,22 @@ -# Reporting security vulnerabilities - -Oracle values the independent security research community and believes that -responsible disclosure of security vulnerabilities helps us ensure the security -and privacy of all our users. - -Please do NOT raise a GitHub Issue to report a security vulnerability. If you -believe you have found a security vulnerability, please submit a report to -[secalert_us@oracle.com][1] preferably with a proof of concept. Please review -some additional information on [how to report security vulnerabilities to Oracle][2]. -We encourage people who contact Oracle Security to use email encryption using -[our encryption key][3]. - -We ask that you do not use other channels or contact the project maintainers -directly. - -Non-vulnerability related security issues including ideas for new or improved -security features are welcome on GitHub Issues. - -## Security updates, alerts and bulletins - -Security updates will be released on a regular cadence. Many of our projects -will typically release security fixes in conjunction with the -[Oracle Critical Patch Update][3] program. Security updates are released on the -Tuesday closest to the 17th day of January, April, July and October. A pre-release -announcement will be published on the Thursday preceding each release. Additional -information, including past advisories, is available on our [security alerts][4] -page. - -## Security-related information - -We will provide security related information such as a threat model, considerations -for secure use, or any known security issues in our documentation. Please note -that labs and sample code are intended to demonstrate a concept and may not be -sufficiently hardened for production use. - -[1]: mailto:secalert_us@oracle.com -[2]: https://www.oracle.com/corporate/security-practices/assurance/vulnerability/reporting.html -[3]: https://www.oracle.com/security-alerts/encryptionkey.html -[4]: https://www.oracle.com/security-alerts/ +# Security Policy + +## Security Announcements + +Join the [kubernetes-security-announce] group for security and vulnerability announcements. + +You can also subscribe to an RSS feed of the above using [this link][kubernetes-security-announce-rss]. + +## Reporting a Vulnerability + +Instructions for reporting a vulnerability can be found on the +[Kubernetes Security and Disclosure Information] page. + +## Supported Versions + +Information about supported Kubernetes versions can be found on the +[Kubernetes version and version skew support policy] page on the Kubernetes website. + +[kubernetes-security-announce]: https://groups.google.com/forum/#!forum/kubernetes-security-announce +[kubernetes-security-announce-rss]: https://groups.google.com/forum/feed/kubernetes-security-announce/msgs/rss_v2_0.xml?num=50 +[Kubernetes version and version skew support policy]: https://kubernetes.io/docs/setup/release/version-skew-policy/#supported-versions +[Kubernetes Security and Disclosure Information]: https://kubernetes.io/docs/reference/issues-security/security/#report-a-vulnerability diff --git a/SECURITY_CONTACTS b/SECURITY_CONTACTS new file mode 100644 index 000000000..e3ab5b7bf --- /dev/null +++ b/SECURITY_CONTACTS @@ -0,0 +1,14 @@ +# Defined below are the security contacts for this repo. +# +# They are the contact point for the Security Response Committee to reach out +# to for triaging and handling of incoming issues. +# +# The below names agree to abide by the +# [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy) +# and will be removed and replaced if they violate that agreement. +# +# DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE +# INSTRUCTIONS AT https://kubernetes.io/security/ + +shyamradhakrishnan +joekr \ No newline at end of file diff --git a/api/v1beta1/conditions_consts.go b/api/v1beta1/conditions_consts.go index b33dc46d6..336711dc7 100644 --- a/api/v1beta1/conditions_consts.go +++ b/api/v1beta1/conditions_consts.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 v1beta1 diff --git a/api/v1beta1/groupversion_info.go b/api/v1beta1/groupversion_info.go index b472ee3f2..fc5034090 100644 --- a/api/v1beta1/groupversion_info.go +++ b/api/v1beta1/groupversion_info.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/api/v1beta1/ocicluster_types.go b/api/v1beta1/ocicluster_types.go index 0359ab3bc..6ac95c98f 100644 --- a/api/v1beta1/ocicluster_types.go +++ b/api/v1beta1/ocicluster_types.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/api/v1beta1/ocicluster_webhook.go b/api/v1beta1/ocicluster_webhook.go index dfa3bf1cb..417971975 100644 --- a/api/v1beta1/ocicluster_webhook.go +++ b/api/v1beta1/ocicluster_webhook.go @@ -1,21 +1,18 @@ /* - * - * Copyright (c) 2022, Oracle and/or its affiliates. - * - * 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. - * / - * - */ +Copyright 2022 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package v1beta1 diff --git a/api/v1beta1/ocicluster_webhook_test.go b/api/v1beta1/ocicluster_webhook_test.go index 27736941f..1c70d0e62 100644 --- a/api/v1beta1/ocicluster_webhook_test.go +++ b/api/v1beta1/ocicluster_webhook_test.go @@ -1,21 +1,18 @@ /* - * - * Copyright (c) 2022, Oracle and/or its affiliates. - * - * 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. - * / - * - */ +Copyright 2022 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package v1beta1 diff --git a/api/v1beta1/ociclustertemplate_types.go b/api/v1beta1/ociclustertemplate_types.go index b5fab31c0..6a22f9c11 100644 --- a/api/v1beta1/ociclustertemplate_types.go +++ b/api/v1beta1/ociclustertemplate_types.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2022, Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/api/v1beta1/ocimachine_types.go b/api/v1beta1/ocimachine_types.go index 869051645..dd73c219c 100644 --- a/api/v1beta1/ocimachine_types.go +++ b/api/v1beta1/ocimachine_types.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/api/v1beta1/ocimachinetemplate_types.go b/api/v1beta1/ocimachinetemplate_types.go index e7a90d1ea..cddd585af 100644 --- a/api/v1beta1/ocimachinetemplate_types.go +++ b/api/v1beta1/ocimachinetemplate_types.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 v1beta1 diff --git a/api/v1beta1/ocimachinetemplate_webhook.go b/api/v1beta1/ocimachinetemplate_webhook.go index 85ffbdb57..ce8cb8893 100644 --- a/api/v1beta1/ocimachinetemplate_webhook.go +++ b/api/v1beta1/ocimachinetemplate_webhook.go @@ -1,21 +1,18 @@ /* - * - * Copyright (c) 2022, Oracle and/or its affiliates. - * - * 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. - * / - * - */ +Copyright 2022 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package v1beta1 diff --git a/api/v1beta1/ocimachinetemplate_webhook_test.go b/api/v1beta1/ocimachinetemplate_webhook_test.go index f69802884..4445144e6 100644 --- a/api/v1beta1/ocimachinetemplate_webhook_test.go +++ b/api/v1beta1/ocimachinetemplate_webhook_test.go @@ -1,21 +1,18 @@ /* - * - * Copyright (c) 2022, Oracle and/or its affiliates. - * - * 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. - * / - * - */ +Copyright 2022 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package v1beta1 diff --git a/api/v1beta1/types.go b/api/v1beta1/types.go index 73f5a7f30..48a421183 100644 --- a/api/v1beta1/types.go +++ b/api/v1beta1/types.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 v1beta1 diff --git a/api/v1beta1/validator.go b/api/v1beta1/validator.go index 046c6e324..ff58f94e8 100644 --- a/api/v1beta1/validator.go +++ b/api/v1beta1/validator.go @@ -1,21 +1,18 @@ /* - * - * Copyright (c) 2022, Oracle and/or its affiliates. - * - * 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. - * / - * - */ +Copyright 2022 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package v1beta1 diff --git a/api/v1beta1/zz_generated.deepcopy.go b/api/v1beta1/zz_generated.deepcopy.go index bdae014be..b5c28d5e3 100644 --- a/api/v1beta1/zz_generated.deepcopy.go +++ b/api/v1beta1/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated /* -Copyright (c) 2022, Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/cloud/ociutil/ociutil.go b/cloud/ociutil/ociutil.go index f42a9d6a2..1f7bc8a9b 100644 --- a/cloud/ociutil/ociutil.go +++ b/cloud/ociutil/ociutil.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 ociutil diff --git a/cloud/ociutil/ociutil_test.go b/cloud/ociutil/ociutil_test.go index fbc6f365c..70530c8c9 100644 --- a/cloud/ociutil/ociutil_test.go +++ b/cloud/ociutil/ociutil_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 ociutil diff --git a/cloud/scope/clients.go b/cloud/scope/clients.go index 9d481fae3..e222a79c2 100644 --- a/cloud/scope/clients.go +++ b/cloud/scope/clients.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2022, Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/cloud/scope/clients_mock.go b/cloud/scope/clients_mock.go index f153baeb3..5f5df1e2b 100644 --- a/cloud/scope/clients_mock.go +++ b/cloud/scope/clients_mock.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2022, Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/cloud/scope/clients_test.go b/cloud/scope/clients_test.go index d6032f399..728b4fe62 100644 --- a/cloud/scope/clients_test.go +++ b/cloud/scope/clients_test.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2022, Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/cloud/scope/cluster.go b/cloud/scope/cluster.go index 854b6a8c8..ddd1bfc13 100644 --- a/cloud/scope/cluster.go +++ b/cloud/scope/cluster.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/cluster_client.go b/cloud/scope/cluster_client.go index 854adefaf..5003e46ec 100644 --- a/cloud/scope/cluster_client.go +++ b/cloud/scope/cluster_client.go @@ -1,3 +1,19 @@ +/* +Copyright 2022 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package scope import ( diff --git a/cloud/scope/cluster_test.go b/cloud/scope/cluster_test.go index 9d6625d69..e3d95f265 100644 --- a/cloud/scope/cluster_test.go +++ b/cloud/scope/cluster_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/defaults.go b/cloud/scope/defaults.go index 60e6b3f1e..871b7bb89 100644 --- a/cloud/scope/defaults.go +++ b/cloud/scope/defaults.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/drg_reconciler.go b/cloud/scope/drg_reconciler.go index 00eb1a6e8..963c8cbce 100644 --- a/cloud/scope/drg_reconciler.go +++ b/cloud/scope/drg_reconciler.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/drg_reconciler_test.go b/cloud/scope/drg_reconciler_test.go index 66738703f..0f2afe7fe 100644 --- a/cloud/scope/drg_reconciler_test.go +++ b/cloud/scope/drg_reconciler_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/drg_rpc_attachment_reconciler.go b/cloud/scope/drg_rpc_attachment_reconciler.go index 7930bf38a..8d1e5e83d 100644 --- a/cloud/scope/drg_rpc_attachment_reconciler.go +++ b/cloud/scope/drg_rpc_attachment_reconciler.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/drg_rpc_attachment_reconciler_test.go b/cloud/scope/drg_rpc_attachment_reconciler_test.go index db20d3830..a7b2ece25 100644 --- a/cloud/scope/drg_rpc_attachment_reconciler_test.go +++ b/cloud/scope/drg_rpc_attachment_reconciler_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/drg_vcn_attachment_reconciler.go b/cloud/scope/drg_vcn_attachment_reconciler.go index 75eb2e5d4..9983d6c71 100644 --- a/cloud/scope/drg_vcn_attachment_reconciler.go +++ b/cloud/scope/drg_vcn_attachment_reconciler.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/drg_vcn_attachment_reconciler_test.go b/cloud/scope/drg_vcn_attachment_reconciler_test.go index 209cfb88a..8b1cba434 100644 --- a/cloud/scope/drg_vcn_attachment_reconciler_test.go +++ b/cloud/scope/drg_vcn_attachment_reconciler_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/internet_gateway_reconciler.go b/cloud/scope/internet_gateway_reconciler.go index 240444e43..bb256005c 100644 --- a/cloud/scope/internet_gateway_reconciler.go +++ b/cloud/scope/internet_gateway_reconciler.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/internet_gateway_reconciler_test.go b/cloud/scope/internet_gateway_reconciler_test.go index ff402f442..eb92f9751 100644 --- a/cloud/scope/internet_gateway_reconciler_test.go +++ b/cloud/scope/internet_gateway_reconciler_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/load_balancer_reconciler.go b/cloud/scope/load_balancer_reconciler.go index d1b1eaf6b..94d2ae614 100644 --- a/cloud/scope/load_balancer_reconciler.go +++ b/cloud/scope/load_balancer_reconciler.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/load_balancer_reconciler_test.go b/cloud/scope/load_balancer_reconciler_test.go index 9dc5b2992..65bcc7e7d 100644 --- a/cloud/scope/load_balancer_reconciler_test.go +++ b/cloud/scope/load_balancer_reconciler_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/machine.go b/cloud/scope/machine.go index da00c3468..727038b15 100644 --- a/cloud/scope/machine.go +++ b/cloud/scope/machine.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/machine_test.go b/cloud/scope/machine_test.go index f4edfd387..2d2b78c70 100644 --- a/cloud/scope/machine_test.go +++ b/cloud/scope/machine_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/nat_gateway_reconciler.go b/cloud/scope/nat_gateway_reconciler.go index 2cbacbbbc..d4cf1622c 100644 --- a/cloud/scope/nat_gateway_reconciler.go +++ b/cloud/scope/nat_gateway_reconciler.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/nat_gateway_reconciler_test.go b/cloud/scope/nat_gateway_reconciler_test.go index 68f39fc04..62d9f438f 100644 --- a/cloud/scope/nat_gateway_reconciler_test.go +++ b/cloud/scope/nat_gateway_reconciler_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/nsg_reconciler.go b/cloud/scope/nsg_reconciler.go index b3abb577f..e72244348 100644 --- a/cloud/scope/nsg_reconciler.go +++ b/cloud/scope/nsg_reconciler.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/nsg_reconciler_test.go b/cloud/scope/nsg_reconciler_test.go index 659c1ccd6..5c0d91b3a 100644 --- a/cloud/scope/nsg_reconciler_test.go +++ b/cloud/scope/nsg_reconciler_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/route_table_reconciler.go b/cloud/scope/route_table_reconciler.go index 6d3ac6ec5..34aaeec83 100644 --- a/cloud/scope/route_table_reconciler.go +++ b/cloud/scope/route_table_reconciler.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/route_table_reconciler_test.go b/cloud/scope/route_table_reconciler_test.go index da8749651..89c8e77ab 100644 --- a/cloud/scope/route_table_reconciler_test.go +++ b/cloud/scope/route_table_reconciler_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/security_list_reconciler.go b/cloud/scope/security_list_reconciler.go index 35bfc40d3..d7a47ed59 100644 --- a/cloud/scope/security_list_reconciler.go +++ b/cloud/scope/security_list_reconciler.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/security_list_reconciler_test.go b/cloud/scope/security_list_reconciler_test.go index b4929d3e8..e29885768 100644 --- a/cloud/scope/security_list_reconciler_test.go +++ b/cloud/scope/security_list_reconciler_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/service_gateway_reconciler.go b/cloud/scope/service_gateway_reconciler.go index 423ef6d22..323ef9e26 100644 --- a/cloud/scope/service_gateway_reconciler.go +++ b/cloud/scope/service_gateway_reconciler.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/service_gateway_reconciler_test.go b/cloud/scope/service_gateway_reconciler_test.go index 32e495221..4e72f2970 100644 --- a/cloud/scope/service_gateway_reconciler_test.go +++ b/cloud/scope/service_gateway_reconciler_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/subnet_reconciler.go b/cloud/scope/subnet_reconciler.go index e9369c428..e3c04edf3 100644 --- a/cloud/scope/subnet_reconciler.go +++ b/cloud/scope/subnet_reconciler.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/subnet_reconciler_test.go b/cloud/scope/subnet_reconciler_test.go index 3c7ff7087..1d2e5db0d 100644 --- a/cloud/scope/subnet_reconciler_test.go +++ b/cloud/scope/subnet_reconciler_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/suite_test.go b/cloud/scope/suite_test.go index d5d3cbf9c..998081335 100644 --- a/cloud/scope/suite_test.go +++ b/cloud/scope/suite_test.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/cloud/scope/vcn_reconciler.go b/cloud/scope/vcn_reconciler.go index 21985538f..05efd4f5a 100644 --- a/cloud/scope/vcn_reconciler.go +++ b/cloud/scope/vcn_reconciler.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/scope/vcn_reconciler_test.go b/cloud/scope/vcn_reconciler_test.go index 5f8812710..e9516fe7d 100644 --- a/cloud/scope/vcn_reconciler_test.go +++ b/cloud/scope/vcn_reconciler_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 scope diff --git a/cloud/services/compute/client.go b/cloud/services/compute/client.go index 9996d81ce..e979de015 100644 --- a/cloud/services/compute/client.go +++ b/cloud/services/compute/client.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 compute diff --git a/cloud/services/identity/client.go b/cloud/services/identity/client.go index 80c283767..9d2804b71 100644 --- a/cloud/services/identity/client.go +++ b/cloud/services/identity/client.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 identity diff --git a/cloud/services/networkloadbalancer/client.go b/cloud/services/networkloadbalancer/client.go index 1b3e25d22..82eb51d6d 100644 --- a/cloud/services/networkloadbalancer/client.go +++ b/cloud/services/networkloadbalancer/client.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 nlb diff --git a/cloud/services/vcn/client.go b/cloud/services/vcn/client.go index c09541791..f4be8ce13 100644 --- a/cloud/services/vcn/client.go +++ b/cloud/services/vcn/client.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 vcn diff --git a/code-of-conduct.md b/code-of-conduct.md new file mode 100644 index 000000000..0d15c00cf --- /dev/null +++ b/code-of-conduct.md @@ -0,0 +1,3 @@ +# Kubernetes Community Code of Conduct + +Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) diff --git a/config/default/manager_image_patch.yaml b/config/default/manager_image_patch.yaml index 8c128d2e8..e8bd76629 100644 --- a/config/default/manager_image_patch.yaml +++ b/config/default/manager_image_patch.yaml @@ -8,5 +8,5 @@ spec: spec: containers: # Change the value of image field below to your controller image URL - - image: ghcr.io/oracle/cluster-api-oci-controller-amd64:dev + - image: ghcr.io/oracle/cluster-api-oci-controller-amd64:dev name: manager \ No newline at end of file diff --git a/controllers/ocicluster_controller.go b/controllers/ocicluster_controller.go index 2038b500c..53de3cac1 100644 --- a/controllers/ocicluster_controller.go +++ b/controllers/ocicluster_controller.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/controllers/ocicluster_controller_test.go b/controllers/ocicluster_controller_test.go index 5b3d0205b..2cc2f214f 100644 --- a/controllers/ocicluster_controller_test.go +++ b/controllers/ocicluster_controller_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2022 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package controllers import ( diff --git a/controllers/ocimachine_controller.go b/controllers/ocimachine_controller.go index 54f13d13d..8fe825f13 100644 --- a/controllers/ocimachine_controller.go +++ b/controllers/ocimachine_controller.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/controllers/ocimachine_controller_test.go b/controllers/ocimachine_controller_test.go index f92d48f02..6c8216d8f 100644 --- a/controllers/ocimachine_controller_test.go +++ b/controllers/ocimachine_controller_test.go @@ -1,17 +1,17 @@ /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 controllers diff --git a/controllers/suite_test.go b/controllers/suite_test.go index 1ab53e317..79630f322 100644 --- a/controllers/suite_test.go +++ b/controllers/suite_test.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/exp/api/v1beta1/conditions_consts.go b/exp/api/v1beta1/conditions_consts.go index 8cb8d1a8a..89a11b87a 100644 --- a/exp/api/v1beta1/conditions_consts.go +++ b/exp/api/v1beta1/conditions_consts.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/exp/api/v1beta1/groupversion_type.go b/exp/api/v1beta1/groupversion_type.go index 90bce315c..ae667e328 100644 --- a/exp/api/v1beta1/groupversion_type.go +++ b/exp/api/v1beta1/groupversion_type.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/exp/api/v1beta1/ocimachinepool_types.go b/exp/api/v1beta1/ocimachinepool_types.go index 6f1f6e7b8..45d89fc8e 100644 --- a/exp/api/v1beta1/ocimachinepool_types.go +++ b/exp/api/v1beta1/ocimachinepool_types.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/exp/api/v1beta1/zz_generated.deepcopy.go b/exp/api/v1beta1/zz_generated.deepcopy.go index 7352d4245..eb982f08c 100644 --- a/exp/api/v1beta1/zz_generated.deepcopy.go +++ b/exp/api/v1beta1/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated /* -Copyright (c) 2022, Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/exp/controllers/ocimachinepool_controller.go b/exp/controllers/ocimachinepool_controller.go index 9118e9b4e..ea185ea03 100644 --- a/exp/controllers/ocimachinepool_controller.go +++ b/exp/controllers/ocimachinepool_controller.go @@ -1,21 +1,18 @@ /* - * - * Copyright (c) 2022, Oracle and/or its affiliates. - * - * 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. - * / - * - */ +Copyright 2022 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package controllers diff --git a/hack/boilerplate.go.txt b/hack/boilerplate.go.txt index 8e805e6d7..c681dbe65 100644 --- a/hack/boilerplate.go.txt +++ b/hack/boilerplate.go.txt @@ -1,5 +1,5 @@ /* -Copyright (c) 2022, Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/hack/ensure-go.sh b/hack/ensure-go.sh index 0bf1d3e96..81a79c4cd 100755 --- a/hack/ensure-go.sh +++ b/hack/ensure-go.sh @@ -1,5 +1,17 @@ #!/usr/bin/env bash -# Copyright (c) 2021, 2022 Oracle and/or its affiliates. +# Copyright 2022 The Kubernetes Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. set -o errexit set -o nounset diff --git a/hack/ensure-kind.sh b/hack/ensure-kind.sh index 9f257785b..ff70f3dd9 100755 --- a/hack/ensure-kind.sh +++ b/hack/ensure-kind.sh @@ -1,5 +1,17 @@ #!/usr/bin/env bash -# Copyright (c) 2021, 2022 Oracle and/or its affiliates. +# Copyright 2022 The Kubernetes Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. set -o errexit set -o nounset diff --git a/hack/ensure-kubectl.sh b/hack/ensure-kubectl.sh index ccb7e7ae0..2c3f2b25d 100755 --- a/hack/ensure-kubectl.sh +++ b/hack/ensure-kubectl.sh @@ -1,5 +1,17 @@ #!/usr/bin/env bash -# Copyright (c) 2021, 2022 Oracle and/or its affiliates. +# Copyright 2022 The Kubernetes Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. set -o errexit set -o nounset diff --git a/hack/ensure-tags.sh b/hack/ensure-tags.sh index 8e93d1e08..abff995a8 100755 --- a/hack/ensure-tags.sh +++ b/hack/ensure-tags.sh @@ -1,5 +1,17 @@ #!/bin/bash -# Copyright (c) 2021, 2022 Oracle and/or its affiliates. +# Copyright 2022 The Kubernetes Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. set -o errexit set -o nounset diff --git a/hack/version.sh b/hack/version.sh index d9006c3b9..929ca9a52 100755 --- a/hack/version.sh +++ b/hack/version.sh @@ -1,5 +1,17 @@ #!/bin/bash -# Copyright (c) 2021, 2022 Oracle and/or its affiliates. +# Copyright 2022 The Kubernetes Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. set -o errexit set -o nounset diff --git a/main.go b/main.go index 0e018d2dc..10e4578f2 100644 --- a/main.go +++ b/main.go @@ -1,5 +1,5 @@ /* -Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/test/e2e/capi_test.go b/test/e2e/capi_test.go index 36797acd7..9680c5fda 100644 --- a/test/e2e/capi_test.go +++ b/test/e2e/capi_test.go @@ -2,19 +2,19 @@ // +build e2e /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 e2e diff --git a/test/e2e/ccm_helpers.go b/test/e2e/ccm_helpers.go index 7052807cb..247fb55b6 100644 --- a/test/e2e/ccm_helpers.go +++ b/test/e2e/ccm_helpers.go @@ -2,19 +2,19 @@ // +build e2e /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 e2e diff --git a/test/e2e/cluster_test.go b/test/e2e/cluster_test.go index 1475c9188..e7b2a1ab0 100644 --- a/test/e2e/cluster_test.go +++ b/test/e2e/cluster_test.go @@ -2,19 +2,19 @@ // +build e2e /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 e2e diff --git a/test/e2e/common.go b/test/e2e/common.go index 3753784d9..453b596f2 100644 --- a/test/e2e/common.go +++ b/test/e2e/common.go @@ -2,19 +2,19 @@ // +build e2e /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 e2e diff --git a/test/e2e/conformance_test.go b/test/e2e/conformance_test.go index 4db21e33d..351613b22 100644 --- a/test/e2e/conformance_test.go +++ b/test/e2e/conformance_test.go @@ -2,19 +2,19 @@ // +build e2e /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 e2e diff --git a/test/e2e/e2e_suite_test.go b/test/e2e/e2e_suite_test.go index 5a0b94bf0..7a67c2ff6 100644 --- a/test/e2e/e2e_suite_test.go +++ b/test/e2e/e2e_suite_test.go @@ -2,19 +2,19 @@ // +build e2e /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 e2e diff --git a/test/e2e/log.go b/test/e2e/log.go index eb9501048..834867d01 100644 --- a/test/e2e/log.go +++ b/test/e2e/log.go @@ -2,19 +2,19 @@ // +build e2e /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 e2e diff --git a/test/e2e/upgrade_test.go b/test/e2e/upgrade_test.go index e63cf6703..d7475b5b6 100644 --- a/test/e2e/upgrade_test.go +++ b/test/e2e/upgrade_test.go @@ -2,19 +2,19 @@ // +build e2e /* - Copyright (c) 2021, 2022 Oracle and/or its affiliates. +Copyright 2022 The Kubernetes Authors. - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +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 - https://www.apache.org/licenses/LICENSE-2.0 + 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. +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 e2e