From 314ca7baeff4f568ffc0bad95124e40665b1f88c Mon Sep 17 00:00:00 2001 From: Quentin Monnet Date: Tue, 15 Feb 2022 15:52:19 +0000 Subject: [PATCH] licensing: remove copyright year and symbol for most source files Cilium source files have a header with a SPDX tag and a copyright notice, stating that the copyright (for the vast majority of files) goes to the Authors of Cilium, and containing a year or year range to specify to what period the copyright extends. The year, and the copyright symbol ("(C)" or equivalent), are not necessary in this statement. The CNCF recommends not using the year or the symbol, to keep files easily to process [0]. The history of the source code is conserved through the version control system, and is easily available for all to check out. This commit drops the year, year range, and copyright symbol for most of the codebase. The files were processed as follows: $ cat years.sed # Skip after line 6 (branch to end so we still print the line) 6, $ b # Process copyright notice preceded by a SPDX tag /^\(#\|\/\/\|\/\*\) *SPDX-License-Identifier: \(GPL-2\.0\|Apache-2\.0\)\( \*\/\)\?$/ { N; s/Copyright .* Authors of Cilium/Copyright Authors of Cilium/ } # Process copyright notice followed by a SPDX tag /^\(#\|\/\/\|\/\*\) *Copyright .* Authors of Cilium\( \*\/\)\?$/ { N; { /\(#\|\/\/\|\/\*\) *SPDX-License-Identifier: \(GPL-2\.0\|Apache-2\.0\)\( \*\/\)\?$/ s/Copyright .* Authors of Cilium/Copyright Authors of Cilium/ } } $ find bpf bugtool check_codeowners cilium cilium-health \ clustermesh-apiserver contrib daemon dep.yaml envoy examples hack \ hubble-relay install jenkinsfiles operator pkg plugins proxylib \ test tools Makefile* \ -type f -print0 | xargs -0 -P 8 sed -i -f years.sed $ GOPATH=~go make generate-k8s-api Files under image/ are not updated, because they need some additional steps to regenerate the images. They will be updated in a follow-up PR. [0] https://github.com/cncf/foundation/blob/main/copyright-notices.md#copyright-notices Signed-off-by: Quentin Monnet --- Makefile | 2 +- Makefile.defs | 2 +- Makefile.docker | 2 +- Makefile.quiet | 2 +- api/v1/models/zz_generated.deepcopy.go | 2 +- api/v1/models/zz_generated.deepequal.go | 2 +- bpf/Makefile | 2 +- bpf/Makefile.bpf | 2 +- bpf/bpf_alignchecker.c | 2 +- bpf/bpf_features.h | 2 +- bpf/bpf_host.c | 2 +- bpf/bpf_lxc.c | 2 +- bpf/bpf_network.c | 2 +- bpf/bpf_overlay.c | 2 +- bpf/bpf_sock.c | 2 +- bpf/bpf_xdp.c | 2 +- bpf/cilium-probe-kernel-hz.c | 2 +- bpf/custom/Makefile | 2 +- bpf/ep_config.h | 2 +- bpf/filter_config.h | 2 +- bpf/include/bpf/access.h | 2 +- bpf/include/bpf/api.h | 2 +- bpf/include/bpf/builtins.h | 2 +- bpf/include/bpf/compiler.h | 2 +- bpf/include/bpf/csum.h | 2 +- bpf/include/bpf/ctx/common.h | 2 +- bpf/include/bpf/ctx/ctx.h | 2 +- bpf/include/bpf/ctx/skb.h | 2 +- bpf/include/bpf/ctx/unspec.h | 2 +- bpf/include/bpf/ctx/xdp.h | 2 +- bpf/include/bpf/errno.h | 2 +- bpf/include/bpf/features.h | 2 +- bpf/include/bpf/features_skb.h | 2 +- bpf/include/bpf/features_xdp.h | 2 +- bpf/include/bpf/helpers.h | 2 +- bpf/include/bpf/helpers_skb.h | 2 +- bpf/include/bpf/helpers_xdp.h | 2 +- bpf/include/bpf/loader.h | 2 +- bpf/include/bpf/section.h | 2 +- bpf/include/bpf/stddef.h | 2 +- bpf/include/bpf/tailcall.h | 2 +- bpf/include/bpf/types_mapper.h | 2 +- bpf/include/bpf/verifier.h | 2 +- bpf/include/linux/types.h | 2 +- bpf/init.sh | 2 +- bpf/lib/arp.h | 2 +- bpf/lib/common.h | 2 +- bpf/lib/conntrack.h | 2 +- bpf/lib/conntrack_map.h | 2 +- bpf/lib/csum.h | 2 +- bpf/lib/dbg.h | 2 +- bpf/lib/drop.h | 2 +- bpf/lib/edt.h | 2 +- bpf/lib/egress_policies.h | 2 +- bpf/lib/encap.h | 2 +- bpf/lib/encrypt.h | 2 +- bpf/lib/endian.h | 2 +- bpf/lib/eps.h | 2 +- bpf/lib/eth.h | 2 +- bpf/lib/events.h | 2 +- bpf/lib/fib.h | 2 +- bpf/lib/hash.h | 2 +- bpf/lib/host_firewall.h | 2 +- bpf/lib/icmp6.h | 2 +- bpf/lib/identity.h | 2 +- bpf/lib/ids.h | 2 +- bpf/lib/ipv4.h | 2 +- bpf/lib/ipv6.h | 2 +- bpf/lib/l3.h | 2 +- bpf/lib/l4.h | 2 +- bpf/lib/lb.h | 2 +- bpf/lib/lxc.h | 2 +- bpf/lib/maps.h | 2 +- bpf/lib/metrics.h | 2 +- bpf/lib/mono.h | 2 +- bpf/lib/nat.h | 2 +- bpf/lib/nat46.h | 2 +- bpf/lib/nodeport.h | 2 +- bpf/lib/overloadable.h | 2 +- bpf/lib/overloadable_skb.h | 2 +- bpf/lib/overloadable_xdp.h | 2 +- bpf/lib/pcap.h | 2 +- bpf/lib/policy.h | 2 +- bpf/lib/policy_log.h | 2 +- bpf/lib/proxy.h | 2 +- bpf/lib/proxy_hairpin.h | 2 +- bpf/lib/qm.h | 2 +- bpf/lib/signal.h | 2 +- bpf/lib/static_data.h | 2 +- bpf/lib/tailcall.h | 2 +- bpf/lib/time.h | 2 +- bpf/lib/time_cache.h | 2 +- bpf/lib/trace.h | 2 +- bpf/lib/utils.h | 2 +- bpf/mock/Makefile | 2 +- bpf/mock/bpf.yaml | 2 +- bpf/mock/conntrack_stub.h | 2 +- bpf/mock/fake_maps.h | 2 +- bpf/mock/helpers.sed | 2 +- bpf/mock/helpers_skb.sed | 2 +- bpf/mock/helpers_xdp.sed | 2 +- bpf/netdev_config.h | 2 +- bpf/node_config.h | 2 +- bpf/sockops/Makefile | 2 +- bpf/sockops/bpf_redir.c | 2 +- bpf/sockops/bpf_sockops.c | 2 +- bpf/sockops/bpf_sockops.h | 2 +- bpf/sockops/sockops_config.h | 2 +- bpf/tests/bpf_ct_tests.c | 2 +- bpf/tests/builtin_memcmp.h | 2 +- bpf/tests/builtin_memcpy.h | 2 +- bpf/tests/builtin_memmove.h | 2 +- bpf/tests/builtin_memzero.h | 2 +- bpf/tests/builtin_test.h | 2 +- bpf/tests/conntrack_test.h | 2 +- bpf/tests/drop_notify_test.h | 2 +- bpf/tests/ipv6_test.h | 2 +- bpf/tests/nat_test.h | 2 +- bpf/tests/prog_test/prog_test.go | 2 +- bugtool/Makefile | 2 +- bugtool/cmd/cmdref.go | 2 +- bugtool/cmd/configuration.go | 2 +- bugtool/cmd/ethtool_linux.go | 2 +- bugtool/cmd/ethtool_other.go | 2 +- bugtool/cmd/helper.go | 2 +- bugtool/cmd/helper_test.go | 2 +- bugtool/cmd/root.go | 2 +- bugtool/main.go | 2 +- cilium-health/Makefile | 2 +- cilium-health/cmd/get.go | 2 +- cilium-health/cmd/ping.go | 2 +- cilium-health/cmd/root.go | 2 +- cilium-health/cmd/status.go | 2 +- cilium-health/launch/endpoint.go | 2 +- cilium-health/launch/launcher.go | 2 +- cilium-health/main.go | 2 +- cilium-health/responder/Makefile | 2 +- cilium-health/responder/main.go | 2 +- cilium/Makefile | 2 +- cilium/cmd/bpf.go | 2 +- cilium/cmd/bpf_bandwidth.go | 2 +- cilium/cmd/bpf_bandwidth_list.go | 2 +- cilium/cmd/bpf_ct.go | 2 +- cilium/cmd/bpf_ct_flush.go | 2 +- cilium/cmd/bpf_ct_list.go | 2 +- cilium/cmd/bpf_ct_list_test.go | 2 +- cilium/cmd/bpf_egress.go | 2 +- cilium/cmd/bpf_egress_delete.go | 2 +- cilium/cmd/bpf_egress_get.go | 2 +- cilium/cmd/bpf_egress_list.go | 2 +- cilium/cmd/bpf_egress_update.go | 2 +- cilium/cmd/bpf_endpoint.go | 2 +- cilium/cmd/bpf_endpoint_delete.go | 2 +- cilium/cmd/bpf_endpoint_list.go | 2 +- cilium/cmd/bpf_ipcache.go | 2 +- cilium/cmd/bpf_ipcache_get.go | 2 +- cilium/cmd/bpf_ipcache_get_test.go | 2 +- cilium/cmd/bpf_ipcache_list.go | 2 +- cilium/cmd/bpf_ipmasq.go | 2 +- cilium/cmd/bpf_ipmasq_list.go | 2 +- cilium/cmd/bpf_lb.go | 2 +- cilium/cmd/bpf_lb_list.go | 2 +- cilium/cmd/bpf_lb_maglev.go | 2 +- cilium/cmd/bpf_lb_maglev_get.go | 2 +- cilium/cmd/bpf_lb_maglev_list.go | 2 +- cilium/cmd/bpf_metrics.go | 2 +- cilium/cmd/bpf_metrics_list.go | 2 +- cilium/cmd/bpf_metrics_list_test.go | 2 +- cilium/cmd/bpf_migrate_maps.go | 2 +- cilium/cmd/bpf_mountfs.go | 2 +- cilium/cmd/bpf_mountfs_show.go | 2 +- cilium/cmd/bpf_nat.go | 2 +- cilium/cmd/bpf_nat_flush.go | 2 +- cilium/cmd/bpf_nat_list.go | 2 +- cilium/cmd/bpf_nat_list_test.go | 2 +- cilium/cmd/bpf_policy.go | 2 +- cilium/cmd/bpf_policy_add.go | 2 +- cilium/cmd/bpf_policy_delete.go | 2 +- cilium/cmd/bpf_policy_get.go | 2 +- cilium/cmd/bpf_recorder.go | 2 +- cilium/cmd/bpf_recorder_list.go | 2 +- cilium/cmd/bpf_sha.go | 2 +- cilium/cmd/bpf_sha_get.go | 2 +- cilium/cmd/bpf_sha_list.go | 2 +- cilium/cmd/bpf_tunnel.go | 2 +- cilium/cmd/bpf_tunnel_list.go | 2 +- cilium/cmd/cleanup.go | 2 +- cilium/cmd/cmdman.go | 2 +- cilium/cmd/cmdref.go | 2 +- cilium/cmd/config.go | 2 +- cilium/cmd/config_get.go | 2 +- cilium/cmd/debuginfo.go | 2 +- cilium/cmd/encrypt.go | 2 +- cilium/cmd/encrypt_flush.go | 2 +- cilium/cmd/encrypt_status.go | 2 +- cilium/cmd/encrypt_status_test.go | 2 +- cilium/cmd/endpoint.go | 2 +- cilium/cmd/endpoint_config.go | 2 +- cilium/cmd/endpoint_disconnect.go | 2 +- cilium/cmd/endpoint_get.go | 2 +- cilium/cmd/endpoint_healthz.go | 2 +- cilium/cmd/endpoint_labels.go | 2 +- cilium/cmd/endpoint_list.go | 2 +- cilium/cmd/endpoint_log.go | 2 +- cilium/cmd/endpoint_regenerate.go | 2 +- cilium/cmd/fqdn.go | 2 +- cilium/cmd/helpers.go | 2 +- cilium/cmd/helpers_test.go | 2 +- cilium/cmd/identity.go | 2 +- cilium/cmd/identity_get.go | 2 +- cilium/cmd/identity_list.go | 2 +- cilium/cmd/ip.go | 2 +- cilium/cmd/ip_list.go | 2 +- cilium/cmd/kvstore.go | 2 +- cilium/cmd/kvstore_delete.go | 2 +- cilium/cmd/kvstore_get.go | 2 +- cilium/cmd/kvstore_set.go | 2 +- cilium/cmd/lpm_warning.go | 2 +- cilium/cmd/lrp.go | 2 +- cilium/cmd/lrp_list.go | 2 +- cilium/cmd/map.go | 2 +- cilium/cmd/map_get.go | 2 +- cilium/cmd/map_list.go | 2 +- cilium/cmd/metrics.go | 2 +- cilium/cmd/metrics_list.go | 2 +- cilium/cmd/monitor.go | 2 +- cilium/cmd/node.go | 2 +- cilium/cmd/node_list.go | 2 +- cilium/cmd/policy.go | 2 +- cilium/cmd/policy_delete.go | 2 +- cilium/cmd/policy_get.go | 2 +- cilium/cmd/policy_import.go | 2 +- cilium/cmd/policy_selectors.go | 2 +- cilium/cmd/policy_trace.go | 2 +- cilium/cmd/policy_validate.go | 2 +- cilium/cmd/policy_wait.go | 2 +- cilium/cmd/prefilter.go | 2 +- cilium/cmd/prefilter_delete.go | 2 +- cilium/cmd/prefilter_list.go | 2 +- cilium/cmd/prefilter_update.go | 2 +- cilium/cmd/preflight.go | 2 +- cilium/cmd/preflight_identity_crd_migrate.go | 2 +- cilium/cmd/preflight_k8s_valid_cnp.go | 2 +- cilium/cmd/recorder.go | 2 +- cilium/cmd/recorder_delete.go | 2 +- cilium/cmd/recorder_get.go | 2 +- cilium/cmd/recorder_list.go | 2 +- cilium/cmd/recorder_update.go | 2 +- cilium/cmd/root.go | 2 +- cilium/cmd/service.go | 2 +- cilium/cmd/service_delete.go | 2 +- cilium/cmd/service_get.go | 2 +- cilium/cmd/service_list.go | 2 +- cilium/cmd/service_update.go | 2 +- cilium/cmd/status.go | 2 +- cilium/cmd/version.go | 2 +- cilium/main.go | 2 +- clustermesh-apiserver/Makefile | 2 +- clustermesh-apiserver/main.go | 2 +- clustermesh-apiserver/vmmanager.go | 2 +- contrib/backporting/common.sh | 2 +- contrib/backporting/start-backport | 2 +- contrib/backporting/submit-backport | 2 +- contrib/codegen/Makefile | 2 +- contrib/k8s/k8s-cilium-exec.sh | 2 +- contrib/k8s/k8s-extract-clustermesh-nodeport-secret.sh | 2 +- contrib/k8s/k8s-get-cilium-pod.sh | 2 +- contrib/k8s/k8s-heap-dump.sh | 2 +- contrib/k8s/k8s-import-clustermesh-secrets.sh | 2 +- contrib/k8s/k8s-unmanaged.sh | 2 +- contrib/k8s/nsexec | 2 +- contrib/packaging/deb/Makefile | 2 +- contrib/packaging/rpm/Makefile | 2 +- contrib/release/bump-docker-stable.sh | 2 +- contrib/release/bump-readme.sh | 2 +- contrib/release/post-release.sh | 2 +- contrib/release/prep-changelog.sh | 2 +- contrib/release/pull-docker-manifests.sh | 2 +- contrib/release/start-release.sh | 2 +- contrib/release/submit-release.sh | 2 +- contrib/release/tag-release.sh | 2 +- contrib/scripts/check-viper-get-string-map-string.sh | 2 +- contrib/scripts/custom-vet-check.sh | 2 +- contrib/scripts/lock-check.sh | 2 +- contrib/scripts/netperf_reporter.py | 2 +- contrib/scripts/rand-check.sh | 2 +- contrib/shell/test.sh | 2 +- contrib/testing/integrations.sh | 2 +- daemon/Makefile | 2 +- daemon/cmd/agenthealth.go | 2 +- daemon/cmd/api_limits.go | 2 +- daemon/cmd/cleanup.go | 2 +- daemon/cmd/cmdref.go | 2 +- daemon/cmd/config.go | 2 +- daemon/cmd/daemon.go | 2 +- daemon/cmd/daemon_main.go | 2 +- daemon/cmd/daemon_test.go | 2 +- daemon/cmd/datapath.go | 2 +- daemon/cmd/debuginfo.go | 2 +- daemon/cmd/debuginfo_test.go | 2 +- daemon/cmd/devices.go | 2 +- daemon/cmd/devices_test.go | 2 +- daemon/cmd/endpoint.go | 2 +- daemon/cmd/endpoint_test.go | 2 +- daemon/cmd/fqdn.go | 2 +- daemon/cmd/fqdn_test.go | 2 +- daemon/cmd/health.go | 2 +- daemon/cmd/hubble.go | 2 +- daemon/cmd/identity.go | 2 +- daemon/cmd/ipam.go | 2 +- daemon/cmd/ipcache.go | 2 +- daemon/cmd/ipcache_test.go | 2 +- daemon/cmd/kube_proxy_healthz.go | 2 +- daemon/cmd/kube_proxy_healthz_test.go | 2 +- daemon/cmd/kube_proxy_replacement.go | 2 +- daemon/cmd/loadbalancer.go | 2 +- daemon/cmd/lrp.go | 2 +- daemon/cmd/map.go | 2 +- daemon/cmd/metrics.go | 2 +- daemon/cmd/nodeport_linux_test.go | 2 +- daemon/cmd/policy.go | 2 +- daemon/cmd/policy_test.go | 2 +- daemon/cmd/prefilter.go | 2 +- daemon/cmd/proxy.go | 2 +- daemon/cmd/recorder.go | 2 +- daemon/cmd/sockopt.go | 2 +- daemon/cmd/state.go | 2 +- daemon/cmd/status.go | 2 +- daemon/cmd/status_test.go | 2 +- daemon/cmd/sysctl_darwin.go | 2 +- daemon/cmd/sysctl_linux.go | 2 +- daemon/cmd/sysctl_linux_test.go | 2 +- daemon/main.go | 2 +- envoy/Makefile | 2 +- examples/kubernetes/addons/prometheus/Makefile | 2 +- examples/kubernetes/connectivity-check/Makefile | 2 +- hack/custom-boilerplate.go.txt | 2 +- hubble-relay/Makefile | 2 +- hubble-relay/cmd/completion/completion.go | 2 +- hubble-relay/cmd/root.go | 2 +- hubble-relay/cmd/serve/serve.go | 2 +- hubble-relay/cmd/version/version.go | 2 +- hubble-relay/main.go | 2 +- install/kubernetes/Makefile | 2 +- install/kubernetes/Makefile.digests | 2 +- operator/Makefile | 2 +- operator/allocator_providers.go | 2 +- operator/api/health.go | 2 +- operator/api/metrics.go | 2 +- operator/api/server.go | 2 +- operator/ccnp_event.go | 2 +- operator/cilium_node.go | 2 +- operator/cmd/metrics.go | 2 +- operator/cmd/metrics_list.go | 2 +- operator/cmd/root.go | 2 +- operator/cmdref.go | 2 +- operator/cnp_event.go | 2 +- operator/flags.go | 2 +- operator/identity/heartbeat.go | 2 +- operator/identity/heartbeat_test.go | 2 +- operator/identity_gc.go | 2 +- operator/k8s_cep_gc.go | 2 +- operator/k8s_identity.go | 2 +- operator/k8s_pod_controller.go | 2 +- operator/kvstore_watchdog.go | 2 +- operator/kvstore_watchdog_test.go | 2 +- operator/main.go | 2 +- operator/metrics/metrics.go | 2 +- operator/option/config.go | 2 +- operator/pkg/ciliumendpointslice/ceptocesmap.go | 2 +- operator/pkg/ciliumendpointslice/ceptocesmap_test.go | 2 +- operator/pkg/ciliumendpointslice/endpointslice.go | 2 +- operator/pkg/ciliumendpointslice/manager.go | 2 +- operator/pkg/ciliumendpointslice/manager_test.go | 2 +- operator/pkg/ciliumendpointslice/reconciler.go | 2 +- operator/pkg/ciliumendpointslice/reconciler_test.go | 2 +- operator/provider_alibabacloud_flags.go | 2 +- operator/provider_alibabacloud_register.go | 2 +- operator/provider_aws_flags.go | 2 +- operator/provider_aws_register.go | 2 +- operator/provider_azure_flags.go | 2 +- operator/provider_azure_register.go | 2 +- operator/provider_operator_register.go | 2 +- operator/watchers/bgp.go | 2 +- operator/watchers/cilium_endpoint.go | 2 +- operator/watchers/k8s_service_sync.go | 2 +- operator/watchers/logfields.go | 2 +- operator/watchers/pod.go | 2 +- operator/watchers/service_cache.go | 2 +- pkg/addressing/ip.go | 2 +- pkg/addressing/ip_test.go | 2 +- pkg/alibabacloud/api/api.go | 2 +- pkg/alibabacloud/api/mock/mock.go | 2 +- pkg/alibabacloud/eni/instances.go | 2 +- pkg/alibabacloud/eni/instances_test.go | 2 +- pkg/alibabacloud/eni/limits/limits.go | 2 +- pkg/alibabacloud/eni/log.go | 2 +- pkg/alibabacloud/eni/node.go | 2 +- pkg/alibabacloud/eni/node_test.go | 2 +- pkg/alibabacloud/eni/types/doc.go | 2 +- pkg/alibabacloud/eni/types/types.go | 2 +- pkg/alibabacloud/eni/types/zz_generated.deepcopy.go | 2 +- pkg/alibabacloud/eni/types/zz_generated.deepequal.go | 2 +- pkg/alibabacloud/metadata/metadata.go | 2 +- pkg/alibabacloud/types/types.go | 2 +- pkg/alibabacloud/types/zz_generated.deepcopy.go | 2 +- pkg/alibabacloud/utils/utils.go | 2 +- pkg/alibabacloud/utils/utils_test.go | 2 +- pkg/alignchecker/alignchecker.go | 2 +- pkg/alignchecker/alignchecker_test.go | 2 +- pkg/alignchecker/doc.go | 2 +- pkg/alignchecker/testdata/bpf_foo.c | 2 +- pkg/allocator/allocator.go | 2 +- pkg/allocator/allocator_test.go | 2 +- pkg/allocator/cache.go | 2 +- pkg/allocator/doc.go | 2 +- pkg/allocator/localkeys.go | 2 +- pkg/allocator/localkeys_test.go | 2 +- pkg/allocator/logfields.go | 2 +- pkg/annotation/k8s.go | 2 +- pkg/api/apierror.go | 2 +- pkg/api/apipanic.go | 2 +- pkg/api/const.go | 2 +- pkg/api/doc.go | 2 +- pkg/api/helpers/delay_simulator.go | 2 +- pkg/api/helpers/delay_simulator_test.go | 2 +- pkg/api/helpers/rate_limit.go | 2 +- pkg/api/helpers/rate_limit_test.go | 2 +- pkg/api/metrics/metrics.go | 2 +- pkg/api/metrics/mock/mock.go | 2 +- pkg/api/metrics/mock/mock_test.go | 2 +- pkg/api/socket.go | 2 +- pkg/aws/ec2/ec2.go | 2 +- pkg/aws/ec2/ec2_test.go | 2 +- pkg/aws/ec2/mock/mock.go | 2 +- pkg/aws/ec2/mock/mock_test.go | 2 +- pkg/aws/endpoints/resolver.go | 2 +- pkg/aws/eni/doc.go | 2 +- pkg/aws/eni/eni_test.go | 2 +- pkg/aws/eni/instances.go | 2 +- pkg/aws/eni/instances_test.go | 2 +- pkg/aws/eni/limits/limits.go | 2 +- pkg/aws/eni/limits/limits_test.go | 2 +- pkg/aws/eni/log.go | 2 +- pkg/aws/eni/migration.go | 2 +- pkg/aws/eni/node.go | 2 +- pkg/aws/eni/node_manager_test.go | 2 +- pkg/aws/eni/node_test.go | 2 +- pkg/aws/eni/types/doc.go | 2 +- pkg/aws/eni/types/types.go | 2 +- pkg/aws/eni/types/zz_generated.deepcopy.go | 2 +- pkg/aws/eni/types/zz_generated.deepequal.go | 2 +- pkg/aws/metadata/metadata.go | 2 +- pkg/aws/types/types.go | 2 +- pkg/aws/types/zz_generated.deepcopy.go | 2 +- pkg/azure/api/api.go | 2 +- pkg/azure/api/api_interaction_test.go | 2 +- pkg/azure/api/metadata.go | 2 +- pkg/azure/api/mock/mock.go | 2 +- pkg/azure/api/mock/mock_test.go | 2 +- pkg/azure/ipam/doc.go | 2 +- pkg/azure/ipam/instances.go | 2 +- pkg/azure/ipam/instances_test.go | 2 +- pkg/azure/ipam/ipam_test.go | 2 +- pkg/azure/ipam/log.go | 2 +- pkg/azure/ipam/node.go | 2 +- pkg/azure/ipam/node_test.go | 2 +- pkg/azure/types/doc.go | 2 +- pkg/azure/types/types.go | 2 +- pkg/azure/types/types_test.go | 2 +- pkg/azure/types/zz_generated.deepcopy.go | 2 +- pkg/azure/types/zz_generated.deepequal.go | 2 +- pkg/backoff/backoff.go | 2 +- pkg/backoff/backoff_test.go | 2 +- pkg/bandwidth/bandwidth.go | 2 +- pkg/bandwidth/doc.go | 2 +- pkg/bgp/config/config.go | 2 +- pkg/bgp/config/config_test.go | 2 +- pkg/bgp/fence/fence.go | 2 +- pkg/bgp/fence/fence_test.go | 2 +- pkg/bgp/k8s/client.go | 2 +- pkg/bgp/log/log.go | 2 +- pkg/bgp/manager/log.go | 2 +- pkg/bgp/manager/manager.go | 2 +- pkg/bgp/manager/manager_test.go | 2 +- pkg/bgp/manager/metallb.go | 2 +- pkg/bgp/mock/gen.go | 2 +- pkg/bgp/mock/mock.go | 2 +- pkg/bgp/speaker/events.go | 2 +- pkg/bgp/speaker/log.go | 2 +- pkg/bgp/speaker/metallb.go | 2 +- pkg/bgp/speaker/pod_cidr.go | 2 +- pkg/bgp/speaker/speaker.go | 2 +- pkg/bgp/speaker/speaker_test.go | 2 +- pkg/bpf/binary/binary.go | 2 +- pkg/bpf/binary/doc.go | 2 +- pkg/bpf/bpf.go | 2 +- pkg/bpf/bpf_linux.go | 2 +- pkg/bpf/bpf_test.go | 2 +- pkg/bpf/bpffs_linux.go | 2 +- pkg/bpf/doc.go | 2 +- pkg/bpf/endpoint.go | 2 +- pkg/bpf/endpoint_test.go | 2 +- pkg/bpf/map.go | 2 +- pkg/bpf/map_linux.go | 2 +- pkg/bpf/map_linux_test.go | 2 +- pkg/bpf/map_register_linux.go | 2 +- pkg/bpf/map_test.go | 2 +- pkg/bpf/metrics.go | 2 +- pkg/bpf/prog.go | 2 +- pkg/bpf/stats_linux.go | 2 +- pkg/bpf/zz_generated.deepcopy.go | 2 +- pkg/byteorder/byteorder.go | 2 +- pkg/byteorder/byteorder_bigendian.go | 2 +- pkg/byteorder/byteorder_littleendian.go | 2 +- pkg/byteorder/byteorder_test.go | 2 +- pkg/byteorder/doc.go | 2 +- pkg/cgroups/cgroups.go | 2 +- pkg/cgroups/cgroups_linux.go | 2 +- pkg/cgroups/cgroups_unspecified.go | 2 +- pkg/checker/checker.go | 2 +- pkg/checker/checker_test.go | 2 +- pkg/cidr/cidr.go | 2 +- pkg/cidr/cidr_test.go | 2 +- pkg/cidr/diff.go | 2 +- pkg/cidr/diff_test.go | 2 +- pkg/cleanup/cleanup.go | 2 +- pkg/cleanup/cleanup_test.go | 2 +- pkg/client/client.go | 2 +- pkg/client/client_test.go | 2 +- pkg/client/config.go | 2 +- pkg/client/endpoint.go | 2 +- pkg/client/identity.go | 2 +- pkg/client/ipam.go | 2 +- pkg/client/lrp.go | 2 +- pkg/client/policy.go | 2 +- pkg/client/prefilter.go | 2 +- pkg/client/recorder.go | 2 +- pkg/client/service.go | 2 +- pkg/clustermesh/clustermesh.go | 2 +- pkg/clustermesh/clustermesh_test.go | 2 +- pkg/clustermesh/config.go | 2 +- pkg/clustermesh/config_test.go | 2 +- pkg/clustermesh/logfields.go | 2 +- pkg/clustermesh/remote_cluster.go | 2 +- pkg/clustermesh/services.go | 2 +- pkg/clustermesh/services_test.go | 2 +- pkg/clustermesh/types/types.go | 2 +- pkg/command/exec/doc.go | 2 +- pkg/command/exec/exec.go | 2 +- pkg/command/exec/exec_test.go | 2 +- pkg/command/map_string.go | 2 +- pkg/command/map_string_test.go | 2 +- pkg/command/output.go | 2 +- pkg/command/output_test.go | 2 +- pkg/common/const.go | 2 +- pkg/common/utils.go | 2 +- pkg/common/utils_test.go | 2 +- pkg/comparator/comparator.go | 2 +- pkg/comparator/comparator_test.go | 2 +- pkg/completion/completion.go | 2 +- pkg/completion/completion_test.go | 2 +- pkg/completion/doc.go | 2 +- pkg/components/components.go | 2 +- pkg/contexthelpers/context.go | 2 +- pkg/contexthelpers/context_test.go | 2 +- pkg/controller/controller.go | 2 +- pkg/controller/controller_test.go | 2 +- pkg/controller/doc.go | 2 +- pkg/controller/logfields.go | 2 +- pkg/controller/manager.go | 2 +- pkg/counter/doc.go | 2 +- pkg/counter/integer.go | 2 +- pkg/counter/prefixes.go | 2 +- pkg/counter/prefixes_test.go | 2 +- pkg/counter/string.go | 2 +- pkg/crypto/certificatemanager/certificate_manager.go | 2 +- pkg/crypto/certloader/certloader_test.go | 2 +- pkg/crypto/certloader/client.go | 2 +- pkg/crypto/certloader/client_test.go | 2 +- pkg/crypto/certloader/doc.go | 2 +- pkg/crypto/certloader/fswatcher/fswatcher.go | 2 +- pkg/crypto/certloader/fswatcher/fswatcher_test.go | 2 +- pkg/crypto/certloader/helpers.go | 2 +- pkg/crypto/certloader/reloader.go | 2 +- pkg/crypto/certloader/reloader_test.go | 2 +- pkg/crypto/certloader/server.go | 2 +- pkg/crypto/certloader/server_test.go | 2 +- pkg/crypto/certloader/watcher.go | 2 +- pkg/crypto/certloader/watcher_test.go | 2 +- pkg/datapath/alignchecker/alignchecker.go | 2 +- pkg/datapath/alignchecker/doc.go | 2 +- pkg/datapath/config.go | 2 +- pkg/datapath/connector/add.go | 2 +- pkg/datapath/connector/doc.go | 2 +- pkg/datapath/connector/docker.go | 2 +- pkg/datapath/connector/ipam.go | 2 +- pkg/datapath/connector/ipvlan.go | 2 +- pkg/datapath/connector/ipvlan_test.go | 2 +- pkg/datapath/connector/option.go | 2 +- pkg/datapath/connector/veth.go | 2 +- pkg/datapath/datapath.go | 2 +- pkg/datapath/doc.go | 2 +- pkg/datapath/endpoint.go | 2 +- pkg/datapath/fake/datapath.go | 2 +- pkg/datapath/fake/datapath_test.go | 2 +- pkg/datapath/fake/doc.go | 2 +- pkg/datapath/fake/node.go | 2 +- pkg/datapath/fake/node_addressing.go | 2 +- pkg/datapath/ipcache/doc.go | 2 +- pkg/datapath/ipcache/listener.go | 2 +- pkg/datapath/iptables/doc.go | 2 +- pkg/datapath/iptables/iptables.go | 2 +- pkg/datapath/iptables/iptables_test.go | 2 +- pkg/datapath/iptables/log.go | 2 +- pkg/datapath/link/doc.go | 2 +- pkg/datapath/link/link.go | 2 +- pkg/datapath/link/link_test.go | 2 +- pkg/datapath/linux/config/config.go | 2 +- pkg/datapath/linux/config/config_test.go | 2 +- pkg/datapath/linux/config/utils.go | 2 +- pkg/datapath/linux/config/utils_test.go | 2 +- pkg/datapath/linux/datapath.go | 2 +- pkg/datapath/linux/datapath_test.go | 2 +- pkg/datapath/linux/doc.go | 2 +- pkg/datapath/linux/ethtool/ethtool_linux.go | 2 +- pkg/datapath/linux/ethtool/ethtool_linux_test.go | 2 +- pkg/datapath/linux/ipsec/doc.go | 2 +- pkg/datapath/linux/ipsec/ipsec_linux.go | 2 +- pkg/datapath/linux/ipsec/ipsec_linux_test.go | 2 +- pkg/datapath/linux/ipsec/logfields.go | 2 +- pkg/datapath/linux/ipsec/probe_linux.go | 2 +- pkg/datapath/linux/ipsec/xfrm_collector.go | 2 +- pkg/datapath/linux/ipsec/xfrm_collector_test.go | 2 +- pkg/datapath/linux/linux_defaults/doc.go | 2 +- pkg/datapath/linux/linux_defaults/linux_defaults.go | 2 +- pkg/datapath/linux/linux_defaults/mark.go | 2 +- pkg/datapath/linux/logfields.go | 2 +- pkg/datapath/linux/node.go | 2 +- pkg/datapath/linux/node_addressing.go | 2 +- pkg/datapath/linux/node_linux_test.go | 2 +- pkg/datapath/linux/node_test.go | 2 +- pkg/datapath/linux/probes/doc.go | 2 +- pkg/datapath/linux/probes/probes.go | 2 +- pkg/datapath/linux/probes/probes_privileged_test.go | 2 +- pkg/datapath/linux/probes/probes_test.go | 2 +- pkg/datapath/linux/requirements.go | 2 +- pkg/datapath/linux/route/doc.go | 2 +- pkg/datapath/linux/route/logfields.go | 2 +- pkg/datapath/linux/route/route.go | 2 +- pkg/datapath/linux/route/route_darwin.go | 2 +- pkg/datapath/linux/route/route_linux.go | 2 +- pkg/datapath/linux/route/route_linux_test.go | 2 +- pkg/datapath/linux/route/route_test.go | 2 +- pkg/datapath/linux/routing/info.go | 2 +- pkg/datapath/linux/routing/info_test.go | 2 +- pkg/datapath/linux/routing/migrate.go | 2 +- pkg/datapath/linux/routing/migrate_test.go | 2 +- pkg/datapath/linux/routing/routing.go | 2 +- pkg/datapath/linux/routing/routing_test.go | 2 +- pkg/datapath/loader.go | 2 +- pkg/datapath/loader/base.go | 2 +- pkg/datapath/loader/cache.go | 2 +- pkg/datapath/loader/cache_test.go | 2 +- pkg/datapath/loader/compile.go | 2 +- pkg/datapath/loader/doc.go | 2 +- pkg/datapath/loader/doc_test.go | 2 +- pkg/datapath/loader/hash.go | 2 +- pkg/datapath/loader/hash_test.go | 2 +- pkg/datapath/loader/link.go | 2 +- pkg/datapath/loader/loader.go | 2 +- pkg/datapath/loader/loader_test.go | 2 +- pkg/datapath/loader/metrics/metrics.go | 2 +- pkg/datapath/loader/netlink.go | 2 +- pkg/datapath/loader/netlink_test.go | 2 +- pkg/datapath/loader/template.go | 2 +- pkg/datapath/loader/template_test.go | 2 +- pkg/datapath/loader/xdp.go | 2 +- pkg/datapath/maps/doc.go | 2 +- pkg/datapath/maps/map.go | 2 +- pkg/datapath/maps/map_test.go | 2 +- pkg/datapath/node.go | 2 +- pkg/datapath/option/option.go | 2 +- pkg/datapath/prefilter/doc.go | 2 +- pkg/datapath/prefilter/prefilter.go | 2 +- pkg/datapath/types/node_addressing.go | 2 +- pkg/datapath/wireguard.go | 2 +- pkg/debug/subsystem.go | 2 +- pkg/debug/subsystem_test.go | 2 +- pkg/defaults/cluster.go | 2 +- pkg/defaults/defaults.go | 2 +- pkg/defaults/node.go | 2 +- pkg/ebpf/doc.go | 2 +- pkg/ebpf/ebpf.go | 2 +- pkg/ebpf/map.go | 2 +- pkg/ebpf/map_register.go | 2 +- pkg/egressgateway/doc.go | 2 +- pkg/egressgateway/endpoint.go | 2 +- pkg/egressgateway/manager.go | 2 +- pkg/egressgateway/manager_privileged_test.go | 2 +- pkg/egressgateway/policy.go | 2 +- pkg/elf/btf.go | 2 +- pkg/elf/doc.go | 2 +- pkg/elf/elf.go | 2 +- pkg/elf/elf_test.go | 2 +- pkg/elf/log.go | 2 +- pkg/elf/symbols.go | 2 +- pkg/endpoint/api.go | 2 +- pkg/endpoint/bpf.go | 2 +- pkg/endpoint/bpf_test.go | 2 +- pkg/endpoint/cache.go | 2 +- pkg/endpoint/directory.go | 2 +- pkg/endpoint/directory_test.go | 2 +- pkg/endpoint/endpoint.go | 2 +- pkg/endpoint/endpoint_status.go | 2 +- pkg/endpoint/endpoint_status_test.go | 2 +- pkg/endpoint/endpoint_test.go | 2 +- pkg/endpoint/errors.go | 2 +- pkg/endpoint/events.go | 2 +- pkg/endpoint/fqdn.go | 2 +- pkg/endpoint/id/id.go | 2 +- pkg/endpoint/id/id_test.go | 2 +- pkg/endpoint/id/identifiers.go | 2 +- pkg/endpoint/identifiers.go | 2 +- pkg/endpoint/lock.go | 2 +- pkg/endpoint/log.go | 2 +- pkg/endpoint/log_test.go | 2 +- pkg/endpoint/metrics.go | 2 +- pkg/endpoint/policy.go | 2 +- pkg/endpoint/policy_test.go | 2 +- pkg/endpoint/proxy.go | 2 +- pkg/endpoint/proxystats.go | 2 +- pkg/endpoint/redirect_test.go | 2 +- pkg/endpoint/regeneration/owner.go | 2 +- pkg/endpoint/regeneration/regeneration_context.go | 2 +- pkg/endpoint/regenerationcontext.go | 2 +- pkg/endpoint/restore.go | 2 +- pkg/endpoint/restore_test.go | 2 +- pkg/endpoint/status.go | 2 +- pkg/endpoint/test_utils.go | 2 +- pkg/endpointmanager/doc.go | 2 +- pkg/endpointmanager/errors.go | 2 +- pkg/endpointmanager/errors_test.go | 2 +- pkg/endpointmanager/gc.go | 2 +- pkg/endpointmanager/gc_test.go | 2 +- pkg/endpointmanager/host.go | 2 +- pkg/endpointmanager/idallocator/allocator.go | 2 +- pkg/endpointmanager/idallocator/allocator_test.go | 2 +- pkg/endpointmanager/manager.go | 2 +- pkg/endpointmanager/manager_test.go | 2 +- pkg/endpointmanager/subscribe.go | 2 +- pkg/envoy/accesslog.go | 2 +- pkg/envoy/accesslog_server.go | 2 +- pkg/envoy/accesslog_server_test.go | 2 +- pkg/envoy/envoy.go | 2 +- pkg/envoy/envoy_test.go | 2 +- pkg/envoy/grpc.go | 2 +- pkg/envoy/resources.go | 2 +- pkg/envoy/server.go | 2 +- pkg/envoy/server_test.go | 2 +- pkg/envoy/sort.go | 2 +- pkg/envoy/sort_test.go | 2 +- pkg/envoy/xds/ack.go | 2 +- pkg/envoy/xds/ack_test.go | 2 +- pkg/envoy/xds/cache.go | 2 +- pkg/envoy/xds/doc.go | 2 +- pkg/envoy/xds/log.go | 2 +- pkg/envoy/xds/node.go | 2 +- pkg/envoy/xds/node_test.go | 2 +- pkg/envoy/xds/server.go | 2 +- pkg/envoy/xds/server_e2e_test.go | 2 +- pkg/envoy/xds/set.go | 2 +- pkg/envoy/xds/stream.go | 2 +- pkg/envoy/xds/watcher.go | 2 +- pkg/eventqueue/doc.go | 2 +- pkg/eventqueue/eventqueue.go | 2 +- pkg/eventqueue/eventqueue_test.go | 2 +- pkg/flowdebug/flowdebug.go | 2 +- pkg/fqdn/cache.go | 2 +- pkg/fqdn/cache_test.go | 2 +- pkg/fqdn/config.go | 2 +- pkg/fqdn/dns/dns.go | 2 +- pkg/fqdn/dns/dns_test.go | 2 +- pkg/fqdn/dnsproxy/helpers.go | 2 +- pkg/fqdn/dnsproxy/helpers_test.go | 2 +- pkg/fqdn/dnsproxy/log.go | 2 +- pkg/fqdn/dnsproxy/proxy.go | 2 +- pkg/fqdn/dnsproxy/proxy_test.go | 2 +- pkg/fqdn/dnsproxy/udp.go | 2 +- pkg/fqdn/doc.go | 2 +- pkg/fqdn/fqdn_test.go | 2 +- pkg/fqdn/helpers.go | 2 +- pkg/fqdn/helpers_test.go | 2 +- pkg/fqdn/log.go | 2 +- pkg/fqdn/lookup.go | 2 +- pkg/fqdn/matchpattern/matchpattern.go | 2 +- pkg/fqdn/matchpattern/matchpattern_test.go | 2 +- pkg/fqdn/name_manager.go | 2 +- pkg/fqdn/name_manager_test.go | 2 +- pkg/fqdn/proxy/proxy.go | 2 +- pkg/fqdn/restore/restore.go | 2 +- pkg/health/client/client.go | 2 +- pkg/health/client/client_test.go | 2 +- pkg/health/defaults/defaults.go | 2 +- pkg/health/probe/probe.go | 2 +- pkg/health/probe/responder/responder.go | 2 +- pkg/health/server/health.go | 2 +- pkg/health/server/health_linux.go | 2 +- pkg/health/server/health_unspecified.go | 2 +- pkg/health/server/node.go | 2 +- pkg/health/server/prober.go | 2 +- pkg/health/server/prober_test.go | 2 +- pkg/health/server/server.go | 2 +- pkg/health/server/server_test.go | 2 +- pkg/health/server/status.go | 2 +- pkg/hubble/build/version.go | 2 +- pkg/hubble/build/version_test.go | 2 +- pkg/hubble/defaults/defaults.go | 2 +- pkg/hubble/exporter/exporter.go | 2 +- pkg/hubble/exporter/exporter_test.go | 2 +- pkg/hubble/exporter/exporteroption/defaults.go | 2 +- pkg/hubble/exporter/exporteroption/option.go | 2 +- pkg/hubble/filters/event_type_test.go | 2 +- pkg/hubble/monitor/consumer.go | 2 +- pkg/hubble/monitor/consumer_test.go | 2 +- pkg/hubble/observer/types/types.go | 2 +- pkg/hubble/peer/buffer.go | 2 +- pkg/hubble/peer/buffer_test.go | 2 +- pkg/hubble/peer/handler.go | 2 +- pkg/hubble/peer/handler_test.go | 2 +- pkg/hubble/peer/service.go | 2 +- pkg/hubble/peer/service_test.go | 2 +- pkg/hubble/peer/serviceoption/defaults.go | 2 +- pkg/hubble/peer/serviceoption/option.go | 2 +- pkg/hubble/peer/types/client.go | 2 +- pkg/hubble/peer/types/peer.go | 2 +- pkg/hubble/peer/types/peer_test.go | 2 +- pkg/hubble/recorder/pcap/pcap.go | 2 +- pkg/hubble/recorder/recorderoption/option.go | 2 +- pkg/hubble/recorder/service.go | 2 +- pkg/hubble/recorder/sink/dispatch.go | 2 +- pkg/hubble/recorder/sink/sink.go | 2 +- pkg/hubble/relay/defaults/defaults.go | 2 +- pkg/hubble/relay/observer/observer.go | 2 +- pkg/hubble/relay/observer/option.go | 2 +- pkg/hubble/relay/observer/server.go | 2 +- pkg/hubble/relay/observer/server_test.go | 2 +- pkg/hubble/relay/pool/backoff.go | 2 +- pkg/hubble/relay/pool/client.go | 2 +- pkg/hubble/relay/pool/manager.go | 2 +- pkg/hubble/relay/pool/manager_test.go | 2 +- pkg/hubble/relay/pool/option.go | 2 +- pkg/hubble/relay/pool/types/client.go | 2 +- pkg/hubble/relay/server/option.go | 2 +- pkg/hubble/relay/server/server.go | 2 +- pkg/iana/svcname.go | 2 +- pkg/iana/svcname_test.go | 2 +- pkg/identity/cache/allocation_test.go | 2 +- pkg/identity/cache/allocator.go | 2 +- pkg/identity/cache/cache.go | 2 +- pkg/identity/cache/cache_test.go | 2 +- pkg/identity/cache/local.go | 2 +- pkg/identity/cache/local_test.go | 2 +- pkg/identity/doc.go | 2 +- pkg/identity/identity.go | 2 +- pkg/identity/identity_test.go | 2 +- pkg/identity/identitymanager/doc.go | 2 +- pkg/identity/identitymanager/log.go | 2 +- pkg/identity/identitymanager/manager.go | 2 +- pkg/identity/identitymanager/manager_test.go | 2 +- pkg/identity/identitymanager/observer.go | 2 +- pkg/identity/model/identity.go | 2 +- pkg/identity/numericidentity.go | 2 +- pkg/identity/numericidentity_test.go | 2 +- pkg/identity/reserved.go | 2 +- pkg/idpool/idpool.go | 2 +- pkg/idpool/idpool_norace_test.go | 2 +- pkg/idpool/idpool_race_test.go | 2 +- pkg/idpool/idpool_test.go | 2 +- pkg/inctimer/inctimer.go | 2 +- pkg/inctimer/inctimer_test.go | 2 +- pkg/ip/cidr.go | 2 +- pkg/ip/doc.go | 2 +- pkg/ip/ip.go | 2 +- pkg/ip/ip_test.go | 2 +- pkg/ipam/allocator.go | 2 +- pkg/ipam/allocator/alibabacloud/alibabacloud.go | 2 +- pkg/ipam/allocator/allocator.go | 2 +- pkg/ipam/allocator/allocator_test.go | 2 +- pkg/ipam/allocator/aws/aws.go | 2 +- pkg/ipam/allocator/azure/azure.go | 2 +- pkg/ipam/allocator/clusterpool/clusterpool.go | 2 +- pkg/ipam/allocator/clusterpool/clusterpool_test.go | 2 +- pkg/ipam/allocator/group.go | 2 +- pkg/ipam/allocator/group_test.go | 2 +- pkg/ipam/allocator/noop.go | 2 +- pkg/ipam/allocator/noop_test.go | 2 +- pkg/ipam/allocator/podcidr/podcidr.go | 2 +- pkg/ipam/allocator/podcidr/podcidr_test.go | 2 +- pkg/ipam/allocator/pool_allocator.go | 2 +- pkg/ipam/allocator/pool_allocator_test.go | 2 +- pkg/ipam/allocator/provider.go | 2 +- pkg/ipam/allocator_test.go | 2 +- pkg/ipam/blacklist.go | 2 +- pkg/ipam/crd.go | 2 +- pkg/ipam/crd_eni.go | 2 +- pkg/ipam/crd_test.go | 2 +- pkg/ipam/doc.go | 2 +- pkg/ipam/hostscope.go | 2 +- pkg/ipam/ipam.go | 2 +- pkg/ipam/ipam_test.go | 2 +- pkg/ipam/metrics/metrics.go | 2 +- pkg/ipam/metrics/mock/mock.go | 2 +- pkg/ipam/metrics/mock/mock_test.go | 2 +- pkg/ipam/node.go | 2 +- pkg/ipam/node_manager.go | 2 +- pkg/ipam/node_manager_test.go | 2 +- pkg/ipam/node_test.go | 2 +- pkg/ipam/option/option.go | 2 +- pkg/ipam/types.go | 2 +- pkg/ipam/types/doc.go | 2 +- pkg/ipam/types/types.go | 2 +- pkg/ipam/types/types_test.go | 2 +- pkg/ipam/types/zz_generated.deepcopy.go | 2 +- pkg/ipam/types/zz_generated.deepequal.go | 2 +- pkg/ipcache/cidr.go | 2 +- pkg/ipcache/config.go | 2 +- pkg/ipcache/doc.go | 2 +- pkg/ipcache/errors.go | 2 +- pkg/ipcache/fake/ipcache.go | 2 +- pkg/ipcache/fake/ipcache_test.go | 2 +- pkg/ipcache/ipcache.go | 2 +- pkg/ipcache/ipcache_test.go | 2 +- pkg/ipcache/kvstore.go | 2 +- pkg/ipcache/listener.go | 2 +- pkg/ipcache/metadata.go | 2 +- pkg/ipcache/metadata_test.go | 2 +- pkg/ipcache/types/entries.go | 2 +- pkg/ipmasq/ipmasq.go | 2 +- pkg/ipmasq/ipmasq_test.go | 2 +- pkg/k8s/annotate.go | 2 +- pkg/k8s/apis/cilium.io/client/register.go | 2 +- pkg/k8s/apis/cilium.io/client/register_test.go | 2 +- pkg/k8s/apis/cilium.io/client/v1beta1.go | 2 +- pkg/k8s/apis/cilium.io/const.go | 2 +- pkg/k8s/apis/cilium.io/register.go | 2 +- pkg/k8s/apis/cilium.io/utils/utils.go | 2 +- pkg/k8s/apis/cilium.io/utils/utils_test.go | 2 +- pkg/k8s/apis/cilium.io/v2/ccnp_types.go | 2 +- pkg/k8s/apis/cilium.io/v2/cew_types.go | 2 +- pkg/k8s/apis/cilium.io/v2/clrp_types.go | 2 +- pkg/k8s/apis/cilium.io/v2/cnp_types.go | 2 +- pkg/k8s/apis/cilium.io/v2/doc.go | 2 +- pkg/k8s/apis/cilium.io/v2/errors.go | 2 +- pkg/k8s/apis/cilium.io/v2/register.go | 2 +- pkg/k8s/apis/cilium.io/v2/types.go | 2 +- pkg/k8s/apis/cilium.io/v2/types_test.go | 2 +- pkg/k8s/apis/cilium.io/v2/validator/logfields.go | 2 +- pkg/k8s/apis/cilium.io/v2/validator/unknown_fields.go | 2 +- pkg/k8s/apis/cilium.io/v2/validator/unknown_fields_test.go | 2 +- pkg/k8s/apis/cilium.io/v2/validator/validator.go | 2 +- pkg/k8s/apis/cilium.io/v2/validator/validator_test.go | 2 +- pkg/k8s/apis/cilium.io/v2/zz_generated.deepcopy.go | 2 +- pkg/k8s/apis/cilium.io/v2/zz_generated.deepequal.go | 2 +- pkg/k8s/apis/cilium.io/v2alpha1/doc.go | 2 +- pkg/k8s/apis/cilium.io/v2alpha1/register.go | 2 +- pkg/k8s/apis/cilium.io/v2alpha1/types.go | 2 +- pkg/k8s/apis/cilium.io/v2alpha1/zz_generated.deepcopy.go | 2 +- pkg/k8s/apis/cilium.io/v2alpha1/zz_generated.deepequal.go | 2 +- pkg/k8s/ccnpstatus.go | 2 +- pkg/k8s/client.go | 2 +- pkg/k8s/client/clientset/versioned/clientset.go | 2 +- pkg/k8s/client/clientset/versioned/doc.go | 2 +- pkg/k8s/client/clientset/versioned/fake/clientset_generated.go | 2 +- pkg/k8s/client/clientset/versioned/fake/doc.go | 2 +- pkg/k8s/client/clientset/versioned/fake/register.go | 2 +- pkg/k8s/client/clientset/versioned/scheme/doc.go | 2 +- pkg/k8s/client/clientset/versioned/scheme/register.go | 2 +- .../clientset/versioned/typed/cilium.io/v2/cilium.io_client.go | 2 +- .../typed/cilium.io/v2/ciliumclusterwidenetworkpolicy.go | 2 +- .../clientset/versioned/typed/cilium.io/v2/ciliumendpoint.go | 2 +- .../versioned/typed/cilium.io/v2/ciliumexternalworkload.go | 2 +- .../clientset/versioned/typed/cilium.io/v2/ciliumidentity.go | 2 +- .../versioned/typed/cilium.io/v2/ciliumlocalredirectpolicy.go | 2 +- .../versioned/typed/cilium.io/v2/ciliumnetworkpolicy.go | 2 +- .../client/clientset/versioned/typed/cilium.io/v2/ciliumnode.go | 2 +- pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/doc.go | 2 +- .../client/clientset/versioned/typed/cilium.io/v2/fake/doc.go | 2 +- .../versioned/typed/cilium.io/v2/fake/fake_cilium.io_client.go | 2 +- .../cilium.io/v2/fake/fake_ciliumclusterwidenetworkpolicy.go | 2 +- .../versioned/typed/cilium.io/v2/fake/fake_ciliumendpoint.go | 2 +- .../typed/cilium.io/v2/fake/fake_ciliumexternalworkload.go | 2 +- .../versioned/typed/cilium.io/v2/fake/fake_ciliumidentity.go | 2 +- .../typed/cilium.io/v2/fake/fake_ciliumlocalredirectpolicy.go | 2 +- .../typed/cilium.io/v2/fake/fake_ciliumnetworkpolicy.go | 2 +- .../versioned/typed/cilium.io/v2/fake/fake_ciliumnode.go | 2 +- .../versioned/typed/cilium.io/v2/generated_expansion.go | 2 +- .../versioned/typed/cilium.io/v2alpha1/cilium.io_client.go | 2 +- .../versioned/typed/cilium.io/v2alpha1/ciliumegressnatpolicy.go | 2 +- .../versioned/typed/cilium.io/v2alpha1/ciliumendpointslice.go | 2 +- .../client/clientset/versioned/typed/cilium.io/v2alpha1/doc.go | 2 +- .../clientset/versioned/typed/cilium.io/v2alpha1/fake/doc.go | 2 +- .../typed/cilium.io/v2alpha1/fake/fake_cilium.io_client.go | 2 +- .../typed/cilium.io/v2alpha1/fake/fake_ciliumegressnatpolicy.go | 2 +- .../typed/cilium.io/v2alpha1/fake/fake_ciliumendpointslice.go | 2 +- .../versioned/typed/cilium.io/v2alpha1/generated_expansion.go | 2 +- .../client/informers/externalversions/cilium.io/interface.go | 2 +- .../cilium.io/v2/ciliumclusterwidenetworkpolicy.go | 2 +- .../informers/externalversions/cilium.io/v2/ciliumendpoint.go | 2 +- .../externalversions/cilium.io/v2/ciliumexternalworkload.go | 2 +- .../informers/externalversions/cilium.io/v2/ciliumidentity.go | 2 +- .../externalversions/cilium.io/v2/ciliumlocalredirectpolicy.go | 2 +- .../externalversions/cilium.io/v2/ciliumnetworkpolicy.go | 2 +- .../informers/externalversions/cilium.io/v2/ciliumnode.go | 2 +- .../client/informers/externalversions/cilium.io/v2/interface.go | 2 +- .../cilium.io/v2alpha1/ciliumegressnatpolicy.go | 2 +- .../externalversions/cilium.io/v2alpha1/ciliumendpointslice.go | 2 +- .../informers/externalversions/cilium.io/v2alpha1/interface.go | 2 +- pkg/k8s/client/informers/externalversions/factory.go | 2 +- pkg/k8s/client/informers/externalversions/generic.go | 2 +- .../externalversions/internalinterfaces/factory_interfaces.go | 2 +- .../listers/cilium.io/v2/ciliumclusterwidenetworkpolicy.go | 2 +- pkg/k8s/client/listers/cilium.io/v2/ciliumendpoint.go | 2 +- pkg/k8s/client/listers/cilium.io/v2/ciliumexternalworkload.go | 2 +- pkg/k8s/client/listers/cilium.io/v2/ciliumidentity.go | 2 +- .../client/listers/cilium.io/v2/ciliumlocalredirectpolicy.go | 2 +- pkg/k8s/client/listers/cilium.io/v2/ciliumnetworkpolicy.go | 2 +- pkg/k8s/client/listers/cilium.io/v2/ciliumnode.go | 2 +- pkg/k8s/client/listers/cilium.io/v2/expansion_generated.go | 2 +- .../client/listers/cilium.io/v2alpha1/ciliumegressnatpolicy.go | 2 +- .../client/listers/cilium.io/v2alpha1/ciliumendpointslice.go | 2 +- .../client/listers/cilium.io/v2alpha1/expansion_generated.go | 2 +- pkg/k8s/client_test.go | 2 +- pkg/k8s/cnp.go | 2 +- pkg/k8s/cnp_export_test.go | 2 +- pkg/k8s/cnp_test.go | 2 +- pkg/k8s/cnpstatus.go | 2 +- pkg/k8s/config.go | 2 +- pkg/k8s/config/config.go | 2 +- pkg/k8s/constants/const.go | 2 +- pkg/k8s/doc.go | 2 +- pkg/k8s/endpoints.go | 2 +- pkg/k8s/endpoints_test.go | 2 +- pkg/k8s/error_helpers.go | 2 +- pkg/k8s/error_helpers_test.go | 2 +- pkg/k8s/factory_functions.go | 2 +- pkg/k8s/factory_functions_test.go | 2 +- pkg/k8s/identitybackend/identity.go | 2 +- pkg/k8s/identitybackend/identity_test.go | 2 +- pkg/k8s/informer/benchmarks/informer_benchmarks_test.go | 2 +- pkg/k8s/informer/informer.go | 2 +- pkg/k8s/init.go | 2 +- pkg/k8s/init_test.go | 2 +- pkg/k8s/json_patch.go | 2 +- pkg/k8s/labels.go | 2 +- pkg/k8s/logfields.go | 2 +- pkg/k8s/metrics/metrics.go | 2 +- pkg/k8s/metrics/metrics_test.go | 2 +- pkg/k8s/network_policy.go | 2 +- pkg/k8s/network_policy_test.go | 2 +- pkg/k8s/node.go | 2 +- pkg/k8s/node_test.go | 2 +- pkg/k8s/rule_translate.go | 2 +- pkg/k8s/rule_translate_test.go | 2 +- pkg/k8s/service.go | 2 +- pkg/k8s/service_cache.go | 2 +- pkg/k8s/service_cache_test.go | 2 +- pkg/k8s/service_test.go | 2 +- pkg/k8s/slim/k8s/api/core/v1/doc.go | 2 +- pkg/k8s/slim/k8s/api/core/v1/generated.pb.go | 2 +- pkg/k8s/slim/k8s/api/core/v1/generated.proto | 2 +- pkg/k8s/slim/k8s/api/core/v1/zz_generated.deepcopy.go | 2 +- pkg/k8s/slim/k8s/api/core/v1/zz_generated.deepequal.go | 2 +- pkg/k8s/slim/k8s/api/discovery/v1/doc.go | 2 +- pkg/k8s/slim/k8s/api/discovery/v1/generated.pb.go | 2 +- pkg/k8s/slim/k8s/api/discovery/v1/generated.proto | 2 +- pkg/k8s/slim/k8s/api/discovery/v1/zz_generated.deepcopy.go | 2 +- pkg/k8s/slim/k8s/api/discovery/v1/zz_generated.deepequal.go | 2 +- pkg/k8s/slim/k8s/api/discovery/v1beta1/doc.go | 2 +- pkg/k8s/slim/k8s/api/discovery/v1beta1/generated.pb.go | 2 +- pkg/k8s/slim/k8s/api/discovery/v1beta1/generated.proto | 2 +- pkg/k8s/slim/k8s/api/discovery/v1beta1/zz_generated.deepcopy.go | 2 +- .../slim/k8s/api/discovery/v1beta1/zz_generated.deepequal.go | 2 +- pkg/k8s/slim/k8s/api/networking/v1/doc.go | 2 +- pkg/k8s/slim/k8s/api/networking/v1/generated.pb.go | 2 +- pkg/k8s/slim/k8s/api/networking/v1/generated.proto | 2 +- pkg/k8s/slim/k8s/api/networking/v1/zz_generated.deepcopy.go | 2 +- pkg/k8s/slim/k8s/api/networking/v1/zz_generated.deepequal.go | 2 +- .../k8s/apiextensions-client/clientset/versioned/clientset.go | 2 +- .../slim/k8s/apiextensions-client/clientset/versioned/doc.go | 2 +- .../clientset/versioned/fake/clientset_generated.go | 2 +- .../k8s/apiextensions-client/clientset/versioned/fake/doc.go | 2 +- .../apiextensions-client/clientset/versioned/fake/register.go | 2 +- .../k8s/apiextensions-client/clientset/versioned/scheme/doc.go | 2 +- .../apiextensions-client/clientset/versioned/scheme/register.go | 2 +- .../versioned/typed/apiextensions/v1/apiextensions_client.go | 2 +- .../typed/apiextensions/v1/customresourcedefinition.go | 2 +- .../clientset/versioned/typed/apiextensions/v1/doc.go | 2 +- .../clientset/versioned/typed/apiextensions/v1/fake/doc.go | 2 +- .../typed/apiextensions/v1/fake/fake_apiextensions_client.go | 2 +- .../apiextensions/v1/fake/fake_customresourcedefinition.go | 2 +- .../versioned/typed/apiextensions/v1/generated_expansion.go | 2 +- pkg/k8s/slim/k8s/apis/apiextensions/v1/generated.pb.go | 2 +- pkg/k8s/slim/k8s/apis/apiextensions/v1/generated.proto | 2 +- pkg/k8s/slim/k8s/apis/apiextensions/v1/zz_generated.deepcopy.go | 2 +- pkg/k8s/slim/k8s/apis/labels/zz_generated.deepcopy.go | 2 +- pkg/k8s/slim/k8s/apis/labels/zz_generated.deepequal.go | 2 +- pkg/k8s/slim/k8s/apis/meta/v1/doc.go | 2 +- pkg/k8s/slim/k8s/apis/meta/v1/generated.pb.go | 2 +- pkg/k8s/slim/k8s/apis/meta/v1/generated.proto | 2 +- pkg/k8s/slim/k8s/apis/meta/v1/zz_generated.deepcopy.go | 2 +- pkg/k8s/slim/k8s/apis/meta/v1/zz_generated.deepequal.go | 2 +- pkg/k8s/slim/k8s/apis/meta/v1beta1/generated.pb.go | 2 +- pkg/k8s/slim/k8s/apis/meta/v1beta1/generated.proto | 2 +- pkg/k8s/slim/k8s/apis/meta/v1beta1/zz_generated.deepcopy.go | 2 +- pkg/k8s/slim/k8s/apis/util/intstr/doc.go | 2 +- pkg/k8s/slim/k8s/apis/util/intstr/generated.pb.go | 2 +- pkg/k8s/slim/k8s/apis/util/intstr/generated.proto | 2 +- pkg/k8s/slim/k8s/apis/util/intstr/zz_generated.deepequal.go | 2 +- pkg/k8s/slim/k8s/client/clientset/versioned/clientset.go | 2 +- pkg/k8s/slim/k8s/client/clientset/versioned/doc.go | 2 +- .../k8s/client/clientset/versioned/fake/clientset_generated.go | 2 +- pkg/k8s/slim/k8s/client/clientset/versioned/fake/doc.go | 2 +- pkg/k8s/slim/k8s/client/clientset/versioned/fake/register.go | 2 +- pkg/k8s/slim/k8s/client/clientset/versioned/scheme/doc.go | 2 +- pkg/k8s/slim/k8s/client/clientset/versioned/scheme/register.go | 2 +- .../k8s/client/clientset/versioned/typed/core/v1/core_client.go | 2 +- .../slim/k8s/client/clientset/versioned/typed/core/v1/doc.go | 2 +- .../k8s/client/clientset/versioned/typed/core/v1/endpoints.go | 2 +- .../k8s/client/clientset/versioned/typed/core/v1/fake/doc.go | 2 +- .../clientset/versioned/typed/core/v1/fake/fake_core_client.go | 2 +- .../clientset/versioned/typed/core/v1/fake/fake_endpoints.go | 2 +- .../clientset/versioned/typed/core/v1/fake/fake_namespace.go | 2 +- .../client/clientset/versioned/typed/core/v1/fake/fake_node.go | 2 +- .../client/clientset/versioned/typed/core/v1/fake/fake_pod.go | 2 +- .../clientset/versioned/typed/core/v1/fake/fake_service.go | 2 +- .../clientset/versioned/typed/core/v1/generated_expansion.go | 2 +- .../k8s/client/clientset/versioned/typed/core/v1/namespace.go | 2 +- .../slim/k8s/client/clientset/versioned/typed/core/v1/node.go | 2 +- .../slim/k8s/client/clientset/versioned/typed/core/v1/pod.go | 2 +- .../k8s/client/clientset/versioned/typed/core/v1/service.go | 2 +- .../clientset/versioned/typed/discovery/v1/discovery_client.go | 2 +- .../k8s/client/clientset/versioned/typed/discovery/v1/doc.go | 2 +- .../clientset/versioned/typed/discovery/v1/endpointslice.go | 2 +- .../client/clientset/versioned/typed/discovery/v1/fake/doc.go | 2 +- .../versioned/typed/discovery/v1/fake/fake_discovery_client.go | 2 +- .../versioned/typed/discovery/v1/fake/fake_endpointslice.go | 2 +- .../versioned/typed/discovery/v1/generated_expansion.go | 2 +- .../versioned/typed/discovery/v1beta1/discovery_client.go | 2 +- .../client/clientset/versioned/typed/discovery/v1beta1/doc.go | 2 +- .../versioned/typed/discovery/v1beta1/endpointslice.go | 2 +- .../clientset/versioned/typed/discovery/v1beta1/fake/doc.go | 2 +- .../typed/discovery/v1beta1/fake/fake_discovery_client.go | 2 +- .../typed/discovery/v1beta1/fake/fake_endpointslice.go | 2 +- .../versioned/typed/discovery/v1beta1/generated_expansion.go | 2 +- .../k8s/client/clientset/versioned/typed/networking/v1/doc.go | 2 +- .../client/clientset/versioned/typed/networking/v1/fake/doc.go | 2 +- .../typed/networking/v1/fake/fake_networking_client.go | 2 +- .../versioned/typed/networking/v1/fake/fake_networkpolicy.go | 2 +- .../versioned/typed/networking/v1/generated_expansion.go | 2 +- .../versioned/typed/networking/v1/networking_client.go | 2 +- .../clientset/versioned/typed/networking/v1/networkpolicy.go | 2 +- pkg/k8s/synced/apigroups.go | 2 +- pkg/k8s/synced/crd.go | 2 +- pkg/k8s/synced/logfields.go | 2 +- pkg/k8s/synced/resources.go | 2 +- pkg/k8s/types/doc.go | 2 +- pkg/k8s/types/types.go | 2 +- pkg/k8s/types/zz_generated.deepcopy.go | 2 +- pkg/k8s/types/zz_generated.deepequal.go | 2 +- pkg/k8s/utils/utils.go | 2 +- pkg/k8s/utils/utils_test.go | 2 +- pkg/k8s/version/version.go | 2 +- pkg/k8s/watchers/cilium_clusterwide_network_policy.go | 2 +- pkg/k8s/watchers/cilium_egress_gateway_policy.go | 2 +- pkg/k8s/watchers/cilium_endpoint.go | 2 +- pkg/k8s/watchers/cilium_endpoint_slice.go | 2 +- pkg/k8s/watchers/cilium_endpoint_slice_subscriber.go | 2 +- pkg/k8s/watchers/cilium_local_redirect_policy.go | 2 +- pkg/k8s/watchers/cilium_network_policy.go | 2 +- pkg/k8s/watchers/cilium_node.go | 2 +- pkg/k8s/watchers/endpoint.go | 2 +- pkg/k8s/watchers/endpoint_slice.go | 2 +- pkg/k8s/watchers/endpointsynchronizer.go | 2 +- pkg/k8s/watchers/namespace.go | 2 +- pkg/k8s/watchers/network_policy.go | 2 +- pkg/k8s/watchers/node.go | 2 +- pkg/k8s/watchers/pod.go | 2 +- pkg/k8s/watchers/service.go | 2 +- pkg/k8s/watchers/subscriber/ces.go | 2 +- pkg/k8s/watchers/subscriber/ciliumnode.go | 2 +- pkg/k8s/watchers/subscriber/node.go | 2 +- pkg/k8s/watchers/subscriber/raw.go | 2 +- pkg/k8s/watchers/subscriber/service.go | 2 +- pkg/k8s/watchers/subscriber/subscriber.go | 2 +- pkg/k8s/watchers/watcher.go | 2 +- pkg/k8s/watchers/watcher_test.go | 2 +- pkg/k8s/zz_generated.deepcopy.go | 2 +- pkg/k8s/zz_generated.deepequal.go | 2 +- pkg/kafka/doc.go | 2 +- pkg/kafka/error.go | 2 +- pkg/kafka/policy.go | 2 +- pkg/kafka/policy_test.go | 2 +- pkg/kafka/request.go | 2 +- pkg/kafka/response.go | 2 +- pkg/kvstore/allocator/allocator.go | 2 +- pkg/kvstore/allocator/allocator_test.go | 2 +- pkg/kvstore/allocator/doc.go | 2 +- pkg/kvstore/allocator/logfields.go | 2 +- pkg/kvstore/backend.go | 2 +- pkg/kvstore/backwards_compat.go | 2 +- pkg/kvstore/base_test.go | 2 +- pkg/kvstore/client.go | 2 +- pkg/kvstore/config.go | 2 +- pkg/kvstore/consul.go | 2 +- pkg/kvstore/consul_test.go | 2 +- pkg/kvstore/doc.go | 2 +- pkg/kvstore/dummy.go | 2 +- pkg/kvstore/etcd.go | 2 +- pkg/kvstore/etcd_test.go | 2 +- pkg/kvstore/events.go | 2 +- pkg/kvstore/kvstore.go | 2 +- pkg/kvstore/kvstore_test.go | 2 +- pkg/kvstore/lock.go | 2 +- pkg/kvstore/lock_test.go | 2 +- pkg/kvstore/logfields.go | 2 +- pkg/kvstore/metrics.go | 2 +- pkg/kvstore/store/doc.go | 2 +- pkg/kvstore/store/store.go | 2 +- pkg/kvstore/store/store_test.go | 2 +- pkg/kvstore/trace.go | 2 +- pkg/kvstore/watcher_cache.go | 2 +- pkg/labels/array.go | 2 +- pkg/labels/array_test.go | 2 +- pkg/labels/arraylist.go | 2 +- pkg/labels/arraylist_test.go | 2 +- pkg/labels/cidr/cidr.go | 2 +- pkg/labels/cidr/cidr_test.go | 2 +- pkg/labels/cidr/doc.go | 2 +- pkg/labels/doc.go | 2 +- pkg/labels/labels.go | 2 +- pkg/labels/labels_test.go | 2 +- pkg/labels/model/model.go | 2 +- pkg/labels/oplabels.go | 2 +- pkg/labels/zz_generated.deepequal.go | 2 +- pkg/labelsfilter/filter.go | 2 +- pkg/labelsfilter/filter_test.go | 2 +- pkg/launcher/launcher.go | 2 +- pkg/loadbalancer/doc.go | 2 +- pkg/loadbalancer/loadbalancer.go | 2 +- pkg/loadbalancer/loadbalancer_test.go | 2 +- pkg/loadbalancer/zz_generated.deepcopy.go | 2 +- pkg/loadbalancer/zz_generated.deepequal.go | 2 +- pkg/loadinfo/doc.go | 2 +- pkg/loadinfo/loadinfo.go | 2 +- pkg/lock/lock.go | 2 +- pkg/lock/lock_debug.go | 2 +- pkg/lock/lock_fast.go | 2 +- pkg/lock/lock_test.go | 2 +- pkg/lock/semaphored_mutex.go | 2 +- pkg/lock/semaphored_mutex_test.go | 2 +- pkg/lock/stoppable_waitgroup.go | 2 +- pkg/lock/stoppable_waitgroup_test.go | 2 +- pkg/logging/debugdetection.go | 2 +- pkg/logging/hooks/file_rotation.go | 2 +- pkg/logging/limiter.go | 2 +- pkg/logging/limiter_test.go | 2 +- pkg/logging/logfields/helpers.go | 2 +- pkg/logging/logfields/logfields.go | 2 +- pkg/logging/logging.go | 2 +- pkg/logging/logging_nosyslog.go | 2 +- pkg/logging/logging_syslog.go | 2 +- pkg/logging/logging_test.go | 2 +- pkg/mac/mac.go | 2 +- pkg/mac/mac_test.go | 2 +- pkg/maglev/maglev.go | 2 +- pkg/maglev/maglev_test.go | 2 +- pkg/maps/bwmap/bwmap.go | 2 +- pkg/maps/bwmap/doc.go | 2 +- pkg/maps/callsmap/callsmap.go | 2 +- pkg/maps/callsmap/doc.go | 2 +- pkg/maps/cidrmap/cidrmap.go | 2 +- pkg/maps/ctmap/ctmap.go | 2 +- pkg/maps/ctmap/ctmap_privileged_test.go | 2 +- pkg/maps/ctmap/ctmap_test.go | 2 +- pkg/maps/ctmap/doc.go | 2 +- pkg/maps/ctmap/gc/gc.go | 2 +- pkg/maps/ctmap/lookup.go | 2 +- pkg/maps/ctmap/metrics.go | 2 +- pkg/maps/ctmap/types.go | 2 +- pkg/maps/ctmap/utils.go | 2 +- pkg/maps/ctmap/zz_generated.deepcopy.go | 2 +- pkg/maps/egressmap/doc.go | 2 +- pkg/maps/egressmap/egress.go | 2 +- pkg/maps/egressmap/egress_privileged_test.go | 2 +- pkg/maps/egressmap/policy.go | 2 +- pkg/maps/encrypt/doc.go | 2 +- pkg/maps/encrypt/encrypt.go | 2 +- pkg/maps/encrypt/zz_generated.deepcopy.go | 2 +- pkg/maps/eppolicymap/doc.go | 2 +- pkg/maps/eppolicymap/eppolicymap.go | 2 +- pkg/maps/eppolicymap/eppolicymap_test.go | 2 +- pkg/maps/eppolicymap/zz_generated.deepcopy.go | 2 +- pkg/maps/eventsmap/doc.go | 2 +- pkg/maps/eventsmap/eventsmap.go | 2 +- pkg/maps/eventsmap/zz_generated.deepcopy.go | 2 +- pkg/maps/fragmap/doc.go | 2 +- pkg/maps/fragmap/fragmap.go | 2 +- pkg/maps/fragmap/zz_generated.deepcopy.go | 2 +- pkg/maps/ipcache/doc.go | 2 +- pkg/maps/ipcache/ipcache.go | 2 +- pkg/maps/ipcache/zz_generated.deepcopy.go | 2 +- pkg/maps/ipmasq/ipmasq.go | 2 +- pkg/maps/ipmasq/zz_generated.deepcopy.go | 2 +- pkg/maps/lbmap/affinity.go | 2 +- pkg/maps/lbmap/doc.go | 2 +- pkg/maps/lbmap/ipv4.go | 2 +- pkg/maps/lbmap/ipv6.go | 2 +- pkg/maps/lbmap/lbmap.go | 2 +- pkg/maps/lbmap/maglev.go | 2 +- pkg/maps/lbmap/maglev_inner_map.go | 2 +- pkg/maps/lbmap/maglev_outer_map.go | 2 +- pkg/maps/lbmap/maglev_test.go | 2 +- pkg/maps/lbmap/source_range.go | 2 +- pkg/maps/lbmap/types.go | 2 +- pkg/maps/lbmap/zz_generated.deepcopy.go | 2 +- pkg/maps/lxcmap/doc.go | 2 +- pkg/maps/lxcmap/lxcmap.go | 2 +- pkg/maps/lxcmap/zz_generated.deepcopy.go | 2 +- pkg/maps/metricsmap/doc.go | 2 +- pkg/maps/metricsmap/metricsmap.go | 2 +- pkg/maps/nat/doc.go | 2 +- pkg/maps/nat/ipv4.go | 2 +- pkg/maps/nat/ipv6.go | 2 +- pkg/maps/nat/nat.go | 2 +- pkg/maps/nat/types.go | 2 +- pkg/maps/nat/zz_generated.deepcopy.go | 2 +- pkg/maps/neighborsmap/doc.go | 2 +- pkg/maps/neighborsmap/neighborsmap.go | 2 +- pkg/maps/neighborsmap/zz_generated.deepcopy.go | 2 +- pkg/maps/policymap/callmap.go | 2 +- pkg/maps/policymap/doc.go | 2 +- pkg/maps/policymap/policymap.go | 2 +- pkg/maps/policymap/policymap_privileged_test.go | 2 +- pkg/maps/policymap/policymap_test.go | 2 +- pkg/maps/policymap/zz_generated.deepcopy.go | 2 +- pkg/maps/recorder/doc.go | 2 +- pkg/maps/recorder/ipv4.go | 2 +- pkg/maps/recorder/ipv6.go | 2 +- pkg/maps/recorder/recorder.go | 2 +- pkg/maps/signalmap/doc.go | 2 +- pkg/maps/signalmap/signalmap.go | 2 +- pkg/maps/signalmap/zz_generated.deepcopy.go | 2 +- pkg/maps/sockmap/doc.go | 2 +- pkg/maps/sockmap/sockmap.go | 2 +- pkg/maps/sockmap/zz_generated.deepcopy.go | 2 +- pkg/maps/tunnel/doc.go | 2 +- pkg/maps/tunnel/logfields.go | 2 +- pkg/maps/tunnel/tunnel.go | 2 +- pkg/maps/tunnel/zz_generated.deepcopy.go | 2 +- pkg/math/int.go | 2 +- pkg/math/int_test.go | 2 +- pkg/mcastmanager/doc.go | 2 +- pkg/mcastmanager/mcastmanager.go | 2 +- pkg/mcastmanager/mcastmanager_test.go | 2 +- pkg/metrics/bpf.go | 2 +- pkg/metrics/interfaces.go | 2 +- pkg/metrics/logging_hook.go | 2 +- pkg/metrics/metrics.go | 2 +- pkg/metrics/metrics_test.go | 2 +- pkg/metrics/metrics_unix.go | 2 +- pkg/metrics/middleware.go | 2 +- pkg/metrics/middleware_test.go | 2 +- pkg/metrics/status.go | 2 +- pkg/metrics/status_test.go | 2 +- pkg/modules/doc.go | 2 +- pkg/modules/modules.go | 2 +- pkg/modules/modules_linux.go | 2 +- pkg/modules/modules_linux_privileged_test.go | 2 +- pkg/modules/modules_test.go | 2 +- pkg/modules/modules_unspecified.go | 2 +- pkg/monitor/agent/agent.go | 2 +- pkg/monitor/agent/consumer/consumer.go | 2 +- pkg/monitor/agent/listener/listener.go | 2 +- pkg/monitor/agent/listener1_2.go | 2 +- pkg/monitor/agent/listener1_2_test.go | 2 +- pkg/monitor/agent/server.go | 2 +- pkg/monitor/alignchecker/alignchecker.go | 2 +- pkg/monitor/alignchecker/doc.go | 2 +- pkg/monitor/api/drop.go | 2 +- pkg/monitor/api/types.go | 2 +- pkg/monitor/api/types_test.go | 2 +- pkg/monitor/datapath_debug.go | 2 +- pkg/monitor/datapath_drop.go | 2 +- pkg/monitor/datapath_policy.go | 2 +- pkg/monitor/datapath_recorder.go | 2 +- pkg/monitor/datapath_trace.go | 2 +- pkg/monitor/datapath_trace_test.go | 2 +- pkg/monitor/dissect.go | 2 +- pkg/monitor/dissect_test.go | 2 +- pkg/monitor/format/doc.go | 2 +- pkg/monitor/format/flags.go | 2 +- pkg/monitor/format/format.go | 2 +- pkg/monitor/logrecord.go | 2 +- pkg/monitor/notifications/notifications.go | 2 +- pkg/monitor/payload/monitor_payload.go | 2 +- pkg/monitor/payload/monitor_payload_test.go | 2 +- pkg/monitor/types.go | 2 +- pkg/mountinfo/mountinfo.go | 2 +- pkg/mountinfo/mountinfo_linux.go | 2 +- pkg/mountinfo/mountinfo_privileged_test.go | 2 +- pkg/mountinfo/mountinfo_test.go | 2 +- pkg/mountinfo/mountinfo_unspecified.go | 2 +- pkg/mtu/detect.go | 2 +- pkg/mtu/detect_darwin.go | 2 +- pkg/mtu/detect_linux.go | 2 +- pkg/mtu/detect_linux_test.go | 2 +- pkg/mtu/doc.go | 2 +- pkg/mtu/mtu.go | 2 +- pkg/mtu/mtu_test.go | 2 +- pkg/multicast/doc.go | 2 +- pkg/multicast/multicast.go | 2 +- pkg/multicast/multicast_test.go | 2 +- pkg/murmur3/murmur3.go | 2 +- pkg/murmur3/murmur3_test.go | 2 +- pkg/netns/cookie.go | 2 +- pkg/netns/doc.go | 2 +- pkg/netns/netns.go | 2 +- pkg/node/address.go | 2 +- pkg/node/address_darwin.go | 2 +- pkg/node/address_linux.go | 2 +- pkg/node/address_linux_test.go | 2 +- pkg/node/address_test.go | 2 +- pkg/node/addressing/addresstype.go | 2 +- pkg/node/doc.go | 2 +- pkg/node/host_endpoint.go | 2 +- pkg/node/ip.go | 2 +- pkg/node/ip_linux.go | 2 +- pkg/node/logfields.go | 2 +- pkg/node/manager/logfields.go | 2 +- pkg/node/manager/manager.go | 2 +- pkg/node/manager/manager_test.go | 2 +- pkg/node/store/logfields.go | 2 +- pkg/node/store/store.go | 2 +- pkg/node/types/logfields.go | 2 +- pkg/node/types/node.go | 2 +- pkg/node/types/node_test.go | 2 +- pkg/node/types/nodename.go | 2 +- pkg/node/types/nodename_test.go | 2 +- pkg/node/types/zz_generated.deepcopy.go | 2 +- pkg/nodediscovery/nodediscovery.go | 2 +- pkg/option/config.go | 2 +- pkg/option/config_test.go | 2 +- pkg/option/constants.go | 2 +- pkg/option/daemon.go | 2 +- pkg/option/endpoint.go | 2 +- pkg/option/fake/config.go | 2 +- pkg/option/map_options.go | 2 +- pkg/option/monitor.go | 2 +- pkg/option/monitor_test.go | 2 +- pkg/option/option.go | 2 +- pkg/option/option_test.go | 2 +- pkg/option/runtime_options.go | 2 +- pkg/pidfile/pidfile.go | 2 +- pkg/pidfile/pidfile_test.go | 2 +- pkg/policy/api/cidr.go | 2 +- pkg/policy/api/cidr_test.go | 2 +- pkg/policy/api/decision.go | 2 +- pkg/policy/api/doc.go | 2 +- pkg/policy/api/egress.go | 2 +- pkg/policy/api/egress_test.go | 2 +- pkg/policy/api/entity.go | 2 +- pkg/policy/api/entity_test.go | 2 +- pkg/policy/api/fqdn.go | 2 +- pkg/policy/api/fqdn_test.go | 2 +- pkg/policy/api/groups.go | 2 +- pkg/policy/api/groups_test.go | 2 +- pkg/policy/api/http.go | 2 +- pkg/policy/api/icmp.go | 2 +- pkg/policy/api/ingress.go | 2 +- pkg/policy/api/ingress_test.go | 2 +- pkg/policy/api/kafka/doc.go | 2 +- pkg/policy/api/kafka/kafka.go | 2 +- pkg/policy/api/kafka/zz_generated.deepequal.go | 2 +- pkg/policy/api/l4.go | 2 +- pkg/policy/api/l7.go | 2 +- pkg/policy/api/rule.go | 2 +- pkg/policy/api/rule_test.go | 2 +- pkg/policy/api/rule_validation.go | 2 +- pkg/policy/api/rule_validation_test.go | 2 +- pkg/policy/api/rules.go | 2 +- pkg/policy/api/rules_test.go | 2 +- pkg/policy/api/selector.go | 2 +- pkg/policy/api/selector_test.go | 2 +- pkg/policy/api/service.go | 2 +- pkg/policy/api/utils.go | 2 +- pkg/policy/api/utils_test.go | 2 +- pkg/policy/api/zz_generated.deepcopy.go | 2 +- pkg/policy/api/zz_generated.deepequal.go | 2 +- pkg/policy/cidr.go | 2 +- pkg/policy/cidr_test.go | 2 +- pkg/policy/config.go | 2 +- pkg/policy/distillery.go | 2 +- pkg/policy/distillery_test.go | 2 +- pkg/policy/groups/actions.go | 2 +- pkg/policy/groups/aws/aws.go | 2 +- pkg/policy/groups/cache.go | 2 +- pkg/policy/groups/cache_test.go | 2 +- pkg/policy/groups/controllers.go | 2 +- pkg/policy/groups/groups_test.go | 2 +- pkg/policy/groups/helpers.go | 2 +- pkg/policy/groups/helpers_test.go | 2 +- pkg/policy/groups/log.go | 2 +- pkg/policy/identifier.go | 2 +- pkg/policy/identifier_test.go | 2 +- pkg/policy/l4.go | 2 +- pkg/policy/l4_filter_deny_test.go | 2 +- pkg/policy/l4_filter_test.go | 2 +- pkg/policy/l4_test.go | 2 +- pkg/policy/mapstate.go | 2 +- pkg/policy/mapstate_test.go | 2 +- pkg/policy/policy.go | 2 +- pkg/policy/policy_test.go | 2 +- pkg/policy/portmap.go | 2 +- pkg/policy/portmap_test.go | 2 +- pkg/policy/proxyid.go | 2 +- pkg/policy/proxyid_test.go | 2 +- pkg/policy/repository.go | 2 +- pkg/policy/repository_deny_test.go | 2 +- pkg/policy/repository_test.go | 2 +- pkg/policy/resolve.go | 2 +- pkg/policy/resolve_deny_test.go | 2 +- pkg/policy/resolve_test.go | 2 +- pkg/policy/rule.go | 2 +- pkg/policy/rule_test.go | 2 +- pkg/policy/rules.go | 2 +- pkg/policy/selectorcache.go | 2 +- pkg/policy/selectorcache_test.go | 2 +- pkg/policy/trace/yaml.go | 2 +- pkg/policy/trafficdirection/doc.go | 2 +- pkg/policy/trafficdirection/trafficdirection.go | 2 +- pkg/policy/trigger.go | 2 +- pkg/policy/utils.go | 2 +- pkg/policy/utils_test.go | 2 +- pkg/policy/visibility.go | 2 +- pkg/policy/visibility_test.go | 2 +- pkg/pprof/pprof.go | 2 +- pkg/probe/doc.go | 2 +- pkg/probe/probe.go | 2 +- pkg/proxy/accesslog/record.go | 2 +- pkg/proxy/dns.go | 2 +- pkg/proxy/envoyproxy.go | 2 +- pkg/proxy/epinfo.go | 2 +- pkg/proxy/logger/doc.go | 2 +- pkg/proxy/logger/epinfo.go | 2 +- pkg/proxy/logger/logger.go | 2 +- pkg/proxy/logger/test/epinfo.go | 2 +- pkg/proxy/netstat.go | 2 +- pkg/proxy/proxy.go | 2 +- pkg/proxy/redirect.go | 2 +- pkg/rand/rand_name.go | 2 +- pkg/rand/rand_name_test.go | 2 +- pkg/rand/safe_rand.go | 2 +- pkg/rand/safe_rand_test.go | 2 +- pkg/rate/api_limiter.go | 2 +- pkg/rate/api_limiter_norace_test.go | 2 +- pkg/rate/api_limiter_race_test.go | 2 +- pkg/rate/api_limiter_test.go | 2 +- pkg/rate/doc.go | 2 +- pkg/rate/limiter.go | 2 +- pkg/rate/limiter_test.go | 2 +- pkg/recorder/doc.go | 2 +- pkg/recorder/recorder.go | 2 +- pkg/recorder/zz_generated.deepcopy.go | 2 +- pkg/redirectpolicy/doc.go | 2 +- pkg/redirectpolicy/manager.go | 2 +- pkg/redirectpolicy/manager_test.go | 2 +- pkg/redirectpolicy/redirectpolicy.go | 2 +- pkg/revert/finalize.go | 2 +- pkg/revert/finalize_test.go | 2 +- pkg/revert/revert.go | 2 +- pkg/revert/revert_test.go | 2 +- pkg/safetime/doc.go | 2 +- pkg/safetime/safetime.go | 2 +- pkg/safetime/safetime_test.go | 2 +- pkg/serializer/func_queue.go | 2 +- pkg/serializer/func_queue_test.go | 2 +- pkg/service/const.go | 2 +- pkg/service/healthserver/healthserver.go | 2 +- pkg/service/healthserver/healthserver_mock.go | 2 +- pkg/service/healthserver/healthserver_test.go | 2 +- pkg/service/id.go | 2 +- pkg/service/id_local.go | 2 +- pkg/service/id_test.go | 2 +- pkg/service/logfields.go | 2 +- pkg/service/service.go | 2 +- pkg/service/service_test.go | 2 +- pkg/service/store/logfields.go | 2 +- pkg/service/store/store.go | 2 +- pkg/service/store/store_test.go | 2 +- pkg/service/store/zz_generated.deepcopy.go | 2 +- pkg/service/store/zz_generated.deepequal.go | 2 +- pkg/set/doc.go | 2 +- pkg/set/set.go | 2 +- pkg/set/set_test.go | 2 +- pkg/signal/doc.go | 2 +- pkg/signal/signal.go | 2 +- pkg/sockops/sockops.go | 2 +- pkg/source/source.go | 2 +- pkg/source/source_test.go | 2 +- pkg/spanstat/doc.go | 2 +- pkg/spanstat/spanstat.go | 2 +- pkg/spanstat/spanstat_test.go | 2 +- pkg/status/status.go | 2 +- pkg/status/status_test.go | 2 +- pkg/sysctl/doc.go | 2 +- pkg/sysctl/sysctl.go | 2 +- pkg/sysctl/sysctl_linux_privileged_test.go | 2 +- pkg/sysctl/sysctl_test.go | 2 +- pkg/testutils/condition.go | 2 +- pkg/testutils/condition_test.go | 2 +- pkg/testutils/endpoint.go | 2 +- pkg/testutils/identity/allocator.go | 2 +- pkg/testutils/identity/notifier.go | 2 +- pkg/testutils/ipam.go | 2 +- pkg/testutils/log.go | 2 +- pkg/testutils/mockmaps/ctmap.go | 2 +- pkg/testutils/mockmaps/lbmap.go | 2 +- pkg/testutils/mockmaps/metricsmap.go | 2 +- pkg/testutils/mockmaps/nat.go | 2 +- pkg/testutils/testutils_test.go | 2 +- pkg/trigger/doc.go | 2 +- pkg/trigger/trigger.go | 2 +- pkg/trigger/trigger_test.go | 2 +- pkg/tuple/doc.go | 2 +- pkg/tuple/ipv4.go | 2 +- pkg/tuple/ipv6.go | 2 +- pkg/tuple/tuple.go | 2 +- pkg/tuple/zz_generated.deepcopy.go | 2 +- pkg/types/ipv4.go | 2 +- pkg/types/ipv4_test.go | 2 +- pkg/types/ipv6.go | 2 +- pkg/types/ipv6_test.go | 2 +- pkg/types/macaddr.go | 2 +- pkg/types/macaddr_test.go | 2 +- pkg/u8proto/u8proto.go | 2 +- pkg/version/version.go | 2 +- pkg/version/version_test.go | 2 +- pkg/version/version_unix.go | 2 +- pkg/version/version_unix_test.go | 2 +- pkg/versioncheck/check.go | 2 +- pkg/versioncheck/check_test.go | 2 +- pkg/wireguard/agent/agent.go | 2 +- pkg/wireguard/agent/agent_test.go | 2 +- pkg/wireguard/types/types.go | 2 +- plugins/Makefile | 2 +- plugins/cilium-cni/Makefile | 2 +- plugins/cilium-cni/chaining/api/api.go | 2 +- plugins/cilium-cni/chaining/api/api_test.go | 2 +- plugins/cilium-cni/chaining/awscni/aws-cni.go | 2 +- plugins/cilium-cni/chaining/azure/azure-cni.go | 2 +- plugins/cilium-cni/chaining/flannel/flannel.go | 2 +- plugins/cilium-cni/chaining/generic-veth/generic-veth.go | 2 +- plugins/cilium-cni/chaining/portmap/portmap.go | 2 +- plugins/cilium-cni/cilium-cni.go | 2 +- plugins/cilium-cni/interface.go | 2 +- plugins/cilium-cni/types/types.go | 2 +- plugins/cilium-cni/types/types_test.go | 2 +- plugins/cilium-docker/Makefile | 2 +- plugins/cilium-docker/driver/driver.go | 2 +- plugins/cilium-docker/driver/ipam.go | 2 +- plugins/cilium-docker/main.go | 2 +- plugins/cilium-docker/version.go | 2 +- proxylib/Makefile | 2 +- proxylib/accesslog/client.go | 2 +- proxylib/cassandra/cassandraparser.go | 2 +- proxylib/cassandra/cassandraparser_test.go | 2 +- proxylib/helpers_test.go | 2 +- proxylib/kafka/parser.go | 2 +- proxylib/kafka/parser_test.go | 2 +- proxylib/memcached/binary/parser.go | 2 +- proxylib/memcached/binary/parser_test.go | 2 +- proxylib/memcached/meta/meta.go | 2 +- proxylib/memcached/parser.go | 2 +- proxylib/memcached/text/parser.go | 2 +- proxylib/npds/client.go | 2 +- proxylib/npds/client_test.go | 2 +- proxylib/proxylib.go | 2 +- proxylib/proxylib/connection.go | 2 +- proxylib/proxylib/input_test.go | 2 +- proxylib/proxylib/instance.go | 2 +- proxylib/proxylib/parserfactory.go | 2 +- proxylib/proxylib/policymap.go | 2 +- proxylib/proxylib/reader.go | 2 +- proxylib/proxylib/test_util.go | 2 +- proxylib/proxylib/types.go | 2 +- proxylib/proxylib/types.h | 2 +- proxylib/proxylib_memcached_test.go | 2 +- proxylib/proxylib_test.go | 2 +- proxylib/r2d2/r2d2parser.go | 2 +- proxylib/r2d2/r2d2parser_test.go | 2 +- proxylib/test/accesslog_server.go | 2 +- proxylib/test/tmpdir.go | 2 +- proxylib/testparsers/blockparser.go | 2 +- proxylib/testparsers/headerparser.go | 2 +- proxylib/testparsers/lineparser.go | 2 +- proxylib/testparsers/passer.go | 2 +- test/Makefile | 2 +- test/bpf/Makefile | 2 +- test/bpf/check-complexity.sh | 2 +- test/bpf/elf-demo.c | 2 +- test/bpf/nat-test.c | 2 +- test/bpf/probes-test.sh | 2 +- test/bpf/unit-test.c | 2 +- test/bpf/verifier-test.sh | 2 +- test/config/config.go | 2 +- test/fuzzing/fuzz.go | 2 +- test/ginkgo-ext/writer.go | 2 +- test/gke/resize-cluster.sh | 2 +- test/helpers/buffer.go | 2 +- test/helpers/cilium.go | 2 +- test/helpers/cmd.go | 2 +- test/helpers/cons.go | 2 +- test/helpers/constants/images.go | 2 +- test/helpers/docker.go | 2 +- test/helpers/filterBuffer.go | 2 +- test/helpers/hubble.go | 2 +- test/helpers/kubectl.go | 2 +- test/helpers/local_node.go | 2 +- test/helpers/logutils/utils.go | 2 +- test/helpers/logutils/utils_test.go | 2 +- test/helpers/manifest.go | 2 +- test/helpers/node.go | 2 +- test/helpers/nodes_info.go | 2 +- test/helpers/policygen/actions.go | 2 +- test/helpers/policygen/const.go | 2 +- test/helpers/policygen/models.go | 2 +- test/helpers/policygen/policygen.go | 2 +- test/helpers/runtime.go | 2 +- test/helpers/ssh_command.go | 2 +- test/helpers/utils.go | 2 +- test/helpers/vagrant.go | 2 +- test/helpers/wrappers.go | 2 +- test/k8sT/Bandwidth.go | 2 +- test/k8sT/Chaos.go | 2 +- test/k8sT/Conformance.go | 2 +- test/k8sT/CustomCalls.go | 2 +- test/k8sT/DatapathConfiguration.go | 2 +- test/k8sT/Egress.go | 2 +- test/k8sT/Health.go | 2 +- test/k8sT/Identity.go | 2 +- test/k8sT/KafkaPolicies.go | 2 +- test/k8sT/Policies.go | 2 +- test/k8sT/PoliciesNightly.go | 2 +- test/k8sT/Services.go | 2 +- test/k8sT/StressPolicy.go | 2 +- test/k8sT/Updates.go | 2 +- test/k8sT/Verifier.go | 2 +- test/k8sT/assertionHelpers.go | 2 +- test/k8sT/bgp.go | 2 +- test/k8sT/bookinfo.go | 2 +- test/k8sT/cli.go | 2 +- test/k8sT/fqdn.go | 2 +- test/k8sT/hubble.go | 2 +- test/k8sT/istio.go | 2 +- test/k8sT/l7_demos.go | 2 +- test/k8sT/log.go | 2 +- test/k8sT/lrp.go | 2 +- test/k8sT/manifests.go | 2 +- test/k8sT/service_helpers.go | 2 +- test/runtime/Policies.go | 2 +- test/runtime/assertionHelpers.go | 2 +- test/runtime/benchmark.go | 2 +- test/runtime/cassandra.go | 2 +- test/runtime/chaos.go | 2 +- test/runtime/chaos_agent.go | 2 +- test/runtime/chaos_endpoint.go | 2 +- test/runtime/connectivity.go | 2 +- test/runtime/fqdn.go | 2 +- test/runtime/kafka.go | 2 +- test/runtime/kvstore.go | 2 +- test/runtime/lb.go | 2 +- test/runtime/log.go | 2 +- test/runtime/memcache.go | 2 +- test/runtime/monitor.go | 2 +- test/runtime/privileged_tests.go | 2 +- test/runtime/ssh.go | 2 +- test/test_suite_test.go | 2 +- test/test_test.go | 2 +- test/vtep/install.sh | 2 +- tools/Makefile | 2 +- tools/alignchecker/Makefile | 2 +- tools/alignchecker/main.go | 2 +- tools/crdcheck/main.go | 2 +- tools/dev-doctor/binarycheck.go | 2 +- tools/dev-doctor/check.go | 2 +- tools/dev-doctor/commandcheck.go | 2 +- tools/dev-doctor/common.go | 2 +- tools/dev-doctor/config.go | 2 +- tools/dev-doctor/dockergroupcheck.go | 2 +- tools/dev-doctor/envvarcheck.go | 2 +- tools/dev-doctor/etcnfsconfcheck.go | 2 +- tools/dev-doctor/iptablescheck.go | 2 +- tools/dev-doctor/main.go | 2 +- tools/dev-doctor/osarchcheck.go | 2 +- tools/dev-doctor/rootcmd.go | 2 +- tools/dev-doctor/rootdircheck.go | 2 +- tools/dev-doctor/unamecheck.go | 2 +- tools/maptool/Makefile | 2 +- tools/maptool/main.go | 2 +- tools/mount/Makefile | 2 +- tools/mount/main.go | 2 +- tools/spdxconv/main.go | 2 +- tools/tools.go | 2 +- 1814 files changed, 1814 insertions(+), 1814 deletions(-) diff --git a/Makefile b/Makefile index 1324f5b873ce9..12491f75bfe1f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2021 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 ##@ Default diff --git a/Makefile.defs b/Makefile.defs index 3655e115ec4be..6924bd7e06940 100644 --- a/Makefile.defs +++ b/Makefile.defs @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 SHELL := /bin/bash diff --git a/Makefile.docker b/Makefile.docker index ef3361b1c75b3..053488a1533cd 100644 --- a/Makefile.docker +++ b/Makefile.docker @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 DOCKER_BUILDER := default diff --git a/Makefile.quiet b/Makefile.quiet index 1a78ba4ee8b8c..394c0b5776c4d 100644 --- a/Makefile.quiet +++ b/Makefile.quiet @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 ifeq ($(ROOT_DIR),) diff --git a/api/v1/models/zz_generated.deepcopy.go b/api/v1/models/zz_generated.deepcopy.go index 2d73c48ccc65e..9a35902806c9b 100644 --- a/api/v1/models/zz_generated.deepcopy.go +++ b/api/v1/models/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/api/v1/models/zz_generated.deepequal.go b/api/v1/models/zz_generated.deepequal.go index 0e45af1d81217..dfa94d6b173f3 100644 --- a/api/v1/models/zz_generated.deepequal.go +++ b/api/v1/models/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/bpf/Makefile b/bpf/Makefile index f4e3485154a71..ba6a8f7144fcc 100644 --- a/bpf/Makefile +++ b/bpf/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2021 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../Makefile.defs diff --git a/bpf/Makefile.bpf b/bpf/Makefile.bpf index 2457adf98ecd0..bbab5ca3871d0 100644 --- a/bpf/Makefile.bpf +++ b/bpf/Makefile.bpf @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 FLAGS := -I$(ROOT_DIR)/bpf/include -I$(ROOT_DIR)/bpf -D__NR_CPUS__=$(shell nproc --all) -O2 -g diff --git a/bpf/bpf_alignchecker.c b/bpf/bpf_alignchecker.c index 435ff549c3b6a..9e7931c6ed13e 100644 --- a/bpf/bpf_alignchecker.c +++ b/bpf/bpf_alignchecker.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (C) 2018-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ /* Ensure declaration of notification event types */ #define DEBUG diff --git a/bpf/bpf_features.h b/bpf/bpf_features.h index 8acd77acee613..23c94a25fce1b 100644 --- a/bpf/bpf_features.h +++ b/bpf/bpf_features.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef BPF_FEATURES_H_ #define BPF_FEATURES_H_ diff --git a/bpf/bpf_host.c b/bpf/bpf_host.c index 257feb41ae3fb..33af2cb5b89b4 100644 --- a/bpf/bpf_host.c +++ b/bpf/bpf_host.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #include #include diff --git a/bpf/bpf_lxc.c b/bpf/bpf_lxc.c index 11106956217fb..b350d93e6108c 100644 --- a/bpf/bpf_lxc.c +++ b/bpf/bpf_lxc.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #include #include diff --git a/bpf/bpf_network.c b/bpf/bpf_network.c index fb108ed6df0cf..42b83890af68a 100644 --- a/bpf/bpf_network.c +++ b/bpf/bpf_network.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (C) 2019-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #include #include diff --git a/bpf/bpf_overlay.c b/bpf/bpf_overlay.c index 1163708a4d6f8..ae1a90db79d90 100644 --- a/bpf/bpf_overlay.c +++ b/bpf/bpf_overlay.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (C) 2016-2022 Authors of Cilium */ +/* Copyright Authors of Cilium */ #include #include diff --git a/bpf/bpf_sock.c b/bpf/bpf_sock.c index 15d0b3c58919e..e8f07ffb78de9 100644 --- a/bpf/bpf_sock.c +++ b/bpf/bpf_sock.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (C) 2019-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #include #include diff --git a/bpf/bpf_xdp.c b/bpf/bpf_xdp.c index a516b6c73021e..f045199a72f6f 100644 --- a/bpf/bpf_xdp.c +++ b/bpf/bpf_xdp.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (C) 2017-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #include #include diff --git a/bpf/cilium-probe-kernel-hz.c b/bpf/cilium-probe-kernel-hz.c index 635a626d12356..27c8ef2603806 100644 --- a/bpf/cilium-probe-kernel-hz.c +++ b/bpf/cilium-probe-kernel-hz.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #define _GNU_SOURCE diff --git a/bpf/custom/Makefile b/bpf/custom/Makefile index bfb480ac49579..2c4d883c4e1f0 100644 --- a/bpf/custom/Makefile +++ b/bpf/custom/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: Apache-2.0 -# Copyright (C) 2021 Authors of Cilium +# Copyright Authors of Cilium include ../../Makefile.defs diff --git a/bpf/ep_config.h b/bpf/ep_config.h index 0ebd538c86213..2ee706f938054 100644 --- a/bpf/ep_config.h +++ b/bpf/ep_config.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ /* * This is just a dummy header with dummy values to allow for test diff --git a/bpf/filter_config.h b/bpf/filter_config.h index dc7ba5d5f3083..852338b34c435 100644 --- a/bpf/filter_config.h +++ b/bpf/filter_config.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2017-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ /* * This is just a dummy header with dummy values to allow for test diff --git a/bpf/include/bpf/access.h b/bpf/include/bpf/access.h index a115168370fdb..89833369a4574 100644 --- a/bpf/include/bpf/access.h +++ b/bpf/include/bpf/access.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_ACCESS_H_ #define __BPF_ACCESS_H_ diff --git a/bpf/include/bpf/api.h b/bpf/include/bpf/api.h index c8cc45ebbbd69..a8b3385ee52c2 100644 --- a/bpf/include/bpf/api.h +++ b/bpf/include/bpf/api.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_API__ #define __BPF_API__ diff --git a/bpf/include/bpf/builtins.h b/bpf/include/bpf/builtins.h index 31caf794de967..a057bdff30c58 100644 --- a/bpf/include/bpf/builtins.h +++ b/bpf/include/bpf/builtins.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_BUILTINS__ #define __BPF_BUILTINS__ diff --git a/bpf/include/bpf/compiler.h b/bpf/include/bpf/compiler.h index 2588023a5bb81..d2d4bb990024a 100644 --- a/bpf/include/bpf/compiler.h +++ b/bpf/include/bpf/compiler.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_COMPILER_H_ #define __BPF_COMPILER_H_ diff --git a/bpf/include/bpf/csum.h b/bpf/include/bpf/csum.h index d2049bef27253..8138463ded012 100644 --- a/bpf/include/bpf/csum.h +++ b/bpf/include/bpf/csum.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_CSUM_H_ #define __BPF_CSUM_H_ diff --git a/bpf/include/bpf/ctx/common.h b/bpf/include/bpf/ctx/common.h index e85fa9d66421b..69acf0c0b36b0 100644 --- a/bpf/include/bpf/ctx/common.h +++ b/bpf/include/bpf/ctx/common.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_CTX_COMMON_H_ #define __BPF_CTX_COMMON_H_ diff --git a/bpf/include/bpf/ctx/ctx.h b/bpf/include/bpf/ctx/ctx.h index 7c126bb3ea07d..13d364978b4e9 100644 --- a/bpf/include/bpf/ctx/ctx.h +++ b/bpf/include/bpf/ctx/ctx.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_CTX_CTX_H_ #define __BPF_CTX_CTX_H_ diff --git a/bpf/include/bpf/ctx/skb.h b/bpf/include/bpf/ctx/skb.h index 4f6dfd9f08637..f7f36e521d2c0 100644 --- a/bpf/include/bpf/ctx/skb.h +++ b/bpf/include/bpf/ctx/skb.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_CTX_SKB_H_ #define __BPF_CTX_SKB_H_ diff --git a/bpf/include/bpf/ctx/unspec.h b/bpf/include/bpf/ctx/unspec.h index a4fa2f38d1e33..7f48bea0c1e23 100644 --- a/bpf/include/bpf/ctx/unspec.h +++ b/bpf/include/bpf/ctx/unspec.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_CTX_UNSPEC_H_ #define __BPF_CTX_UNSPEC_H_ diff --git a/bpf/include/bpf/ctx/xdp.h b/bpf/include/bpf/ctx/xdp.h index f0d78f4b995b7..0ba8423530e54 100644 --- a/bpf/include/bpf/ctx/xdp.h +++ b/bpf/include/bpf/ctx/xdp.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_CTX_XDP_H_ #define __BPF_CTX_XDP_H_ diff --git a/bpf/include/bpf/errno.h b/bpf/include/bpf/errno.h index c7d09afe4c431..4ab93ea249b06 100644 --- a/bpf/include/bpf/errno.h +++ b/bpf/include/bpf/errno.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_ERRNO__ #define __BPF_ERRNO__ diff --git a/bpf/include/bpf/features.h b/bpf/include/bpf/features.h index 136ff8f55510d..152cb6e504086 100644 --- a/bpf/include/bpf/features.h +++ b/bpf/include/bpf/features.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef ____BPF_FEATURES____ #define ____BPF_FEATURES____ diff --git a/bpf/include/bpf/features_skb.h b/bpf/include/bpf/features_skb.h index 1125f3854bbe7..ba0fec620e170 100644 --- a/bpf/include/bpf/features_skb.h +++ b/bpf/include/bpf/features_skb.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_FEATURES_SKB__ #define __BPF_FEATURES_SKB__ diff --git a/bpf/include/bpf/features_xdp.h b/bpf/include/bpf/features_xdp.h index 6ead5f6da4d86..d07c8e105e15d 100644 --- a/bpf/include/bpf/features_xdp.h +++ b/bpf/include/bpf/features_xdp.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_FEATURES_XDP__ #define __BPF_FEATURES_XDP__ diff --git a/bpf/include/bpf/helpers.h b/bpf/include/bpf/helpers.h index c233a17a448ba..ca257daf595f8 100644 --- a/bpf/include/bpf/helpers.h +++ b/bpf/include/bpf/helpers.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_HELPERS__ #define __BPF_HELPERS__ diff --git a/bpf/include/bpf/helpers_skb.h b/bpf/include/bpf/helpers_skb.h index f3815ae08f154..ddafe3a89ca69 100644 --- a/bpf/include/bpf/helpers_skb.h +++ b/bpf/include/bpf/helpers_skb.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_HELPERS_SKB__ #define __BPF_HELPERS_SKB__ diff --git a/bpf/include/bpf/helpers_xdp.h b/bpf/include/bpf/helpers_xdp.h index cb23e17c0656b..c65fe109abd66 100644 --- a/bpf/include/bpf/helpers_xdp.h +++ b/bpf/include/bpf/helpers_xdp.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_HELPERS_XDP__ #define __BPF_HELPERS_XDP__ diff --git a/bpf/include/bpf/loader.h b/bpf/include/bpf/loader.h index 90c4ff11caf58..d6b8b7b25dc1c 100644 --- a/bpf/include/bpf/loader.h +++ b/bpf/include/bpf/loader.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_LOADER__ #define __BPF_LOADER__ diff --git a/bpf/include/bpf/section.h b/bpf/include/bpf/section.h index 350811e262dd6..da9b5ecefc1b1 100644 --- a/bpf/include/bpf/section.h +++ b/bpf/include/bpf/section.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_SECTION__ #define __BPF_SECTION__ diff --git a/bpf/include/bpf/stddef.h b/bpf/include/bpf/stddef.h index 329189076ace1..6f490a43512c5 100644 --- a/bpf/include/bpf/stddef.h +++ b/bpf/include/bpf/stddef.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef NULL #define NULL ((void *)0) diff --git a/bpf/include/bpf/tailcall.h b/bpf/include/bpf/tailcall.h index 76002e6f1defc..9a6bdce372bef 100644 --- a/bpf/include/bpf/tailcall.h +++ b/bpf/include/bpf/tailcall.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_TAILCALL_H_ #define __BPF_TAILCALL_H_ diff --git a/bpf/include/bpf/types_mapper.h b/bpf/include/bpf/types_mapper.h index 613a894da3c96..39ee7ff899cae 100644 --- a/bpf/include/bpf/types_mapper.h +++ b/bpf/include/bpf/types_mapper.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_TYPES_MAPPER__ #define __BPF_TYPES_MAPPER__ diff --git a/bpf/include/bpf/verifier.h b/bpf/include/bpf/verifier.h index 6d387f31e223b..46867753e82d1 100644 --- a/bpf/include/bpf/verifier.h +++ b/bpf/include/bpf/verifier.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __BPF_VERIFIER__ #define __BPF_VERIFIER__ diff --git a/bpf/include/linux/types.h b/bpf/include/linux/types.h index abed7f764a5ae..b16464c96a532 100644 --- a/bpf/include/linux/types.h +++ b/bpf/include/linux/types.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef _LINUX_TYPES_H #define _LINUX_TYPES_H diff --git a/bpf/init.sh b/bpf/init.sh index 0250ce0edc886..2197dfb8110bc 100755 --- a/bpf/init.sh +++ b/bpf/init.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2016-2020 Authors of Cilium +# Copyright Authors of Cilium LIB=$1 RUNDIR=$2 diff --git a/bpf/lib/arp.h b/bpf/lib/arp.h index 48d508554082e..47a3b1fb86ec6 100644 --- a/bpf/lib/arp.h +++ b/bpf/lib/arp.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_ARP__ #define __LIB_ARP__ diff --git a/bpf/lib/common.h b/bpf/lib/common.h index 291bbf204417b..01bbff897a104 100644 --- a/bpf/lib/common.h +++ b/bpf/lib/common.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_COMMON_H_ #define __LIB_COMMON_H_ diff --git a/bpf/lib/conntrack.h b/bpf/lib/conntrack.h index 56d58a082be1a..83192ad5b9c08 100644 --- a/bpf/lib/conntrack.h +++ b/bpf/lib/conntrack.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_CONNTRACK_H_ #define __LIB_CONNTRACK_H_ diff --git a/bpf/lib/conntrack_map.h b/bpf/lib/conntrack_map.h index bcf70e97fe2e0..ffb6d92dcc1dd 100644 --- a/bpf/lib/conntrack_map.h +++ b/bpf/lib/conntrack_map.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_CONNTRACK_MAP_H_ #define __LIB_CONNTRACK_MAP_H_ diff --git a/bpf/lib/csum.h b/bpf/lib/csum.h index d4cd1b6887d11..c643a5a9ef37e 100644 --- a/bpf/lib/csum.h +++ b/bpf/lib/csum.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_CSUM_H_ #define __LIB_CSUM_H_ diff --git a/bpf/lib/dbg.h b/bpf/lib/dbg.h index 2bc8c9e79fe52..bf55519fab793 100644 --- a/bpf/lib/dbg.h +++ b/bpf/lib/dbg.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_DBG__ #define __LIB_DBG__ diff --git a/bpf/lib/drop.h b/bpf/lib/drop.h index bc608085880d9..ab64cc87a88f0 100644 --- a/bpf/lib/drop.h +++ b/bpf/lib/drop.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ /* * Drop & error notification via perf event ring buffer diff --git a/bpf/lib/edt.h b/bpf/lib/edt.h index 4532000077e55..23d51195a84b2 100644 --- a/bpf/lib/edt.h +++ b/bpf/lib/edt.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __EDT_H_ #define __EDT_H_ diff --git a/bpf/lib/egress_policies.h b/bpf/lib/egress_policies.h index 6ed7f6ff00732..301800acbc8b4 100644 --- a/bpf/lib/egress_policies.h +++ b/bpf/lib/egress_policies.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_EGRESS_POLICIES_H_ #define __LIB_EGRESS_POLICIES_H_ diff --git a/bpf/lib/encap.h b/bpf/lib/encap.h index 4fe028aaf63e0..0c149d1531398 100644 --- a/bpf/lib/encap.h +++ b/bpf/lib/encap.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_ENCAP_H_ #define __LIB_ENCAP_H_ diff --git a/bpf/lib/encrypt.h b/bpf/lib/encrypt.h index 2cb8a5993e51d..9dbbce8555dfb 100644 --- a/bpf/lib/encrypt.h +++ b/bpf/lib/encrypt.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_ENCRYPT_H_ #define __LIB_ENCRYPT_H_ diff --git a/bpf/lib/endian.h b/bpf/lib/endian.h index 4752ff9fece0d..245c1b3c5df48 100644 --- a/bpf/lib/endian.h +++ b/bpf/lib/endian.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_ENDIAN_H_ #define __LIB_ENDIAN_H_ diff --git a/bpf/lib/eps.h b/bpf/lib/eps.h index a66e62fedaef3..a94388d107a2d 100644 --- a/bpf/lib/eps.h +++ b/bpf/lib/eps.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2017-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_EPS_H_ #define __LIB_EPS_H_ diff --git a/bpf/lib/eth.h b/bpf/lib/eth.h index ec02ff5d332b7..73151d784c58b 100644 --- a/bpf/lib/eth.h +++ b/bpf/lib/eth.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_ETH__ #define __LIB_ETH__ diff --git a/bpf/lib/events.h b/bpf/lib/events.h index 54966047e9537..d0e79cce0bece 100644 --- a/bpf/lib/events.h +++ b/bpf/lib/events.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_EVENTS_H_ #define __LIB_EVENTS_H_ diff --git a/bpf/lib/fib.h b/bpf/lib/fib.h index f24d6c7a47857..ec3c16ca43f18 100644 --- a/bpf/lib/fib.h +++ b/bpf/lib/fib.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_FIB_H_ #define __LIB_FIB_H_ diff --git a/bpf/lib/hash.h b/bpf/lib/hash.h index 001ea44edca87..caf6dc2ef88fa 100644 --- a/bpf/lib/hash.h +++ b/bpf/lib/hash.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __HASH_H_ #define __HASH_H_ diff --git a/bpf/lib/host_firewall.h b/bpf/lib/host_firewall.h index 5693fe28cd9ee..515a72db2e5ac 100644 --- a/bpf/lib/host_firewall.h +++ b/bpf/lib/host_firewall.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_HOST_FIREWALL_H_ #define __LIB_HOST_FIREWALL_H_ diff --git a/bpf/lib/icmp6.h b/bpf/lib/icmp6.h index 3149365ef0819..260cbe258526f 100644 --- a/bpf/lib/icmp6.h +++ b/bpf/lib/icmp6.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #if !defined(__LIB_ICMP6__) && defined(ENABLE_IPV6) #define __LIB_ICMP6__ diff --git a/bpf/lib/identity.h b/bpf/lib/identity.h index 08e29aa8c2e4e..7fe8902e6eb84 100644 --- a/bpf/lib/identity.h +++ b/bpf/lib/identity.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_IDENTITY_H_ #define __LIB_IDENTITY_H_ diff --git a/bpf/lib/ids.h b/bpf/lib/ids.h index f09710a11278e..b5f681558f949 100644 --- a/bpf/lib/ids.h +++ b/bpf/lib/ids.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_IDS_H_ #define __LIB_IDS_H_ diff --git a/bpf/lib/ipv4.h b/bpf/lib/ipv4.h index 54919ce1134e6..99f6ed279a2a2 100644 --- a/bpf/lib/ipv4.h +++ b/bpf/lib/ipv4.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_IPV4__ #define __LIB_IPV4__ diff --git a/bpf/lib/ipv6.h b/bpf/lib/ipv6.h index abd5081637467..89388be70ad07 100644 --- a/bpf/lib/ipv6.h +++ b/bpf/lib/ipv6.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_IPV6__ #define __LIB_IPV6__ diff --git a/bpf/lib/l3.h b/bpf/lib/l3.h index c134cb8c1e785..1c53f47fb9d60 100644 --- a/bpf/lib/l3.h +++ b/bpf/lib/l3.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_L3_H_ #define __LIB_L3_H_ diff --git a/bpf/lib/l4.h b/bpf/lib/l4.h index 6cae7a5fc818d..1d5e9c16b2a95 100644 --- a/bpf/lib/l4.h +++ b/bpf/lib/l4.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_L4_H_ #define __LIB_L4_H_ diff --git a/bpf/lib/lb.h b/bpf/lib/lb.h index be68ca3542c22..81272c88b69c4 100644 --- a/bpf/lib/lb.h +++ b/bpf/lib/lb.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LB_H_ #define __LB_H_ diff --git a/bpf/lib/lxc.h b/bpf/lib/lxc.h index 2322e0c4eeffe..36e404db04567 100644 --- a/bpf/lib/lxc.h +++ b/bpf/lib/lxc.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_LXC_H_ #define __LIB_LXC_H_ diff --git a/bpf/lib/maps.h b/bpf/lib/maps.h index e3707d523c523..a185185cb5681 100644 --- a/bpf/lib/maps.h +++ b/bpf/lib/maps.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_MAPS_H_ #define __LIB_MAPS_H_ diff --git a/bpf/lib/metrics.h b/bpf/lib/metrics.h index bb11cdeb8a5bb..44eeb83b632ef 100644 --- a/bpf/lib/metrics.h +++ b/bpf/lib/metrics.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2018-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ /* * Data metrics collection functions diff --git a/bpf/lib/mono.h b/bpf/lib/mono.h index b3bd70f5081ea..25029e4091770 100644 --- a/bpf/lib/mono.h +++ b/bpf/lib/mono.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_MONO_H_ #define __LIB_MONO_H_ diff --git a/bpf/lib/nat.h b/bpf/lib/nat.h index 8586e238845c3..4166bf7f8e14c 100644 --- a/bpf/lib/nat.h +++ b/bpf/lib/nat.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2019-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ /* Simple NAT engine in BPF. */ #ifndef __LIB_NAT__ diff --git a/bpf/lib/nat46.h b/bpf/lib/nat46.h index ea4942f6826c4..1a1d032f6a434 100644 --- a/bpf/lib/nat46.h +++ b/bpf/lib/nat46.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_NAT46__ #define __LIB_NAT46__ diff --git a/bpf/lib/nodeport.h b/bpf/lib/nodeport.h index a471775617438..c03561b56382f 100644 --- a/bpf/lib/nodeport.h +++ b/bpf/lib/nodeport.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2019-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __NODEPORT_H_ #define __NODEPORT_H_ diff --git a/bpf/lib/overloadable.h b/bpf/lib/overloadable.h index e62833c64b86e..c6a07ba2189ae 100644 --- a/bpf/lib/overloadable.h +++ b/bpf/lib/overloadable.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_OVERLOADABLE_H_ #define __LIB_OVERLOADABLE_H_ diff --git a/bpf/lib/overloadable_skb.h b/bpf/lib/overloadable_skb.h index 5eb626612f027..ac596b76c0e1f 100644 --- a/bpf/lib/overloadable_skb.h +++ b/bpf/lib/overloadable_skb.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_OVERLOADABLE_SKB_H_ #define __LIB_OVERLOADABLE_SKB_H_ diff --git a/bpf/lib/overloadable_xdp.h b/bpf/lib/overloadable_xdp.h index 3d871bd4b07ba..2dff400c308e8 100644 --- a/bpf/lib/overloadable_xdp.h +++ b/bpf/lib/overloadable_xdp.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_OVERLOADABLE_XDP_H_ #define __LIB_OVERLOADABLE_XDP_H_ diff --git a/bpf/lib/pcap.h b/bpf/lib/pcap.h index e00a552b22588..342ddb7e81499 100644 --- a/bpf/lib/pcap.h +++ b/bpf/lib/pcap.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_PCAP_H_ #define __LIB_PCAP_H_ diff --git a/bpf/lib/policy.h b/bpf/lib/policy.h index 460eb3a16d3e5..3f76a37e4a958 100644 --- a/bpf/lib/policy.h +++ b/bpf/lib/policy.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_POLICY_H_ #define __LIB_POLICY_H_ diff --git a/bpf/lib/policy_log.h b/bpf/lib/policy_log.h index 0f2ab68a9a0e0..ccca0ded289e8 100644 --- a/bpf/lib/policy_log.h +++ b/bpf/lib/policy_log.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ /* * Policy verdict notification via perf event ring buffer. diff --git a/bpf/lib/proxy.h b/bpf/lib/proxy.h index 799a3c5db2f8f..7ac57be4c3f0e 100644 --- a/bpf/lib/proxy.h +++ b/bpf/lib/proxy.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_PROXY_H_ #define __LIB_PROXY_H_ diff --git a/bpf/lib/proxy_hairpin.h b/bpf/lib/proxy_hairpin.h index 1ea79031d623a..7fe7df0d44967 100644 --- a/bpf/lib/proxy_hairpin.h +++ b/bpf/lib/proxy_hairpin.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_PROXY_HAIRPIN_H_ #define __LIB_PROXY_HAIRPIN_H_ diff --git a/bpf/lib/qm.h b/bpf/lib/qm.h index 79540fe8990e5..cf4230ae8a8ec 100644 --- a/bpf/lib/qm.h +++ b/bpf/lib/qm.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2022 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __QM_H_ #define __QM_H_ diff --git a/bpf/lib/signal.h b/bpf/lib/signal.h index 8fd8adf6f4ba0..244cc83d4dae3 100644 --- a/bpf/lib/signal.h +++ b/bpf/lib/signal.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2019-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_SIGNAL_H_ #define __LIB_SIGNAL_H_ diff --git a/bpf/lib/static_data.h b/bpf/lib/static_data.h index 7d8cc216921c4..3e0e63862dce5 100644 --- a/bpf/lib/static_data.h +++ b/bpf/lib/static_data.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_STATIC_DATA_H_ #define __LIB_STATIC_DATA_H_ diff --git a/bpf/lib/tailcall.h b/bpf/lib/tailcall.h index 794d0bb858153..32971fc930fc5 100644 --- a/bpf/lib/tailcall.h +++ b/bpf/lib/tailcall.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2019-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef TAILCALL_H #define TAILCALL_H diff --git a/bpf/lib/time.h b/bpf/lib/time.h index 6cbff98acd824..049cecaf8d168 100644 --- a/bpf/lib/time.h +++ b/bpf/lib/time.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_TIME_H_ #define __LIB_TIME_H_ diff --git a/bpf/lib/time_cache.h b/bpf/lib/time_cache.h index 03860670e3b84..04c784f6e10ef 100644 --- a/bpf/lib/time_cache.h +++ b/bpf/lib/time_cache.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_TIME_CACHE_H_ #define __LIB_TIME_CACHE_H_ diff --git a/bpf/lib/trace.h b/bpf/lib/trace.h index 6b57260a02ad3..420b922106ebd 100644 --- a/bpf/lib/trace.h +++ b/bpf/lib/trace.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ /* * Packet forwarding notification via perf event ring buffer. diff --git a/bpf/lib/utils.h b/bpf/lib/utils.h index 4d4303d280846..1b336eb46bb5f 100644 --- a/bpf/lib/utils.h +++ b/bpf/lib/utils.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef __LIB_UTILS_H_ #define __LIB_UTILS_H_ diff --git a/bpf/mock/Makefile b/bpf/mock/Makefile index 20bec805ab3b9..d3d0bc84cbccf 100644 --- a/bpf/mock/Makefile +++ b/bpf/mock/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: Apache-2.0 -# Copyright (C) 2021 Authors of Cilium +# Copyright Authors of Cilium include ../../Makefile.defs include ../../Makefile.quiet diff --git a/bpf/mock/bpf.yaml b/bpf/mock/bpf.yaml index 572e00b64a964..b20d8047c22c3 100644 --- a/bpf/mock/bpf.yaml +++ b/bpf/mock/bpf.yaml @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0 -# Copyright (C) 2021 Authors of Cilium +# Copyright Authors of Cilium # Specify CMock configuration options here. # For details, see https://github.com/ThrowTheSwitch/CMock/blob/master/docs/CMock_Summary.md#config-options. diff --git a/bpf/mock/conntrack_stub.h b/bpf/mock/conntrack_stub.h index 0e731852202d6..3757d0cb48d32 100644 --- a/bpf/mock/conntrack_stub.h +++ b/bpf/mock/conntrack_stub.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ // Header of functions to be mocked in conntrack.h. // It is used to generate corresponding mock functions in conntrack.h. diff --git a/bpf/mock/fake_maps.h b/bpf/mock/fake_maps.h index f6072f4dba4fc..4faa0389e9070 100644 --- a/bpf/mock/fake_maps.h +++ b/bpf/mock/fake_maps.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ // library for user-space map emulation // It emulates the eBPF map operations in the user space by wrapping up the raw diff --git a/bpf/mock/helpers.sed b/bpf/mock/helpers.sed index 93fa56eb569a5..d9959f4160cc5 100644 --- a/bpf/mock/helpers.sed +++ b/bpf/mock/helpers.sed @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0 -# Copyright (C) 2021 Authors of Cilium +# Copyright Authors of Cilium # 1 Add [GENERATED FROM bpf/helpers.h] at the front. # 2 Delete lines start with [#ifndef BPF_] and ends with [#endif]. diff --git a/bpf/mock/helpers_skb.sed b/bpf/mock/helpers_skb.sed index afa66b870b943..3117e66b97a0f 100644 --- a/bpf/mock/helpers_skb.sed +++ b/bpf/mock/helpers_skb.sed @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0 -# Copyright (C) 2021 Authors of Cilium +# Copyright Authors of Cilium # 1 Add [GENERATED FROM bpf/helpers_skb.h] at the front. # 2 Delete lines start with [#ifndef BPF_] and ends with [#endif]. diff --git a/bpf/mock/helpers_xdp.sed b/bpf/mock/helpers_xdp.sed index cac4e834cab95..b22b3210e8bb7 100644 --- a/bpf/mock/helpers_xdp.sed +++ b/bpf/mock/helpers_xdp.sed @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0 -# Copyright (C) 2021 Authors of Cilium +# Copyright Authors of Cilium # 1 Add [GENERATED FROM bpf/helpers_xdp.h] at the front. # 2 Delete lines start with [#ifndef BPF_] and ends with [#endif]. diff --git a/bpf/netdev_config.h b/bpf/netdev_config.h index fa406756d4be0..481aea3d43963 100644 --- a/bpf/netdev_config.h +++ b/bpf/netdev_config.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ /* * This is just a dummy header with dummy values to allow for test diff --git a/bpf/node_config.h b/bpf/node_config.h index 31ba729aa4ce7..bb33737ab3cdf 100644 --- a/bpf/node_config.h +++ b/bpf/node_config.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ /* * diff --git a/bpf/sockops/Makefile b/bpf/sockops/Makefile index 3ad2f0f0f58d4..d240327e05fb9 100644 --- a/bpf/sockops/Makefile +++ b/bpf/sockops/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../../Makefile.defs diff --git a/bpf/sockops/bpf_redir.c b/bpf/sockops/bpf_redir.c index 48117e7f3275b..73982108f03c8 100644 --- a/bpf/sockops/bpf_redir.c +++ b/bpf/sockops/bpf_redir.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (C) 2018-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #include #include diff --git a/bpf/sockops/bpf_sockops.c b/bpf/sockops/bpf_sockops.c index 784004f4ebe4e..a9a79454ee6e3 100644 --- a/bpf/sockops/bpf_sockops.c +++ b/bpf/sockops/bpf_sockops.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (C) 2018-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #include #include diff --git a/bpf/sockops/bpf_sockops.h b/bpf/sockops/bpf_sockops.h index f8f62ea7d34d8..0a26b988889d6 100644 --- a/bpf/sockops/bpf_sockops.h +++ b/bpf/sockops/bpf_sockops.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2018-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #include "sockops_config.h" diff --git a/bpf/sockops/sockops_config.h b/bpf/sockops/sockops_config.h index d2208769be657..3110078e56a58 100644 --- a/bpf/sockops/sockops_config.h +++ b/bpf/sockops/sockops_config.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2018-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef SOCK_OPS_MAP #define SOCK_OPS_MAP cilium_sock_ops diff --git a/bpf/tests/bpf_ct_tests.c b/bpf/tests/bpf_ct_tests.c index 031e6c6e2acb2..070422be810e8 100644 --- a/bpf/tests/bpf_ct_tests.c +++ b/bpf/tests/bpf_ct_tests.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (C) 2016-2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ #include #include diff --git a/bpf/tests/builtin_memcmp.h b/bpf/tests/builtin_memcmp.h index e29d10e4512d1..5a3d807721024 100644 --- a/bpf/tests/builtin_memcmp.h +++ b/bpf/tests/builtin_memcmp.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ test___builtin_memcmp_single(8, 1); test___builtin_memcmp_single(8, 2); test___builtin_memcmp_single(8, 4); diff --git a/bpf/tests/builtin_memcpy.h b/bpf/tests/builtin_memcpy.h index 43e29c49f6ab2..acdd95cbdf1aa 100644 --- a/bpf/tests/builtin_memcpy.h +++ b/bpf/tests/builtin_memcpy.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ test___builtin_memcpy_single(8, 1); test___builtin_memcpy_single(8, 2); test___builtin_memcpy_single(8, 4); diff --git a/bpf/tests/builtin_memmove.h b/bpf/tests/builtin_memmove.h index bdbd722c383f5..3112ab6b00bc8 100644 --- a/bpf/tests/builtin_memmove.h +++ b/bpf/tests/builtin_memmove.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ test___builtin_memmove1_single(8, 1); test___builtin_memmove1_single(8, 2); test___builtin_memmove1_single(8, 4); diff --git a/bpf/tests/builtin_memzero.h b/bpf/tests/builtin_memzero.h index b887722410367..9adb9f216401c 100644 --- a/bpf/tests/builtin_memzero.h +++ b/bpf/tests/builtin_memzero.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ test___builtin_memzero_single(8, 1); test___builtin_memzero_single(8, 2); test___builtin_memzero_single(8, 4); diff --git a/bpf/tests/builtin_test.h b/bpf/tests/builtin_test.h index 30e9707653c29..51096d002027b 100644 --- a/bpf/tests/builtin_test.h +++ b/bpf/tests/builtin_test.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #include "lib/common.h" diff --git a/bpf/tests/conntrack_test.h b/bpf/tests/conntrack_test.h index 536c9037cd1a9..8d124fcc28cff 100644 --- a/bpf/tests/conntrack_test.h +++ b/bpf/tests/conntrack_test.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2018-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ enum { __TUPLE_EXIST, diff --git a/bpf/tests/drop_notify_test.h b/bpf/tests/drop_notify_test.h index f398648341ffd..fb57c3f92c1aa 100644 --- a/bpf/tests/drop_notify_test.h +++ b/bpf/tests/drop_notify_test.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ // sample unit test program for some functions in drop.h // It contains function definitions for testing "send_drop_notify" and "__send_drop_notify". diff --git a/bpf/tests/ipv6_test.h b/bpf/tests/ipv6_test.h index 472b90fe7f34f..c97cf47d26006 100644 --- a/bpf/tests/ipv6_test.h +++ b/bpf/tests/ipv6_test.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2018-2020 Authors of Cilium */ +/* Copyright Authors of Cilium */ #include "lib/ipv6.h" #include "lib/maps.h" diff --git a/bpf/tests/nat_test.h b/bpf/tests/nat_test.h index 7dc5ff0e521ca..c367548f8d4c5 100644 --- a/bpf/tests/nat_test.h +++ b/bpf/tests/nat_test.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: GPL-2.0 */ -/* Copyright (C) 2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ // sample unit test program for functions in nat.h // It contains function definitions for testing "snat_v4_track_local". diff --git a/bpf/tests/prog_test/prog_test.go b/bpf/tests/prog_test/prog_test.go index 8e007cefa73c0..d9980b0ab7451 100644 --- a/bpf/tests/prog_test/prog_test.go +++ b/bpf/tests/prog_test/prog_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/bugtool/Makefile b/bugtool/Makefile index 0401554de0dfa..ebf19ab134254 100644 --- a/bugtool/Makefile +++ b/bugtool/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../Makefile.defs diff --git a/bugtool/cmd/cmdref.go b/bugtool/cmd/cmdref.go index 1e3259d42e03c..19d8180781c88 100644 --- a/bugtool/cmd/cmdref.go +++ b/bugtool/cmd/cmdref.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/bugtool/cmd/configuration.go b/bugtool/cmd/configuration.go index 8623c0d463cd8..f15bdd3d95906 100644 --- a/bugtool/cmd/configuration.go +++ b/bugtool/cmd/configuration.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright (C) 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/bugtool/cmd/ethtool_linux.go b/bugtool/cmd/ethtool_linux.go index ff68bb69ed730..e3bbabb88c48c 100644 --- a/bugtool/cmd/ethtool_linux.go +++ b/bugtool/cmd/ethtool_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2018 Authors of Cilium +// Copyright Authors of Cilium //go:build linux // +build linux diff --git a/bugtool/cmd/ethtool_other.go b/bugtool/cmd/ethtool_other.go index 6bfacd703c277..9e518cc1d9ca0 100644 --- a/bugtool/cmd/ethtool_other.go +++ b/bugtool/cmd/ethtool_other.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !linux // +build !linux diff --git a/bugtool/cmd/helper.go b/bugtool/cmd/helper.go index d06698a9a9efa..87c0240273a6c 100644 --- a/bugtool/cmd/helper.go +++ b/bugtool/cmd/helper.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/bugtool/cmd/helper_test.go b/bugtool/cmd/helper_test.go index b819e1645d572..a5f4eddc8cf0c 100644 --- a/bugtool/cmd/helper_test.go +++ b/bugtool/cmd/helper_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/bugtool/cmd/root.go b/bugtool/cmd/root.go index 7072d34f488c0..961ec09ec8aa2 100644 --- a/bugtool/cmd/root.go +++ b/bugtool/cmd/root.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/bugtool/main.go b/bugtool/main.go index fcda876e7b91a..926c429a90067 100644 --- a/bugtool/main.go +++ b/bugtool/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2018 Authors of Cilium +// Copyright Authors of Cilium // Ensure build fails on versions of Go that are not supported by Cilium. // This build tag should be kept in sync with the version specified in go.mod. diff --git a/cilium-health/Makefile b/cilium-health/Makefile index 8f38ec0afd908..ba29358ede03b 100644 --- a/cilium-health/Makefile +++ b/cilium-health/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../Makefile.defs diff --git a/cilium-health/cmd/get.go b/cilium-health/cmd/get.go index 23fe40a5998c7..776b8d97dc899 100644 --- a/cilium-health/cmd/get.go +++ b/cilium-health/cmd/get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium-health/cmd/ping.go b/cilium-health/cmd/ping.go index 7b62615518491..a55efb1eedc7a 100644 --- a/cilium-health/cmd/ping.go +++ b/cilium-health/cmd/ping.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium-health/cmd/root.go b/cilium-health/cmd/root.go index 249a31df141e9..f24eec068e221 100644 --- a/cilium-health/cmd/root.go +++ b/cilium-health/cmd/root.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium-health/cmd/status.go b/cilium-health/cmd/status.go index 700b5b99ccb79..8c8970c61d73e 100644 --- a/cilium-health/cmd/status.go +++ b/cilium-health/cmd/status.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium-health/launch/endpoint.go b/cilium-health/launch/endpoint.go index e1b545c600acc..2ac4f59a77a3f 100644 --- a/cilium-health/launch/endpoint.go +++ b/cilium-health/launch/endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package launch diff --git a/cilium-health/launch/launcher.go b/cilium-health/launch/launcher.go index fceffff4051bb..5ce663507d5b5 100644 --- a/cilium-health/launch/launcher.go +++ b/cilium-health/launch/launcher.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package launch diff --git a/cilium-health/main.go b/cilium-health/main.go index b7c854286f4bb..a363704051631 100644 --- a/cilium-health/main.go +++ b/cilium-health/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium // Ensure build fails on versions of Go that are not supported by Cilium. // This build tag should be kept in sync with the version specified in go.mod. diff --git a/cilium-health/responder/Makefile b/cilium-health/responder/Makefile index 29c25ab5cf92e..3e1c3ba7fa1d4 100644 --- a/cilium-health/responder/Makefile +++ b/cilium-health/responder/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../../Makefile.defs diff --git a/cilium-health/responder/main.go b/cilium-health/responder/main.go index fff43ee814e0b..7883645d2cbee 100644 --- a/cilium-health/responder/main.go +++ b/cilium-health/responder/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Ensure build fails on versions of Go that are not supported by Cilium. // This build tag should be kept in sync with the version specified in go.mod. diff --git a/cilium/Makefile b/cilium/Makefile index 706b488bb044e..ee12a83386f79 100644 --- a/cilium/Makefile +++ b/cilium/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../Makefile.defs diff --git a/cilium/cmd/bpf.go b/cilium/cmd/bpf.go index c3c0fdede6445..b44ff4e8d0843 100644 --- a/cilium/cmd/bpf.go +++ b/cilium/cmd/bpf.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_bandwidth.go b/cilium/cmd/bpf_bandwidth.go index aa6041ebe6c95..56ec4950f0492 100644 --- a/cilium/cmd/bpf_bandwidth.go +++ b/cilium/cmd/bpf_bandwidth.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_bandwidth_list.go b/cilium/cmd/bpf_bandwidth_list.go index 93f61ac5af971..cc67cc43f2af2 100644 --- a/cilium/cmd/bpf_bandwidth_list.go +++ b/cilium/cmd/bpf_bandwidth_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_ct.go b/cilium/cmd/bpf_ct.go index 52e90ac2e2ee1..a6563488d238e 100644 --- a/cilium/cmd/bpf_ct.go +++ b/cilium/cmd/bpf_ct.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_ct_flush.go b/cilium/cmd/bpf_ct_flush.go index f0389c7db859b..8b45524069ce4 100644 --- a/cilium/cmd/bpf_ct_flush.go +++ b/cilium/cmd/bpf_ct_flush.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_ct_list.go b/cilium/cmd/bpf_ct_list.go index 2735e2722ff32..4467251ac0be6 100644 --- a/cilium/cmd/bpf_ct_list.go +++ b/cilium/cmd/bpf_ct_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_ct_list_test.go b/cilium/cmd/bpf_ct_list_test.go index 7a865309ce90d..090ef32e40f9d 100644 --- a/cilium/cmd/bpf_ct_list_test.go +++ b/cilium/cmd/bpf_ct_list_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/cilium/cmd/bpf_egress.go b/cilium/cmd/bpf_egress.go index 3d523919a490c..3cf10a6ee8f0e 100644 --- a/cilium/cmd/bpf_egress.go +++ b/cilium/cmd/bpf_egress.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_egress_delete.go b/cilium/cmd/bpf_egress_delete.go index df8a54ce61e00..7b6866fbfc937 100644 --- a/cilium/cmd/bpf_egress_delete.go +++ b/cilium/cmd/bpf_egress_delete.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_egress_get.go b/cilium/cmd/bpf_egress_get.go index e60b2ac05b57b..35aec758355e8 100644 --- a/cilium/cmd/bpf_egress_get.go +++ b/cilium/cmd/bpf_egress_get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_egress_list.go b/cilium/cmd/bpf_egress_list.go index e41a454ee96ed..91c10d57eff7d 100644 --- a/cilium/cmd/bpf_egress_list.go +++ b/cilium/cmd/bpf_egress_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_egress_update.go b/cilium/cmd/bpf_egress_update.go index 8f7b3ed4128a1..383cba397bab9 100644 --- a/cilium/cmd/bpf_egress_update.go +++ b/cilium/cmd/bpf_egress_update.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_endpoint.go b/cilium/cmd/bpf_endpoint.go index c75a39997923c..2c716d06259df 100644 --- a/cilium/cmd/bpf_endpoint.go +++ b/cilium/cmd/bpf_endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_endpoint_delete.go b/cilium/cmd/bpf_endpoint_delete.go index c92d1c6a9c796..8a867b5a6ea5f 100644 --- a/cilium/cmd/bpf_endpoint_delete.go +++ b/cilium/cmd/bpf_endpoint_delete.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_endpoint_list.go b/cilium/cmd/bpf_endpoint_list.go index 391aefde9d4b0..b80e7b94b6ebb 100644 --- a/cilium/cmd/bpf_endpoint_list.go +++ b/cilium/cmd/bpf_endpoint_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_ipcache.go b/cilium/cmd/bpf_ipcache.go index 37af0a1ac0ca0..a653540eb3df6 100644 --- a/cilium/cmd/bpf_ipcache.go +++ b/cilium/cmd/bpf_ipcache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_ipcache_get.go b/cilium/cmd/bpf_ipcache_get.go index 3ad27dae6c4c5..c58ac5dd46705 100644 --- a/cilium/cmd/bpf_ipcache_get.go +++ b/cilium/cmd/bpf_ipcache_get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_ipcache_get_test.go b/cilium/cmd/bpf_ipcache_get_test.go index 38a0d88e0a3a2..eb22228d68846 100644 --- a/cilium/cmd/bpf_ipcache_get_test.go +++ b/cilium/cmd/bpf_ipcache_get_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/cilium/cmd/bpf_ipcache_list.go b/cilium/cmd/bpf_ipcache_list.go index 209c65190bd19..8cbafadcb3ca0 100644 --- a/cilium/cmd/bpf_ipcache_list.go +++ b/cilium/cmd/bpf_ipcache_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_ipmasq.go b/cilium/cmd/bpf_ipmasq.go index aedd9ce4d5cfb..601f0ce3abc45 100644 --- a/cilium/cmd/bpf_ipmasq.go +++ b/cilium/cmd/bpf_ipmasq.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_ipmasq_list.go b/cilium/cmd/bpf_ipmasq_list.go index c13c8079804d4..9d57f16705b36 100644 --- a/cilium/cmd/bpf_ipmasq_list.go +++ b/cilium/cmd/bpf_ipmasq_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_lb.go b/cilium/cmd/bpf_lb.go index b166980d67075..708022be53691 100644 --- a/cilium/cmd/bpf_lb.go +++ b/cilium/cmd/bpf_lb.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_lb_list.go b/cilium/cmd/bpf_lb_list.go index 74aa8858a51b6..074dcb84c5db0 100644 --- a/cilium/cmd/bpf_lb_list.go +++ b/cilium/cmd/bpf_lb_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_lb_maglev.go b/cilium/cmd/bpf_lb_maglev.go index 116cc2e6e75f4..9f952bbaa6655 100644 --- a/cilium/cmd/bpf_lb_maglev.go +++ b/cilium/cmd/bpf_lb_maglev.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_lb_maglev_get.go b/cilium/cmd/bpf_lb_maglev_get.go index dedc315c27f27..58bac240aadc1 100644 --- a/cilium/cmd/bpf_lb_maglev_get.go +++ b/cilium/cmd/bpf_lb_maglev_get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2022 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_lb_maglev_list.go b/cilium/cmd/bpf_lb_maglev_list.go index a20e2d17fc78b..fb5d6a09621c3 100644 --- a/cilium/cmd/bpf_lb_maglev_list.go +++ b/cilium/cmd/bpf_lb_maglev_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2022 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_metrics.go b/cilium/cmd/bpf_metrics.go index 7f2b995e9100c..5fde450ad4cfb 100644 --- a/cilium/cmd/bpf_metrics.go +++ b/cilium/cmd/bpf_metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_metrics_list.go b/cilium/cmd/bpf_metrics_list.go index 12c8df6e0a89a..484857836878d 100644 --- a/cilium/cmd/bpf_metrics_list.go +++ b/cilium/cmd/bpf_metrics_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_metrics_list_test.go b/cilium/cmd/bpf_metrics_list_test.go index 5d42ff029ae2e..e96392d04a150 100644 --- a/cilium/cmd/bpf_metrics_list_test.go +++ b/cilium/cmd/bpf_metrics_list_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/cilium/cmd/bpf_migrate_maps.go b/cilium/cmd/bpf_migrate_maps.go index 845915073692f..a74d4f286e42a 100644 --- a/cilium/cmd/bpf_migrate_maps.go +++ b/cilium/cmd/bpf_migrate_maps.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_mountfs.go b/cilium/cmd/bpf_mountfs.go index a4d6d9ae259c6..a5c8906aeb407 100644 --- a/cilium/cmd/bpf_mountfs.go +++ b/cilium/cmd/bpf_mountfs.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_mountfs_show.go b/cilium/cmd/bpf_mountfs_show.go index 20f65694b26b7..5b95bc169c404 100644 --- a/cilium/cmd/bpf_mountfs_show.go +++ b/cilium/cmd/bpf_mountfs_show.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_nat.go b/cilium/cmd/bpf_nat.go index d5ce52a683a13..e9c778a033a2d 100644 --- a/cilium/cmd/bpf_nat.go +++ b/cilium/cmd/bpf_nat.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_nat_flush.go b/cilium/cmd/bpf_nat_flush.go index 1d7a146fae539..814e891d0a49a 100644 --- a/cilium/cmd/bpf_nat_flush.go +++ b/cilium/cmd/bpf_nat_flush.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_nat_list.go b/cilium/cmd/bpf_nat_list.go index 08b22ff3fa436..b5b30f3684988 100644 --- a/cilium/cmd/bpf_nat_list.go +++ b/cilium/cmd/bpf_nat_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_nat_list_test.go b/cilium/cmd/bpf_nat_list_test.go index 41ec47c6ad5da..7a1789f462236 100644 --- a/cilium/cmd/bpf_nat_list_test.go +++ b/cilium/cmd/bpf_nat_list_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/cilium/cmd/bpf_policy.go b/cilium/cmd/bpf_policy.go index bb32ce0faf539..9a3795f57c5f6 100644 --- a/cilium/cmd/bpf_policy.go +++ b/cilium/cmd/bpf_policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_policy_add.go b/cilium/cmd/bpf_policy_add.go index 2a02460c6db05..1c977804a5b91 100644 --- a/cilium/cmd/bpf_policy_add.go +++ b/cilium/cmd/bpf_policy_add.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_policy_delete.go b/cilium/cmd/bpf_policy_delete.go index 2e70d1de66be2..20a62a397db8f 100644 --- a/cilium/cmd/bpf_policy_delete.go +++ b/cilium/cmd/bpf_policy_delete.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_policy_get.go b/cilium/cmd/bpf_policy_get.go index a0aed4039cf70..539908af99382 100644 --- a/cilium/cmd/bpf_policy_get.go +++ b/cilium/cmd/bpf_policy_get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_recorder.go b/cilium/cmd/bpf_recorder.go index c59e93a505085..5cd2ff9be5735 100644 --- a/cilium/cmd/bpf_recorder.go +++ b/cilium/cmd/bpf_recorder.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_recorder_list.go b/cilium/cmd/bpf_recorder_list.go index 33033f0f6a660..fae23640546ca 100644 --- a/cilium/cmd/bpf_recorder_list.go +++ b/cilium/cmd/bpf_recorder_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_sha.go b/cilium/cmd/bpf_sha.go index 9d4c5956084d2..50e1b97a53f74 100644 --- a/cilium/cmd/bpf_sha.go +++ b/cilium/cmd/bpf_sha.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_sha_get.go b/cilium/cmd/bpf_sha_get.go index f6befd3cf8dcb..883f2a5550b1a 100644 --- a/cilium/cmd/bpf_sha_get.go +++ b/cilium/cmd/bpf_sha_get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_sha_list.go b/cilium/cmd/bpf_sha_list.go index 21326c8c91ffc..5d3625754826d 100644 --- a/cilium/cmd/bpf_sha_list.go +++ b/cilium/cmd/bpf_sha_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_tunnel.go b/cilium/cmd/bpf_tunnel.go index 5bdcfc465e7f1..6bfb14422de53 100644 --- a/cilium/cmd/bpf_tunnel.go +++ b/cilium/cmd/bpf_tunnel.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/bpf_tunnel_list.go b/cilium/cmd/bpf_tunnel_list.go index 434e902af52dd..4aa8701089169 100644 --- a/cilium/cmd/bpf_tunnel_list.go +++ b/cilium/cmd/bpf_tunnel_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/cleanup.go b/cilium/cmd/cleanup.go index 91c8e65555906..7eb30811b4e66 100644 --- a/cilium/cmd/cleanup.go +++ b/cilium/cmd/cleanup.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/cmdman.go b/cilium/cmd/cmdman.go index 145621284455a..c199acb3584b2 100644 --- a/cilium/cmd/cmdman.go +++ b/cilium/cmd/cmdman.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/cmdref.go b/cilium/cmd/cmdref.go index 985e06cf4110a..781041a8c4610 100644 --- a/cilium/cmd/cmdref.go +++ b/cilium/cmd/cmdref.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/config.go b/cilium/cmd/config.go index 469e9c322faa4..056ee575f1786 100644 --- a/cilium/cmd/config.go +++ b/cilium/cmd/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/config_get.go b/cilium/cmd/config_get.go index 27bf196567abc..cabc6de890edb 100644 --- a/cilium/cmd/config_get.go +++ b/cilium/cmd/config_get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/debuginfo.go b/cilium/cmd/debuginfo.go index 9c586d458a912..e6f6781296fc7 100644 --- a/cilium/cmd/debuginfo.go +++ b/cilium/cmd/debuginfo.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/encrypt.go b/cilium/cmd/encrypt.go index 70fb47cafa33e..6f6833a66f758 100644 --- a/cilium/cmd/encrypt.go +++ b/cilium/cmd/encrypt.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/encrypt_flush.go b/cilium/cmd/encrypt_flush.go index 87f427a446181..be0afa8260b4c 100644 --- a/cilium/cmd/encrypt_flush.go +++ b/cilium/cmd/encrypt_flush.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/encrypt_status.go b/cilium/cmd/encrypt_status.go index f700625f7aa43..bf2c2fb0a3954 100644 --- a/cilium/cmd/encrypt_status.go +++ b/cilium/cmd/encrypt_status.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/encrypt_status_test.go b/cilium/cmd/encrypt_status_test.go index 24daad84c5666..30a79fa34022d 100644 --- a/cilium/cmd/encrypt_status_test.go +++ b/cilium/cmd/encrypt_status_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021-2022 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/cilium/cmd/endpoint.go b/cilium/cmd/endpoint.go index acebbd6108c23..743a2e12c73d9 100644 --- a/cilium/cmd/endpoint.go +++ b/cilium/cmd/endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/endpoint_config.go b/cilium/cmd/endpoint_config.go index 42cbda8d8c022..c1afd6e2b2da8 100644 --- a/cilium/cmd/endpoint_config.go +++ b/cilium/cmd/endpoint_config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/endpoint_disconnect.go b/cilium/cmd/endpoint_disconnect.go index 36849723781ea..969de7e359662 100644 --- a/cilium/cmd/endpoint_disconnect.go +++ b/cilium/cmd/endpoint_disconnect.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/endpoint_get.go b/cilium/cmd/endpoint_get.go index 915f34bab31fc..7b8290b600370 100644 --- a/cilium/cmd/endpoint_get.go +++ b/cilium/cmd/endpoint_get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/endpoint_healthz.go b/cilium/cmd/endpoint_healthz.go index 803b58e715657..9f3aedce00202 100644 --- a/cilium/cmd/endpoint_healthz.go +++ b/cilium/cmd/endpoint_healthz.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/endpoint_labels.go b/cilium/cmd/endpoint_labels.go index 0147bfd98e198..90b9513c8a486 100644 --- a/cilium/cmd/endpoint_labels.go +++ b/cilium/cmd/endpoint_labels.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/endpoint_list.go b/cilium/cmd/endpoint_list.go index fdd6c686fb68b..3978e7c1314f9 100644 --- a/cilium/cmd/endpoint_list.go +++ b/cilium/cmd/endpoint_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/endpoint_log.go b/cilium/cmd/endpoint_log.go index e80d934b04abd..48d181f5bb2f3 100644 --- a/cilium/cmd/endpoint_log.go +++ b/cilium/cmd/endpoint_log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/endpoint_regenerate.go b/cilium/cmd/endpoint_regenerate.go index 469183632b73c..149d8d3da775d 100644 --- a/cilium/cmd/endpoint_regenerate.go +++ b/cilium/cmd/endpoint_regenerate.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/fqdn.go b/cilium/cmd/fqdn.go index d522b627cc642..3056c1c158c4e 100644 --- a/cilium/cmd/fqdn.go +++ b/cilium/cmd/fqdn.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/helpers.go b/cilium/cmd/helpers.go index 296e79c71eaff..17a130d764127 100644 --- a/cilium/cmd/helpers.go +++ b/cilium/cmd/helpers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/helpers_test.go b/cilium/cmd/helpers_test.go index b6c3a20f7c850..93fca2a57bc01 100644 --- a/cilium/cmd/helpers_test.go +++ b/cilium/cmd/helpers_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/cilium/cmd/identity.go b/cilium/cmd/identity.go index 90f1281411696..dc61122dfa874 100644 --- a/cilium/cmd/identity.go +++ b/cilium/cmd/identity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/identity_get.go b/cilium/cmd/identity_get.go index 4cfecf4a4aedc..c93bf73484cbb 100644 --- a/cilium/cmd/identity_get.go +++ b/cilium/cmd/identity_get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/identity_list.go b/cilium/cmd/identity_list.go index 79920fead1394..9e981d3b10f78 100644 --- a/cilium/cmd/identity_list.go +++ b/cilium/cmd/identity_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/ip.go b/cilium/cmd/ip.go index 2eac9dc6b2a33..2ff99b6930bcf 100644 --- a/cilium/cmd/ip.go +++ b/cilium/cmd/ip.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/ip_list.go b/cilium/cmd/ip_list.go index 77840a034b915..73b6c6be57109 100644 --- a/cilium/cmd/ip_list.go +++ b/cilium/cmd/ip_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/kvstore.go b/cilium/cmd/kvstore.go index 39659d602a77d..f7289a3f11fa6 100644 --- a/cilium/cmd/kvstore.go +++ b/cilium/cmd/kvstore.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/kvstore_delete.go b/cilium/cmd/kvstore_delete.go index 759d5c9e0455a..99ff917cead03 100644 --- a/cilium/cmd/kvstore_delete.go +++ b/cilium/cmd/kvstore_delete.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/kvstore_get.go b/cilium/cmd/kvstore_get.go index 5386a38196b9e..550ecc5654ce0 100644 --- a/cilium/cmd/kvstore_get.go +++ b/cilium/cmd/kvstore_get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/kvstore_set.go b/cilium/cmd/kvstore_set.go index ca749e3fd38fd..ec285f8840834 100644 --- a/cilium/cmd/kvstore_set.go +++ b/cilium/cmd/kvstore_set.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/lpm_warning.go b/cilium/cmd/lpm_warning.go index 620f96830cfe4..05fe61afd2c8e 100644 --- a/cilium/cmd/lpm_warning.go +++ b/cilium/cmd/lpm_warning.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/lrp.go b/cilium/cmd/lrp.go index c661e0725bb47..f71494b096e09 100644 --- a/cilium/cmd/lrp.go +++ b/cilium/cmd/lrp.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/lrp_list.go b/cilium/cmd/lrp_list.go index 254f7f8f08476..b11db838ba0d2 100644 --- a/cilium/cmd/lrp_list.go +++ b/cilium/cmd/lrp_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/map.go b/cilium/cmd/map.go index f36e524c7d413..cc8179498dc40 100644 --- a/cilium/cmd/map.go +++ b/cilium/cmd/map.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/map_get.go b/cilium/cmd/map_get.go index c2ed9710e7bfb..f1f010acfdda5 100644 --- a/cilium/cmd/map_get.go +++ b/cilium/cmd/map_get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/map_list.go b/cilium/cmd/map_list.go index 14f73d37d1c00..6362bf3e1873f 100644 --- a/cilium/cmd/map_list.go +++ b/cilium/cmd/map_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/metrics.go b/cilium/cmd/metrics.go index c1410e8eecc7a..bde62be0e8f52 100644 --- a/cilium/cmd/metrics.go +++ b/cilium/cmd/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/metrics_list.go b/cilium/cmd/metrics_list.go index 22ede7a51aac4..90a057254ff3b 100644 --- a/cilium/cmd/metrics_list.go +++ b/cilium/cmd/metrics_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/monitor.go b/cilium/cmd/monitor.go index 9dc76637f64f3..f888aca0036fd 100644 --- a/cilium/cmd/monitor.go +++ b/cilium/cmd/monitor.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/node.go b/cilium/cmd/node.go index fe8d615143ccc..8b3d6be714fbf 100644 --- a/cilium/cmd/node.go +++ b/cilium/cmd/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/node_list.go b/cilium/cmd/node_list.go index 20c07e49832a7..99378b17c7771 100644 --- a/cilium/cmd/node_list.go +++ b/cilium/cmd/node_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/policy.go b/cilium/cmd/policy.go index c997f87aad790..ad35b14fe7391 100644 --- a/cilium/cmd/policy.go +++ b/cilium/cmd/policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/policy_delete.go b/cilium/cmd/policy_delete.go index d08fe8dc414a7..7fc8eed653dba 100644 --- a/cilium/cmd/policy_delete.go +++ b/cilium/cmd/policy_delete.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/policy_get.go b/cilium/cmd/policy_get.go index 88b57cbd0e4f5..11c4bc40d3886 100644 --- a/cilium/cmd/policy_get.go +++ b/cilium/cmd/policy_get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/policy_import.go b/cilium/cmd/policy_import.go index 608a421805ac9..3856d9bf75a0b 100644 --- a/cilium/cmd/policy_import.go +++ b/cilium/cmd/policy_import.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/policy_selectors.go b/cilium/cmd/policy_selectors.go index 7ab050c3a8a75..9e3b6d6833e9f 100644 --- a/cilium/cmd/policy_selectors.go +++ b/cilium/cmd/policy_selectors.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/policy_trace.go b/cilium/cmd/policy_trace.go index 8c9aa955387ec..925330b1cdd1e 100644 --- a/cilium/cmd/policy_trace.go +++ b/cilium/cmd/policy_trace.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/policy_validate.go b/cilium/cmd/policy_validate.go index 80b0109f58e60..8d6a104430bd3 100644 --- a/cilium/cmd/policy_validate.go +++ b/cilium/cmd/policy_validate.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/policy_wait.go b/cilium/cmd/policy_wait.go index 4614ca39bcbce..5406ee90775b5 100644 --- a/cilium/cmd/policy_wait.go +++ b/cilium/cmd/policy_wait.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/prefilter.go b/cilium/cmd/prefilter.go index 9ece8d893aa6d..a9ab41a57d0ce 100644 --- a/cilium/cmd/prefilter.go +++ b/cilium/cmd/prefilter.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/prefilter_delete.go b/cilium/cmd/prefilter_delete.go index 76eb804b0397f..fa7b8b36b3ed2 100644 --- a/cilium/cmd/prefilter_delete.go +++ b/cilium/cmd/prefilter_delete.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/prefilter_list.go b/cilium/cmd/prefilter_list.go index 0b714a02663e8..f2d6fe29a7bcc 100644 --- a/cilium/cmd/prefilter_list.go +++ b/cilium/cmd/prefilter_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/prefilter_update.go b/cilium/cmd/prefilter_update.go index 9fb054ca833e8..21bf9d075f539 100644 --- a/cilium/cmd/prefilter_update.go +++ b/cilium/cmd/prefilter_update.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/preflight.go b/cilium/cmd/preflight.go index c387ce2a0ae59..5057987ae4031 100644 --- a/cilium/cmd/preflight.go +++ b/cilium/cmd/preflight.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/preflight_identity_crd_migrate.go b/cilium/cmd/preflight_identity_crd_migrate.go index 8bddfc6840670..86cd4d97e16be 100644 --- a/cilium/cmd/preflight_identity_crd_migrate.go +++ b/cilium/cmd/preflight_identity_crd_migrate.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/preflight_k8s_valid_cnp.go b/cilium/cmd/preflight_k8s_valid_cnp.go index 44213a288216d..ff4413bb30503 100644 --- a/cilium/cmd/preflight_k8s_valid_cnp.go +++ b/cilium/cmd/preflight_k8s_valid_cnp.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/recorder.go b/cilium/cmd/recorder.go index a5b908de43ff9..174c4a8a3a6fc 100644 --- a/cilium/cmd/recorder.go +++ b/cilium/cmd/recorder.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/recorder_delete.go b/cilium/cmd/recorder_delete.go index 10b12e5d73a30..f531b53a1db92 100644 --- a/cilium/cmd/recorder_delete.go +++ b/cilium/cmd/recorder_delete.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/recorder_get.go b/cilium/cmd/recorder_get.go index 624829c546523..9af0b2a324348 100644 --- a/cilium/cmd/recorder_get.go +++ b/cilium/cmd/recorder_get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/recorder_list.go b/cilium/cmd/recorder_list.go index 95539e8b154b8..d4d0ebfc7a459 100644 --- a/cilium/cmd/recorder_list.go +++ b/cilium/cmd/recorder_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/recorder_update.go b/cilium/cmd/recorder_update.go index 46c259ff96ffe..173b75fa4dd25 100644 --- a/cilium/cmd/recorder_update.go +++ b/cilium/cmd/recorder_update.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/root.go b/cilium/cmd/root.go index e38bf89193011..4461353b06a1e 100644 --- a/cilium/cmd/root.go +++ b/cilium/cmd/root.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/service.go b/cilium/cmd/service.go index 628433dc3d306..58d4f94c2ddfe 100644 --- a/cilium/cmd/service.go +++ b/cilium/cmd/service.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/service_delete.go b/cilium/cmd/service_delete.go index 09c209e1ea6a1..08370324715a2 100644 --- a/cilium/cmd/service_delete.go +++ b/cilium/cmd/service_delete.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/service_get.go b/cilium/cmd/service_get.go index 2406484e68368..44fe0e26b830e 100644 --- a/cilium/cmd/service_get.go +++ b/cilium/cmd/service_get.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/service_list.go b/cilium/cmd/service_list.go index 1fde10193e378..22ca7f368dbbd 100644 --- a/cilium/cmd/service_list.go +++ b/cilium/cmd/service_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/service_update.go b/cilium/cmd/service_update.go index 9732e0bde59d9..04e06d08b57e5 100644 --- a/cilium/cmd/service_update.go +++ b/cilium/cmd/service_update.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/status.go b/cilium/cmd/status.go index 70169ebc8276b..7fe84dec1d754 100644 --- a/cilium/cmd/status.go +++ b/cilium/cmd/status.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/cmd/version.go b/cilium/cmd/version.go index 9dbf215d2be32..eef6bdfc7f78e 100644 --- a/cilium/cmd/version.go +++ b/cilium/cmd/version.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/cilium/main.go b/cilium/main.go index b7e5db3ba4465..87b706441bf67 100644 --- a/cilium/main.go +++ b/cilium/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium // Ensure build fails on versions of Go that are not supported by Cilium. // This build tag should be kept in sync with the version specified in go.mod. diff --git a/clustermesh-apiserver/Makefile b/clustermesh-apiserver/Makefile index 411253a291820..9a87fb37b0cf1 100644 --- a/clustermesh-apiserver/Makefile +++ b/clustermesh-apiserver/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../Makefile.defs diff --git a/clustermesh-apiserver/main.go b/clustermesh-apiserver/main.go index f93e95efbc6bb..7dfc75ea8ce44 100644 --- a/clustermesh-apiserver/main.go +++ b/clustermesh-apiserver/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium // Ensure build fails on versions of Go that are not supported by Cilium. // This build tag should be kept in sync with the version specified in go.mod. diff --git a/clustermesh-apiserver/vmmanager.go b/clustermesh-apiserver/vmmanager.go index ada2ecbeaf4ba..262dc69abac66 100644 --- a/clustermesh-apiserver/vmmanager.go +++ b/clustermesh-apiserver/vmmanager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/contrib/backporting/common.sh b/contrib/backporting/common.sh index 2589bd145ef81..1a589fa67bb4f 100755 --- a/contrib/backporting/common.sh +++ b/contrib/backporting/common.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2019-2021 Authors of Cilium +# Copyright Authors of Cilium set -e diff --git a/contrib/backporting/start-backport b/contrib/backporting/start-backport index 0ce2699b847f2..80d89ea1f030b 100755 --- a/contrib/backporting/start-backport +++ b/contrib/backporting/start-backport @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2019-2021 Authors of Cilium +# Copyright Authors of Cilium source $(dirname $(readlink -ne $BASH_SOURCE))/../release/lib/common.sh source $TOOL_LIB_PATH/gitlib.sh diff --git a/contrib/backporting/submit-backport b/contrib/backporting/submit-backport index 74bee3934190a..17380a7b2b1a4 100755 --- a/contrib/backporting/submit-backport +++ b/contrib/backporting/submit-backport @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2020-2021 Authors of Cilium +# Copyright Authors of Cilium DIR=$(dirname $(readlink -ne $BASH_SOURCE)) source $DIR/../release/lib/common.sh diff --git a/contrib/codegen/Makefile b/contrib/codegen/Makefile index a3b0a2059cbf7..a8b43d21634d7 100644 --- a/contrib/codegen/Makefile +++ b/contrib/codegen/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 CFLAGS=-O2 -Wall diff --git a/contrib/k8s/k8s-cilium-exec.sh b/contrib/k8s/k8s-cilium-exec.sh index 822509399b581..b2a7d90006e30 100755 --- a/contrib/k8s/k8s-cilium-exec.sh +++ b/contrib/k8s/k8s-cilium-exec.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2018 Authors of Cilium +# Copyright Authors of Cilium trap cleanup EXIT diff --git a/contrib/k8s/k8s-extract-clustermesh-nodeport-secret.sh b/contrib/k8s/k8s-extract-clustermesh-nodeport-secret.sh index df53dddf5dbe2..93f8a93a3a0b1 100755 --- a/contrib/k8s/k8s-extract-clustermesh-nodeport-secret.sh +++ b/contrib/k8s/k8s-extract-clustermesh-nodeport-secret.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2020 Authors of Cilium +# Copyright Authors of Cilium # Extract a clustermesh secret from the local cluster to be used in other clusters set -e diff --git a/contrib/k8s/k8s-get-cilium-pod.sh b/contrib/k8s/k8s-get-cilium-pod.sh index 78be0b1550bcb..d7aabcd0cf705 100755 --- a/contrib/k8s/k8s-get-cilium-pod.sh +++ b/contrib/k8s/k8s-get-cilium-pod.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2018 Authors of Cilium +# Copyright Authors of Cilium # Given an app pod and namespace; get corresponding cilium pod diff --git a/contrib/k8s/k8s-heap-dump.sh b/contrib/k8s/k8s-heap-dump.sh index 0c818330cb0c5..c4050ab1ea0f8 100755 --- a/contrib/k8s/k8s-heap-dump.sh +++ b/contrib/k8s/k8s-heap-dump.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2018 Authors of Cilium +# Copyright Authors of Cilium set -x diff --git a/contrib/k8s/k8s-import-clustermesh-secrets.sh b/contrib/k8s/k8s-import-clustermesh-secrets.sh index 0ca94e9b20aa2..06d9a55f511b1 100755 --- a/contrib/k8s/k8s-import-clustermesh-secrets.sh +++ b/contrib/k8s/k8s-import-clustermesh-secrets.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2020 Authors of Cilium +# Copyright Authors of Cilium # Combine given secrets (in JSON) into one set -e diff --git a/contrib/k8s/k8s-unmanaged.sh b/contrib/k8s/k8s-unmanaged.sh index 637599c8d7bcb..339f08eea649b 100755 --- a/contrib/k8s/k8s-unmanaged.sh +++ b/contrib/k8s/k8s-unmanaged.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2018 Authors of Cilium +# Copyright Authors of Cilium ALL_CEPS=$(kubectl get cep --all-namespaces -o json | jq -r '.items[].metadata | .namespace + "/" + .name') ALL_PODS=$(kubectl get pods --all-namespaces -o json | jq -r '.items[] | select(.spec.hostNetwork==true | not) | .metadata | .namespace + "/" + .name') diff --git a/contrib/k8s/nsexec b/contrib/k8s/nsexec index fd786a8b86631..f8a44e4fddc15 100755 --- a/contrib/k8s/nsexec +++ b/contrib/k8s/nsexec @@ -1,6 +1,6 @@ #!/usr/bin/env bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2020 Authors of Cilium +# Copyright Authors of Cilium # # Execute command in the network namespace of the named k8s POD diff --git a/contrib/packaging/deb/Makefile b/contrib/packaging/deb/Makefile index 45e8c273a033f..333df1c7839f0 100644 --- a/contrib/packaging/deb/Makefile +++ b/contrib/packaging/deb/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2019 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../../../Makefile.defs diff --git a/contrib/packaging/rpm/Makefile b/contrib/packaging/rpm/Makefile index cd9877de6888c..1652ae7824024 100644 --- a/contrib/packaging/rpm/Makefile +++ b/contrib/packaging/rpm/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../../../Makefile.defs diff --git a/contrib/release/bump-docker-stable.sh b/contrib/release/bump-docker-stable.sh index 83d88ce418987..0f98f92dc25d1 100755 --- a/contrib/release/bump-docker-stable.sh +++ b/contrib/release/bump-docker-stable.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2020 Authors of Cilium +# Copyright Authors of Cilium DIR=$(dirname $(readlink -ne $BASH_SOURCE)) source $DIR/lib/common.sh diff --git a/contrib/release/bump-readme.sh b/contrib/release/bump-readme.sh index 9bf617a14f4d8..a6c0ff2cdfbea 100755 --- a/contrib/release/bump-readme.sh +++ b/contrib/release/bump-readme.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2020 Authors of Cilium +# Copyright Authors of Cilium DIR=$(dirname $(readlink -ne $BASH_SOURCE)) source $DIR/lib/common.sh diff --git a/contrib/release/post-release.sh b/contrib/release/post-release.sh index cfb9625a78a64..e32808f42f280 100755 --- a/contrib/release/post-release.sh +++ b/contrib/release/post-release.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2021 Authors of Cilium +# Copyright Authors of Cilium DIR=$(dirname $(readlink -ne $BASH_SOURCE)) source "${DIR}/lib/common.sh" diff --git a/contrib/release/prep-changelog.sh b/contrib/release/prep-changelog.sh index 1d4805c4680c7..4eb52784aac41 100755 --- a/contrib/release/prep-changelog.sh +++ b/contrib/release/prep-changelog.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2020 Authors of Cilium +# Copyright Authors of Cilium DIR=$(dirname $(readlink -ne $BASH_SOURCE)) source $DIR/lib/common.sh diff --git a/contrib/release/pull-docker-manifests.sh b/contrib/release/pull-docker-manifests.sh index 3c5d5934913a2..b411e12f40103 100755 --- a/contrib/release/pull-docker-manifests.sh +++ b/contrib/release/pull-docker-manifests.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2021 Authors of Cilium +# Copyright Authors of Cilium DIR=$(dirname $(readlink -ne $BASH_SOURCE)) source "${DIR}/lib/common.sh" diff --git a/contrib/release/start-release.sh b/contrib/release/start-release.sh index 204a3226fd7b6..ce2a38bb012ef 100755 --- a/contrib/release/start-release.sh +++ b/contrib/release/start-release.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2020 Authors of Cilium +# Copyright Authors of Cilium DIR=$(dirname $(readlink -ne $BASH_SOURCE)) source $DIR/lib/common.sh diff --git a/contrib/release/submit-release.sh b/contrib/release/submit-release.sh index 19277a198ac27..04eff8b451d62 100755 --- a/contrib/release/submit-release.sh +++ b/contrib/release/submit-release.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2020 Authors of Cilium +# Copyright Authors of Cilium DIR=$(dirname $(readlink -ne $BASH_SOURCE)) source $DIR/lib/common.sh diff --git a/contrib/release/tag-release.sh b/contrib/release/tag-release.sh index e2d795814c710..2f4ec54648686 100755 --- a/contrib/release/tag-release.sh +++ b/contrib/release/tag-release.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2020 Authors of Cilium +# Copyright Authors of Cilium DIR=$(dirname $(readlink -ne $BASH_SOURCE)) source $DIR/lib/common.sh diff --git a/contrib/scripts/check-viper-get-string-map-string.sh b/contrib/scripts/check-viper-get-string-map-string.sh index b7c3440cf09e8..74fe5a64b8f9f 100755 --- a/contrib/scripts/check-viper-get-string-map-string.sh +++ b/contrib/scripts/check-viper-get-string-map-string.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2022 Authors of Cilium +# Copyright Authors of Cilium # Simple script to make sure viper.GetStringMapString should not be used. # Related upstream issue https://github.com/spf13/viper/issues/911 diff --git a/contrib/scripts/custom-vet-check.sh b/contrib/scripts/custom-vet-check.sh index 9512baf8496fb..c09d5a1c87f3f 100755 --- a/contrib/scripts/custom-vet-check.sh +++ b/contrib/scripts/custom-vet-check.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2020 Authors of Cilium +# Copyright Authors of Cilium # "customvet" is a custom go vet tool that can be found at # https://github.com/cilium/customvet diff --git a/contrib/scripts/lock-check.sh b/contrib/scripts/lock-check.sh index 784b322ec12d2..b811646e6d920 100755 --- a/contrib/scripts/lock-check.sh +++ b/contrib/scripts/lock-check.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2017 Authors of Cilium +# Copyright Authors of Cilium # Used to cause failure when pkg/lock is not used for l in sync.Mutex sync.RWMutex; do diff --git a/contrib/scripts/netperf_reporter.py b/contrib/scripts/netperf_reporter.py index 016cff589ce92..04596672bca8c 100644 --- a/contrib/scripts/netperf_reporter.py +++ b/contrib/scripts/netperf_reporter.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # SPDX-License-Identifier: Apache-2.0 -# Copyright 2018 Authors of Cilium +# Copyright Authors of Cilium # This script reads the output of netperf results from Kubernetes upstream # project and pushes the results to the given Prometheus server. diff --git a/contrib/scripts/rand-check.sh b/contrib/scripts/rand-check.sh index bc66a8b018bcd..c264d6b25ed3e 100755 --- a/contrib/scripts/rand-check.sh +++ b/contrib/scripts/rand-check.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2020 Authors of Cilium +# Copyright Authors of Cilium # Make sure pkg/rand is used instead of math/rand, see # https://github.com/cilium/cilium/issues/10988. It's fine to use math/rand in diff --git a/contrib/shell/test.sh b/contrib/shell/test.sh index 5aace536341d6..febb6d54f9281 100644 --- a/contrib/shell/test.sh +++ b/contrib/shell/test.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2017-2019 Authors of Cilium +# Copyright Authors of Cilium readonly t_reset=$(tput sgr0) readonly red=$(tput bold; tput setaf 1) diff --git a/contrib/testing/integrations.sh b/contrib/testing/integrations.sh index 0119ca4ad80ed..9f5aecee97ca1 100644 --- a/contrib/testing/integrations.sh +++ b/contrib/testing/integrations.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 2021 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 # Ginkgo Cilium Test diff --git a/daemon/Makefile b/daemon/Makefile index 6811a1d696a54..eac1ac6cc9076 100644 --- a/daemon/Makefile +++ b/daemon/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../Makefile.defs diff --git a/daemon/cmd/agenthealth.go b/daemon/cmd/agenthealth.go index baabd8e08a8a3..10b05141623ae 100644 --- a/daemon/cmd/agenthealth.go +++ b/daemon/cmd/agenthealth.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/api_limits.go b/daemon/cmd/api_limits.go index 17fc841820a63..5987c5483c731 100644 --- a/daemon/cmd/api_limits.go +++ b/daemon/cmd/api_limits.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/cleanup.go b/daemon/cmd/cleanup.go index be30b41cf15bb..dcb2a92180aee 100644 --- a/daemon/cmd/cleanup.go +++ b/daemon/cmd/cleanup.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/cmdref.go b/daemon/cmd/cmdref.go index b85bad20d4dce..acbc7cf9f5032 100644 --- a/daemon/cmd/cmdref.go +++ b/daemon/cmd/cmdref.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/config.go b/daemon/cmd/config.go index 90de7372cc50c..4ba25e5d46fbf 100644 --- a/daemon/cmd/config.go +++ b/daemon/cmd/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/daemon.go b/daemon/cmd/daemon.go index d5749e622089f..7c7807b2c2202 100644 --- a/daemon/cmd/daemon.go +++ b/daemon/cmd/daemon.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/daemon_main.go b/daemon/cmd/daemon_main.go index 8706c736415a1..ee272a8f48eb1 100644 --- a/daemon/cmd/daemon_main.go +++ b/daemon/cmd/daemon_main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/daemon_test.go b/daemon/cmd/daemon_test.go index 420e29f609bc3..89a07759c21f9 100644 --- a/daemon/cmd/daemon_test.go +++ b/daemon/cmd/daemon_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/daemon/cmd/datapath.go b/daemon/cmd/datapath.go index 86ae32f77629c..1b2327a500294 100644 --- a/daemon/cmd/datapath.go +++ b/daemon/cmd/datapath.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2022 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/debuginfo.go b/daemon/cmd/debuginfo.go index 142c12d30579b..c2c36fe41ce20 100644 --- a/daemon/cmd/debuginfo.go +++ b/daemon/cmd/debuginfo.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/debuginfo_test.go b/daemon/cmd/debuginfo_test.go index dc1215e46314b..b0b876a553cd3 100644 --- a/daemon/cmd/debuginfo_test.go +++ b/daemon/cmd/debuginfo_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/daemon/cmd/devices.go b/daemon/cmd/devices.go index e9e9182fd2969..96370575ee064 100644 --- a/daemon/cmd/devices.go +++ b/daemon/cmd/devices.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium // This module implements Cilium's network device detection. diff --git a/daemon/cmd/devices_test.go b/daemon/cmd/devices_test.go index 99b73f8c6e98b..5ca5202a08b25 100644 --- a/daemon/cmd/devices_test.go +++ b/daemon/cmd/devices_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build linux && privileged_tests // +build linux,privileged_tests diff --git a/daemon/cmd/endpoint.go b/daemon/cmd/endpoint.go index baae6f0e44b43..65eddda7a9d9b 100644 --- a/daemon/cmd/endpoint.go +++ b/daemon/cmd/endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/endpoint_test.go b/daemon/cmd/endpoint_test.go index 7570be278b972..eb8771c72ff2a 100644 --- a/daemon/cmd/endpoint_test.go +++ b/daemon/cmd/endpoint_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/daemon/cmd/fqdn.go b/daemon/cmd/fqdn.go index a4bf659c72d94..1ca46f00dd254 100644 --- a/daemon/cmd/fqdn.go +++ b/daemon/cmd/fqdn.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/fqdn_test.go b/daemon/cmd/fqdn_test.go index ef29a92db3298..8e7e9af4149cc 100644 --- a/daemon/cmd/fqdn_test.go +++ b/daemon/cmd/fqdn_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/daemon/cmd/health.go b/daemon/cmd/health.go index 889abc4b732a8..313e24d63f542 100644 --- a/daemon/cmd/health.go +++ b/daemon/cmd/health.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/hubble.go b/daemon/cmd/hubble.go index d6cde16d48b10..8723a4d1029b2 100644 --- a/daemon/cmd/hubble.go +++ b/daemon/cmd/hubble.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/identity.go b/daemon/cmd/identity.go index b81df867f8fa2..ea8c0b4d374f6 100644 --- a/daemon/cmd/identity.go +++ b/daemon/cmd/identity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/ipam.go b/daemon/cmd/ipam.go index 1910895677419..fe6a368df2cc1 100644 --- a/daemon/cmd/ipam.go +++ b/daemon/cmd/ipam.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/ipcache.go b/daemon/cmd/ipcache.go index b8f80f59a4f5f..d1e657ecbce16 100644 --- a/daemon/cmd/ipcache.go +++ b/daemon/cmd/ipcache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/ipcache_test.go b/daemon/cmd/ipcache_test.go index a49148a5a2ba5..5182bf93d7402 100644 --- a/daemon/cmd/ipcache_test.go +++ b/daemon/cmd/ipcache_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/daemon/cmd/kube_proxy_healthz.go b/daemon/cmd/kube_proxy_healthz.go index 2f4f3180e14c5..bd22136b39064 100644 --- a/daemon/cmd/kube_proxy_healthz.go +++ b/daemon/cmd/kube_proxy_healthz.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/kube_proxy_healthz_test.go b/daemon/cmd/kube_proxy_healthz_test.go index 82e93afee4998..2c47e39f55a11 100644 --- a/daemon/cmd/kube_proxy_healthz_test.go +++ b/daemon/cmd/kube_proxy_healthz_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/daemon/cmd/kube_proxy_replacement.go b/daemon/cmd/kube_proxy_replacement.go index 16777a3a17e61..5b8a49cdaa53d 100644 --- a/daemon/cmd/kube_proxy_replacement.go +++ b/daemon/cmd/kube_proxy_replacement.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium // This module contains the kube-proxy replacement initialization helpers. diff --git a/daemon/cmd/loadbalancer.go b/daemon/cmd/loadbalancer.go index 0caad256da510..5c1fbe4822e51 100644 --- a/daemon/cmd/loadbalancer.go +++ b/daemon/cmd/loadbalancer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/lrp.go b/daemon/cmd/lrp.go index eb00a13c2292c..f1f3b980cae09 100644 --- a/daemon/cmd/lrp.go +++ b/daemon/cmd/lrp.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/map.go b/daemon/cmd/map.go index 3ee8c2960d322..dcb8e167090c5 100644 --- a/daemon/cmd/map.go +++ b/daemon/cmd/map.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/metrics.go b/daemon/cmd/metrics.go index f16e51f348419..dd7a40fde80ad 100644 --- a/daemon/cmd/metrics.go +++ b/daemon/cmd/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/nodeport_linux_test.go b/daemon/cmd/nodeport_linux_test.go index 9f70672ee0657..37333feab9564 100644 --- a/daemon/cmd/nodeport_linux_test.go +++ b/daemon/cmd/nodeport_linux_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build linux && privileged_tests // +build linux,privileged_tests diff --git a/daemon/cmd/policy.go b/daemon/cmd/policy.go index 392e2d0bf0992..8c03003d1581b 100644 --- a/daemon/cmd/policy.go +++ b/daemon/cmd/policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/policy_test.go b/daemon/cmd/policy_test.go index e5dbc731cc404..69f4b62c2963c 100644 --- a/daemon/cmd/policy_test.go +++ b/daemon/cmd/policy_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/daemon/cmd/prefilter.go b/daemon/cmd/prefilter.go index 69fccac179a32..7da96ab2c495c 100644 --- a/daemon/cmd/prefilter.go +++ b/daemon/cmd/prefilter.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/proxy.go b/daemon/cmd/proxy.go index 6229811183fbb..a2312540e100e 100644 --- a/daemon/cmd/proxy.go +++ b/daemon/cmd/proxy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/recorder.go b/daemon/cmd/recorder.go index 79b65679e7eb7..90f08a1ee4315 100644 --- a/daemon/cmd/recorder.go +++ b/daemon/cmd/recorder.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/sockopt.go b/daemon/cmd/sockopt.go index b79cb67bc3762..5998fbcf3078b 100644 --- a/daemon/cmd/sockopt.go +++ b/daemon/cmd/sockopt.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/state.go b/daemon/cmd/state.go index 36a2687735c5d..6ced5ef2cb635 100644 --- a/daemon/cmd/state.go +++ b/daemon/cmd/state.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/status.go b/daemon/cmd/status.go index 1cdefea4c403c..42636191a9eaf 100644 --- a/daemon/cmd/status.go +++ b/daemon/cmd/status.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/status_test.go b/daemon/cmd/status_test.go index d19df53c6d4b0..8ba6dc9a75afc 100644 --- a/daemon/cmd/status_test.go +++ b/daemon/cmd/status_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/daemon/cmd/sysctl_darwin.go b/daemon/cmd/sysctl_darwin.go index a5a75bd6ca79d..e1ed5784f776c 100644 --- a/daemon/cmd/sysctl_darwin.go +++ b/daemon/cmd/sysctl_darwin.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/sysctl_linux.go b/daemon/cmd/sysctl_linux.go index 26af3b78dd47d..8a556f2167d4b 100644 --- a/daemon/cmd/sysctl_linux.go +++ b/daemon/cmd/sysctl_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/daemon/cmd/sysctl_linux_test.go b/daemon/cmd/sysctl_linux_test.go index d9e35effabd87..757ba4256aac6 100644 --- a/daemon/cmd/sysctl_linux_test.go +++ b/daemon/cmd/sysctl_linux_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build linux && privileged_tests // +build linux,privileged_tests diff --git a/daemon/main.go b/daemon/main.go index 7ef991973baf8..60a9d0ea4b460 100644 --- a/daemon/main.go +++ b/daemon/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium // Ensure build fails on versions of Go that are not supported by Cilium. // This build tag should be kept in sync with the version specified in go.mod. diff --git a/envoy/Makefile b/envoy/Makefile index 35220e1fdb7c0..44b581c47c4e4 100644 --- a/envoy/Makefile +++ b/envoy/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: Apache-2.0 -# Copyright 2017-2019 Authors of Cilium +# Copyright Authors of Cilium include ../Makefile.defs diff --git a/examples/kubernetes/addons/prometheus/Makefile b/examples/kubernetes/addons/prometheus/Makefile index e4fbb045fe568..b9b9f0559d895 100644 --- a/examples/kubernetes/addons/prometheus/Makefile +++ b/examples/kubernetes/addons/prometheus/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../../../../Makefile.defs diff --git a/examples/kubernetes/connectivity-check/Makefile b/examples/kubernetes/connectivity-check/Makefile index 8ea6b490e93d1..b89a242b46843 100644 --- a/examples/kubernetes/connectivity-check/Makefile +++ b/examples/kubernetes/connectivity-check/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../../../Makefile.defs diff --git a/hack/custom-boilerplate.go.txt b/hack/custom-boilerplate.go.txt index 94b50974c1775..6641c5f0303bb 100644 --- a/hack/custom-boilerplate.go.txt +++ b/hack/custom-boilerplate.go.txt @@ -1,3 +1,3 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium diff --git a/hubble-relay/Makefile b/hubble-relay/Makefile index be43860a40cd3..ba03c686eb807 100644 --- a/hubble-relay/Makefile +++ b/hubble-relay/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../Makefile.defs diff --git a/hubble-relay/cmd/completion/completion.go b/hubble-relay/cmd/completion/completion.go index fcb8dfc6c1377..435db8651e3cd 100644 --- a/hubble-relay/cmd/completion/completion.go +++ b/hubble-relay/cmd/completion/completion.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package completion diff --git a/hubble-relay/cmd/root.go b/hubble-relay/cmd/root.go index 40a8082c527bf..a237a1eaa3ad1 100644 --- a/hubble-relay/cmd/root.go +++ b/hubble-relay/cmd/root.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/hubble-relay/cmd/serve/serve.go b/hubble-relay/cmd/serve/serve.go index 0a80757647b75..3405f7cda2974 100644 --- a/hubble-relay/cmd/serve/serve.go +++ b/hubble-relay/cmd/serve/serve.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package serve diff --git a/hubble-relay/cmd/version/version.go b/hubble-relay/cmd/version/version.go index 0a71644b3a50e..f53d73ca93d70 100644 --- a/hubble-relay/cmd/version/version.go +++ b/hubble-relay/cmd/version/version.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package version diff --git a/hubble-relay/main.go b/hubble-relay/main.go index b732fc1219991..9ed9d3a400c34 100644 --- a/hubble-relay/main.go +++ b/hubble-relay/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Ensure build fails on versions of Go that are not supported by Cilium. // This build tag should be kept in sync with the version specified in go.mod. diff --git a/install/kubernetes/Makefile b/install/kubernetes/Makefile index 5de1894098f82..e6eac4876c58b 100644 --- a/install/kubernetes/Makefile +++ b/install/kubernetes/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2021 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include Makefile.digests ../../Makefile.defs diff --git a/install/kubernetes/Makefile.digests b/install/kubernetes/Makefile.digests index d05dab3454cb9..da09175991784 100644 --- a/install/kubernetes/Makefile.digests +++ b/install/kubernetes/Makefile.digests @@ -1,5 +1,5 @@ # File generated by .github/workflows/images-legacy-releases.yaml; DO NOT EDIT. -# Copyright 2021 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 CILIUM_DIGEST := "" diff --git a/operator/Makefile b/operator/Makefile index 4762c6528563f..ebd1285e3df53 100644 --- a/operator/Makefile +++ b/operator/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../Makefile.defs diff --git a/operator/allocator_providers.go b/operator/allocator_providers.go index db8870fce1d9b..2258e77a71bf9 100644 --- a/operator/allocator_providers.go +++ b/operator/allocator_providers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/operator/api/health.go b/operator/api/health.go index 6b5b9ce071543..ffa6b53aa73f3 100644 --- a/operator/api/health.go +++ b/operator/api/health.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/operator/api/metrics.go b/operator/api/metrics.go index e89c74b15d54f..3ae9d39d2d72c 100644 --- a/operator/api/metrics.go +++ b/operator/api/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/operator/api/server.go b/operator/api/server.go index 8ecf375e0e307..028c617096670 100644 --- a/operator/api/server.go +++ b/operator/api/server.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/operator/ccnp_event.go b/operator/ccnp_event.go index bfa198e4eeb7d..a8d409c86707e 100644 --- a/operator/ccnp_event.go +++ b/operator/ccnp_event.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/operator/cilium_node.go b/operator/cilium_node.go index b35852a98868f..8ca33b13f921c 100644 --- a/operator/cilium_node.go +++ b/operator/cilium_node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/operator/cmd/metrics.go b/operator/cmd/metrics.go index 788342c6b8732..0319beb1d2dfd 100644 --- a/operator/cmd/metrics.go +++ b/operator/cmd/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/operator/cmd/metrics_list.go b/operator/cmd/metrics_list.go index 1f929ecc3a965..e95fb15fa9b6b 100644 --- a/operator/cmd/metrics_list.go +++ b/operator/cmd/metrics_list.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/operator/cmd/root.go b/operator/cmd/root.go index 724e91fcf20bf..e71b2feee230b 100644 --- a/operator/cmd/root.go +++ b/operator/cmd/root.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package cmd diff --git a/operator/cmdref.go b/operator/cmdref.go index 50639cb5e84cd..df9fbbf95b6d6 100644 --- a/operator/cmdref.go +++ b/operator/cmdref.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/operator/cnp_event.go b/operator/cnp_event.go index 6ed4cd163969c..0bbb24039d13e 100644 --- a/operator/cnp_event.go +++ b/operator/cnp_event.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/operator/flags.go b/operator/flags.go index 9dbce08fe6c94..1e7a3c9f1cbe4 100644 --- a/operator/flags.go +++ b/operator/flags.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/operator/identity/heartbeat.go b/operator/identity/heartbeat.go index 7761173d0b661..a9f9038647a87 100644 --- a/operator/identity/heartbeat.go +++ b/operator/identity/heartbeat.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package identity diff --git a/operator/identity/heartbeat_test.go b/operator/identity/heartbeat_test.go index d127ce6976ad3..50ad74dfe7104 100644 --- a/operator/identity/heartbeat_test.go +++ b/operator/identity/heartbeat_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/operator/identity_gc.go b/operator/identity_gc.go index 2d8f5b2b9d3a5..b22ce8c5b2d98 100644 --- a/operator/identity_gc.go +++ b/operator/identity_gc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/operator/k8s_cep_gc.go b/operator/k8s_cep_gc.go index 9f0b104a437a2..48e218101041f 100644 --- a/operator/k8s_cep_gc.go +++ b/operator/k8s_cep_gc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/operator/k8s_identity.go b/operator/k8s_identity.go index f573dbd2c9026..c470922f2bea8 100644 --- a/operator/k8s_identity.go +++ b/operator/k8s_identity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/operator/k8s_pod_controller.go b/operator/k8s_pod_controller.go index cbda2e7a969f2..fe55bdd45e525 100644 --- a/operator/k8s_pod_controller.go +++ b/operator/k8s_pod_controller.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/operator/kvstore_watchdog.go b/operator/kvstore_watchdog.go index 4f6726354ff8e..5549c978fa96a 100644 --- a/operator/kvstore_watchdog.go +++ b/operator/kvstore_watchdog.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/operator/kvstore_watchdog_test.go b/operator/kvstore_watchdog_test.go index 2966d52fee1d2..849d3852ebfd3 100644 --- a/operator/kvstore_watchdog_test.go +++ b/operator/kvstore_watchdog_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/operator/main.go b/operator/main.go index 6521b2e4a3a68..da083fc943b44 100644 --- a/operator/main.go +++ b/operator/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium // Ensure build fails on versions of Go that are not supported by Cilium. // This build tag should be kept in sync with the version specified in go.mod. diff --git a/operator/metrics/metrics.go b/operator/metrics/metrics.go index d2eed55353d28..ad75fcae2ef6e 100644 --- a/operator/metrics/metrics.go +++ b/operator/metrics/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package metrics diff --git a/operator/option/config.go b/operator/option/config.go index 87ebc532b762b..6e6c71c7b763e 100644 --- a/operator/option/config.go +++ b/operator/option/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package option diff --git a/operator/pkg/ciliumendpointslice/ceptocesmap.go b/operator/pkg/ciliumendpointslice/ceptocesmap.go index 5d77d606fba67..22faadef093d9 100644 --- a/operator/pkg/ciliumendpointslice/ceptocesmap.go +++ b/operator/pkg/ciliumendpointslice/ceptocesmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package ciliumendpointslice diff --git a/operator/pkg/ciliumendpointslice/ceptocesmap_test.go b/operator/pkg/ciliumendpointslice/ceptocesmap_test.go index 601e4cb442180..1b69e4f3358a4 100644 --- a/operator/pkg/ciliumendpointslice/ceptocesmap_test.go +++ b/operator/pkg/ciliumendpointslice/ceptocesmap_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/operator/pkg/ciliumendpointslice/endpointslice.go b/operator/pkg/ciliumendpointslice/endpointslice.go index 84b53739fcc90..774d0eb7e3d10 100644 --- a/operator/pkg/ciliumendpointslice/endpointslice.go +++ b/operator/pkg/ciliumendpointslice/endpointslice.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package ciliumendpointslice diff --git a/operator/pkg/ciliumendpointslice/manager.go b/operator/pkg/ciliumendpointslice/manager.go index 9a282fe0e62b8..67427dd388816 100644 --- a/operator/pkg/ciliumendpointslice/manager.go +++ b/operator/pkg/ciliumendpointslice/manager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package ciliumendpointslice diff --git a/operator/pkg/ciliumendpointslice/manager_test.go b/operator/pkg/ciliumendpointslice/manager_test.go index 33b9eee2e4509..d98320051dec9 100644 --- a/operator/pkg/ciliumendpointslice/manager_test.go +++ b/operator/pkg/ciliumendpointslice/manager_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/operator/pkg/ciliumendpointslice/reconciler.go b/operator/pkg/ciliumendpointslice/reconciler.go index 36980aeb067ae..59e4ccf9310fd 100644 --- a/operator/pkg/ciliumendpointslice/reconciler.go +++ b/operator/pkg/ciliumendpointslice/reconciler.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package ciliumendpointslice diff --git a/operator/pkg/ciliumendpointslice/reconciler_test.go b/operator/pkg/ciliumendpointslice/reconciler_test.go index 7771ab6502726..8ff464df056c0 100644 --- a/operator/pkg/ciliumendpointslice/reconciler_test.go +++ b/operator/pkg/ciliumendpointslice/reconciler_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/operator/provider_alibabacloud_flags.go b/operator/provider_alibabacloud_flags.go index 1ee871dae333d..6bad5459e84db 100644 --- a/operator/provider_alibabacloud_flags.go +++ b/operator/provider_alibabacloud_flags.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build ipam_provider_alibabacloud // +build ipam_provider_alibabacloud diff --git a/operator/provider_alibabacloud_register.go b/operator/provider_alibabacloud_register.go index 3d10adf7cdcb2..039e432417cfd 100644 --- a/operator/provider_alibabacloud_register.go +++ b/operator/provider_alibabacloud_register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build ipam_provider_alibabacloud // +build ipam_provider_alibabacloud diff --git a/operator/provider_aws_flags.go b/operator/provider_aws_flags.go index f7e5dae146881..86d1f7c84efe7 100644 --- a/operator/provider_aws_flags.go +++ b/operator/provider_aws_flags.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build ipam_provider_aws // +build ipam_provider_aws diff --git a/operator/provider_aws_register.go b/operator/provider_aws_register.go index 89d861cd45f4a..cad0a3c014352 100644 --- a/operator/provider_aws_register.go +++ b/operator/provider_aws_register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build ipam_provider_aws // +build ipam_provider_aws diff --git a/operator/provider_azure_flags.go b/operator/provider_azure_flags.go index 8f8861f87f955..fd172c57d8c27 100644 --- a/operator/provider_azure_flags.go +++ b/operator/provider_azure_flags.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build ipam_provider_azure // +build ipam_provider_azure diff --git a/operator/provider_azure_register.go b/operator/provider_azure_register.go index cc238c9cb90d9..5c08cb7ee8e20 100644 --- a/operator/provider_azure_register.go +++ b/operator/provider_azure_register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build ipam_provider_azure // +build ipam_provider_azure diff --git a/operator/provider_operator_register.go b/operator/provider_operator_register.go index 92109cd641869..c8a2556698aca 100644 --- a/operator/provider_operator_register.go +++ b/operator/provider_operator_register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build ipam_provider_operator // +build ipam_provider_operator diff --git a/operator/watchers/bgp.go b/operator/watchers/bgp.go index c0931c96b92bb..5dc1cb9b71cee 100644 --- a/operator/watchers/bgp.go +++ b/operator/watchers/bgp.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/operator/watchers/cilium_endpoint.go b/operator/watchers/cilium_endpoint.go index cb1051646962d..05466dc818b7d 100644 --- a/operator/watchers/cilium_endpoint.go +++ b/operator/watchers/cilium_endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/operator/watchers/k8s_service_sync.go b/operator/watchers/k8s_service_sync.go index 25f9b5a16adc8..75603adff0aae 100644 --- a/operator/watchers/k8s_service_sync.go +++ b/operator/watchers/k8s_service_sync.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/operator/watchers/logfields.go b/operator/watchers/logfields.go index 268c3baa9237b..f820b5f56c4b1 100644 --- a/operator/watchers/logfields.go +++ b/operator/watchers/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/operator/watchers/pod.go b/operator/watchers/pod.go index 5a565e3e8e09b..a7d33c41f868f 100644 --- a/operator/watchers/pod.go +++ b/operator/watchers/pod.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/operator/watchers/service_cache.go b/operator/watchers/service_cache.go index 95d8a4e35f1c4..4033ea54903e4 100644 --- a/operator/watchers/service_cache.go +++ b/operator/watchers/service_cache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/addressing/ip.go b/pkg/addressing/ip.go index 9fcecaff2d78a..62c3c415b2c2b 100644 --- a/pkg/addressing/ip.go +++ b/pkg/addressing/ip.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package addressing diff --git a/pkg/addressing/ip_test.go b/pkg/addressing/ip_test.go index 177d8ea4b652f..68d187cd8108e 100644 --- a/pkg/addressing/ip_test.go +++ b/pkg/addressing/ip_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/alibabacloud/api/api.go b/pkg/alibabacloud/api/api.go index b2c18bd4a7268..111d88f1b7d0e 100644 --- a/pkg/alibabacloud/api/api.go +++ b/pkg/alibabacloud/api/api.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/alibabacloud/api/mock/mock.go b/pkg/alibabacloud/api/mock/mock.go index 4e098dc31cd50..a760f65db30fa 100644 --- a/pkg/alibabacloud/api/mock/mock.go +++ b/pkg/alibabacloud/api/mock/mock.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package mock diff --git a/pkg/alibabacloud/eni/instances.go b/pkg/alibabacloud/eni/instances.go index f3990edc79438..35aadcdde4322 100644 --- a/pkg/alibabacloud/eni/instances.go +++ b/pkg/alibabacloud/eni/instances.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package eni diff --git a/pkg/alibabacloud/eni/instances_test.go b/pkg/alibabacloud/eni/instances_test.go index 29b7196b6ac7c..6ff821b6380c2 100644 --- a/pkg/alibabacloud/eni/instances_test.go +++ b/pkg/alibabacloud/eni/instances_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/alibabacloud/eni/limits/limits.go b/pkg/alibabacloud/eni/limits/limits.go index 389b58873df31..bc5cce00c2a18 100644 --- a/pkg/alibabacloud/eni/limits/limits.go +++ b/pkg/alibabacloud/eni/limits/limits.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package limits diff --git a/pkg/alibabacloud/eni/log.go b/pkg/alibabacloud/eni/log.go index d94f71d0d45b3..ecb92cd6a8d70 100644 --- a/pkg/alibabacloud/eni/log.go +++ b/pkg/alibabacloud/eni/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package eni diff --git a/pkg/alibabacloud/eni/node.go b/pkg/alibabacloud/eni/node.go index d5b957e313319..182e8eb51727a 100644 --- a/pkg/alibabacloud/eni/node.go +++ b/pkg/alibabacloud/eni/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package eni diff --git a/pkg/alibabacloud/eni/node_test.go b/pkg/alibabacloud/eni/node_test.go index ddd40b991fa39..517453ac7f7ac 100644 --- a/pkg/alibabacloud/eni/node_test.go +++ b/pkg/alibabacloud/eni/node_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/alibabacloud/eni/types/doc.go b/pkg/alibabacloud/eni/types/doc.go index 8aaf754b628bf..a4d5ab3b9c53c 100644 --- a/pkg/alibabacloud/eni/types/doc.go +++ b/pkg/alibabacloud/eni/types/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // +k8s:deepcopy-gen=package // +deepequal-gen=package diff --git a/pkg/alibabacloud/eni/types/types.go b/pkg/alibabacloud/eni/types/types.go index 0fef6a60eab72..e0b6f9b070a3e 100644 --- a/pkg/alibabacloud/eni/types/types.go +++ b/pkg/alibabacloud/eni/types/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/alibabacloud/eni/types/zz_generated.deepcopy.go b/pkg/alibabacloud/eni/types/zz_generated.deepcopy.go index 6fbcd985893ae..ac246f5d18ecf 100644 --- a/pkg/alibabacloud/eni/types/zz_generated.deepcopy.go +++ b/pkg/alibabacloud/eni/types/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/alibabacloud/eni/types/zz_generated.deepequal.go b/pkg/alibabacloud/eni/types/zz_generated.deepequal.go index 78b38ddbde0ac..14a9f3db4b430 100644 --- a/pkg/alibabacloud/eni/types/zz_generated.deepequal.go +++ b/pkg/alibabacloud/eni/types/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/alibabacloud/metadata/metadata.go b/pkg/alibabacloud/metadata/metadata.go index a99ea6bb4a277..e756620aac969 100644 --- a/pkg/alibabacloud/metadata/metadata.go +++ b/pkg/alibabacloud/metadata/metadata.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package metadata diff --git a/pkg/alibabacloud/types/types.go b/pkg/alibabacloud/types/types.go index 6c1815a35fa9a..0aee2aa7b3c6d 100644 --- a/pkg/alibabacloud/types/types.go +++ b/pkg/alibabacloud/types/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/alibabacloud/types/zz_generated.deepcopy.go b/pkg/alibabacloud/types/zz_generated.deepcopy.go index 1ac52d838d81f..9ee32dc0adaad 100644 --- a/pkg/alibabacloud/types/zz_generated.deepcopy.go +++ b/pkg/alibabacloud/types/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/alibabacloud/utils/utils.go b/pkg/alibabacloud/utils/utils.go index bf05e72bf60cc..10920bce4d174 100644 --- a/pkg/alibabacloud/utils/utils.go +++ b/pkg/alibabacloud/utils/utils.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package utils diff --git a/pkg/alibabacloud/utils/utils_test.go b/pkg/alibabacloud/utils/utils_test.go index d2b5ac3d4762b..fca900662c72f 100644 --- a/pkg/alibabacloud/utils/utils_test.go +++ b/pkg/alibabacloud/utils/utils_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/alignchecker/alignchecker.go b/pkg/alignchecker/alignchecker.go index 813528687e9b0..e758278112a7f 100644 --- a/pkg/alignchecker/alignchecker.go +++ b/pkg/alignchecker/alignchecker.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package alignchecker diff --git a/pkg/alignchecker/alignchecker_test.go b/pkg/alignchecker/alignchecker_test.go index 7f8083889d216..f1c13104e0d63 100644 --- a/pkg/alignchecker/alignchecker_test.go +++ b/pkg/alignchecker/alignchecker_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/alignchecker/doc.go b/pkg/alignchecker/doc.go index d36d13140f332..22c710564d9bd 100644 --- a/pkg/alignchecker/doc.go +++ b/pkg/alignchecker/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium // Package alignchecker provides routines to check Go and C struct alignments package alignchecker diff --git a/pkg/alignchecker/testdata/bpf_foo.c b/pkg/alignchecker/testdata/bpf_foo.c index 040bd86104595..14b5f2e0a8a11 100644 --- a/pkg/alignchecker/testdata/bpf_foo.c +++ b/pkg/alignchecker/testdata/bpf_foo.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (C) 2019 Authors of Cilium */ +/* Copyright Authors of Cilium */ /* To compile: * $ clang -I../../../bpf/include -O2 -g -target bpf -emit-llvm \ diff --git a/pkg/allocator/allocator.go b/pkg/allocator/allocator.go index 3383c02ccf8ec..e11ea6e8f3aa4 100644 --- a/pkg/allocator/allocator.go +++ b/pkg/allocator/allocator.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package allocator diff --git a/pkg/allocator/allocator_test.go b/pkg/allocator/allocator_test.go index 907a419977ea9..ae6dbcbc3e82a 100644 --- a/pkg/allocator/allocator_test.go +++ b/pkg/allocator/allocator_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/allocator/cache.go b/pkg/allocator/cache.go index 49984d3e04441..f4ad54911c64d 100644 --- a/pkg/allocator/cache.go +++ b/pkg/allocator/cache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package allocator diff --git a/pkg/allocator/doc.go b/pkg/allocator/doc.go index 3d25764ac89c2..26c9a9aad1020 100644 --- a/pkg/allocator/doc.go +++ b/pkg/allocator/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium // Package allocator provides a kvstore based ID allocator package allocator diff --git a/pkg/allocator/localkeys.go b/pkg/allocator/localkeys.go index 606eb84568fa8..48820d7366bb3 100644 --- a/pkg/allocator/localkeys.go +++ b/pkg/allocator/localkeys.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package allocator diff --git a/pkg/allocator/localkeys_test.go b/pkg/allocator/localkeys_test.go index a7a7ac51a53e2..b54172ad4e41c 100644 --- a/pkg/allocator/localkeys_test.go +++ b/pkg/allocator/localkeys_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/allocator/logfields.go b/pkg/allocator/logfields.go index 4a5ea66d164ac..59df554058035 100644 --- a/pkg/allocator/logfields.go +++ b/pkg/allocator/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package allocator diff --git a/pkg/annotation/k8s.go b/pkg/annotation/k8s.go index 8afbcdb189212..6ebb4cc3e33d8 100644 --- a/pkg/annotation/k8s.go +++ b/pkg/annotation/k8s.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package annotation diff --git a/pkg/api/apierror.go b/pkg/api/apierror.go index 4d99c2b4fe8f6..83c44eeba1ba9 100644 --- a/pkg/api/apierror.go +++ b/pkg/api/apierror.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/api/apipanic.go b/pkg/api/apipanic.go index 55d15e7b86468..38481b26d236c 100644 --- a/pkg/api/apipanic.go +++ b/pkg/api/apipanic.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/api/const.go b/pkg/api/const.go index 0ac01236596a2..356c6ddb39c6a 100644 --- a/pkg/api/const.go +++ b/pkg/api/const.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/api/doc.go b/pkg/api/doc.go index df8bfd62e0392..83b4b5bfbd0af 100644 --- a/pkg/api/doc.go +++ b/pkg/api/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package api provides the Cilium useful helpers for the external API package api diff --git a/pkg/api/helpers/delay_simulator.go b/pkg/api/helpers/delay_simulator.go index 49f40c0bbea38..50d8e4a8be2e2 100644 --- a/pkg/api/helpers/delay_simulator.go +++ b/pkg/api/helpers/delay_simulator.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/pkg/api/helpers/delay_simulator_test.go b/pkg/api/helpers/delay_simulator_test.go index 06fec94139c78..078658ba8dd9b 100644 --- a/pkg/api/helpers/delay_simulator_test.go +++ b/pkg/api/helpers/delay_simulator_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/api/helpers/rate_limit.go b/pkg/api/helpers/rate_limit.go index e7849ec0df34a..54cbf66e43a7d 100644 --- a/pkg/api/helpers/rate_limit.go +++ b/pkg/api/helpers/rate_limit.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/pkg/api/helpers/rate_limit_test.go b/pkg/api/helpers/rate_limit_test.go index 224b9c6a19a31..1481828a46d53 100644 --- a/pkg/api/helpers/rate_limit_test.go +++ b/pkg/api/helpers/rate_limit_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/api/metrics/metrics.go b/pkg/api/metrics/metrics.go index 2abdb7032afd4..38a7bc5d138f1 100644 --- a/pkg/api/metrics/metrics.go +++ b/pkg/api/metrics/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package metrics diff --git a/pkg/api/metrics/mock/mock.go b/pkg/api/metrics/mock/mock.go index 363b39fac96eb..6609711695da9 100644 --- a/pkg/api/metrics/mock/mock.go +++ b/pkg/api/metrics/mock/mock.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package mock diff --git a/pkg/api/metrics/mock/mock_test.go b/pkg/api/metrics/mock/mock_test.go index eb2637da456dd..bca891152e9a5 100644 --- a/pkg/api/metrics/mock/mock_test.go +++ b/pkg/api/metrics/mock/mock_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/api/socket.go b/pkg/api/socket.go index 6302c44b138a5..05cec97fb9263 100644 --- a/pkg/api/socket.go +++ b/pkg/api/socket.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/aws/ec2/ec2.go b/pkg/aws/ec2/ec2.go index b7931e9b92824..e00ac38c61f7d 100644 --- a/pkg/aws/ec2/ec2.go +++ b/pkg/aws/ec2/ec2.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package ec2 diff --git a/pkg/aws/ec2/ec2_test.go b/pkg/aws/ec2/ec2_test.go index a03f698642f65..78fbfbbc0bf4a 100644 --- a/pkg/aws/ec2/ec2_test.go +++ b/pkg/aws/ec2/ec2_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/aws/ec2/mock/mock.go b/pkg/aws/ec2/mock/mock.go index e0c9eaa8f68b5..2cabd0f479310 100644 --- a/pkg/aws/ec2/mock/mock.go +++ b/pkg/aws/ec2/mock/mock.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package mock diff --git a/pkg/aws/ec2/mock/mock_test.go b/pkg/aws/ec2/mock/mock_test.go index c90ca9c88108f..8792ce51c4d32 100644 --- a/pkg/aws/ec2/mock/mock_test.go +++ b/pkg/aws/ec2/mock/mock_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/aws/endpoints/resolver.go b/pkg/aws/endpoints/resolver.go index 370c3872610e6..a5c4aff30a3b2 100644 --- a/pkg/aws/endpoints/resolver.go +++ b/pkg/aws/endpoints/resolver.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package endpoints diff --git a/pkg/aws/eni/doc.go b/pkg/aws/eni/doc.go index 8c57882605977..657dbc55fa1a2 100644 --- a/pkg/aws/eni/doc.go +++ b/pkg/aws/eni/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package eni implements AWS ENI allocation logic package eni diff --git a/pkg/aws/eni/eni_test.go b/pkg/aws/eni/eni_test.go index 0663fe802b2ac..52d5102344be7 100644 --- a/pkg/aws/eni/eni_test.go +++ b/pkg/aws/eni/eni_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/aws/eni/instances.go b/pkg/aws/eni/instances.go index d750976189775..2554e15dc4464 100644 --- a/pkg/aws/eni/instances.go +++ b/pkg/aws/eni/instances.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Copyright 2017 Lyft, Inc. package eni diff --git a/pkg/aws/eni/instances_test.go b/pkg/aws/eni/instances_test.go index 250cf480fad78..e5f71046a5109 100644 --- a/pkg/aws/eni/instances_test.go +++ b/pkg/aws/eni/instances_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/aws/eni/limits/limits.go b/pkg/aws/eni/limits/limits.go index f104ad88f560c..265d28a74cd82 100644 --- a/pkg/aws/eni/limits/limits.go +++ b/pkg/aws/eni/limits/limits.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium // Copyright 2017 Lyft, Inc. package limits diff --git a/pkg/aws/eni/limits/limits_test.go b/pkg/aws/eni/limits/limits_test.go index 0ceb223854224..16f74b169e639 100644 --- a/pkg/aws/eni/limits/limits_test.go +++ b/pkg/aws/eni/limits/limits_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/aws/eni/log.go b/pkg/aws/eni/log.go index 62cd8db17cb43..8ed113ef82fd1 100644 --- a/pkg/aws/eni/log.go +++ b/pkg/aws/eni/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package eni diff --git a/pkg/aws/eni/migration.go b/pkg/aws/eni/migration.go index 9606788e7250f..3eee374439ca5 100644 --- a/pkg/aws/eni/migration.go +++ b/pkg/aws/eni/migration.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package eni diff --git a/pkg/aws/eni/node.go b/pkg/aws/eni/node.go index 5e920f6ced384..ceda62a9add6c 100644 --- a/pkg/aws/eni/node.go +++ b/pkg/aws/eni/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium // Copyright 2017 Lyft, Inc. package eni diff --git a/pkg/aws/eni/node_manager_test.go b/pkg/aws/eni/node_manager_test.go index 52ab7f3de6b4d..47b02a4b7ea10 100644 --- a/pkg/aws/eni/node_manager_test.go +++ b/pkg/aws/eni/node_manager_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/aws/eni/node_test.go b/pkg/aws/eni/node_test.go index 51f01c43ca93f..3ce1f9b462d92 100644 --- a/pkg/aws/eni/node_test.go +++ b/pkg/aws/eni/node_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/aws/eni/types/doc.go b/pkg/aws/eni/types/doc.go index 644c88264ed80..0b0cb83f7ffcd 100644 --- a/pkg/aws/eni/types/doc.go +++ b/pkg/aws/eni/types/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // +k8s:deepcopy-gen=package // +deepequal-gen=package diff --git a/pkg/aws/eni/types/types.go b/pkg/aws/eni/types/types.go index 533652289bc84..de69d04c648c5 100644 --- a/pkg/aws/eni/types/types.go +++ b/pkg/aws/eni/types/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/aws/eni/types/zz_generated.deepcopy.go b/pkg/aws/eni/types/zz_generated.deepcopy.go index ebc8c99c2cb19..6179bee995d7a 100644 --- a/pkg/aws/eni/types/zz_generated.deepcopy.go +++ b/pkg/aws/eni/types/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/aws/eni/types/zz_generated.deepequal.go b/pkg/aws/eni/types/zz_generated.deepequal.go index fdccc8531ddd2..02d7caa3b1b6d 100644 --- a/pkg/aws/eni/types/zz_generated.deepequal.go +++ b/pkg/aws/eni/types/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/aws/metadata/metadata.go b/pkg/aws/metadata/metadata.go index e109b62478e97..157adba932baf 100644 --- a/pkg/aws/metadata/metadata.go +++ b/pkg/aws/metadata/metadata.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package metadata diff --git a/pkg/aws/types/types.go b/pkg/aws/types/types.go index 3856e0e305df5..b2db03b90da85 100644 --- a/pkg/aws/types/types.go +++ b/pkg/aws/types/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/aws/types/zz_generated.deepcopy.go b/pkg/aws/types/zz_generated.deepcopy.go index 1ac52d838d81f..9ee32dc0adaad 100644 --- a/pkg/aws/types/zz_generated.deepcopy.go +++ b/pkg/aws/types/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/azure/api/api.go b/pkg/azure/api/api.go index afaa0b8f8b567..71ee8aa568bf2 100644 --- a/pkg/azure/api/api.go +++ b/pkg/azure/api/api.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/azure/api/api_interaction_test.go b/pkg/azure/api/api_interaction_test.go index 37935919e770f..9376cf7c14c3d 100644 --- a/pkg/azure/api/api_interaction_test.go +++ b/pkg/azure/api/api_interaction_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build azure // +build azure diff --git a/pkg/azure/api/metadata.go b/pkg/azure/api/metadata.go index c20f9b228f16c..5f196adce5efd 100644 --- a/pkg/azure/api/metadata.go +++ b/pkg/azure/api/metadata.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/azure/api/mock/mock.go b/pkg/azure/api/mock/mock.go index cef2ec6738fa0..de21d1c1355db 100644 --- a/pkg/azure/api/mock/mock.go +++ b/pkg/azure/api/mock/mock.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package mock diff --git a/pkg/azure/api/mock/mock_test.go b/pkg/azure/api/mock/mock_test.go index de62e2f006609..4759809b8ce00 100644 --- a/pkg/azure/api/mock/mock_test.go +++ b/pkg/azure/api/mock/mock_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/azure/ipam/doc.go b/pkg/azure/ipam/doc.go index af678c96ec5b0..c5e9d60625539 100644 --- a/pkg/azure/ipam/doc.go +++ b/pkg/azure/ipam/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package ipam implements Azure IPAM logic package ipam diff --git a/pkg/azure/ipam/instances.go b/pkg/azure/ipam/instances.go index 496da8de2f3fb..1d4da2459a51f 100644 --- a/pkg/azure/ipam/instances.go +++ b/pkg/azure/ipam/instances.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package ipam diff --git a/pkg/azure/ipam/instances_test.go b/pkg/azure/ipam/instances_test.go index 5731e81fac6d3..164104d49f8c3 100644 --- a/pkg/azure/ipam/instances_test.go +++ b/pkg/azure/ipam/instances_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/azure/ipam/ipam_test.go b/pkg/azure/ipam/ipam_test.go index 8850888614a08..0aa042ea1171b 100644 --- a/pkg/azure/ipam/ipam_test.go +++ b/pkg/azure/ipam/ipam_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/azure/ipam/log.go b/pkg/azure/ipam/log.go index 154436084ed6d..ccda2db354864 100644 --- a/pkg/azure/ipam/log.go +++ b/pkg/azure/ipam/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package ipam diff --git a/pkg/azure/ipam/node.go b/pkg/azure/ipam/node.go index 0e05b39597951..843bd88210628 100644 --- a/pkg/azure/ipam/node.go +++ b/pkg/azure/ipam/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package ipam diff --git a/pkg/azure/ipam/node_test.go b/pkg/azure/ipam/node_test.go index 6422481fe9bb6..58ae4ef211d98 100644 --- a/pkg/azure/ipam/node_test.go +++ b/pkg/azure/ipam/node_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/azure/types/doc.go b/pkg/azure/types/doc.go index 6b610498e54fb..6d56b146b294a 100644 --- a/pkg/azure/types/doc.go +++ b/pkg/azure/types/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // +deepequal-gen=package diff --git a/pkg/azure/types/types.go b/pkg/azure/types/types.go index e0bb75e956bba..957db3eb23af7 100644 --- a/pkg/azure/types/types.go +++ b/pkg/azure/types/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/azure/types/types_test.go b/pkg/azure/types/types_test.go index 43c75b1f89590..36a256a1c6cb9 100644 --- a/pkg/azure/types/types_test.go +++ b/pkg/azure/types/types_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/azure/types/zz_generated.deepcopy.go b/pkg/azure/types/zz_generated.deepcopy.go index 4f6fe62006b7e..ad51b4527a2ee 100644 --- a/pkg/azure/types/zz_generated.deepcopy.go +++ b/pkg/azure/types/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/azure/types/zz_generated.deepequal.go b/pkg/azure/types/zz_generated.deepequal.go index 7695f7ce32fa2..018e91a9e812a 100644 --- a/pkg/azure/types/zz_generated.deepequal.go +++ b/pkg/azure/types/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/backoff/backoff.go b/pkg/backoff/backoff.go index b8654dfd2fd7d..365c1a0b4b735 100644 --- a/pkg/backoff/backoff.go +++ b/pkg/backoff/backoff.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package backoff diff --git a/pkg/backoff/backoff_test.go b/pkg/backoff/backoff_test.go index bb2ebe025172f..3da344e5cb428 100644 --- a/pkg/backoff/backoff_test.go +++ b/pkg/backoff/backoff_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/bandwidth/bandwidth.go b/pkg/bandwidth/bandwidth.go index 0d051a3ab1c77..0bbe4b9a6dccc 100644 --- a/pkg/bandwidth/bandwidth.go +++ b/pkg/bandwidth/bandwidth.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package bandwidth diff --git a/pkg/bandwidth/doc.go b/pkg/bandwidth/doc.go index bcdce90f25d75..6ad693fa9c813 100644 --- a/pkg/bandwidth/doc.go +++ b/pkg/bandwidth/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package bandwidth provides efficient EDT-based rate-limiting. package bandwidth diff --git a/pkg/bgp/config/config.go b/pkg/bgp/config/config.go index 00fa69d0fabf6..292e28881ac93 100644 --- a/pkg/bgp/config/config.go +++ b/pkg/bgp/config/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // Package config provides BGP configuration logic. package config diff --git a/pkg/bgp/config/config_test.go b/pkg/bgp/config/config_test.go index ed69bf69868de..897e2557d48bd 100644 --- a/pkg/bgp/config/config_test.go +++ b/pkg/bgp/config/config_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/bgp/fence/fence.go b/pkg/bgp/fence/fence.go index f1243d8a37377..18d5efadaff42 100644 --- a/pkg/bgp/fence/fence.go +++ b/pkg/bgp/fence/fence.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package fence diff --git a/pkg/bgp/fence/fence_test.go b/pkg/bgp/fence/fence_test.go index 3104d902f9ea2..ce4adeb8a809e 100644 --- a/pkg/bgp/fence/fence_test.go +++ b/pkg/bgp/fence/fence_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/bgp/k8s/client.go b/pkg/bgp/k8s/client.go index d2cbef093a598..72d9de6ffdb9f 100644 --- a/pkg/bgp/k8s/client.go +++ b/pkg/bgp/k8s/client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // Package k8s provides a Kubernetes client to be used with MetalLB // integration. diff --git a/pkg/bgp/log/log.go b/pkg/bgp/log/log.go index b2e9a25eeee7c..212c66511c4b8 100644 --- a/pkg/bgp/log/log.go +++ b/pkg/bgp/log/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // Package log provides a central logging package that wraps MetalLB's logging. package log diff --git a/pkg/bgp/manager/log.go b/pkg/bgp/manager/log.go index ab2afc7ddcf55..72f82cf68d0ab 100644 --- a/pkg/bgp/manager/log.go +++ b/pkg/bgp/manager/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package manager diff --git a/pkg/bgp/manager/manager.go b/pkg/bgp/manager/manager.go index 04e2c03742698..bc306ad4dd9ec 100644 --- a/pkg/bgp/manager/manager.go +++ b/pkg/bgp/manager/manager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // Package manager provides functionality relating to the integration between // Cilium and MetalLB, namely providing abstractions that help manage MetalLB diff --git a/pkg/bgp/manager/manager_test.go b/pkg/bgp/manager/manager_test.go index ccc5e2cf798f3..9d29b20cb42a0 100644 --- a/pkg/bgp/manager/manager_test.go +++ b/pkg/bgp/manager/manager_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/bgp/manager/metallb.go b/pkg/bgp/manager/metallb.go index fd5dd817e9e16..c06616d9f6d14 100644 --- a/pkg/bgp/manager/metallb.go +++ b/pkg/bgp/manager/metallb.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // Package manager abstracts the BGP speaker controller from MetalLB. This // package provides BGP announcements based on K8s object event handling. diff --git a/pkg/bgp/mock/gen.go b/pkg/bgp/mock/gen.go index 50f30deed5565..f0484d05e5666 100644 --- a/pkg/bgp/mock/gen.go +++ b/pkg/bgp/mock/gen.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package mock diff --git a/pkg/bgp/mock/mock.go b/pkg/bgp/mock/mock.go index 5203efca461e8..c322e3781eaba 100644 --- a/pkg/bgp/mock/mock.go +++ b/pkg/bgp/mock/mock.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package mock diff --git a/pkg/bgp/speaker/events.go b/pkg/bgp/speaker/events.go index 8ce33f91072b2..fe77590eb5502 100644 --- a/pkg/bgp/speaker/events.go +++ b/pkg/bgp/speaker/events.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium // Copyright 2017 Google Inc. package speaker diff --git a/pkg/bgp/speaker/log.go b/pkg/bgp/speaker/log.go index a2515610c1264..62cfa394b357b 100644 --- a/pkg/bgp/speaker/log.go +++ b/pkg/bgp/speaker/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package speaker diff --git a/pkg/bgp/speaker/metallb.go b/pkg/bgp/speaker/metallb.go index 6f01cd5f2853b..6811df74fb460 100644 --- a/pkg/bgp/speaker/metallb.go +++ b/pkg/bgp/speaker/metallb.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package speaker diff --git a/pkg/bgp/speaker/pod_cidr.go b/pkg/bgp/speaker/pod_cidr.go index 7cddec7137399..7d57cd957809a 100644 --- a/pkg/bgp/speaker/pod_cidr.go +++ b/pkg/bgp/speaker/pod_cidr.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package speaker diff --git a/pkg/bgp/speaker/speaker.go b/pkg/bgp/speaker/speaker.go index d68ae1e43c854..6a2d9e5472f7f 100644 --- a/pkg/bgp/speaker/speaker.go +++ b/pkg/bgp/speaker/speaker.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // Package speaker abstracts the BGP speaker controller from MetalLB. This // package provides BGP announcements based on K8s object event handling. diff --git a/pkg/bgp/speaker/speaker_test.go b/pkg/bgp/speaker/speaker_test.go index d2e7b289e7b0f..5fc7b6a0c53fb 100644 --- a/pkg/bgp/speaker/speaker_test.go +++ b/pkg/bgp/speaker/speaker_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/bpf/binary/binary.go b/pkg/bpf/binary/binary.go index fd19f1ed132bf..4fdfd47a72a4b 100644 --- a/pkg/bpf/binary/binary.go +++ b/pkg/bpf/binary/binary.go @@ -1,4 +1,4 @@ -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // SPDX-License-Identifier: Apache-2.0 // // Copyright (c) 2009 The Go Authors. All rights reserved. diff --git a/pkg/bpf/binary/doc.go b/pkg/bpf/binary/doc.go index 0b67681c7192f..8bc9983442711 100644 --- a/pkg/bpf/binary/doc.go +++ b/pkg/bpf/binary/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package binary is a fork of the upstream golang library. The modifications // made from the upstream source code are only related with the binary.read diff --git a/pkg/bpf/bpf.go b/pkg/bpf/bpf.go index 4055b694031b0..aaefc4bf859c3 100644 --- a/pkg/bpf/bpf.go +++ b/pkg/bpf/bpf.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package bpf diff --git a/pkg/bpf/bpf_linux.go b/pkg/bpf/bpf_linux.go index 2b790c1eb3e19..827d87a88bd4b 100644 --- a/pkg/bpf/bpf_linux.go +++ b/pkg/bpf/bpf_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build linux // +build linux diff --git a/pkg/bpf/bpf_test.go b/pkg/bpf/bpf_test.go index 4c436e3694b8c..3d181640ea987 100644 --- a/pkg/bpf/bpf_test.go +++ b/pkg/bpf/bpf_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/bpf/bpffs_linux.go b/pkg/bpf/bpffs_linux.go index 1f4d83415214b..fd63938bf2633 100644 --- a/pkg/bpf/bpffs_linux.go +++ b/pkg/bpf/bpffs_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build linux // +build linux diff --git a/pkg/bpf/doc.go b/pkg/bpf/doc.go index c0f36a8a03969..74ab2e5698390 100644 --- a/pkg/bpf/doc.go +++ b/pkg/bpf/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package bpf provides functions that allow golang programs to interact with // bpf maps. diff --git a/pkg/bpf/endpoint.go b/pkg/bpf/endpoint.go index 51a616b3d5e4d..1cc61dae3c58e 100644 --- a/pkg/bpf/endpoint.go +++ b/pkg/bpf/endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package bpf diff --git a/pkg/bpf/endpoint_test.go b/pkg/bpf/endpoint_test.go index 06ee492e1849a..32d090c7dc5db 100644 --- a/pkg/bpf/endpoint_test.go +++ b/pkg/bpf/endpoint_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/bpf/map.go b/pkg/bpf/map.go index f11c0456f01bf..6c9398b05df0a 100644 --- a/pkg/bpf/map.go +++ b/pkg/bpf/map.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package bpf diff --git a/pkg/bpf/map_linux.go b/pkg/bpf/map_linux.go index 244e9b407f0a3..b85a45492f316 100644 --- a/pkg/bpf/map_linux.go +++ b/pkg/bpf/map_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build linux // +build linux diff --git a/pkg/bpf/map_linux_test.go b/pkg/bpf/map_linux_test.go index d6ce1cf9cec5e..08982775b29ca 100644 --- a/pkg/bpf/map_linux_test.go +++ b/pkg/bpf/map_linux_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/bpf/map_register_linux.go b/pkg/bpf/map_register_linux.go index 6222a8a22cac1..1095f05122d46 100644 --- a/pkg/bpf/map_register_linux.go +++ b/pkg/bpf/map_register_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build linux // +build linux diff --git a/pkg/bpf/map_test.go b/pkg/bpf/map_test.go index 77ff8524f34a5..8238ab1e283f0 100644 --- a/pkg/bpf/map_test.go +++ b/pkg/bpf/map_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/bpf/metrics.go b/pkg/bpf/metrics.go index 25e71f99c9f7d..8c7514b8847e6 100644 --- a/pkg/bpf/metrics.go +++ b/pkg/bpf/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package bpf diff --git a/pkg/bpf/prog.go b/pkg/bpf/prog.go index 41a31471e2753..c6bc8080e87f4 100644 --- a/pkg/bpf/prog.go +++ b/pkg/bpf/prog.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package bpf diff --git a/pkg/bpf/stats_linux.go b/pkg/bpf/stats_linux.go index 4539b58a74114..50ab6d0143a1b 100644 --- a/pkg/bpf/stats_linux.go +++ b/pkg/bpf/stats_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build linux // +build linux diff --git a/pkg/bpf/zz_generated.deepcopy.go b/pkg/bpf/zz_generated.deepcopy.go index d8123814ba9f0..56e42902689b0 100644 --- a/pkg/bpf/zz_generated.deepcopy.go +++ b/pkg/bpf/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/byteorder/byteorder.go b/pkg/byteorder/byteorder.go index 2e86c6f64d77e..ffb210dc0c327 100644 --- a/pkg/byteorder/byteorder.go +++ b/pkg/byteorder/byteorder.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package byteorder diff --git a/pkg/byteorder/byteorder_bigendian.go b/pkg/byteorder/byteorder_bigendian.go index b8afb9b046e62..7328535217515 100644 --- a/pkg/byteorder/byteorder_bigendian.go +++ b/pkg/byteorder/byteorder_bigendian.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build armbe || arm64be || mips || mips64 || ppc64 // +build armbe arm64be mips mips64 ppc64 diff --git a/pkg/byteorder/byteorder_littleendian.go b/pkg/byteorder/byteorder_littleendian.go index a13acba235858..4ffa5ccfd646c 100644 --- a/pkg/byteorder/byteorder_littleendian.go +++ b/pkg/byteorder/byteorder_littleendian.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build 386 || amd64 || arm || arm64 || mips64le || ppc64le || riscv64 || wasm // +build 386 amd64 arm arm64 mips64le ppc64le riscv64 wasm diff --git a/pkg/byteorder/byteorder_test.go b/pkg/byteorder/byteorder_test.go index 12e010d74ce4c..2dfb3f684c9bb 100644 --- a/pkg/byteorder/byteorder_test.go +++ b/pkg/byteorder/byteorder_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/byteorder/doc.go b/pkg/byteorder/doc.go index 190b06c6a0823..1c2497c75891e 100644 --- a/pkg/byteorder/doc.go +++ b/pkg/byteorder/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium // Package byteorder provides functions to convert from and to network byte order. package byteorder diff --git a/pkg/cgroups/cgroups.go b/pkg/cgroups/cgroups.go index bdd7f4bdb73a7..f3de5a78791fd 100644 --- a/pkg/cgroups/cgroups.go +++ b/pkg/cgroups/cgroups.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cgroups diff --git a/pkg/cgroups/cgroups_linux.go b/pkg/cgroups/cgroups_linux.go index 362c21aae06a7..7805bc5461792 100644 --- a/pkg/cgroups/cgroups_linux.go +++ b/pkg/cgroups/cgroups_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cgroups diff --git a/pkg/cgroups/cgroups_unspecified.go b/pkg/cgroups/cgroups_unspecified.go index 4cac82ae9341c..c48e12521a020 100644 --- a/pkg/cgroups/cgroups_unspecified.go +++ b/pkg/cgroups/cgroups_unspecified.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !linux // +build !linux diff --git a/pkg/checker/checker.go b/pkg/checker/checker.go index a26d5a67012ff..84d699257c80d 100644 --- a/pkg/checker/checker.go +++ b/pkg/checker/checker.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package checker diff --git a/pkg/checker/checker_test.go b/pkg/checker/checker_test.go index c29fbec66740f..2a99532e357cf 100644 --- a/pkg/checker/checker_test.go +++ b/pkg/checker/checker_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/cidr/cidr.go b/pkg/cidr/cidr.go index 606b1fb71b52d..a074f6c6f24ee 100644 --- a/pkg/cidr/cidr.go +++ b/pkg/cidr/cidr.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package cidr diff --git a/pkg/cidr/cidr_test.go b/pkg/cidr/cidr_test.go index 50b1af019c15c..3377059463786 100644 --- a/pkg/cidr/cidr_test.go +++ b/pkg/cidr/cidr_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/cidr/diff.go b/pkg/cidr/diff.go index fa17202dd6a7d..020ec6d2faf26 100644 --- a/pkg/cidr/diff.go +++ b/pkg/cidr/diff.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package cidr diff --git a/pkg/cidr/diff_test.go b/pkg/cidr/diff_test.go index ef18d55c58ba3..93a52e8fdb2bb 100644 --- a/pkg/cidr/diff_test.go +++ b/pkg/cidr/diff_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/cleanup/cleanup.go b/pkg/cleanup/cleanup.go index 52cca1cbe3417..b72e6791177a4 100644 --- a/pkg/cleanup/cleanup.go +++ b/pkg/cleanup/cleanup.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package cleanup diff --git a/pkg/cleanup/cleanup_test.go b/pkg/cleanup/cleanup_test.go index 078f819cbd8a8..4dbe8e26f5c7c 100644 --- a/pkg/cleanup/cleanup_test.go +++ b/pkg/cleanup/cleanup_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/client/client.go b/pkg/client/client.go index c5ede97fc50a0..1433959f5d429 100644 --- a/pkg/client/client.go +++ b/pkg/client/client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package client diff --git a/pkg/client/client_test.go b/pkg/client/client_test.go index 91b704a9be3fe..a4df19a30d2ff 100644 --- a/pkg/client/client_test.go +++ b/pkg/client/client_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/client/config.go b/pkg/client/config.go index e3fc8ee5ffd8e..3775abe2ee0f8 100644 --- a/pkg/client/config.go +++ b/pkg/client/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package client diff --git a/pkg/client/endpoint.go b/pkg/client/endpoint.go index 27b883c6ad9fa..36561cf3fa2ff 100644 --- a/pkg/client/endpoint.go +++ b/pkg/client/endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package client diff --git a/pkg/client/identity.go b/pkg/client/identity.go index f4d1357d448a7..483509ea716e6 100644 --- a/pkg/client/identity.go +++ b/pkg/client/identity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package client diff --git a/pkg/client/ipam.go b/pkg/client/ipam.go index dcc265fb07c17..1de0d078979a3 100644 --- a/pkg/client/ipam.go +++ b/pkg/client/ipam.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package client diff --git a/pkg/client/lrp.go b/pkg/client/lrp.go index 5b511dfae22b0..c1108b49730dc 100644 --- a/pkg/client/lrp.go +++ b/pkg/client/lrp.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package client diff --git a/pkg/client/policy.go b/pkg/client/policy.go index 6278fa522c370..b24ecc64aae22 100644 --- a/pkg/client/policy.go +++ b/pkg/client/policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package client diff --git a/pkg/client/prefilter.go b/pkg/client/prefilter.go index 78458b119544f..79de98e1b14c1 100644 --- a/pkg/client/prefilter.go +++ b/pkg/client/prefilter.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package client diff --git a/pkg/client/recorder.go b/pkg/client/recorder.go index b75989ad32a90..4da24a72b9cb4 100644 --- a/pkg/client/recorder.go +++ b/pkg/client/recorder.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package client diff --git a/pkg/client/service.go b/pkg/client/service.go index 63f546c9bef48..fa53468c7f0ce 100644 --- a/pkg/client/service.go +++ b/pkg/client/service.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package client diff --git a/pkg/clustermesh/clustermesh.go b/pkg/clustermesh/clustermesh.go index 153b819651d08..13b52b383666b 100644 --- a/pkg/clustermesh/clustermesh.go +++ b/pkg/clustermesh/clustermesh.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package clustermesh diff --git a/pkg/clustermesh/clustermesh_test.go b/pkg/clustermesh/clustermesh_test.go index db4ac41a53024..0baaad109d99e 100644 --- a/pkg/clustermesh/clustermesh_test.go +++ b/pkg/clustermesh/clustermesh_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/clustermesh/config.go b/pkg/clustermesh/config.go index 50bd3310828af..1086f6a4a7b80 100644 --- a/pkg/clustermesh/config.go +++ b/pkg/clustermesh/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package clustermesh diff --git a/pkg/clustermesh/config_test.go b/pkg/clustermesh/config_test.go index 59248eead2680..60964c3033645 100644 --- a/pkg/clustermesh/config_test.go +++ b/pkg/clustermesh/config_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/clustermesh/logfields.go b/pkg/clustermesh/logfields.go index a7afd39a3dc73..4f0b3831f0f2d 100644 --- a/pkg/clustermesh/logfields.go +++ b/pkg/clustermesh/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package clustermesh diff --git a/pkg/clustermesh/remote_cluster.go b/pkg/clustermesh/remote_cluster.go index 86b69b47cc7da..6380e99c55f65 100644 --- a/pkg/clustermesh/remote_cluster.go +++ b/pkg/clustermesh/remote_cluster.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package clustermesh diff --git a/pkg/clustermesh/services.go b/pkg/clustermesh/services.go index ca8d49d5dcfac..eb4bc764290fa 100644 --- a/pkg/clustermesh/services.go +++ b/pkg/clustermesh/services.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package clustermesh diff --git a/pkg/clustermesh/services_test.go b/pkg/clustermesh/services_test.go index 77867dcb6d350..96297ed597161 100644 --- a/pkg/clustermesh/services_test.go +++ b/pkg/clustermesh/services_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/clustermesh/types/types.go b/pkg/clustermesh/types/types.go index 0ef1799d0df10..2f4f9c6db7373 100644 --- a/pkg/clustermesh/types/types.go +++ b/pkg/clustermesh/types/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/command/exec/doc.go b/pkg/command/exec/doc.go index 88353a46880c6..959e903730343 100644 --- a/pkg/command/exec/doc.go +++ b/pkg/command/exec/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package exec provides useful wrappers around the standard "exec" library. package exec diff --git a/pkg/command/exec/exec.go b/pkg/command/exec/exec.go index 228b49cee53e6..2b7415174f94f 100644 --- a/pkg/command/exec/exec.go +++ b/pkg/command/exec/exec.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package exec diff --git a/pkg/command/exec/exec_test.go b/pkg/command/exec/exec_test.go index 467342835ea88..d33e2f9b41330 100644 --- a/pkg/command/exec/exec_test.go +++ b/pkg/command/exec/exec_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/command/map_string.go b/pkg/command/map_string.go index 5ea284c82e18e..9d239515fa1a9 100644 --- a/pkg/command/map_string.go +++ b/pkg/command/map_string.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2022 Authors of Cilium +// Copyright Authors of Cilium package command diff --git a/pkg/command/map_string_test.go b/pkg/command/map_string_test.go index 8ade36dfd9d35..6a89f5793c4e1 100644 --- a/pkg/command/map_string_test.go +++ b/pkg/command/map_string_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2022 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/command/output.go b/pkg/command/output.go index 3a98b62d74ea9..a9ef7a19b7673 100644 --- a/pkg/command/output.go +++ b/pkg/command/output.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package command diff --git a/pkg/command/output_test.go b/pkg/command/output_test.go index c5562a69a3b40..aa0d85a221475 100644 --- a/pkg/command/output_test.go +++ b/pkg/command/output_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/common/const.go b/pkg/common/const.go index c7c1ee092018a..365d9ae288a94 100644 --- a/pkg/common/const.go +++ b/pkg/common/const.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package common diff --git a/pkg/common/utils.go b/pkg/common/utils.go index 79a83f7c010be..43dfd1ddfbc44 100644 --- a/pkg/common/utils.go +++ b/pkg/common/utils.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package common diff --git a/pkg/common/utils_test.go b/pkg/common/utils_test.go index f09b4b176fbe8..e4d579356042a 100644 --- a/pkg/common/utils_test.go +++ b/pkg/common/utils_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/comparator/comparator.go b/pkg/comparator/comparator.go index 19e25f3e4e744..c9ff7746d2252 100644 --- a/pkg/comparator/comparator.go +++ b/pkg/comparator/comparator.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package comparator diff --git a/pkg/comparator/comparator_test.go b/pkg/comparator/comparator_test.go index 92c766aa07f50..88e2b52fd3457 100644 --- a/pkg/comparator/comparator_test.go +++ b/pkg/comparator/comparator_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/completion/completion.go b/pkg/completion/completion.go index 73ae7e21f4e47..f622cbb2c432c 100644 --- a/pkg/completion/completion.go +++ b/pkg/completion/completion.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package completion diff --git a/pkg/completion/completion_test.go b/pkg/completion/completion_test.go index 5cc067ad8cd85..ffa38f15a4769 100644 --- a/pkg/completion/completion_test.go +++ b/pkg/completion/completion_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/completion/doc.go b/pkg/completion/doc.go index c7b219076f37c..850b8f8038b47 100644 --- a/pkg/completion/doc.go +++ b/pkg/completion/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package completion implements a variant of sync.WaitGroup that is associated // with a context.Context. diff --git a/pkg/components/components.go b/pkg/components/components.go index 94357abbf976c..38f483a07e273 100644 --- a/pkg/components/components.go +++ b/pkg/components/components.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package components diff --git a/pkg/contexthelpers/context.go b/pkg/contexthelpers/context.go index 1c570a4ab3586..64ebd0c449fb9 100644 --- a/pkg/contexthelpers/context.go +++ b/pkg/contexthelpers/context.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package contexthelpers diff --git a/pkg/contexthelpers/context_test.go b/pkg/contexthelpers/context_test.go index 895e5849139dd..26866af594a78 100644 --- a/pkg/contexthelpers/context_test.go +++ b/pkg/contexthelpers/context_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/controller/controller.go b/pkg/controller/controller.go index cd4a2ece1931a..122fb9b87d4d8 100644 --- a/pkg/controller/controller.go +++ b/pkg/controller/controller.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package controller diff --git a/pkg/controller/controller_test.go b/pkg/controller/controller_test.go index e21eb6f73b9ba..e8d9f432a1387 100644 --- a/pkg/controller/controller_test.go +++ b/pkg/controller/controller_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/controller/doc.go b/pkg/controller/doc.go index e72c9ad97adfa..0bab327fd2cee 100644 --- a/pkg/controller/doc.go +++ b/pkg/controller/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package controller provide a simple pattern for async operations that // require retries and/or regular intervals. diff --git a/pkg/controller/logfields.go b/pkg/controller/logfields.go index 5150c360f7749..ff144692518de 100644 --- a/pkg/controller/logfields.go +++ b/pkg/controller/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package controller diff --git a/pkg/controller/manager.go b/pkg/controller/manager.go index 591491843a180..c27bb1d30e51f 100644 --- a/pkg/controller/manager.go +++ b/pkg/controller/manager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package controller diff --git a/pkg/counter/doc.go b/pkg/counter/doc.go index 2e332843d0284..f1c5ff1533eca 100644 --- a/pkg/counter/doc.go +++ b/pkg/counter/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package counter provides generic reference counter objects package counter diff --git a/pkg/counter/integer.go b/pkg/counter/integer.go index 89d2c7ce47946..636204640d451 100644 --- a/pkg/counter/integer.go +++ b/pkg/counter/integer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package counter diff --git a/pkg/counter/prefixes.go b/pkg/counter/prefixes.go index e1cc25d21c50a..68e0f5e61f1e8 100644 --- a/pkg/counter/prefixes.go +++ b/pkg/counter/prefixes.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package counter diff --git a/pkg/counter/prefixes_test.go b/pkg/counter/prefixes_test.go index 3adcbbcc57896..c22623929d261 100644 --- a/pkg/counter/prefixes_test.go +++ b/pkg/counter/prefixes_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/counter/string.go b/pkg/counter/string.go index 46ec21ae079fd..98cc9a2de7712 100644 --- a/pkg/counter/string.go +++ b/pkg/counter/string.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package counter diff --git a/pkg/crypto/certificatemanager/certificate_manager.go b/pkg/crypto/certificatemanager/certificate_manager.go index 61b197a6a6887..6003109ecda73 100644 --- a/pkg/crypto/certificatemanager/certificate_manager.go +++ b/pkg/crypto/certificatemanager/certificate_manager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package certificatemanager diff --git a/pkg/crypto/certloader/certloader_test.go b/pkg/crypto/certloader/certloader_test.go index dfb9417fb41e9..c5d48b9d7382c 100644 --- a/pkg/crypto/certloader/certloader_test.go +++ b/pkg/crypto/certloader/certloader_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/crypto/certloader/client.go b/pkg/crypto/certloader/client.go index fd67964e30a98..57124add7548a 100644 --- a/pkg/crypto/certloader/client.go +++ b/pkg/crypto/certloader/client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package certloader diff --git a/pkg/crypto/certloader/client_test.go b/pkg/crypto/certloader/client_test.go index c45cdf203603b..fb17f72bc47da 100644 --- a/pkg/crypto/certloader/client_test.go +++ b/pkg/crypto/certloader/client_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/crypto/certloader/doc.go b/pkg/crypto/certloader/doc.go index 8b7595b6d6e27..3778716416618 100644 --- a/pkg/crypto/certloader/doc.go +++ b/pkg/crypto/certloader/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // package certloader aim to provide a facility to ease dynamic tls.Config // handling. diff --git a/pkg/crypto/certloader/fswatcher/fswatcher.go b/pkg/crypto/certloader/fswatcher/fswatcher.go index aa53b2bab4bd2..13d1bcb5901de 100644 --- a/pkg/crypto/certloader/fswatcher/fswatcher.go +++ b/pkg/crypto/certloader/fswatcher/fswatcher.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package fswatcher diff --git a/pkg/crypto/certloader/fswatcher/fswatcher_test.go b/pkg/crypto/certloader/fswatcher/fswatcher_test.go index 0ec463c3d56bf..7674ec807f70c 100644 --- a/pkg/crypto/certloader/fswatcher/fswatcher_test.go +++ b/pkg/crypto/certloader/fswatcher/fswatcher_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/crypto/certloader/helpers.go b/pkg/crypto/certloader/helpers.go index fe84b13314117..8b35b8bdf4668 100644 --- a/pkg/crypto/certloader/helpers.go +++ b/pkg/crypto/certloader/helpers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package certloader diff --git a/pkg/crypto/certloader/reloader.go b/pkg/crypto/certloader/reloader.go index 24131fd1a3cdb..afe9510964e04 100644 --- a/pkg/crypto/certloader/reloader.go +++ b/pkg/crypto/certloader/reloader.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package certloader diff --git a/pkg/crypto/certloader/reloader_test.go b/pkg/crypto/certloader/reloader_test.go index f15309f8ffb6c..02c31d2f2f7bc 100644 --- a/pkg/crypto/certloader/reloader_test.go +++ b/pkg/crypto/certloader/reloader_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/crypto/certloader/server.go b/pkg/crypto/certloader/server.go index 8a0d1e6a1d655..031520445b22b 100644 --- a/pkg/crypto/certloader/server.go +++ b/pkg/crypto/certloader/server.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package certloader diff --git a/pkg/crypto/certloader/server_test.go b/pkg/crypto/certloader/server_test.go index 6f99161c7ead8..33801b1aec2ea 100644 --- a/pkg/crypto/certloader/server_test.go +++ b/pkg/crypto/certloader/server_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/crypto/certloader/watcher.go b/pkg/crypto/certloader/watcher.go index 60c5717c005b3..fc222ec1d4e6c 100644 --- a/pkg/crypto/certloader/watcher.go +++ b/pkg/crypto/certloader/watcher.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package certloader diff --git a/pkg/crypto/certloader/watcher_test.go b/pkg/crypto/certloader/watcher_test.go index 6624f94066064..02a87a9936fa8 100644 --- a/pkg/crypto/certloader/watcher_test.go +++ b/pkg/crypto/certloader/watcher_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/alignchecker/alignchecker.go b/pkg/datapath/alignchecker/alignchecker.go index f3aff300d7d70..908eebbb670a7 100644 --- a/pkg/datapath/alignchecker/alignchecker.go +++ b/pkg/datapath/alignchecker/alignchecker.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package alignchecker diff --git a/pkg/datapath/alignchecker/doc.go b/pkg/datapath/alignchecker/doc.go index 2583886d75537..4ee2186562fc5 100644 --- a/pkg/datapath/alignchecker/doc.go +++ b/pkg/datapath/alignchecker/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package alignchecker is a thin wrapper around pkg/alignchecker to validate // datapath object alignment. diff --git a/pkg/datapath/config.go b/pkg/datapath/config.go index 065851b83e75b..aeb20cc5c4754 100644 --- a/pkg/datapath/config.go +++ b/pkg/datapath/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package datapath diff --git a/pkg/datapath/connector/add.go b/pkg/datapath/connector/add.go index c873bf1ad3b18..04702b821bae9 100644 --- a/pkg/datapath/connector/add.go +++ b/pkg/datapath/connector/add.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package connector diff --git a/pkg/datapath/connector/doc.go b/pkg/datapath/connector/doc.go index 5dcf413d68a1c..4979dbfb0a2be 100644 --- a/pkg/datapath/connector/doc.go +++ b/pkg/datapath/connector/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package connector is responsible for the datapath specific plumbing to // connect an endpoint to the network diff --git a/pkg/datapath/connector/docker.go b/pkg/datapath/connector/docker.go index 4b7ac0c433ee3..8a0978dbca680 100644 --- a/pkg/datapath/connector/docker.go +++ b/pkg/datapath/connector/docker.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package connector diff --git a/pkg/datapath/connector/ipam.go b/pkg/datapath/connector/ipam.go index e325be279edb0..9f839241f3e1c 100644 --- a/pkg/datapath/connector/ipam.go +++ b/pkg/datapath/connector/ipam.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package connector diff --git a/pkg/datapath/connector/ipvlan.go b/pkg/datapath/connector/ipvlan.go index fbba3df122e24..3b1075ff70fbe 100644 --- a/pkg/datapath/connector/ipvlan.go +++ b/pkg/datapath/connector/ipvlan.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package connector diff --git a/pkg/datapath/connector/ipvlan_test.go b/pkg/datapath/connector/ipvlan_test.go index c03a93f4776da..d6af2552a5c31 100644 --- a/pkg/datapath/connector/ipvlan_test.go +++ b/pkg/datapath/connector/ipvlan_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/connector/option.go b/pkg/datapath/connector/option.go index 3f6cb3a5e9464..8ab63a89baf49 100644 --- a/pkg/datapath/connector/option.go +++ b/pkg/datapath/connector/option.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package connector diff --git a/pkg/datapath/connector/veth.go b/pkg/datapath/connector/veth.go index e747249b218c2..ee641bf73989d 100644 --- a/pkg/datapath/connector/veth.go +++ b/pkg/datapath/connector/veth.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package connector diff --git a/pkg/datapath/datapath.go b/pkg/datapath/datapath.go index a393acfb22364..966af8e687fac 100644 --- a/pkg/datapath/datapath.go +++ b/pkg/datapath/datapath.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package datapath diff --git a/pkg/datapath/doc.go b/pkg/datapath/doc.go index 8819543bf7160..5612a51171fcf 100644 --- a/pkg/datapath/doc.go +++ b/pkg/datapath/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package datapath defines the interfaces to abstract all platform specific // datapath components. diff --git a/pkg/datapath/endpoint.go b/pkg/datapath/endpoint.go index 243b1fdd842fb..d792464b594f5 100644 --- a/pkg/datapath/endpoint.go +++ b/pkg/datapath/endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package datapath diff --git a/pkg/datapath/fake/datapath.go b/pkg/datapath/fake/datapath.go index 080fe531f6c20..6871c3ad51870 100644 --- a/pkg/datapath/fake/datapath.go +++ b/pkg/datapath/fake/datapath.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package fake diff --git a/pkg/datapath/fake/datapath_test.go b/pkg/datapath/fake/datapath_test.go index d6ba7b412f4f6..289b5b1576882 100644 --- a/pkg/datapath/fake/datapath_test.go +++ b/pkg/datapath/fake/datapath_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/fake/doc.go b/pkg/datapath/fake/doc.go index 0dc3f35e99d90..b5283386c9f38 100644 --- a/pkg/datapath/fake/doc.go +++ b/pkg/datapath/fake/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package fake is a fake datapath implementation. It does not implement any // datapath specific concepts and is useful for mocking and testing. diff --git a/pkg/datapath/fake/node.go b/pkg/datapath/fake/node.go index d56af1a6b0bed..2e6b5222045ab 100644 --- a/pkg/datapath/fake/node.go +++ b/pkg/datapath/fake/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package fake diff --git a/pkg/datapath/fake/node_addressing.go b/pkg/datapath/fake/node_addressing.go index d35097a6d148c..a55a1f35893d7 100644 --- a/pkg/datapath/fake/node_addressing.go +++ b/pkg/datapath/fake/node_addressing.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package fake diff --git a/pkg/datapath/ipcache/doc.go b/pkg/datapath/ipcache/doc.go index fc3ffef1a12c8..672c3959cdfc3 100644 --- a/pkg/datapath/ipcache/doc.go +++ b/pkg/datapath/ipcache/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package ipcache provides a BPF datapath implementation of the IPCache store. // It depends on details from pkg/ipcache (which handles IPCache events), as diff --git a/pkg/datapath/ipcache/listener.go b/pkg/datapath/ipcache/listener.go index 9e856617bbb9f..6ee7b13856c0d 100644 --- a/pkg/datapath/ipcache/listener.go +++ b/pkg/datapath/ipcache/listener.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package ipcache diff --git a/pkg/datapath/iptables/doc.go b/pkg/datapath/iptables/doc.go index 0f38b552b0cb2..7c2f125c1c9d9 100644 --- a/pkg/datapath/iptables/doc.go +++ b/pkg/datapath/iptables/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package iptables manages iptables-related configuration for Cilium. package iptables diff --git a/pkg/datapath/iptables/iptables.go b/pkg/datapath/iptables/iptables.go index b61979a2dddc5..1f16533aca591 100644 --- a/pkg/datapath/iptables/iptables.go +++ b/pkg/datapath/iptables/iptables.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package iptables diff --git a/pkg/datapath/iptables/iptables_test.go b/pkg/datapath/iptables/iptables_test.go index d6b5d103c858f..d36743467184c 100644 --- a/pkg/datapath/iptables/iptables_test.go +++ b/pkg/datapath/iptables/iptables_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/iptables/log.go b/pkg/datapath/iptables/log.go index f78bcebef315d..f86c45c482b2d 100644 --- a/pkg/datapath/iptables/log.go +++ b/pkg/datapath/iptables/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package iptables diff --git a/pkg/datapath/link/doc.go b/pkg/datapath/link/doc.go index 63b6c8945ddb4..edbbba89357eb 100644 --- a/pkg/datapath/link/doc.go +++ b/pkg/datapath/link/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package link provides the Cilium specific abstraction and useful helpers to // manage network interfaces diff --git a/pkg/datapath/link/link.go b/pkg/datapath/link/link.go index 094beb965c08f..2e9a9e539c8bf 100644 --- a/pkg/datapath/link/link.go +++ b/pkg/datapath/link/link.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package link diff --git a/pkg/datapath/link/link_test.go b/pkg/datapath/link/link_test.go index 34807287a5fa1..b3f9dd3ae7bbf 100644 --- a/pkg/datapath/link/link_test.go +++ b/pkg/datapath/link/link_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/datapath/linux/config/config.go b/pkg/datapath/linux/config/config.go index 380ab56e272d0..7bac8dbe216fe 100644 --- a/pkg/datapath/linux/config/config.go +++ b/pkg/datapath/linux/config/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package config diff --git a/pkg/datapath/linux/config/config_test.go b/pkg/datapath/linux/config/config_test.go index dbd38602e2cc4..053b27f6e39c7 100644 --- a/pkg/datapath/linux/config/config_test.go +++ b/pkg/datapath/linux/config/config_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/datapath/linux/config/utils.go b/pkg/datapath/linux/config/utils.go index 3ca47306bd167..78ed6013abeea 100644 --- a/pkg/datapath/linux/config/utils.go +++ b/pkg/datapath/linux/config/utils.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package config diff --git a/pkg/datapath/linux/config/utils_test.go b/pkg/datapath/linux/config/utils_test.go index 6e0ca2a3ba90d..ed79f4b7755f1 100644 --- a/pkg/datapath/linux/config/utils_test.go +++ b/pkg/datapath/linux/config/utils_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/linux/datapath.go b/pkg/datapath/linux/datapath.go index 6f7ee49c6bd81..541b2bce2168f 100644 --- a/pkg/datapath/linux/datapath.go +++ b/pkg/datapath/linux/datapath.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package linux diff --git a/pkg/datapath/linux/datapath_test.go b/pkg/datapath/linux/datapath_test.go index 9922ee9804d15..cf46edb37c8b9 100644 --- a/pkg/datapath/linux/datapath_test.go +++ b/pkg/datapath/linux/datapath_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/linux/doc.go b/pkg/datapath/linux/doc.go index a894384d2bb49..e8f693147e9e9 100644 --- a/pkg/datapath/linux/doc.go +++ b/pkg/datapath/linux/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package linux implements the Linux specific datapath implementation package linux diff --git a/pkg/datapath/linux/ethtool/ethtool_linux.go b/pkg/datapath/linux/ethtool/ethtool_linux.go index 31681d9c15b6e..affd51a14112a 100644 --- a/pkg/datapath/linux/ethtool/ethtool_linux.go +++ b/pkg/datapath/linux/ethtool/ethtool_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package ethtool diff --git a/pkg/datapath/linux/ethtool/ethtool_linux_test.go b/pkg/datapath/linux/ethtool/ethtool_linux_test.go index e01577e8c540e..b636be89d7866 100644 --- a/pkg/datapath/linux/ethtool/ethtool_linux_test.go +++ b/pkg/datapath/linux/ethtool/ethtool_linux_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/linux/ipsec/doc.go b/pkg/datapath/linux/ipsec/doc.go index 187d8e0c6ba52..f6dc782bf80fe 100644 --- a/pkg/datapath/linux/ipsec/doc.go +++ b/pkg/datapath/linux/ipsec/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package ipsec provides the Linux datpaath specific abstraction and // useful helpers to manage IPSec via Linux xfrm. diff --git a/pkg/datapath/linux/ipsec/ipsec_linux.go b/pkg/datapath/linux/ipsec/ipsec_linux.go index 85091f8888a99..4d8012d443294 100644 --- a/pkg/datapath/linux/ipsec/ipsec_linux.go +++ b/pkg/datapath/linux/ipsec/ipsec_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build linux // +build linux diff --git a/pkg/datapath/linux/ipsec/ipsec_linux_test.go b/pkg/datapath/linux/ipsec/ipsec_linux_test.go index 279aa1e913fca..af2de9af8f0cb 100644 --- a/pkg/datapath/linux/ipsec/ipsec_linux_test.go +++ b/pkg/datapath/linux/ipsec/ipsec_linux_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/datapath/linux/ipsec/logfields.go b/pkg/datapath/linux/ipsec/logfields.go index c9d68f27feeb6..23569e52816d5 100644 --- a/pkg/datapath/linux/ipsec/logfields.go +++ b/pkg/datapath/linux/ipsec/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package ipsec diff --git a/pkg/datapath/linux/ipsec/probe_linux.go b/pkg/datapath/linux/ipsec/probe_linux.go index 4316a29d5d3d4..9dd1c1f2762e9 100644 --- a/pkg/datapath/linux/ipsec/probe_linux.go +++ b/pkg/datapath/linux/ipsec/probe_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build linux // +build linux diff --git a/pkg/datapath/linux/ipsec/xfrm_collector.go b/pkg/datapath/linux/ipsec/xfrm_collector.go index e33dd8836d8f4..bc2dd376411dc 100644 --- a/pkg/datapath/linux/ipsec/xfrm_collector.go +++ b/pkg/datapath/linux/ipsec/xfrm_collector.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2022 Authors of Cilium +// Copyright Authors of Cilium package ipsec diff --git a/pkg/datapath/linux/ipsec/xfrm_collector_test.go b/pkg/datapath/linux/ipsec/xfrm_collector_test.go index 145935623c079..b4d7e618c0379 100644 --- a/pkg/datapath/linux/ipsec/xfrm_collector_test.go +++ b/pkg/datapath/linux/ipsec/xfrm_collector_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2022 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/linux/linux_defaults/doc.go b/pkg/datapath/linux/linux_defaults/doc.go index b6c2e843ef711..b38ef9b756cde 100644 --- a/pkg/datapath/linux/linux_defaults/doc.go +++ b/pkg/datapath/linux/linux_defaults/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package linux_defaults provides the Linux datapath defaults package linux_defaults diff --git a/pkg/datapath/linux/linux_defaults/linux_defaults.go b/pkg/datapath/linux/linux_defaults/linux_defaults.go index 5f27b642983c2..4e3972132fee0 100644 --- a/pkg/datapath/linux/linux_defaults/linux_defaults.go +++ b/pkg/datapath/linux/linux_defaults/linux_defaults.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package linux_defaults diff --git a/pkg/datapath/linux/linux_defaults/mark.go b/pkg/datapath/linux/linux_defaults/mark.go index 887b207e74809..224a4027dc9f7 100644 --- a/pkg/datapath/linux/linux_defaults/mark.go +++ b/pkg/datapath/linux/linux_defaults/mark.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package linux_defaults diff --git a/pkg/datapath/linux/logfields.go b/pkg/datapath/linux/logfields.go index 0621b98eb272f..127b3841b4d37 100644 --- a/pkg/datapath/linux/logfields.go +++ b/pkg/datapath/linux/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package linux diff --git a/pkg/datapath/linux/node.go b/pkg/datapath/linux/node.go index 277e5551c8799..c1fd40b21c0bc 100644 --- a/pkg/datapath/linux/node.go +++ b/pkg/datapath/linux/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package linux diff --git a/pkg/datapath/linux/node_addressing.go b/pkg/datapath/linux/node_addressing.go index 03de6f3035f51..22a2f176617e2 100644 --- a/pkg/datapath/linux/node_addressing.go +++ b/pkg/datapath/linux/node_addressing.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package linux diff --git a/pkg/datapath/linux/node_linux_test.go b/pkg/datapath/linux/node_linux_test.go index d8c6898f39639..814fb2a458cc2 100644 --- a/pkg/datapath/linux/node_linux_test.go +++ b/pkg/datapath/linux/node_linux_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/datapath/linux/node_test.go b/pkg/datapath/linux/node_test.go index 8c032e5478420..b494bc4709ce9 100644 --- a/pkg/datapath/linux/node_test.go +++ b/pkg/datapath/linux/node_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/linux/probes/doc.go b/pkg/datapath/linux/probes/doc.go index e9f80619256f6..285c8851d526d 100644 --- a/pkg/datapath/linux/probes/doc.go +++ b/pkg/datapath/linux/probes/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package probes provides BPF features checks based on bpftool. package probes diff --git a/pkg/datapath/linux/probes/probes.go b/pkg/datapath/linux/probes/probes.go index dd373851c67ea..49d598ace0fba 100644 --- a/pkg/datapath/linux/probes/probes.go +++ b/pkg/datapath/linux/probes/probes.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package probes diff --git a/pkg/datapath/linux/probes/probes_privileged_test.go b/pkg/datapath/linux/probes/probes_privileged_test.go index 221a5ab05628d..5b26beaa1e0ff 100644 --- a/pkg/datapath/linux/probes/probes_privileged_test.go +++ b/pkg/datapath/linux/probes/probes_privileged_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/datapath/linux/probes/probes_test.go b/pkg/datapath/linux/probes/probes_test.go index 29a5490713801..805d84cf76fe2 100644 --- a/pkg/datapath/linux/probes/probes_test.go +++ b/pkg/datapath/linux/probes/probes_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/linux/requirements.go b/pkg/datapath/linux/requirements.go index 1e24fd604187f..199c135716279 100644 --- a/pkg/datapath/linux/requirements.go +++ b/pkg/datapath/linux/requirements.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package linux diff --git a/pkg/datapath/linux/route/doc.go b/pkg/datapath/linux/route/doc.go index 6586491c1f07e..fe37c102e1130 100644 --- a/pkg/datapath/linux/route/doc.go +++ b/pkg/datapath/linux/route/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package route provides the Cilium specific abstraction and useful helpers to // manage network routes diff --git a/pkg/datapath/linux/route/logfields.go b/pkg/datapath/linux/route/logfields.go index adca69fbc5d2d..1df11c8803563 100644 --- a/pkg/datapath/linux/route/logfields.go +++ b/pkg/datapath/linux/route/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package route diff --git a/pkg/datapath/linux/route/route.go b/pkg/datapath/linux/route/route.go index f8cb7218c32ce..a3a4ff12bde34 100644 --- a/pkg/datapath/linux/route/route.go +++ b/pkg/datapath/linux/route/route.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package route diff --git a/pkg/datapath/linux/route/route_darwin.go b/pkg/datapath/linux/route/route_darwin.go index 3551e93fe0d92..e8c28f8b23222 100644 --- a/pkg/datapath/linux/route/route_darwin.go +++ b/pkg/datapath/linux/route/route_darwin.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium //go:build darwin // +build darwin diff --git a/pkg/datapath/linux/route/route_linux.go b/pkg/datapath/linux/route/route_linux.go index 7e245a433efce..15791db07c25d 100644 --- a/pkg/datapath/linux/route/route_linux.go +++ b/pkg/datapath/linux/route/route_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium //go:build linux // +build linux diff --git a/pkg/datapath/linux/route/route_linux_test.go b/pkg/datapath/linux/route/route_linux_test.go index 0d2803852ab07..17b0f24bea4c7 100644 --- a/pkg/datapath/linux/route/route_linux_test.go +++ b/pkg/datapath/linux/route/route_linux_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/datapath/linux/route/route_test.go b/pkg/datapath/linux/route/route_test.go index 69601593c22ea..75cbb685f3928 100644 --- a/pkg/datapath/linux/route/route_test.go +++ b/pkg/datapath/linux/route/route_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/linux/routing/info.go b/pkg/datapath/linux/routing/info.go index 66b8e445f1b2c..81269b3f95ad5 100644 --- a/pkg/datapath/linux/routing/info.go +++ b/pkg/datapath/linux/routing/info.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package linuxrouting diff --git a/pkg/datapath/linux/routing/info_test.go b/pkg/datapath/linux/routing/info_test.go index f63a41ddc8843..cc78e96d8c014 100644 --- a/pkg/datapath/linux/routing/info_test.go +++ b/pkg/datapath/linux/routing/info_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/linux/routing/migrate.go b/pkg/datapath/linux/routing/migrate.go index 286971ceea78b..d99197dbe37e7 100644 --- a/pkg/datapath/linux/routing/migrate.go +++ b/pkg/datapath/linux/routing/migrate.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package linuxrouting diff --git a/pkg/datapath/linux/routing/migrate_test.go b/pkg/datapath/linux/routing/migrate_test.go index 2bea526ab86fc..2c97ba6607d05 100644 --- a/pkg/datapath/linux/routing/migrate_test.go +++ b/pkg/datapath/linux/routing/migrate_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/datapath/linux/routing/routing.go b/pkg/datapath/linux/routing/routing.go index 27e95bdbdcc4c..ebcefc581b946 100644 --- a/pkg/datapath/linux/routing/routing.go +++ b/pkg/datapath/linux/routing/routing.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package linuxrouting diff --git a/pkg/datapath/linux/routing/routing_test.go b/pkg/datapath/linux/routing/routing_test.go index b73753474fcc2..14069f4a895fd 100644 --- a/pkg/datapath/linux/routing/routing_test.go +++ b/pkg/datapath/linux/routing/routing_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/datapath/loader.go b/pkg/datapath/loader.go index 3b2950a3d5da6..2a3c5a9eace10 100644 --- a/pkg/datapath/loader.go +++ b/pkg/datapath/loader.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package datapath diff --git a/pkg/datapath/loader/base.go b/pkg/datapath/loader/base.go index 4da7350124720..981b352dbf2ee 100644 --- a/pkg/datapath/loader/base.go +++ b/pkg/datapath/loader/base.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package loader diff --git a/pkg/datapath/loader/cache.go b/pkg/datapath/loader/cache.go index e62b753f09fba..addba0eb6fb35 100644 --- a/pkg/datapath/loader/cache.go +++ b/pkg/datapath/loader/cache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package loader diff --git a/pkg/datapath/loader/cache_test.go b/pkg/datapath/loader/cache_test.go index 634252a33fc41..cf1272c198974 100644 --- a/pkg/datapath/loader/cache_test.go +++ b/pkg/datapath/loader/cache_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/datapath/loader/compile.go b/pkg/datapath/loader/compile.go index 6bfe9e2b42156..1794b90bbf777 100644 --- a/pkg/datapath/loader/compile.go +++ b/pkg/datapath/loader/compile.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package loader diff --git a/pkg/datapath/loader/doc.go b/pkg/datapath/loader/doc.go index 8ee4fcc92fc83..3803f84468c6b 100644 --- a/pkg/datapath/loader/doc.go +++ b/pkg/datapath/loader/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package loader provides accessors to compilation and BPF load routines // necessary for creating datapath objects and attaching them to links. diff --git a/pkg/datapath/loader/doc_test.go b/pkg/datapath/loader/doc_test.go index 2d8b62eebf0c4..f06a8b23fc7c7 100644 --- a/pkg/datapath/loader/doc_test.go +++ b/pkg/datapath/loader/doc_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/loader/hash.go b/pkg/datapath/loader/hash.go index e413b3afcb90e..23016ecec0569 100644 --- a/pkg/datapath/loader/hash.go +++ b/pkg/datapath/loader/hash.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package loader diff --git a/pkg/datapath/loader/hash_test.go b/pkg/datapath/loader/hash_test.go index 424daf9803fec..79c17a32a836e 100644 --- a/pkg/datapath/loader/hash_test.go +++ b/pkg/datapath/loader/hash_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/loader/link.go b/pkg/datapath/loader/link.go index eba5aa95470f3..4226a620842d6 100644 --- a/pkg/datapath/loader/link.go +++ b/pkg/datapath/loader/link.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package loader diff --git a/pkg/datapath/loader/loader.go b/pkg/datapath/loader/loader.go index 279b2a112ebfe..fc60e31ca6cd6 100644 --- a/pkg/datapath/loader/loader.go +++ b/pkg/datapath/loader/loader.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package loader diff --git a/pkg/datapath/loader/loader_test.go b/pkg/datapath/loader/loader_test.go index e331612897c73..eccb7f8d32fae 100644 --- a/pkg/datapath/loader/loader_test.go +++ b/pkg/datapath/loader/loader_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/datapath/loader/metrics/metrics.go b/pkg/datapath/loader/metrics/metrics.go index ee88b269d1c8e..4896dc830ba7e 100644 --- a/pkg/datapath/loader/metrics/metrics.go +++ b/pkg/datapath/loader/metrics/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package metrics diff --git a/pkg/datapath/loader/netlink.go b/pkg/datapath/loader/netlink.go index c4d74538cef5b..c947bcbd8e8b8 100644 --- a/pkg/datapath/loader/netlink.go +++ b/pkg/datapath/loader/netlink.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2018 Authors of Cilium +// Copyright Authors of Cilium package loader diff --git a/pkg/datapath/loader/netlink_test.go b/pkg/datapath/loader/netlink_test.go index 018cd2eef72ea..86cee84e71b08 100644 --- a/pkg/datapath/loader/netlink_test.go +++ b/pkg/datapath/loader/netlink_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build linux && privileged_tests // +build linux,privileged_tests diff --git a/pkg/datapath/loader/template.go b/pkg/datapath/loader/template.go index a3e7e4731577a..5c5c5fa409de1 100644 --- a/pkg/datapath/loader/template.go +++ b/pkg/datapath/loader/template.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package loader diff --git a/pkg/datapath/loader/template_test.go b/pkg/datapath/loader/template_test.go index 6a798ef6a5ecf..d4667642f6ccf 100644 --- a/pkg/datapath/loader/template_test.go +++ b/pkg/datapath/loader/template_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/loader/xdp.go b/pkg/datapath/loader/xdp.go index 400eab4f1e5c8..2b3889df9852e 100644 --- a/pkg/datapath/loader/xdp.go +++ b/pkg/datapath/loader/xdp.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package loader diff --git a/pkg/datapath/maps/doc.go b/pkg/datapath/maps/doc.go index 6686ec575df72..ca01c725f4d44 100644 --- a/pkg/datapath/maps/doc.go +++ b/pkg/datapath/maps/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package maps performs various lifecycle operations related to maps in the // datapath. diff --git a/pkg/datapath/maps/map.go b/pkg/datapath/maps/map.go index f820e43a7fa08..b2566751abc51 100644 --- a/pkg/datapath/maps/map.go +++ b/pkg/datapath/maps/map.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package maps diff --git a/pkg/datapath/maps/map_test.go b/pkg/datapath/maps/map_test.go index ee840999133d9..5d661df6be85d 100644 --- a/pkg/datapath/maps/map_test.go +++ b/pkg/datapath/maps/map_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/datapath/node.go b/pkg/datapath/node.go index ba4a584c29a2c..5ade393e60e68 100644 --- a/pkg/datapath/node.go +++ b/pkg/datapath/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package datapath diff --git a/pkg/datapath/option/option.go b/pkg/datapath/option/option.go index 96bd2e6494cbc..f8d14f3dd6fad 100644 --- a/pkg/datapath/option/option.go +++ b/pkg/datapath/option/option.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package option diff --git a/pkg/datapath/prefilter/doc.go b/pkg/datapath/prefilter/doc.go index d604702d1e0b1..47dbe0d9c2ba3 100644 --- a/pkg/datapath/prefilter/doc.go +++ b/pkg/datapath/prefilter/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package prefilter provides a means of configuring XDP pre-filters for // DDoS-mitigation. diff --git a/pkg/datapath/prefilter/prefilter.go b/pkg/datapath/prefilter/prefilter.go index d320f2c6829eb..2570f30bf0715 100644 --- a/pkg/datapath/prefilter/prefilter.go +++ b/pkg/datapath/prefilter/prefilter.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2018 Authors of Cilium +// Copyright Authors of Cilium package prefilter diff --git a/pkg/datapath/types/node_addressing.go b/pkg/datapath/types/node_addressing.go index 625b35bb21c19..b4733fe69f28f 100644 --- a/pkg/datapath/types/node_addressing.go +++ b/pkg/datapath/types/node_addressing.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/datapath/wireguard.go b/pkg/datapath/wireguard.go index 0115860c0af04..a9e170f3988d1 100644 --- a/pkg/datapath/wireguard.go +++ b/pkg/datapath/wireguard.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package datapath diff --git a/pkg/debug/subsystem.go b/pkg/debug/subsystem.go index c01cfe5ae40db..62162e36489cf 100644 --- a/pkg/debug/subsystem.go +++ b/pkg/debug/subsystem.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package debug diff --git a/pkg/debug/subsystem_test.go b/pkg/debug/subsystem_test.go index 574085fc8bff3..c86cb8bbaf95d 100644 --- a/pkg/debug/subsystem_test.go +++ b/pkg/debug/subsystem_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/defaults/cluster.go b/pkg/defaults/cluster.go index dd619797f332f..1cb94b834e29f 100644 --- a/pkg/defaults/cluster.go +++ b/pkg/defaults/cluster.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package defaults diff --git a/pkg/defaults/defaults.go b/pkg/defaults/defaults.go index 3dc47a0999479..e532488e95a43 100644 --- a/pkg/defaults/defaults.go +++ b/pkg/defaults/defaults.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package defaults diff --git a/pkg/defaults/node.go b/pkg/defaults/node.go index f36c7dc5ed7c3..f61ebbdb189ae 100644 --- a/pkg/defaults/node.go +++ b/pkg/defaults/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package defaults diff --git a/pkg/ebpf/doc.go b/pkg/ebpf/doc.go index 77472ac712bb6..7a7cdb0cba21a 100644 --- a/pkg/ebpf/doc.go +++ b/pkg/ebpf/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // Package ebpf provides functions that allow golang programs to interact with // ebpf maps by wrapping the cilium/ebpf library. diff --git a/pkg/ebpf/ebpf.go b/pkg/ebpf/ebpf.go index 1041be6e05ee5..630074060f268 100644 --- a/pkg/ebpf/ebpf.go +++ b/pkg/ebpf/ebpf.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package ebpf diff --git a/pkg/ebpf/map.go b/pkg/ebpf/map.go index f8ce27a1dbb13..d49336d36147d 100644 --- a/pkg/ebpf/map.go +++ b/pkg/ebpf/map.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021-2022 Authors of Cilium +// Copyright Authors of Cilium package ebpf diff --git a/pkg/ebpf/map_register.go b/pkg/ebpf/map_register.go index 65b432f6e9b3f..61327b6eb2979 100644 --- a/pkg/ebpf/map_register.go +++ b/pkg/ebpf/map_register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package ebpf diff --git a/pkg/egressgateway/doc.go b/pkg/egressgateway/doc.go index 92b3dfec4c124..5a45737e79869 100644 --- a/pkg/egressgateway/doc.go +++ b/pkg/egressgateway/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // Package egressgateway defines an internal representation of the Cilium Egress // Policy. The structures are managed by the Manager. diff --git a/pkg/egressgateway/endpoint.go b/pkg/egressgateway/endpoint.go index c89864d2078fc..25fe230ea0a87 100644 --- a/pkg/egressgateway/endpoint.go +++ b/pkg/egressgateway/endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package egressgateway diff --git a/pkg/egressgateway/manager.go b/pkg/egressgateway/manager.go index 9391c276c3ebe..103ceb9715d66 100644 --- a/pkg/egressgateway/manager.go +++ b/pkg/egressgateway/manager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package egressgateway diff --git a/pkg/egressgateway/manager_privileged_test.go b/pkg/egressgateway/manager_privileged_test.go index a1d4c827864d7..5390bf5b3505a 100644 --- a/pkg/egressgateway/manager_privileged_test.go +++ b/pkg/egressgateway/manager_privileged_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/egressgateway/policy.go b/pkg/egressgateway/policy.go index 0d4249b295fce..32b0634f92ab9 100644 --- a/pkg/egressgateway/policy.go +++ b/pkg/egressgateway/policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package egressgateway diff --git a/pkg/elf/btf.go b/pkg/elf/btf.go index 0a35f03196253..225d7ada5a114 100644 --- a/pkg/elf/btf.go +++ b/pkg/elf/btf.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package elf diff --git a/pkg/elf/doc.go b/pkg/elf/doc.go index 31721e7cd8b17..cc4e3b6dd8090 100644 --- a/pkg/elf/doc.go +++ b/pkg/elf/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package elf provides utility functions for manipulating ELF files // on the filesystem. diff --git a/pkg/elf/elf.go b/pkg/elf/elf.go index 53f3d7a76edc1..f8a278de61a35 100644 --- a/pkg/elf/elf.go +++ b/pkg/elf/elf.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package elf diff --git a/pkg/elf/elf_test.go b/pkg/elf/elf_test.go index 810224021639d..e40ec188d7896 100644 --- a/pkg/elf/elf_test.go +++ b/pkg/elf/elf_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/elf/log.go b/pkg/elf/log.go index e355985e098ef..804e9419872df 100644 --- a/pkg/elf/log.go +++ b/pkg/elf/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package elf diff --git a/pkg/elf/symbols.go b/pkg/elf/symbols.go index e1927c298d106..8f94e085125fa 100644 --- a/pkg/elf/symbols.go +++ b/pkg/elf/symbols.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package elf diff --git a/pkg/endpoint/api.go b/pkg/endpoint/api.go index 7933d48edfa3f..5e033a8b4c2ce 100644 --- a/pkg/endpoint/api.go +++ b/pkg/endpoint/api.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium // This file contains functions related to conversion of information about // an Endpoint to its corresponding Cilium API representation. diff --git a/pkg/endpoint/bpf.go b/pkg/endpoint/bpf.go index 7a221753d306e..6ea0b7ee49e48 100644 --- a/pkg/endpoint/bpf.go +++ b/pkg/endpoint/bpf.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/bpf_test.go b/pkg/endpoint/bpf_test.go index 41dd71a8d5692..75daf74896332 100644 --- a/pkg/endpoint/bpf_test.go +++ b/pkg/endpoint/bpf_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/endpoint/cache.go b/pkg/endpoint/cache.go index 86ea0557f3672..0865a8451d498 100644 --- a/pkg/endpoint/cache.go +++ b/pkg/endpoint/cache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/directory.go b/pkg/endpoint/directory.go index e58d635bab9d9..2db97ee58978c 100644 --- a/pkg/endpoint/directory.go +++ b/pkg/endpoint/directory.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/directory_test.go b/pkg/endpoint/directory_test.go index def64cb78a2b5..37fc1186f0735 100644 --- a/pkg/endpoint/directory_test.go +++ b/pkg/endpoint/directory_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/endpoint/endpoint.go b/pkg/endpoint/endpoint.go index 118ee63073441..c7caf0d066600 100644 --- a/pkg/endpoint/endpoint.go +++ b/pkg/endpoint/endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/endpoint_status.go b/pkg/endpoint/endpoint_status.go index 82f5895587b82..88fdc486791ea 100644 --- a/pkg/endpoint/endpoint_status.go +++ b/pkg/endpoint/endpoint_status.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/endpoint_status_test.go b/pkg/endpoint/endpoint_status_test.go index defd6b50abf06..c71bfee6ddf29 100644 --- a/pkg/endpoint/endpoint_status_test.go +++ b/pkg/endpoint/endpoint_status_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/endpoint/endpoint_test.go b/pkg/endpoint/endpoint_test.go index 8b53b7d186ccb..4c59db4b6d97c 100644 --- a/pkg/endpoint/endpoint_test.go +++ b/pkg/endpoint/endpoint_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/endpoint/errors.go b/pkg/endpoint/errors.go index cb592a4f17faa..55c825aaaebe9 100644 --- a/pkg/endpoint/errors.go +++ b/pkg/endpoint/errors.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/events.go b/pkg/endpoint/events.go index 21dcb8dcc2893..3d709d3eb71f4 100644 --- a/pkg/endpoint/events.go +++ b/pkg/endpoint/events.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/fqdn.go b/pkg/endpoint/fqdn.go index ab35f279d85f9..6343fcc0e123d 100644 --- a/pkg/endpoint/fqdn.go +++ b/pkg/endpoint/fqdn.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/id/id.go b/pkg/endpoint/id/id.go index e1074854209d1..ba8c696e66db9 100644 --- a/pkg/endpoint/id/id.go +++ b/pkg/endpoint/id/id.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package id diff --git a/pkg/endpoint/id/id_test.go b/pkg/endpoint/id/id_test.go index 6143a69edcee3..dd18d28d6be8e 100644 --- a/pkg/endpoint/id/id_test.go +++ b/pkg/endpoint/id/id_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/endpoint/id/identifiers.go b/pkg/endpoint/id/identifiers.go index e418f7fc34f92..d2deaa391e5c7 100644 --- a/pkg/endpoint/id/identifiers.go +++ b/pkg/endpoint/id/identifiers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package id diff --git a/pkg/endpoint/identifiers.go b/pkg/endpoint/identifiers.go index d32b4b9900809..9ca9bd74a718a 100644 --- a/pkg/endpoint/identifiers.go +++ b/pkg/endpoint/identifiers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/lock.go b/pkg/endpoint/lock.go index 0d20dc9566a71..508a3c816ef9f 100644 --- a/pkg/endpoint/lock.go +++ b/pkg/endpoint/lock.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/log.go b/pkg/endpoint/log.go index e7deab351e31d..91f4f6519ca4f 100644 --- a/pkg/endpoint/log.go +++ b/pkg/endpoint/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/log_test.go b/pkg/endpoint/log_test.go index f8db9aca3a1f8..243a87ca212fa 100644 --- a/pkg/endpoint/log_test.go +++ b/pkg/endpoint/log_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/endpoint/metrics.go b/pkg/endpoint/metrics.go index 3ee4217d6659b..d7e6653b16849 100644 --- a/pkg/endpoint/metrics.go +++ b/pkg/endpoint/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/policy.go b/pkg/endpoint/policy.go index 5087a6f3f1c3d..2fa667ee710e7 100644 --- a/pkg/endpoint/policy.go +++ b/pkg/endpoint/policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/policy_test.go b/pkg/endpoint/policy_test.go index 5c5a7167aa2aa..d96575a4794fc 100644 --- a/pkg/endpoint/policy_test.go +++ b/pkg/endpoint/policy_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/endpoint/proxy.go b/pkg/endpoint/proxy.go index 5a14080628303..5315c063ef838 100644 --- a/pkg/endpoint/proxy.go +++ b/pkg/endpoint/proxy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/proxystats.go b/pkg/endpoint/proxystats.go index 468709660fdc1..41ed0034f444d 100644 --- a/pkg/endpoint/proxystats.go +++ b/pkg/endpoint/proxystats.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/redirect_test.go b/pkg/endpoint/redirect_test.go index 7da95bbde4e8c..d618439fc0d39 100644 --- a/pkg/endpoint/redirect_test.go +++ b/pkg/endpoint/redirect_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/endpoint/regeneration/owner.go b/pkg/endpoint/regeneration/owner.go index ffb23abdd46e0..13ea2c991ec66 100644 --- a/pkg/endpoint/regeneration/owner.go +++ b/pkg/endpoint/regeneration/owner.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package regeneration diff --git a/pkg/endpoint/regeneration/regeneration_context.go b/pkg/endpoint/regeneration/regeneration_context.go index f4984f8a2a223..84cdc63de4d89 100644 --- a/pkg/endpoint/regeneration/regeneration_context.go +++ b/pkg/endpoint/regeneration/regeneration_context.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package regeneration diff --git a/pkg/endpoint/regenerationcontext.go b/pkg/endpoint/regenerationcontext.go index 0f604f5e49931..992faa3da2850 100644 --- a/pkg/endpoint/regenerationcontext.go +++ b/pkg/endpoint/regenerationcontext.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/restore.go b/pkg/endpoint/restore.go index 4787899494fc3..466dbdaa52340 100644 --- a/pkg/endpoint/restore.go +++ b/pkg/endpoint/restore.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/restore_test.go b/pkg/endpoint/restore_test.go index a2b28f1864840..2b622468abf3c 100644 --- a/pkg/endpoint/restore_test.go +++ b/pkg/endpoint/restore_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/endpoint/status.go b/pkg/endpoint/status.go index e027a75fea1c5..3bf6bb431c68e 100644 --- a/pkg/endpoint/status.go +++ b/pkg/endpoint/status.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpoint/test_utils.go b/pkg/endpoint/test_utils.go index d3ed16bab0a09..04745df92a0f8 100644 --- a/pkg/endpoint/test_utils.go +++ b/pkg/endpoint/test_utils.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package endpoint diff --git a/pkg/endpointmanager/doc.go b/pkg/endpointmanager/doc.go index e67c2d4a5fdbb..e02461748e93b 100644 --- a/pkg/endpointmanager/doc.go +++ b/pkg/endpointmanager/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium // Package endpointmanager manages the list of all local endpoints package endpointmanager diff --git a/pkg/endpointmanager/errors.go b/pkg/endpointmanager/errors.go index 35fa680e4f1b5..82e82b48f565a 100644 --- a/pkg/endpointmanager/errors.go +++ b/pkg/endpointmanager/errors.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package endpointmanager diff --git a/pkg/endpointmanager/errors_test.go b/pkg/endpointmanager/errors_test.go index ce8abd3c6bb2c..8dff20089a66b 100644 --- a/pkg/endpointmanager/errors_test.go +++ b/pkg/endpointmanager/errors_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/endpointmanager/gc.go b/pkg/endpointmanager/gc.go index 13dc7a09e01e5..86a5cf7b08cf6 100644 --- a/pkg/endpointmanager/gc.go +++ b/pkg/endpointmanager/gc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package endpointmanager diff --git a/pkg/endpointmanager/gc_test.go b/pkg/endpointmanager/gc_test.go index 94b3479e1abdc..c3338b5dd36b0 100644 --- a/pkg/endpointmanager/gc_test.go +++ b/pkg/endpointmanager/gc_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/endpointmanager/host.go b/pkg/endpointmanager/host.go index 6a52d48be7360..4855a5087070a 100644 --- a/pkg/endpointmanager/host.go +++ b/pkg/endpointmanager/host.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package endpointmanager diff --git a/pkg/endpointmanager/idallocator/allocator.go b/pkg/endpointmanager/idallocator/allocator.go index 2beafaa742086..258bf4929a979 100644 --- a/pkg/endpointmanager/idallocator/allocator.go +++ b/pkg/endpointmanager/idallocator/allocator.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package idallocator diff --git a/pkg/endpointmanager/idallocator/allocator_test.go b/pkg/endpointmanager/idallocator/allocator_test.go index 7e8ca9f1cd5dd..f30580ca7d4b1 100644 --- a/pkg/endpointmanager/idallocator/allocator_test.go +++ b/pkg/endpointmanager/idallocator/allocator_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/endpointmanager/manager.go b/pkg/endpointmanager/manager.go index 37d79a26444c6..a29b6d2ab1a4a 100644 --- a/pkg/endpointmanager/manager.go +++ b/pkg/endpointmanager/manager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package endpointmanager diff --git a/pkg/endpointmanager/manager_test.go b/pkg/endpointmanager/manager_test.go index aa38e63227835..4a6daaf41c6d8 100644 --- a/pkg/endpointmanager/manager_test.go +++ b/pkg/endpointmanager/manager_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/endpointmanager/subscribe.go b/pkg/endpointmanager/subscribe.go index fa500a836cd88..964dc131118f4 100644 --- a/pkg/endpointmanager/subscribe.go +++ b/pkg/endpointmanager/subscribe.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package endpointmanager diff --git a/pkg/envoy/accesslog.go b/pkg/envoy/accesslog.go index c17a6d990bb1a..4249426ee2dfe 100644 --- a/pkg/envoy/accesslog.go +++ b/pkg/envoy/accesslog.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package envoy diff --git a/pkg/envoy/accesslog_server.go b/pkg/envoy/accesslog_server.go index 690abb1716ca0..f80ad24319fd7 100644 --- a/pkg/envoy/accesslog_server.go +++ b/pkg/envoy/accesslog_server.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017, 2018 Authors of Cilium +// Copyright Authors of Cilium package envoy diff --git a/pkg/envoy/accesslog_server_test.go b/pkg/envoy/accesslog_server_test.go index 7d5c39b3baec5..0f42a72ba5be7 100644 --- a/pkg/envoy/accesslog_server_test.go +++ b/pkg/envoy/accesslog_server_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/envoy/envoy.go b/pkg/envoy/envoy.go index e164a2700a9ba..8ea7454e691d2 100644 --- a/pkg/envoy/envoy.go +++ b/pkg/envoy/envoy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017, 2018 Authors of Cilium +// Copyright Authors of Cilium package envoy diff --git a/pkg/envoy/envoy_test.go b/pkg/envoy/envoy_test.go index 9507de4d9f12a..9c5b6f80018e7 100644 --- a/pkg/envoy/envoy_test.go +++ b/pkg/envoy/envoy_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/envoy/grpc.go b/pkg/envoy/grpc.go index 99cdf3624b3a8..bf87566574b5e 100644 --- a/pkg/envoy/grpc.go +++ b/pkg/envoy/grpc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package envoy diff --git a/pkg/envoy/resources.go b/pkg/envoy/resources.go index 696844e581449..996c9c94b72ce 100644 --- a/pkg/envoy/resources.go +++ b/pkg/envoy/resources.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package envoy diff --git a/pkg/envoy/server.go b/pkg/envoy/server.go index 602208cce00f5..8ad87a00a96f3 100644 --- a/pkg/envoy/server.go +++ b/pkg/envoy/server.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package envoy diff --git a/pkg/envoy/server_test.go b/pkg/envoy/server_test.go index 4fc841a94ec31..40f8f0bd683e9 100644 --- a/pkg/envoy/server_test.go +++ b/pkg/envoy/server_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/envoy/sort.go b/pkg/envoy/sort.go index edb2b3dc2d28b..a7fc9a8304b0f 100644 --- a/pkg/envoy/sort.go +++ b/pkg/envoy/sort.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package envoy diff --git a/pkg/envoy/sort_test.go b/pkg/envoy/sort_test.go index cf12c9dcafd2a..d90a523e48794 100644 --- a/pkg/envoy/sort_test.go +++ b/pkg/envoy/sort_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/envoy/xds/ack.go b/pkg/envoy/xds/ack.go index d6b215066e5bd..4cb3dc2b5bbf5 100644 --- a/pkg/envoy/xds/ack.go +++ b/pkg/envoy/xds/ack.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package xds diff --git a/pkg/envoy/xds/ack_test.go b/pkg/envoy/xds/ack_test.go index f5efa0ca75b91..8219f30973033 100644 --- a/pkg/envoy/xds/ack_test.go +++ b/pkg/envoy/xds/ack_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/envoy/xds/cache.go b/pkg/envoy/xds/cache.go index b188350564c63..31ef55b9e0ae3 100644 --- a/pkg/envoy/xds/cache.go +++ b/pkg/envoy/xds/cache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package xds diff --git a/pkg/envoy/xds/doc.go b/pkg/envoy/xds/doc.go index eefed83c3ba4a..9d672a9a8061f 100644 --- a/pkg/envoy/xds/doc.go +++ b/pkg/envoy/xds/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package xds is an implementation of Envoy's xDS (Discovery Service) // protocol. diff --git a/pkg/envoy/xds/log.go b/pkg/envoy/xds/log.go index b042651dc06d7..2b1a07366264c 100644 --- a/pkg/envoy/xds/log.go +++ b/pkg/envoy/xds/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package xds diff --git a/pkg/envoy/xds/node.go b/pkg/envoy/xds/node.go index 13d9c17a723d8..6d3fdc1778785 100644 --- a/pkg/envoy/xds/node.go +++ b/pkg/envoy/xds/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package xds diff --git a/pkg/envoy/xds/node_test.go b/pkg/envoy/xds/node_test.go index 88b0acda335cb..74a9b33c3d8a0 100644 --- a/pkg/envoy/xds/node_test.go +++ b/pkg/envoy/xds/node_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/envoy/xds/server.go b/pkg/envoy/xds/server.go index 653a17c5873a3..fc54d36a05cce 100644 --- a/pkg/envoy/xds/server.go +++ b/pkg/envoy/xds/server.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package xds diff --git a/pkg/envoy/xds/server_e2e_test.go b/pkg/envoy/xds/server_e2e_test.go index 42c9176df9478..18a80ffb82dc4 100644 --- a/pkg/envoy/xds/server_e2e_test.go +++ b/pkg/envoy/xds/server_e2e_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/envoy/xds/set.go b/pkg/envoy/xds/set.go index 5c05690d23d17..7c4a6cd4eecce 100644 --- a/pkg/envoy/xds/set.go +++ b/pkg/envoy/xds/set.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package xds diff --git a/pkg/envoy/xds/stream.go b/pkg/envoy/xds/stream.go index 959ed9bca2ced..1153d592de731 100644 --- a/pkg/envoy/xds/stream.go +++ b/pkg/envoy/xds/stream.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package xds diff --git a/pkg/envoy/xds/watcher.go b/pkg/envoy/xds/watcher.go index 3c001ed1a80c8..6a55a3c74d936 100644 --- a/pkg/envoy/xds/watcher.go +++ b/pkg/envoy/xds/watcher.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package xds diff --git a/pkg/eventqueue/doc.go b/pkg/eventqueue/doc.go index e15ec146cb065..62b82c19d1c0f 100644 --- a/pkg/eventqueue/doc.go +++ b/pkg/eventqueue/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package eventqueue implements a queue-based system for event processing in a // generic fashion in a first-in, first-out manner. diff --git a/pkg/eventqueue/eventqueue.go b/pkg/eventqueue/eventqueue.go index aec0bae31fed8..b3e609d0770aa 100644 --- a/pkg/eventqueue/eventqueue.go +++ b/pkg/eventqueue/eventqueue.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package eventqueue diff --git a/pkg/eventqueue/eventqueue_test.go b/pkg/eventqueue/eventqueue_test.go index 621cfecea54fc..25d685317cc07 100644 --- a/pkg/eventqueue/eventqueue_test.go +++ b/pkg/eventqueue/eventqueue_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/flowdebug/flowdebug.go b/pkg/flowdebug/flowdebug.go index e838a4b83aa31..b9bcd4eeb2260 100644 --- a/pkg/flowdebug/flowdebug.go +++ b/pkg/flowdebug/flowdebug.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package flowdebug diff --git a/pkg/fqdn/cache.go b/pkg/fqdn/cache.go index fd61d61e4a072..a9be92a2e5c0c 100644 --- a/pkg/fqdn/cache.go +++ b/pkg/fqdn/cache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package fqdn diff --git a/pkg/fqdn/cache_test.go b/pkg/fqdn/cache_test.go index 4b8fb6bb0d2ba..562942e67a16b 100644 --- a/pkg/fqdn/cache_test.go +++ b/pkg/fqdn/cache_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/fqdn/config.go b/pkg/fqdn/config.go index 462fa08d88d3e..f9b97a26b4998 100644 --- a/pkg/fqdn/config.go +++ b/pkg/fqdn/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package fqdn diff --git a/pkg/fqdn/dns/dns.go b/pkg/fqdn/dns/dns.go index d4a2c7f2521db..90ad5166ceed8 100644 --- a/pkg/fqdn/dns/dns.go +++ b/pkg/fqdn/dns/dns.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // // Based on code from github.com/miekg/dns which is: // diff --git a/pkg/fqdn/dns/dns_test.go b/pkg/fqdn/dns/dns_test.go index a9cc876830b90..cb7091c0ad5c8 100644 --- a/pkg/fqdn/dns/dns_test.go +++ b/pkg/fqdn/dns/dns_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/fqdn/dnsproxy/helpers.go b/pkg/fqdn/dnsproxy/helpers.go index 9b0b653128361..da3059c1ce8a2 100644 --- a/pkg/fqdn/dnsproxy/helpers.go +++ b/pkg/fqdn/dnsproxy/helpers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package dnsproxy diff --git a/pkg/fqdn/dnsproxy/helpers_test.go b/pkg/fqdn/dnsproxy/helpers_test.go index 81b4502c49191..ee4af0213898b 100644 --- a/pkg/fqdn/dnsproxy/helpers_test.go +++ b/pkg/fqdn/dnsproxy/helpers_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/fqdn/dnsproxy/log.go b/pkg/fqdn/dnsproxy/log.go index 5f8bfb29ef2a1..a246c2f710493 100644 --- a/pkg/fqdn/dnsproxy/log.go +++ b/pkg/fqdn/dnsproxy/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package dnsproxy diff --git a/pkg/fqdn/dnsproxy/proxy.go b/pkg/fqdn/dnsproxy/proxy.go index 6b43a595486ad..2c3f5cbd90a47 100644 --- a/pkg/fqdn/dnsproxy/proxy.go +++ b/pkg/fqdn/dnsproxy/proxy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package dnsproxy diff --git a/pkg/fqdn/dnsproxy/proxy_test.go b/pkg/fqdn/dnsproxy/proxy_test.go index 86f5d123d156f..be4fa85d3fee4 100644 --- a/pkg/fqdn/dnsproxy/proxy_test.go +++ b/pkg/fqdn/dnsproxy/proxy_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/fqdn/dnsproxy/udp.go b/pkg/fqdn/dnsproxy/udp.go index 7dc53a606689a..27eeb52ad1527 100644 --- a/pkg/fqdn/dnsproxy/udp.go +++ b/pkg/fqdn/dnsproxy/udp.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package dnsproxy diff --git a/pkg/fqdn/doc.go b/pkg/fqdn/doc.go index 7fdbe9746221a..05f781465fce8 100644 --- a/pkg/fqdn/doc.go +++ b/pkg/fqdn/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package fqdn handles some of the DNS-based policy functions: // - A DNS lookup cache used to populate toFQDNs rules in the policy layer. diff --git a/pkg/fqdn/fqdn_test.go b/pkg/fqdn/fqdn_test.go index 698844cece74a..683b43e80eb3f 100644 --- a/pkg/fqdn/fqdn_test.go +++ b/pkg/fqdn/fqdn_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/fqdn/helpers.go b/pkg/fqdn/helpers.go index c89acb758d057..d5261667fecd2 100644 --- a/pkg/fqdn/helpers.go +++ b/pkg/fqdn/helpers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package fqdn diff --git a/pkg/fqdn/helpers_test.go b/pkg/fqdn/helpers_test.go index 19d805816cc0b..ea5a4e5e8b0c8 100644 --- a/pkg/fqdn/helpers_test.go +++ b/pkg/fqdn/helpers_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/fqdn/log.go b/pkg/fqdn/log.go index d2c596fc9b934..3d7d56efc9727 100644 --- a/pkg/fqdn/log.go +++ b/pkg/fqdn/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package fqdn diff --git a/pkg/fqdn/lookup.go b/pkg/fqdn/lookup.go index e3176aab2485f..113d6ee5f2752 100644 --- a/pkg/fqdn/lookup.go +++ b/pkg/fqdn/lookup.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package fqdn diff --git a/pkg/fqdn/matchpattern/matchpattern.go b/pkg/fqdn/matchpattern/matchpattern.go index 56961dfa0350e..b961ac09c2846 100644 --- a/pkg/fqdn/matchpattern/matchpattern.go +++ b/pkg/fqdn/matchpattern/matchpattern.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package matchpattern diff --git a/pkg/fqdn/matchpattern/matchpattern_test.go b/pkg/fqdn/matchpattern/matchpattern_test.go index 2a73f7b25d78a..c02c0ed44807c 100644 --- a/pkg/fqdn/matchpattern/matchpattern_test.go +++ b/pkg/fqdn/matchpattern/matchpattern_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/fqdn/name_manager.go b/pkg/fqdn/name_manager.go index ffb180078102c..5dea705fbfd92 100644 --- a/pkg/fqdn/name_manager.go +++ b/pkg/fqdn/name_manager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package fqdn diff --git a/pkg/fqdn/name_manager_test.go b/pkg/fqdn/name_manager_test.go index 35aae2aca7d49..f704e8fb8b61c 100644 --- a/pkg/fqdn/name_manager_test.go +++ b/pkg/fqdn/name_manager_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/fqdn/proxy/proxy.go b/pkg/fqdn/proxy/proxy.go index e8d47e63d403c..dca0291a8cacd 100644 --- a/pkg/fqdn/proxy/proxy.go +++ b/pkg/fqdn/proxy/proxy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package proxy diff --git a/pkg/fqdn/restore/restore.go b/pkg/fqdn/restore/restore.go index 678bb4bc62590..cffcb241295b0 100644 --- a/pkg/fqdn/restore/restore.go +++ b/pkg/fqdn/restore/restore.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // The restore package provides data structures important to restoring // DNS proxy rules. This package serves as a central source for these diff --git a/pkg/health/client/client.go b/pkg/health/client/client.go index a40fa0937b51d..87187ab0057c6 100644 --- a/pkg/health/client/client.go +++ b/pkg/health/client/client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package client diff --git a/pkg/health/client/client_test.go b/pkg/health/client/client_test.go index 40c5bafb77cb0..df9f08422564d 100644 --- a/pkg/health/client/client_test.go +++ b/pkg/health/client/client_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/health/defaults/defaults.go b/pkg/health/defaults/defaults.go index 1cde9dad7f90e..d84cecd2c58d3 100644 --- a/pkg/health/defaults/defaults.go +++ b/pkg/health/defaults/defaults.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package defaults diff --git a/pkg/health/probe/probe.go b/pkg/health/probe/probe.go index 30e70c661cb60..cd3a250cab395 100644 --- a/pkg/health/probe/probe.go +++ b/pkg/health/probe/probe.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package probe diff --git a/pkg/health/probe/responder/responder.go b/pkg/health/probe/responder/responder.go index a799ff7232007..6fdba1324fd98 100644 --- a/pkg/health/probe/responder/responder.go +++ b/pkg/health/probe/responder/responder.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package responder diff --git a/pkg/health/server/health.go b/pkg/health/server/health.go index 04967d67b734a..68ee484d4e625 100644 --- a/pkg/health/server/health.go +++ b/pkg/health/server/health.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package server diff --git a/pkg/health/server/health_linux.go b/pkg/health/server/health_linux.go index a85057e0e2371..28cd1205dc828 100644 --- a/pkg/health/server/health_linux.go +++ b/pkg/health/server/health_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package server diff --git a/pkg/health/server/health_unspecified.go b/pkg/health/server/health_unspecified.go index 7c750acbc4dde..f39a86a928a84 100644 --- a/pkg/health/server/health_unspecified.go +++ b/pkg/health/server/health_unspecified.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !linux // +build !linux diff --git a/pkg/health/server/node.go b/pkg/health/server/node.go index e9047050f0d65..b5f8da5fecf0f 100644 --- a/pkg/health/server/node.go +++ b/pkg/health/server/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package server diff --git a/pkg/health/server/prober.go b/pkg/health/server/prober.go index 3075022778a26..525bb8325c717 100644 --- a/pkg/health/server/prober.go +++ b/pkg/health/server/prober.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package server diff --git a/pkg/health/server/prober_test.go b/pkg/health/server/prober_test.go index 53e9f6f9df34d..839f9bc975493 100644 --- a/pkg/health/server/prober_test.go +++ b/pkg/health/server/prober_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/health/server/server.go b/pkg/health/server/server.go index b069ba5db3997..4226d463817d9 100644 --- a/pkg/health/server/server.go +++ b/pkg/health/server/server.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package server diff --git a/pkg/health/server/server_test.go b/pkg/health/server/server_test.go index 278d16c1acd4b..ab72bbd020028 100644 --- a/pkg/health/server/server_test.go +++ b/pkg/health/server/server_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2022 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/health/server/status.go b/pkg/health/server/status.go index 40b556dd00214..cde57303372fa 100644 --- a/pkg/health/server/status.go +++ b/pkg/health/server/status.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package server diff --git a/pkg/hubble/build/version.go b/pkg/hubble/build/version.go index 17ff9bd8062cc..bc2a40d44406c 100644 --- a/pkg/hubble/build/version.go +++ b/pkg/hubble/build/version.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package build diff --git a/pkg/hubble/build/version_test.go b/pkg/hubble/build/version_test.go index 45086aa9c7aa7..b27ce08cee3e7 100644 --- a/pkg/hubble/build/version_test.go +++ b/pkg/hubble/build/version_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/hubble/defaults/defaults.go b/pkg/hubble/defaults/defaults.go index ed9de7cec1ca8..389787f361b75 100644 --- a/pkg/hubble/defaults/defaults.go +++ b/pkg/hubble/defaults/defaults.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package defaults diff --git a/pkg/hubble/exporter/exporter.go b/pkg/hubble/exporter/exporter.go index e822840eb1721..3bd1a3e37b1f6 100644 --- a/pkg/hubble/exporter/exporter.go +++ b/pkg/hubble/exporter/exporter.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package exporter diff --git a/pkg/hubble/exporter/exporter_test.go b/pkg/hubble/exporter/exporter_test.go index fa3e3685339fe..599cae57ba9be 100644 --- a/pkg/hubble/exporter/exporter_test.go +++ b/pkg/hubble/exporter/exporter_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/hubble/exporter/exporteroption/defaults.go b/pkg/hubble/exporter/exporteroption/defaults.go index dee3adc15a7f0..23b6bc6aebd6f 100644 --- a/pkg/hubble/exporter/exporteroption/defaults.go +++ b/pkg/hubble/exporter/exporteroption/defaults.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package exporteroption diff --git a/pkg/hubble/exporter/exporteroption/option.go b/pkg/hubble/exporter/exporteroption/option.go index 1a7e21c23f2e6..a272ecf39054c 100644 --- a/pkg/hubble/exporter/exporteroption/option.go +++ b/pkg/hubble/exporter/exporteroption/option.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package exporteroption diff --git a/pkg/hubble/filters/event_type_test.go b/pkg/hubble/filters/event_type_test.go index 67f6f78bc175f..5954406238bf0 100644 --- a/pkg/hubble/filters/event_type_test.go +++ b/pkg/hubble/filters/event_type_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/hubble/monitor/consumer.go b/pkg/hubble/monitor/consumer.go index 6012c1908494b..ee341d4910a25 100644 --- a/pkg/hubble/monitor/consumer.go +++ b/pkg/hubble/monitor/consumer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package monitor diff --git a/pkg/hubble/monitor/consumer_test.go b/pkg/hubble/monitor/consumer_test.go index aa527d73c3552..bbda25b343ca0 100644 --- a/pkg/hubble/monitor/consumer_test.go +++ b/pkg/hubble/monitor/consumer_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/hubble/observer/types/types.go b/pkg/hubble/observer/types/types.go index c83a96e17581b..61b53e59e2e55 100644 --- a/pkg/hubble/observer/types/types.go +++ b/pkg/hubble/observer/types/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/hubble/peer/buffer.go b/pkg/hubble/peer/buffer.go index 05f905e2911e6..1509ec3f8824b 100644 --- a/pkg/hubble/peer/buffer.go +++ b/pkg/hubble/peer/buffer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package peer diff --git a/pkg/hubble/peer/buffer_test.go b/pkg/hubble/peer/buffer_test.go index 73d9ff3a26b27..93ecfd1048518 100644 --- a/pkg/hubble/peer/buffer_test.go +++ b/pkg/hubble/peer/buffer_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/hubble/peer/handler.go b/pkg/hubble/peer/handler.go index 580d83ec81590..76529c32a30c2 100644 --- a/pkg/hubble/peer/handler.go +++ b/pkg/hubble/peer/handler.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package peer diff --git a/pkg/hubble/peer/handler_test.go b/pkg/hubble/peer/handler_test.go index dd71aac5aca32..be5e3337fcfb7 100644 --- a/pkg/hubble/peer/handler_test.go +++ b/pkg/hubble/peer/handler_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/hubble/peer/service.go b/pkg/hubble/peer/service.go index 9a55a2e545086..ac014ba0ace89 100644 --- a/pkg/hubble/peer/service.go +++ b/pkg/hubble/peer/service.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package peer diff --git a/pkg/hubble/peer/service_test.go b/pkg/hubble/peer/service_test.go index 3716c6bfa64e8..c053ec7048e3f 100644 --- a/pkg/hubble/peer/service_test.go +++ b/pkg/hubble/peer/service_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/hubble/peer/serviceoption/defaults.go b/pkg/hubble/peer/serviceoption/defaults.go index 7761bac7d1876..df6452a04408d 100644 --- a/pkg/hubble/peer/serviceoption/defaults.go +++ b/pkg/hubble/peer/serviceoption/defaults.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package serviceoption diff --git a/pkg/hubble/peer/serviceoption/option.go b/pkg/hubble/peer/serviceoption/option.go index 6e68d5c7685a8..ae95cc1209c64 100644 --- a/pkg/hubble/peer/serviceoption/option.go +++ b/pkg/hubble/peer/serviceoption/option.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package serviceoption diff --git a/pkg/hubble/peer/types/client.go b/pkg/hubble/peer/types/client.go index 648970c1349d4..bc5a7e6a0c475 100644 --- a/pkg/hubble/peer/types/client.go +++ b/pkg/hubble/peer/types/client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/hubble/peer/types/peer.go b/pkg/hubble/peer/types/peer.go index c2e0e4802290c..333977ceacc87 100644 --- a/pkg/hubble/peer/types/peer.go +++ b/pkg/hubble/peer/types/peer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/hubble/peer/types/peer_test.go b/pkg/hubble/peer/types/peer_test.go index 5a747840c76e2..2e685d78e7378 100644 --- a/pkg/hubble/peer/types/peer_test.go +++ b/pkg/hubble/peer/types/peer_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/hubble/recorder/pcap/pcap.go b/pkg/hubble/recorder/pcap/pcap.go index 7152c86479bef..d76424b2db1c5 100644 --- a/pkg/hubble/recorder/pcap/pcap.go +++ b/pkg/hubble/recorder/pcap/pcap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package pcap diff --git a/pkg/hubble/recorder/recorderoption/option.go b/pkg/hubble/recorder/recorderoption/option.go index 654992aa930d0..8211d7c413be7 100644 --- a/pkg/hubble/recorder/recorderoption/option.go +++ b/pkg/hubble/recorder/recorderoption/option.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package recorderoption diff --git a/pkg/hubble/recorder/service.go b/pkg/hubble/recorder/service.go index 81c83fc8d1998..db2d432d86e21 100644 --- a/pkg/hubble/recorder/service.go +++ b/pkg/hubble/recorder/service.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package recorder diff --git a/pkg/hubble/recorder/sink/dispatch.go b/pkg/hubble/recorder/sink/dispatch.go index ff2e97be9f7f2..a9111aa74d431 100644 --- a/pkg/hubble/recorder/sink/dispatch.go +++ b/pkg/hubble/recorder/sink/dispatch.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package sink diff --git a/pkg/hubble/recorder/sink/sink.go b/pkg/hubble/recorder/sink/sink.go index e1face19a68b7..56ef6f050e066 100644 --- a/pkg/hubble/recorder/sink/sink.go +++ b/pkg/hubble/recorder/sink/sink.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package sink diff --git a/pkg/hubble/relay/defaults/defaults.go b/pkg/hubble/relay/defaults/defaults.go index 738062e6b44b3..4e8bcaa88fc0e 100644 --- a/pkg/hubble/relay/defaults/defaults.go +++ b/pkg/hubble/relay/defaults/defaults.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package defaults diff --git a/pkg/hubble/relay/observer/observer.go b/pkg/hubble/relay/observer/observer.go index bbe5de3427e4e..8ae61202e3ee9 100644 --- a/pkg/hubble/relay/observer/observer.go +++ b/pkg/hubble/relay/observer/observer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package observer diff --git a/pkg/hubble/relay/observer/option.go b/pkg/hubble/relay/observer/option.go index 3866d47ceb1c1..84c9f165b514a 100644 --- a/pkg/hubble/relay/observer/option.go +++ b/pkg/hubble/relay/observer/option.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package observer diff --git a/pkg/hubble/relay/observer/server.go b/pkg/hubble/relay/observer/server.go index 490a6d9800d7e..bd9472b0fe3eb 100644 --- a/pkg/hubble/relay/observer/server.go +++ b/pkg/hubble/relay/observer/server.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package observer diff --git a/pkg/hubble/relay/observer/server_test.go b/pkg/hubble/relay/observer/server_test.go index 1bb399a90142e..1f96f2196a50c 100644 --- a/pkg/hubble/relay/observer/server_test.go +++ b/pkg/hubble/relay/observer/server_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/hubble/relay/pool/backoff.go b/pkg/hubble/relay/pool/backoff.go index f99ce48c7633f..d1093ef874c1a 100644 --- a/pkg/hubble/relay/pool/backoff.go +++ b/pkg/hubble/relay/pool/backoff.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package pool diff --git a/pkg/hubble/relay/pool/client.go b/pkg/hubble/relay/pool/client.go index e0564421128b5..60df7ec3ca760 100644 --- a/pkg/hubble/relay/pool/client.go +++ b/pkg/hubble/relay/pool/client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package pool diff --git a/pkg/hubble/relay/pool/manager.go b/pkg/hubble/relay/pool/manager.go index 542637604ca05..09858df7fa7a2 100644 --- a/pkg/hubble/relay/pool/manager.go +++ b/pkg/hubble/relay/pool/manager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package pool diff --git a/pkg/hubble/relay/pool/manager_test.go b/pkg/hubble/relay/pool/manager_test.go index a3bce57e242b3..1debb1aaadb9f 100644 --- a/pkg/hubble/relay/pool/manager_test.go +++ b/pkg/hubble/relay/pool/manager_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/hubble/relay/pool/option.go b/pkg/hubble/relay/pool/option.go index 6d8e3dd13858f..f6a1b87abc2ba 100644 --- a/pkg/hubble/relay/pool/option.go +++ b/pkg/hubble/relay/pool/option.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package pool diff --git a/pkg/hubble/relay/pool/types/client.go b/pkg/hubble/relay/pool/types/client.go index 76bb9dd2d08d6..bae4f52e0799f 100644 --- a/pkg/hubble/relay/pool/types/client.go +++ b/pkg/hubble/relay/pool/types/client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/hubble/relay/server/option.go b/pkg/hubble/relay/server/option.go index defbfb8330af8..6db37110b3296 100644 --- a/pkg/hubble/relay/server/option.go +++ b/pkg/hubble/relay/server/option.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package server diff --git a/pkg/hubble/relay/server/server.go b/pkg/hubble/relay/server/server.go index c41935ec8dc75..f4d7ed7cf187a 100644 --- a/pkg/hubble/relay/server/server.go +++ b/pkg/hubble/relay/server/server.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package server diff --git a/pkg/iana/svcname.go b/pkg/iana/svcname.go index 0c479b7ff84ac..f888b87e16168 100644 --- a/pkg/iana/svcname.go +++ b/pkg/iana/svcname.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package iana diff --git a/pkg/iana/svcname_test.go b/pkg/iana/svcname_test.go index 9fffd96423dd2..edd2dff186218 100644 --- a/pkg/iana/svcname_test.go +++ b/pkg/iana/svcname_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/identity/cache/allocation_test.go b/pkg/identity/cache/allocation_test.go index 314570f1c999a..2cad07a63459f 100644 --- a/pkg/identity/cache/allocation_test.go +++ b/pkg/identity/cache/allocation_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/identity/cache/allocator.go b/pkg/identity/cache/allocator.go index 0fff25fd6d5d5..c5e40f50e0014 100644 --- a/pkg/identity/cache/allocator.go +++ b/pkg/identity/cache/allocator.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package cache diff --git a/pkg/identity/cache/cache.go b/pkg/identity/cache/cache.go index eea9bfd6a0338..b5d6e420d4938 100644 --- a/pkg/identity/cache/cache.go +++ b/pkg/identity/cache/cache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package cache diff --git a/pkg/identity/cache/cache_test.go b/pkg/identity/cache/cache_test.go index 6dd618473b7aa..0c9a9b1ac657e 100644 --- a/pkg/identity/cache/cache_test.go +++ b/pkg/identity/cache/cache_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/identity/cache/local.go b/pkg/identity/cache/local.go index a18e699389864..209bf40b8729c 100644 --- a/pkg/identity/cache/local.go +++ b/pkg/identity/cache/local.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cache diff --git a/pkg/identity/cache/local_test.go b/pkg/identity/cache/local_test.go index 506a0d3ecff52..eab772dc2ed06 100644 --- a/pkg/identity/cache/local_test.go +++ b/pkg/identity/cache/local_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/identity/doc.go b/pkg/identity/doc.go index 3010fb409c4e3..9463d59345a27 100644 --- a/pkg/identity/doc.go +++ b/pkg/identity/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package identity contains code for managing security identities in Cilium. // +groupName=pkg diff --git a/pkg/identity/identity.go b/pkg/identity/identity.go index eeeb392cbcd1e..4ef5f81a95ac0 100644 --- a/pkg/identity/identity.go +++ b/pkg/identity/identity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package identity diff --git a/pkg/identity/identity_test.go b/pkg/identity/identity_test.go index 95367b69260c8..9800e567b818f 100644 --- a/pkg/identity/identity_test.go +++ b/pkg/identity/identity_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/identity/identitymanager/doc.go b/pkg/identity/identitymanager/doc.go index 1e6d656e568b3..fbf1b56faeca4 100644 --- a/pkg/identity/identitymanager/doc.go +++ b/pkg/identity/identitymanager/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package identitymanager tracks which global identities are being used by // the currently running cilium-agent diff --git a/pkg/identity/identitymanager/log.go b/pkg/identity/identitymanager/log.go index cec504c8fd73e..b038e68ce139e 100644 --- a/pkg/identity/identitymanager/log.go +++ b/pkg/identity/identitymanager/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package identitymanager diff --git a/pkg/identity/identitymanager/manager.go b/pkg/identity/identitymanager/manager.go index 9ef1db0371f2c..81766a099b853 100644 --- a/pkg/identity/identitymanager/manager.go +++ b/pkg/identity/identitymanager/manager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package identitymanager diff --git a/pkg/identity/identitymanager/manager_test.go b/pkg/identity/identitymanager/manager_test.go index 494dbfca3d864..ba71d2f0ddd92 100644 --- a/pkg/identity/identitymanager/manager_test.go +++ b/pkg/identity/identitymanager/manager_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/identity/identitymanager/observer.go b/pkg/identity/identitymanager/observer.go index 3e2d3c13bcd46..c5eacc078cce8 100644 --- a/pkg/identity/identitymanager/observer.go +++ b/pkg/identity/identitymanager/observer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package identitymanager diff --git a/pkg/identity/model/identity.go b/pkg/identity/model/identity.go index 559aaa547bd15..5723a542b2346 100644 --- a/pkg/identity/model/identity.go +++ b/pkg/identity/model/identity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package model diff --git a/pkg/identity/numericidentity.go b/pkg/identity/numericidentity.go index e1f626c7c1c08..dbe11590b10d6 100644 --- a/pkg/identity/numericidentity.go +++ b/pkg/identity/numericidentity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package identity diff --git a/pkg/identity/numericidentity_test.go b/pkg/identity/numericidentity_test.go index b1fd8e253a67b..1b4022a0c19b3 100644 --- a/pkg/identity/numericidentity_test.go +++ b/pkg/identity/numericidentity_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/identity/reserved.go b/pkg/identity/reserved.go index 9e11e2e016a8f..bcacdb7cfa26d 100644 --- a/pkg/identity/reserved.go +++ b/pkg/identity/reserved.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package identity diff --git a/pkg/idpool/idpool.go b/pkg/idpool/idpool.go index a9bc6ded376f1..0429b1d9cbec5 100644 --- a/pkg/idpool/idpool.go +++ b/pkg/idpool/idpool.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package idpool diff --git a/pkg/idpool/idpool_norace_test.go b/pkg/idpool/idpool_norace_test.go index c2d6c924b41a1..49f41461be3f3 100644 --- a/pkg/idpool/idpool_norace_test.go +++ b/pkg/idpool/idpool_norace_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && !race // +build !privileged_tests,!race diff --git a/pkg/idpool/idpool_race_test.go b/pkg/idpool/idpool_race_test.go index 8668be3e49f97..369d039fd1d9c 100644 --- a/pkg/idpool/idpool_race_test.go +++ b/pkg/idpool/idpool_race_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && race // +build !privileged_tests,race diff --git a/pkg/idpool/idpool_test.go b/pkg/idpool/idpool_test.go index f846e5e535032..c3f7b6a04802c 100644 --- a/pkg/idpool/idpool_test.go +++ b/pkg/idpool/idpool_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/inctimer/inctimer.go b/pkg/inctimer/inctimer.go index b84d5b90e0a71..91dbb900d713f 100644 --- a/pkg/inctimer/inctimer.go +++ b/pkg/inctimer/inctimer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package inctimer diff --git a/pkg/inctimer/inctimer_test.go b/pkg/inctimer/inctimer_test.go index 4a27e2ed3f65e..22f13878ec1f0 100644 --- a/pkg/inctimer/inctimer_test.go +++ b/pkg/inctimer/inctimer_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ip/cidr.go b/pkg/ip/cidr.go index c795b778193a2..bf72b5e0b1d65 100644 --- a/pkg/ip/cidr.go +++ b/pkg/ip/cidr.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package ip diff --git a/pkg/ip/doc.go b/pkg/ip/doc.go index f204bb2cb9990..182adadc44916 100644 --- a/pkg/ip/doc.go +++ b/pkg/ip/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium // Package ip is a library for performing manipulations on IPv4 and IPv6 addresses // and CIDR prefixes. diff --git a/pkg/ip/ip.go b/pkg/ip/ip.go index 0ae1f4b43810f..1ec869f17e1ad 100644 --- a/pkg/ip/ip.go +++ b/pkg/ip/ip.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package ip diff --git a/pkg/ip/ip_test.go b/pkg/ip/ip_test.go index 9b6d3fb77a162..419f565305948 100644 --- a/pkg/ip/ip_test.go +++ b/pkg/ip/ip_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipam/allocator.go b/pkg/ipam/allocator.go index 27c3383e13f43..edba82021700a 100644 --- a/pkg/ipam/allocator.go +++ b/pkg/ipam/allocator.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package ipam diff --git a/pkg/ipam/allocator/alibabacloud/alibabacloud.go b/pkg/ipam/allocator/alibabacloud/alibabacloud.go index e3d01ee5e8a2c..3550d322cc4bc 100644 --- a/pkg/ipam/allocator/alibabacloud/alibabacloud.go +++ b/pkg/ipam/allocator/alibabacloud/alibabacloud.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package alibabacloud diff --git a/pkg/ipam/allocator/allocator.go b/pkg/ipam/allocator/allocator.go index 649ae8495460b..421b402d2b23b 100644 --- a/pkg/ipam/allocator/allocator.go +++ b/pkg/ipam/allocator/allocator.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package allocator diff --git a/pkg/ipam/allocator/allocator_test.go b/pkg/ipam/allocator/allocator_test.go index 27059c1ad65e7..d157cfbdb4aea 100644 --- a/pkg/ipam/allocator/allocator_test.go +++ b/pkg/ipam/allocator/allocator_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipam/allocator/aws/aws.go b/pkg/ipam/allocator/aws/aws.go index 796faccb39a7e..78fa764c39676 100644 --- a/pkg/ipam/allocator/aws/aws.go +++ b/pkg/ipam/allocator/aws/aws.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package aws diff --git a/pkg/ipam/allocator/azure/azure.go b/pkg/ipam/allocator/azure/azure.go index 3d3cccb7dbfd8..76cb4a84c1739 100644 --- a/pkg/ipam/allocator/azure/azure.go +++ b/pkg/ipam/allocator/azure/azure.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package azure diff --git a/pkg/ipam/allocator/clusterpool/clusterpool.go b/pkg/ipam/allocator/clusterpool/clusterpool.go index b396fc9ccfec2..ec8552553602a 100644 --- a/pkg/ipam/allocator/clusterpool/clusterpool.go +++ b/pkg/ipam/allocator/clusterpool/clusterpool.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package clusterpool diff --git a/pkg/ipam/allocator/clusterpool/clusterpool_test.go b/pkg/ipam/allocator/clusterpool/clusterpool_test.go index e789b498e1fb7..cc82126d13b7e 100644 --- a/pkg/ipam/allocator/clusterpool/clusterpool_test.go +++ b/pkg/ipam/allocator/clusterpool/clusterpool_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipam/allocator/group.go b/pkg/ipam/allocator/group.go index 80bf71ecbee48..3daa58b758c57 100644 --- a/pkg/ipam/allocator/group.go +++ b/pkg/ipam/allocator/group.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package allocator diff --git a/pkg/ipam/allocator/group_test.go b/pkg/ipam/allocator/group_test.go index b0c6dafcfa49c..98bf32dd367c8 100644 --- a/pkg/ipam/allocator/group_test.go +++ b/pkg/ipam/allocator/group_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipam/allocator/noop.go b/pkg/ipam/allocator/noop.go index 94bdc8a3bfdd6..b9a31a3e2efca 100644 --- a/pkg/ipam/allocator/noop.go +++ b/pkg/ipam/allocator/noop.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package allocator diff --git a/pkg/ipam/allocator/noop_test.go b/pkg/ipam/allocator/noop_test.go index d490bc3a819e2..da32871327dc6 100644 --- a/pkg/ipam/allocator/noop_test.go +++ b/pkg/ipam/allocator/noop_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipam/allocator/podcidr/podcidr.go b/pkg/ipam/allocator/podcidr/podcidr.go index 49feaebb4a0d3..5fcd270749bde 100644 --- a/pkg/ipam/allocator/podcidr/podcidr.go +++ b/pkg/ipam/allocator/podcidr/podcidr.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package podcidr diff --git a/pkg/ipam/allocator/podcidr/podcidr_test.go b/pkg/ipam/allocator/podcidr/podcidr_test.go index c86916722bde6..cc4ff582df5a2 100644 --- a/pkg/ipam/allocator/podcidr/podcidr_test.go +++ b/pkg/ipam/allocator/podcidr/podcidr_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipam/allocator/pool_allocator.go b/pkg/ipam/allocator/pool_allocator.go index 855c360e7b4d9..72e80d7d0cf22 100644 --- a/pkg/ipam/allocator/pool_allocator.go +++ b/pkg/ipam/allocator/pool_allocator.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package allocator diff --git a/pkg/ipam/allocator/pool_allocator_test.go b/pkg/ipam/allocator/pool_allocator_test.go index 50c82e863f704..ee4beca966205 100644 --- a/pkg/ipam/allocator/pool_allocator_test.go +++ b/pkg/ipam/allocator/pool_allocator_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipam/allocator/provider.go b/pkg/ipam/allocator/provider.go index e021a5136581b..fc9eae3d89535 100644 --- a/pkg/ipam/allocator/provider.go +++ b/pkg/ipam/allocator/provider.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package allocator diff --git a/pkg/ipam/allocator_test.go b/pkg/ipam/allocator_test.go index 9ffa612123cbe..cdd8e12c0f1c5 100644 --- a/pkg/ipam/allocator_test.go +++ b/pkg/ipam/allocator_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_test // +build !privileged_test diff --git a/pkg/ipam/blacklist.go b/pkg/ipam/blacklist.go index 0b561414b9a80..32af615667d96 100644 --- a/pkg/ipam/blacklist.go +++ b/pkg/ipam/blacklist.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package ipam diff --git a/pkg/ipam/crd.go b/pkg/ipam/crd.go index 6e03c3ffba4b3..d3f0d587b10d1 100644 --- a/pkg/ipam/crd.go +++ b/pkg/ipam/crd.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package ipam diff --git a/pkg/ipam/crd_eni.go b/pkg/ipam/crd_eni.go index eaa8614c6c735..7df2e2889d1f5 100644 --- a/pkg/ipam/crd_eni.go +++ b/pkg/ipam/crd_eni.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package ipam diff --git a/pkg/ipam/crd_test.go b/pkg/ipam/crd_test.go index 95f07044d495c..3a3f529ad697d 100644 --- a/pkg/ipam/crd_test.go +++ b/pkg/ipam/crd_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipam/doc.go b/pkg/ipam/doc.go index 50504bfab6d61..9e3c49083dca7 100644 --- a/pkg/ipam/doc.go +++ b/pkg/ipam/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium // Package ipam handles address allocation management package ipam diff --git a/pkg/ipam/hostscope.go b/pkg/ipam/hostscope.go index d248cc757bd6d..7bf0c014a45b6 100644 --- a/pkg/ipam/hostscope.go +++ b/pkg/ipam/hostscope.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package ipam diff --git a/pkg/ipam/ipam.go b/pkg/ipam/ipam.go index a48ebeb7982e4..0f03dab7b4622 100644 --- a/pkg/ipam/ipam.go +++ b/pkg/ipam/ipam.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package ipam diff --git a/pkg/ipam/ipam_test.go b/pkg/ipam/ipam_test.go index df25ed5cd0504..681c7f9b05b3b 100644 --- a/pkg/ipam/ipam_test.go +++ b/pkg/ipam/ipam_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipam/metrics/metrics.go b/pkg/ipam/metrics/metrics.go index 9f729412a887b..6356b69c33356 100644 --- a/pkg/ipam/metrics/metrics.go +++ b/pkg/ipam/metrics/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package metrics diff --git a/pkg/ipam/metrics/mock/mock.go b/pkg/ipam/metrics/mock/mock.go index 421d572fceae4..a6941c8dcb6e8 100644 --- a/pkg/ipam/metrics/mock/mock.go +++ b/pkg/ipam/metrics/mock/mock.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package mock diff --git a/pkg/ipam/metrics/mock/mock_test.go b/pkg/ipam/metrics/mock/mock_test.go index 68326d996fddf..adeae56f85472 100644 --- a/pkg/ipam/metrics/mock/mock_test.go +++ b/pkg/ipam/metrics/mock/mock_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipam/node.go b/pkg/ipam/node.go index 082d455272984..baac5d3b56273 100644 --- a/pkg/ipam/node.go +++ b/pkg/ipam/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium // Copyright 2017 Lyft, Inc. package ipam diff --git a/pkg/ipam/node_manager.go b/pkg/ipam/node_manager.go index 98e0ef379f698..c40f9fed415f4 100644 --- a/pkg/ipam/node_manager.go +++ b/pkg/ipam/node_manager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium // Copyright 2017 Lyft, Inc. package ipam diff --git a/pkg/ipam/node_manager_test.go b/pkg/ipam/node_manager_test.go index 6a8b73233d649..d7a8dee151f53 100644 --- a/pkg/ipam/node_manager_test.go +++ b/pkg/ipam/node_manager_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipam/node_test.go b/pkg/ipam/node_test.go index f360a49e9586e..5cf1ca7ba1afa 100644 --- a/pkg/ipam/node_test.go +++ b/pkg/ipam/node_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipam/option/option.go b/pkg/ipam/option/option.go index dd65d41ba59cc..0ee7534d1a6f8 100644 --- a/pkg/ipam/option/option.go +++ b/pkg/ipam/option/option.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package option diff --git a/pkg/ipam/types.go b/pkg/ipam/types.go index d49bfe9d7a67e..bafbc7160febe 100644 --- a/pkg/ipam/types.go +++ b/pkg/ipam/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package ipam diff --git a/pkg/ipam/types/doc.go b/pkg/ipam/types/doc.go index 159dda229c9cc..e9d435b8da47a 100644 --- a/pkg/ipam/types/doc.go +++ b/pkg/ipam/types/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // +k8s:deepcopy-gen=package,register // +k8s:openapi-gen=true diff --git a/pkg/ipam/types/types.go b/pkg/ipam/types/types.go index 52bdfc0cf25c4..066747f306f23 100644 --- a/pkg/ipam/types/types.go +++ b/pkg/ipam/types/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/ipam/types/types_test.go b/pkg/ipam/types/types_test.go index ee2a099b8ccc0..670b0b450394f 100644 --- a/pkg/ipam/types/types_test.go +++ b/pkg/ipam/types/types_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipam/types/zz_generated.deepcopy.go b/pkg/ipam/types/zz_generated.deepcopy.go index 768ba49e2874a..b5b295cffc3f9 100644 --- a/pkg/ipam/types/zz_generated.deepcopy.go +++ b/pkg/ipam/types/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/ipam/types/zz_generated.deepequal.go b/pkg/ipam/types/zz_generated.deepequal.go index debd7a386178f..514ae963a5e5e 100644 --- a/pkg/ipam/types/zz_generated.deepequal.go +++ b/pkg/ipam/types/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/ipcache/cidr.go b/pkg/ipcache/cidr.go index 591ab5736d2a0..75c22b36b76db 100644 --- a/pkg/ipcache/cidr.go +++ b/pkg/ipcache/cidr.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package ipcache diff --git a/pkg/ipcache/config.go b/pkg/ipcache/config.go index e17ecd8f1e675..e8c8c961efc6a 100644 --- a/pkg/ipcache/config.go +++ b/pkg/ipcache/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package ipcache diff --git a/pkg/ipcache/doc.go b/pkg/ipcache/doc.go index d7144d2735556..795c547929304 100644 --- a/pkg/ipcache/doc.go +++ b/pkg/ipcache/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package ipcache provides a local cache of the mapping of IPs of endpoints // managed by Cilium to their corresponding security identities. diff --git a/pkg/ipcache/errors.go b/pkg/ipcache/errors.go index caff6833c83d0..b7253792d5302 100644 --- a/pkg/ipcache/errors.go +++ b/pkg/ipcache/errors.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package ipcache diff --git a/pkg/ipcache/fake/ipcache.go b/pkg/ipcache/fake/ipcache.go index 861034a1a4ceb..3d02b549b223c 100644 --- a/pkg/ipcache/fake/ipcache.go +++ b/pkg/ipcache/fake/ipcache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipcache/fake/ipcache_test.go b/pkg/ipcache/fake/ipcache_test.go index 06bcb235d8057..67e5b1118203c 100644 --- a/pkg/ipcache/fake/ipcache_test.go +++ b/pkg/ipcache/fake/ipcache_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipcache/ipcache.go b/pkg/ipcache/ipcache.go index 0144a5dd1c2d5..a3cd29b0cada3 100644 --- a/pkg/ipcache/ipcache.go +++ b/pkg/ipcache/ipcache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package ipcache diff --git a/pkg/ipcache/ipcache_test.go b/pkg/ipcache/ipcache_test.go index 371eb87da54a7..22f5465ce5ece 100644 --- a/pkg/ipcache/ipcache_test.go +++ b/pkg/ipcache/ipcache_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipcache/kvstore.go b/pkg/ipcache/kvstore.go index 1f4b00e6833e0..9eeeb8245e661 100644 --- a/pkg/ipcache/kvstore.go +++ b/pkg/ipcache/kvstore.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package ipcache diff --git a/pkg/ipcache/listener.go b/pkg/ipcache/listener.go index b0780d8b09c79..a7ec19897797a 100644 --- a/pkg/ipcache/listener.go +++ b/pkg/ipcache/listener.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package ipcache diff --git a/pkg/ipcache/metadata.go b/pkg/ipcache/metadata.go index d017999eab317..1af6c0f137469 100644 --- a/pkg/ipcache/metadata.go +++ b/pkg/ipcache/metadata.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package ipcache diff --git a/pkg/ipcache/metadata_test.go b/pkg/ipcache/metadata_test.go index 314a7ee696f88..b6ec3e70009dc 100644 --- a/pkg/ipcache/metadata_test.go +++ b/pkg/ipcache/metadata_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/ipcache/types/entries.go b/pkg/ipcache/types/entries.go index 0181f92bbe215..d0e5ab6d76eb3 100644 --- a/pkg/ipcache/types/entries.go +++ b/pkg/ipcache/types/entries.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package ipcachetypes diff --git a/pkg/ipmasq/ipmasq.go b/pkg/ipmasq/ipmasq.go index 154992c3136b5..46e3ec356a1cc 100644 --- a/pkg/ipmasq/ipmasq.go +++ b/pkg/ipmasq/ipmasq.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package ipmasq diff --git a/pkg/ipmasq/ipmasq_test.go b/pkg/ipmasq/ipmasq_test.go index 7df9e435d5c99..cead9f0e20e27 100644 --- a/pkg/ipmasq/ipmasq_test.go +++ b/pkg/ipmasq/ipmasq_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/annotate.go b/pkg/k8s/annotate.go index be109d7129562..6396f04e92a77 100644 --- a/pkg/k8s/annotate.go +++ b/pkg/k8s/annotate.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/apis/cilium.io/client/register.go b/pkg/k8s/apis/cilium.io/client/register.go index ede134d7d9ab1..fdce23120c454 100644 --- a/pkg/k8s/apis/cilium.io/client/register.go +++ b/pkg/k8s/apis/cilium.io/client/register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package client diff --git a/pkg/k8s/apis/cilium.io/client/register_test.go b/pkg/k8s/apis/cilium.io/client/register_test.go index ac7764b34e1a4..241a16c273727 100644 --- a/pkg/k8s/apis/cilium.io/client/register_test.go +++ b/pkg/k8s/apis/cilium.io/client/register_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/apis/cilium.io/client/v1beta1.go b/pkg/k8s/apis/cilium.io/client/v1beta1.go index 92d6bb472e938..51af0b28e7bcf 100644 --- a/pkg/k8s/apis/cilium.io/client/v1beta1.go +++ b/pkg/k8s/apis/cilium.io/client/v1beta1.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package client diff --git a/pkg/k8s/apis/cilium.io/const.go b/pkg/k8s/apis/cilium.io/const.go index 7ec6dab3f8edc..691c2c9ed8882 100644 --- a/pkg/k8s/apis/cilium.io/const.go +++ b/pkg/k8s/apis/cilium.io/const.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package ciliumio diff --git a/pkg/k8s/apis/cilium.io/register.go b/pkg/k8s/apis/cilium.io/register.go index 12fda7f16168b..ebe01a137dada 100644 --- a/pkg/k8s/apis/cilium.io/register.go +++ b/pkg/k8s/apis/cilium.io/register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package ciliumio diff --git a/pkg/k8s/apis/cilium.io/utils/utils.go b/pkg/k8s/apis/cilium.io/utils/utils.go index fb298e2366d09..badcdfbdf4ace 100644 --- a/pkg/k8s/apis/cilium.io/utils/utils.go +++ b/pkg/k8s/apis/cilium.io/utils/utils.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package utils diff --git a/pkg/k8s/apis/cilium.io/utils/utils_test.go b/pkg/k8s/apis/cilium.io/utils/utils_test.go index fb9d63a584d0d..f00dcd4778fa6 100644 --- a/pkg/k8s/apis/cilium.io/utils/utils_test.go +++ b/pkg/k8s/apis/cilium.io/utils/utils_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/apis/cilium.io/v2/ccnp_types.go b/pkg/k8s/apis/cilium.io/v2/ccnp_types.go index 57e29a5ab94fc..14ff2c20c5518 100644 --- a/pkg/k8s/apis/cilium.io/v2/ccnp_types.go +++ b/pkg/k8s/apis/cilium.io/v2/ccnp_types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package v2 diff --git a/pkg/k8s/apis/cilium.io/v2/cew_types.go b/pkg/k8s/apis/cilium.io/v2/cew_types.go index 7436fe3056727..35f15d905fd4d 100644 --- a/pkg/k8s/apis/cilium.io/v2/cew_types.go +++ b/pkg/k8s/apis/cilium.io/v2/cew_types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package v2 diff --git a/pkg/k8s/apis/cilium.io/v2/clrp_types.go b/pkg/k8s/apis/cilium.io/v2/clrp_types.go index dd311680fb9c6..624b97a6d1acc 100644 --- a/pkg/k8s/apis/cilium.io/v2/clrp_types.go +++ b/pkg/k8s/apis/cilium.io/v2/clrp_types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package v2 diff --git a/pkg/k8s/apis/cilium.io/v2/cnp_types.go b/pkg/k8s/apis/cilium.io/v2/cnp_types.go index 82e92e66592ee..0eb184657814d 100644 --- a/pkg/k8s/apis/cilium.io/v2/cnp_types.go +++ b/pkg/k8s/apis/cilium.io/v2/cnp_types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package v2 diff --git a/pkg/k8s/apis/cilium.io/v2/doc.go b/pkg/k8s/apis/cilium.io/v2/doc.go index 3b2d5f68ddc16..8b8c1ed196902 100644 --- a/pkg/k8s/apis/cilium.io/v2/doc.go +++ b/pkg/k8s/apis/cilium.io/v2/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium // +k8s:deepcopy-gen=package,register // +k8s:openapi-gen=true diff --git a/pkg/k8s/apis/cilium.io/v2/errors.go b/pkg/k8s/apis/cilium.io/v2/errors.go index 8d22065edc52b..cc8a0653d5dac 100644 --- a/pkg/k8s/apis/cilium.io/v2/errors.go +++ b/pkg/k8s/apis/cilium.io/v2/errors.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package v2 diff --git a/pkg/k8s/apis/cilium.io/v2/register.go b/pkg/k8s/apis/cilium.io/v2/register.go index 4f7dba2d7b265..000eff089037f 100644 --- a/pkg/k8s/apis/cilium.io/v2/register.go +++ b/pkg/k8s/apis/cilium.io/v2/register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package v2 diff --git a/pkg/k8s/apis/cilium.io/v2/types.go b/pkg/k8s/apis/cilium.io/v2/types.go index 6ffd229601ed3..36d9fca8553d7 100644 --- a/pkg/k8s/apis/cilium.io/v2/types.go +++ b/pkg/k8s/apis/cilium.io/v2/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package v2 diff --git a/pkg/k8s/apis/cilium.io/v2/types_test.go b/pkg/k8s/apis/cilium.io/v2/types_test.go index 3a8a40380936c..8d8f651e8e827 100644 --- a/pkg/k8s/apis/cilium.io/v2/types_test.go +++ b/pkg/k8s/apis/cilium.io/v2/types_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/apis/cilium.io/v2/validator/logfields.go b/pkg/k8s/apis/cilium.io/v2/validator/logfields.go index f5e949aec6030..0edc8ad81af51 100644 --- a/pkg/k8s/apis/cilium.io/v2/validator/logfields.go +++ b/pkg/k8s/apis/cilium.io/v2/validator/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package validator diff --git a/pkg/k8s/apis/cilium.io/v2/validator/unknown_fields.go b/pkg/k8s/apis/cilium.io/v2/validator/unknown_fields.go index 5e7387256ffad..fd754913f406c 100644 --- a/pkg/k8s/apis/cilium.io/v2/validator/unknown_fields.go +++ b/pkg/k8s/apis/cilium.io/v2/validator/unknown_fields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package validator diff --git a/pkg/k8s/apis/cilium.io/v2/validator/unknown_fields_test.go b/pkg/k8s/apis/cilium.io/v2/validator/unknown_fields_test.go index 1961f0850e5fb..0c6f27bdb0302 100644 --- a/pkg/k8s/apis/cilium.io/v2/validator/unknown_fields_test.go +++ b/pkg/k8s/apis/cilium.io/v2/validator/unknown_fields_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/apis/cilium.io/v2/validator/validator.go b/pkg/k8s/apis/cilium.io/v2/validator/validator.go index 6494b831237df..75c888a803736 100644 --- a/pkg/k8s/apis/cilium.io/v2/validator/validator.go +++ b/pkg/k8s/apis/cilium.io/v2/validator/validator.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package validator diff --git a/pkg/k8s/apis/cilium.io/v2/validator/validator_test.go b/pkg/k8s/apis/cilium.io/v2/validator/validator_test.go index 85e379469da99..1036bbf1fb631 100644 --- a/pkg/k8s/apis/cilium.io/v2/validator/validator_test.go +++ b/pkg/k8s/apis/cilium.io/v2/validator/validator_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/apis/cilium.io/v2/zz_generated.deepcopy.go b/pkg/k8s/apis/cilium.io/v2/zz_generated.deepcopy.go index 67f2e42d31444..15cbc0a978047 100644 --- a/pkg/k8s/apis/cilium.io/v2/zz_generated.deepcopy.go +++ b/pkg/k8s/apis/cilium.io/v2/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/k8s/apis/cilium.io/v2/zz_generated.deepequal.go b/pkg/k8s/apis/cilium.io/v2/zz_generated.deepequal.go index 34d0ffac7d880..d73884a075823 100644 --- a/pkg/k8s/apis/cilium.io/v2/zz_generated.deepequal.go +++ b/pkg/k8s/apis/cilium.io/v2/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/k8s/apis/cilium.io/v2alpha1/doc.go b/pkg/k8s/apis/cilium.io/v2alpha1/doc.go index 076350fd4b971..d90d9acc80660 100644 --- a/pkg/k8s/apis/cilium.io/v2alpha1/doc.go +++ b/pkg/k8s/apis/cilium.io/v2alpha1/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium // +k8s:deepcopy-gen=package,register // +k8s:openapi-gen=true diff --git a/pkg/k8s/apis/cilium.io/v2alpha1/register.go b/pkg/k8s/apis/cilium.io/v2alpha1/register.go index 9650e32f8dc35..fcae6af4dfd94 100644 --- a/pkg/k8s/apis/cilium.io/v2alpha1/register.go +++ b/pkg/k8s/apis/cilium.io/v2alpha1/register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package v2alpha1 diff --git a/pkg/k8s/apis/cilium.io/v2alpha1/types.go b/pkg/k8s/apis/cilium.io/v2alpha1/types.go index 5a376a713529e..0011a4c422144 100644 --- a/pkg/k8s/apis/cilium.io/v2alpha1/types.go +++ b/pkg/k8s/apis/cilium.io/v2alpha1/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package v2alpha1 diff --git a/pkg/k8s/apis/cilium.io/v2alpha1/zz_generated.deepcopy.go b/pkg/k8s/apis/cilium.io/v2alpha1/zz_generated.deepcopy.go index e687ee1666147..b7ca05f799bec 100644 --- a/pkg/k8s/apis/cilium.io/v2alpha1/zz_generated.deepcopy.go +++ b/pkg/k8s/apis/cilium.io/v2alpha1/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/k8s/apis/cilium.io/v2alpha1/zz_generated.deepequal.go b/pkg/k8s/apis/cilium.io/v2alpha1/zz_generated.deepequal.go index ea009b884a3ef..b721375b0b15a 100644 --- a/pkg/k8s/apis/cilium.io/v2alpha1/zz_generated.deepequal.go +++ b/pkg/k8s/apis/cilium.io/v2alpha1/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/k8s/ccnpstatus.go b/pkg/k8s/ccnpstatus.go index 7950b5daa9a45..7d0f6459a453d 100644 --- a/pkg/k8s/ccnpstatus.go +++ b/pkg/k8s/ccnpstatus.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/client.go b/pkg/k8s/client.go index b33effaa42069..83644fe1e255f 100644 --- a/pkg/k8s/client.go +++ b/pkg/k8s/client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium // Package k8s abstracts all Kubernetes specific behaviour package k8s diff --git a/pkg/k8s/client/clientset/versioned/clientset.go b/pkg/k8s/client/clientset/versioned/clientset.go index 8f3fa94426ab0..e2c9c5a14aad8 100644 --- a/pkg/k8s/client/clientset/versioned/clientset.go +++ b/pkg/k8s/client/clientset/versioned/clientset.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/doc.go b/pkg/k8s/client/clientset/versioned/doc.go index 631303620c042..e40624f19aeb2 100644 --- a/pkg/k8s/client/clientset/versioned/doc.go +++ b/pkg/k8s/client/clientset/versioned/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/fake/clientset_generated.go b/pkg/k8s/client/clientset/versioned/fake/clientset_generated.go index df3a48b65624e..f39a5d25ec158 100644 --- a/pkg/k8s/client/clientset/versioned/fake/clientset_generated.go +++ b/pkg/k8s/client/clientset/versioned/fake/clientset_generated.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/fake/doc.go b/pkg/k8s/client/clientset/versioned/fake/doc.go index f62424e76ff5b..1da8cc9d5bb6f 100644 --- a/pkg/k8s/client/clientset/versioned/fake/doc.go +++ b/pkg/k8s/client/clientset/versioned/fake/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/fake/register.go b/pkg/k8s/client/clientset/versioned/fake/register.go index b8060112df834..135978d38cd76 100644 --- a/pkg/k8s/client/clientset/versioned/fake/register.go +++ b/pkg/k8s/client/clientset/versioned/fake/register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/scheme/doc.go b/pkg/k8s/client/clientset/versioned/scheme/doc.go index 5c3204fd079f7..ba34515351fff 100644 --- a/pkg/k8s/client/clientset/versioned/scheme/doc.go +++ b/pkg/k8s/client/clientset/versioned/scheme/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/scheme/register.go b/pkg/k8s/client/clientset/versioned/scheme/register.go index e1563ef8cf4f9..cb860b0e0f119 100644 --- a/pkg/k8s/client/clientset/versioned/scheme/register.go +++ b/pkg/k8s/client/clientset/versioned/scheme/register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/cilium.io_client.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/cilium.io_client.go index bee1da1de5783..cc2bc5d60f0f7 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/cilium.io_client.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/cilium.io_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumclusterwidenetworkpolicy.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumclusterwidenetworkpolicy.go index a0e61902c6ef9..56cde2626391c 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumclusterwidenetworkpolicy.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumclusterwidenetworkpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumendpoint.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumendpoint.go index 8c12f35664df2..3cd66d46ae52c 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumendpoint.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumendpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumexternalworkload.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumexternalworkload.go index ad9421fc8a305..261cbfeed176b 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumexternalworkload.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumexternalworkload.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumidentity.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumidentity.go index 3c42d11019410..c23f017263452 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumidentity.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumidentity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumlocalredirectpolicy.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumlocalredirectpolicy.go index cfb5fb9d17d70..9c839eb942c1f 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumlocalredirectpolicy.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumlocalredirectpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumnetworkpolicy.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumnetworkpolicy.go index de51c1dd78e42..f5d5ae60a88a8 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumnetworkpolicy.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumnetworkpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumnode.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumnode.go index 4efd3f4e4788e..9cc2e55550b86 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumnode.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/ciliumnode.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/doc.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/doc.go index 0150830d84e38..b3757ef24ef73 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/doc.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/doc.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/doc.go index e04510ae55705..57bd090efb093 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/doc.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_cilium.io_client.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_cilium.io_client.go index 1c480e7e3a1d3..96b8907ca12bb 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_cilium.io_client.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_cilium.io_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumclusterwidenetworkpolicy.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumclusterwidenetworkpolicy.go index 74ced171f205f..7664d45d91d22 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumclusterwidenetworkpolicy.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumclusterwidenetworkpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumendpoint.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumendpoint.go index 6b80514cd96e3..7bd2ca57fc16b 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumendpoint.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumendpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumexternalworkload.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumexternalworkload.go index 23518c24c937e..70ac135ab8463 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumexternalworkload.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumexternalworkload.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumidentity.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumidentity.go index fc78db44c8c8f..d562998dad5f7 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumidentity.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumidentity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumlocalredirectpolicy.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumlocalredirectpolicy.go index 9581ccf7a1115..4ed36585eacd5 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumlocalredirectpolicy.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumlocalredirectpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumnetworkpolicy.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumnetworkpolicy.go index 96b7228a8df6c..cf032bbbfd48b 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumnetworkpolicy.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumnetworkpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumnode.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumnode.go index 3521d18d21592..bda6831d93975 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumnode.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/fake/fake_ciliumnode.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/generated_expansion.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/generated_expansion.go index a1a2b06c6649d..78d73251f1f78 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/generated_expansion.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2/generated_expansion.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/cilium.io_client.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/cilium.io_client.go index a61b7d520cfc5..4d0ab9ca8ef40 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/cilium.io_client.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/cilium.io_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/ciliumegressnatpolicy.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/ciliumegressnatpolicy.go index 3e45a9f719115..389c93dde15e1 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/ciliumegressnatpolicy.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/ciliumegressnatpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/ciliumendpointslice.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/ciliumendpointslice.go index 5a119d2060233..55cdaf11b67c6 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/ciliumendpointslice.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/ciliumendpointslice.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/doc.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/doc.go index f63eb3bba22fd..0caa68e33ee45 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/doc.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/doc.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/doc.go index e04510ae55705..57bd090efb093 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/doc.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/fake_cilium.io_client.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/fake_cilium.io_client.go index 3dd9e64367d39..d30fcf6d4820b 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/fake_cilium.io_client.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/fake_cilium.io_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/fake_ciliumegressnatpolicy.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/fake_ciliumegressnatpolicy.go index 1e19d3f2b55a1..44346fcc2fed4 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/fake_ciliumegressnatpolicy.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/fake_ciliumegressnatpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/fake_ciliumendpointslice.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/fake_ciliumendpointslice.go index c07710beafac6..fe983e11bb6df 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/fake_ciliumendpointslice.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/fake/fake_ciliumendpointslice.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/generated_expansion.go b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/generated_expansion.go index 78ff8859811cf..5d23e2447813c 100644 --- a/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/generated_expansion.go +++ b/pkg/k8s/client/clientset/versioned/typed/cilium.io/v2alpha1/generated_expansion.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/cilium.io/interface.go b/pkg/k8s/client/informers/externalversions/cilium.io/interface.go index 0d929d9e4cd9e..45e1e000e284e 100644 --- a/pkg/k8s/client/informers/externalversions/cilium.io/interface.go +++ b/pkg/k8s/client/informers/externalversions/cilium.io/interface.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumclusterwidenetworkpolicy.go b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumclusterwidenetworkpolicy.go index f85a7ab41a694..68db1b7413ddd 100644 --- a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumclusterwidenetworkpolicy.go +++ b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumclusterwidenetworkpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumendpoint.go b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumendpoint.go index 4f09cc70381f5..6c4aae1657bd2 100644 --- a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumendpoint.go +++ b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumendpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumexternalworkload.go b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumexternalworkload.go index feb982788d2f1..39755c67d2aeb 100644 --- a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumexternalworkload.go +++ b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumexternalworkload.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumidentity.go b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumidentity.go index ca56e5371c4e5..4d092419376f8 100644 --- a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumidentity.go +++ b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumidentity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumlocalredirectpolicy.go b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumlocalredirectpolicy.go index ec65e00817820..23c7bd60c9ae7 100644 --- a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumlocalredirectpolicy.go +++ b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumlocalredirectpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumnetworkpolicy.go b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumnetworkpolicy.go index fc39046f34f8e..84812f67d2aad 100644 --- a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumnetworkpolicy.go +++ b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumnetworkpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumnode.go b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumnode.go index 9e39b430c69fd..c040b33069750 100644 --- a/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumnode.go +++ b/pkg/k8s/client/informers/externalversions/cilium.io/v2/ciliumnode.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/cilium.io/v2/interface.go b/pkg/k8s/client/informers/externalversions/cilium.io/v2/interface.go index 1d74cc69fa89c..200475f3ce649 100644 --- a/pkg/k8s/client/informers/externalversions/cilium.io/v2/interface.go +++ b/pkg/k8s/client/informers/externalversions/cilium.io/v2/interface.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/cilium.io/v2alpha1/ciliumegressnatpolicy.go b/pkg/k8s/client/informers/externalversions/cilium.io/v2alpha1/ciliumegressnatpolicy.go index 236fc587c58df..7f4604a258161 100644 --- a/pkg/k8s/client/informers/externalversions/cilium.io/v2alpha1/ciliumegressnatpolicy.go +++ b/pkg/k8s/client/informers/externalversions/cilium.io/v2alpha1/ciliumegressnatpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/cilium.io/v2alpha1/ciliumendpointslice.go b/pkg/k8s/client/informers/externalversions/cilium.io/v2alpha1/ciliumendpointslice.go index 0b5f7578fe78e..0c2768da1001c 100644 --- a/pkg/k8s/client/informers/externalversions/cilium.io/v2alpha1/ciliumendpointslice.go +++ b/pkg/k8s/client/informers/externalversions/cilium.io/v2alpha1/ciliumendpointslice.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/cilium.io/v2alpha1/interface.go b/pkg/k8s/client/informers/externalversions/cilium.io/v2alpha1/interface.go index 4e4ecb7c1117a..cd7b273e4d5c5 100644 --- a/pkg/k8s/client/informers/externalversions/cilium.io/v2alpha1/interface.go +++ b/pkg/k8s/client/informers/externalversions/cilium.io/v2alpha1/interface.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/factory.go b/pkg/k8s/client/informers/externalversions/factory.go index 4cb4e28f15895..74d1faba6e952 100644 --- a/pkg/k8s/client/informers/externalversions/factory.go +++ b/pkg/k8s/client/informers/externalversions/factory.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/generic.go b/pkg/k8s/client/informers/externalversions/generic.go index c892d256eb93c..2d554b2e7c1e5 100644 --- a/pkg/k8s/client/informers/externalversions/generic.go +++ b/pkg/k8s/client/informers/externalversions/generic.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/informers/externalversions/internalinterfaces/factory_interfaces.go b/pkg/k8s/client/informers/externalversions/internalinterfaces/factory_interfaces.go index 4dee6912b8dfb..c86af0ace71aa 100644 --- a/pkg/k8s/client/informers/externalversions/internalinterfaces/factory_interfaces.go +++ b/pkg/k8s/client/informers/externalversions/internalinterfaces/factory_interfaces.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by informer-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/listers/cilium.io/v2/ciliumclusterwidenetworkpolicy.go b/pkg/k8s/client/listers/cilium.io/v2/ciliumclusterwidenetworkpolicy.go index 1449716e6857e..827ad05713bcd 100644 --- a/pkg/k8s/client/listers/cilium.io/v2/ciliumclusterwidenetworkpolicy.go +++ b/pkg/k8s/client/listers/cilium.io/v2/ciliumclusterwidenetworkpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by lister-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/listers/cilium.io/v2/ciliumendpoint.go b/pkg/k8s/client/listers/cilium.io/v2/ciliumendpoint.go index c33e31a9069e7..ebb6c5db97a0c 100644 --- a/pkg/k8s/client/listers/cilium.io/v2/ciliumendpoint.go +++ b/pkg/k8s/client/listers/cilium.io/v2/ciliumendpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by lister-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/listers/cilium.io/v2/ciliumexternalworkload.go b/pkg/k8s/client/listers/cilium.io/v2/ciliumexternalworkload.go index 4b1d718df8989..75306ed2cd7ef 100644 --- a/pkg/k8s/client/listers/cilium.io/v2/ciliumexternalworkload.go +++ b/pkg/k8s/client/listers/cilium.io/v2/ciliumexternalworkload.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by lister-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/listers/cilium.io/v2/ciliumidentity.go b/pkg/k8s/client/listers/cilium.io/v2/ciliumidentity.go index 18f7012810140..81c1bbd304293 100644 --- a/pkg/k8s/client/listers/cilium.io/v2/ciliumidentity.go +++ b/pkg/k8s/client/listers/cilium.io/v2/ciliumidentity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by lister-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/listers/cilium.io/v2/ciliumlocalredirectpolicy.go b/pkg/k8s/client/listers/cilium.io/v2/ciliumlocalredirectpolicy.go index 6937baab305f6..c0ea955adcade 100644 --- a/pkg/k8s/client/listers/cilium.io/v2/ciliumlocalredirectpolicy.go +++ b/pkg/k8s/client/listers/cilium.io/v2/ciliumlocalredirectpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by lister-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/listers/cilium.io/v2/ciliumnetworkpolicy.go b/pkg/k8s/client/listers/cilium.io/v2/ciliumnetworkpolicy.go index 659d3be9d9562..c32abb501fcde 100644 --- a/pkg/k8s/client/listers/cilium.io/v2/ciliumnetworkpolicy.go +++ b/pkg/k8s/client/listers/cilium.io/v2/ciliumnetworkpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by lister-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/listers/cilium.io/v2/ciliumnode.go b/pkg/k8s/client/listers/cilium.io/v2/ciliumnode.go index 4dadbb77e0509..4b30e09255a57 100644 --- a/pkg/k8s/client/listers/cilium.io/v2/ciliumnode.go +++ b/pkg/k8s/client/listers/cilium.io/v2/ciliumnode.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by lister-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/listers/cilium.io/v2/expansion_generated.go b/pkg/k8s/client/listers/cilium.io/v2/expansion_generated.go index 9d0b028e51af0..55a4913c947cf 100644 --- a/pkg/k8s/client/listers/cilium.io/v2/expansion_generated.go +++ b/pkg/k8s/client/listers/cilium.io/v2/expansion_generated.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by lister-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/listers/cilium.io/v2alpha1/ciliumegressnatpolicy.go b/pkg/k8s/client/listers/cilium.io/v2alpha1/ciliumegressnatpolicy.go index b4b2b30b93244..2e55278e8fda1 100644 --- a/pkg/k8s/client/listers/cilium.io/v2alpha1/ciliumegressnatpolicy.go +++ b/pkg/k8s/client/listers/cilium.io/v2alpha1/ciliumegressnatpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by lister-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/listers/cilium.io/v2alpha1/ciliumendpointslice.go b/pkg/k8s/client/listers/cilium.io/v2alpha1/ciliumendpointslice.go index 0484e06c74d1a..8b12f3dc047f5 100644 --- a/pkg/k8s/client/listers/cilium.io/v2alpha1/ciliumendpointslice.go +++ b/pkg/k8s/client/listers/cilium.io/v2alpha1/ciliumendpointslice.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by lister-gen. DO NOT EDIT. diff --git a/pkg/k8s/client/listers/cilium.io/v2alpha1/expansion_generated.go b/pkg/k8s/client/listers/cilium.io/v2alpha1/expansion_generated.go index fa371278336c9..2275c55f8d456 100644 --- a/pkg/k8s/client/listers/cilium.io/v2alpha1/expansion_generated.go +++ b/pkg/k8s/client/listers/cilium.io/v2alpha1/expansion_generated.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by lister-gen. DO NOT EDIT. diff --git a/pkg/k8s/client_test.go b/pkg/k8s/client_test.go index 0e8cd9b70edd9..3e8052de53817 100644 --- a/pkg/k8s/client_test.go +++ b/pkg/k8s/client_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/cnp.go b/pkg/k8s/cnp.go index e14304c1297c9..c8b07782db415 100644 --- a/pkg/k8s/cnp.go +++ b/pkg/k8s/cnp.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/cnp_export_test.go b/pkg/k8s/cnp_export_test.go index b004ab9b4fea6..79969cc2a813f 100644 --- a/pkg/k8s/cnp_export_test.go +++ b/pkg/k8s/cnp_export_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/cnp_test.go b/pkg/k8s/cnp_test.go index e3082a19cff7e..25d9b19ef3c29 100644 --- a/pkg/k8s/cnp_test.go +++ b/pkg/k8s/cnp_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/cnpstatus.go b/pkg/k8s/cnpstatus.go index 15169ed19a474..2c525ae6459cf 100644 --- a/pkg/k8s/cnpstatus.go +++ b/pkg/k8s/cnpstatus.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/config.go b/pkg/k8s/config.go index c35cd29a9213e..b27b0e5ecb06b 100644 --- a/pkg/k8s/config.go +++ b/pkg/k8s/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium // Package k8s abstracts all Kubernetes specific behaviour package k8s diff --git a/pkg/k8s/config/config.go b/pkg/k8s/config/config.go index 6547461d9e5dc..44ba26be0fbf8 100644 --- a/pkg/k8s/config/config.go +++ b/pkg/k8s/config/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package config diff --git a/pkg/k8s/constants/const.go b/pkg/k8s/constants/const.go index d74e9df9c1534..1f6cb6dde1754 100644 --- a/pkg/k8s/constants/const.go +++ b/pkg/k8s/constants/const.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package constants diff --git a/pkg/k8s/doc.go b/pkg/k8s/doc.go index b34327c92f361..48744cccbe039 100644 --- a/pkg/k8s/doc.go +++ b/pkg/k8s/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package k8s contains all k8s related logic. // +groupName=pkg diff --git a/pkg/k8s/endpoints.go b/pkg/k8s/endpoints.go index faf3e59c28b5a..9cb7a15c252d4 100644 --- a/pkg/k8s/endpoints.go +++ b/pkg/k8s/endpoints.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/endpoints_test.go b/pkg/k8s/endpoints_test.go index d3ef8f3b9ee77..33da534a57023 100644 --- a/pkg/k8s/endpoints_test.go +++ b/pkg/k8s/endpoints_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/error_helpers.go b/pkg/k8s/error_helpers.go index f48e6b3c8ab1a..4ef902acff816 100644 --- a/pkg/k8s/error_helpers.go +++ b/pkg/k8s/error_helpers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/error_helpers_test.go b/pkg/k8s/error_helpers_test.go index d2e36a60160cc..1a1b7b2a34a6e 100644 --- a/pkg/k8s/error_helpers_test.go +++ b/pkg/k8s/error_helpers_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/factory_functions.go b/pkg/k8s/factory_functions.go index f2975099524cb..6527c9b68b9fc 100644 --- a/pkg/k8s/factory_functions.go +++ b/pkg/k8s/factory_functions.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/factory_functions_test.go b/pkg/k8s/factory_functions_test.go index b1c64af85deda..d38013499cddf 100644 --- a/pkg/k8s/factory_functions_test.go +++ b/pkg/k8s/factory_functions_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/identitybackend/identity.go b/pkg/k8s/identitybackend/identity.go index e70a33ee0bb8b..f93132e0be57a 100644 --- a/pkg/k8s/identitybackend/identity.go +++ b/pkg/k8s/identitybackend/identity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package identitybackend diff --git a/pkg/k8s/identitybackend/identity_test.go b/pkg/k8s/identitybackend/identity_test.go index f093f7434e5dd..5ff1cce31ce66 100644 --- a/pkg/k8s/identitybackend/identity_test.go +++ b/pkg/k8s/identitybackend/identity_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/informer/benchmarks/informer_benchmarks_test.go b/pkg/k8s/informer/benchmarks/informer_benchmarks_test.go index 61b08f18220db..21a5c7dd9ab3f 100644 --- a/pkg/k8s/informer/benchmarks/informer_benchmarks_test.go +++ b/pkg/k8s/informer/benchmarks/informer_benchmarks_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/informer/informer.go b/pkg/k8s/informer/informer.go index b66aab44b82ad..fceab4aefb256 100644 --- a/pkg/k8s/informer/informer.go +++ b/pkg/k8s/informer/informer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package informer diff --git a/pkg/k8s/init.go b/pkg/k8s/init.go index 7a2e0c71eb911..5a3ad6d42626b 100644 --- a/pkg/k8s/init.go +++ b/pkg/k8s/init.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium // Package k8s abstracts all Kubernetes specific behaviour package k8s diff --git a/pkg/k8s/init_test.go b/pkg/k8s/init_test.go index 3e42929c64dac..e865e30b6e40b 100644 --- a/pkg/k8s/init_test.go +++ b/pkg/k8s/init_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/json_patch.go b/pkg/k8s/json_patch.go index b7e410272abd4..db580687967cb 100644 --- a/pkg/k8s/json_patch.go +++ b/pkg/k8s/json_patch.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/labels.go b/pkg/k8s/labels.go index a255a92cce0ed..d61e934ed9cb1 100644 --- a/pkg/k8s/labels.go +++ b/pkg/k8s/labels.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/logfields.go b/pkg/k8s/logfields.go index 6d63ca7e8a7e9..bf6b46bfa9f5a 100644 --- a/pkg/k8s/logfields.go +++ b/pkg/k8s/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/metrics/metrics.go b/pkg/k8s/metrics/metrics.go index 4561f77b6bf6f..84310b2e69ca3 100644 --- a/pkg/k8s/metrics/metrics.go +++ b/pkg/k8s/metrics/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package metrics diff --git a/pkg/k8s/metrics/metrics_test.go b/pkg/k8s/metrics/metrics_test.go index 480cf965830c0..fd62b87710fc5 100644 --- a/pkg/k8s/metrics/metrics_test.go +++ b/pkg/k8s/metrics/metrics_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/network_policy.go b/pkg/k8s/network_policy.go index 52a609048087b..933d8bb52aad8 100644 --- a/pkg/k8s/network_policy.go +++ b/pkg/k8s/network_policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/network_policy_test.go b/pkg/k8s/network_policy_test.go index b6b0aba8f9ec6..c3b58984bee96 100644 --- a/pkg/k8s/network_policy_test.go +++ b/pkg/k8s/network_policy_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/node.go b/pkg/k8s/node.go index 3de6c710bc02a..3b86c58b8a03e 100644 --- a/pkg/k8s/node.go +++ b/pkg/k8s/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/node_test.go b/pkg/k8s/node_test.go index d3f80a2c021e1..20b4505b36400 100644 --- a/pkg/k8s/node_test.go +++ b/pkg/k8s/node_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/rule_translate.go b/pkg/k8s/rule_translate.go index ee419a39deb37..f2dbca789a5fc 100644 --- a/pkg/k8s/rule_translate.go +++ b/pkg/k8s/rule_translate.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/rule_translate_test.go b/pkg/k8s/rule_translate_test.go index 79b9fdd09e891..da719457e7d84 100644 --- a/pkg/k8s/rule_translate_test.go +++ b/pkg/k8s/rule_translate_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/service.go b/pkg/k8s/service.go index 34335b4d712dc..be0e654a8981e 100644 --- a/pkg/k8s/service.go +++ b/pkg/k8s/service.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/service_cache.go b/pkg/k8s/service_cache.go index e96f7860065c4..1dbd705c16f54 100644 --- a/pkg/k8s/service_cache.go +++ b/pkg/k8s/service_cache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package k8s diff --git a/pkg/k8s/service_cache_test.go b/pkg/k8s/service_cache_test.go index 7cf4b65c090e9..4c2a775fb14c6 100644 --- a/pkg/k8s/service_cache_test.go +++ b/pkg/k8s/service_cache_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/service_test.go b/pkg/k8s/service_test.go index 7711cdc857afc..a1252449f7b9f 100644 --- a/pkg/k8s/service_test.go +++ b/pkg/k8s/service_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/slim/k8s/api/core/v1/doc.go b/pkg/k8s/slim/k8s/api/core/v1/doc.go index 88df20425fcd8..46d25857e8674 100644 --- a/pkg/k8s/slim/k8s/api/core/v1/doc.go +++ b/pkg/k8s/slim/k8s/api/core/v1/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium // +k8s:openapi-gen=true // +k8s:deepcopy-gen=package diff --git a/pkg/k8s/slim/k8s/api/core/v1/generated.pb.go b/pkg/k8s/slim/k8s/api/core/v1/generated.pb.go index 5be13a37a4874..cf996c318fbac 100644 --- a/pkg/k8s/slim/k8s/api/core/v1/generated.pb.go +++ b/pkg/k8s/slim/k8s/api/core/v1/generated.pb.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by protoc-gen-gogo. DO NOT EDIT. // source: github.com/cilium/cilium/pkg/k8s/slim/k8s/api/core/v1/generated.proto diff --git a/pkg/k8s/slim/k8s/api/core/v1/generated.proto b/pkg/k8s/slim/k8s/api/core/v1/generated.proto index 3be8500734cfa..f09866ed97a47 100644 --- a/pkg/k8s/slim/k8s/api/core/v1/generated.proto +++ b/pkg/k8s/slim/k8s/api/core/v1/generated.proto @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // This file was autogenerated by go-to-protobuf. Do not edit it manually! diff --git a/pkg/k8s/slim/k8s/api/core/v1/zz_generated.deepcopy.go b/pkg/k8s/slim/k8s/api/core/v1/zz_generated.deepcopy.go index c1b6d5fcd7f34..daced24ed2dc8 100644 --- a/pkg/k8s/slim/k8s/api/core/v1/zz_generated.deepcopy.go +++ b/pkg/k8s/slim/k8s/api/core/v1/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/api/core/v1/zz_generated.deepequal.go b/pkg/k8s/slim/k8s/api/core/v1/zz_generated.deepequal.go index 7082f65420332..13bb5fc7437dd 100644 --- a/pkg/k8s/slim/k8s/api/core/v1/zz_generated.deepequal.go +++ b/pkg/k8s/slim/k8s/api/core/v1/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/api/discovery/v1/doc.go b/pkg/k8s/slim/k8s/api/discovery/v1/doc.go index eb09d87fd5637..c28f8dbfb3bb8 100644 --- a/pkg/k8s/slim/k8s/api/discovery/v1/doc.go +++ b/pkg/k8s/slim/k8s/api/discovery/v1/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium // +k8s:deepcopy-gen=package // +k8s:protobuf-gen=package diff --git a/pkg/k8s/slim/k8s/api/discovery/v1/generated.pb.go b/pkg/k8s/slim/k8s/api/discovery/v1/generated.pb.go index 62fcadf07c525..e8ddaa90cee69 100644 --- a/pkg/k8s/slim/k8s/api/discovery/v1/generated.pb.go +++ b/pkg/k8s/slim/k8s/api/discovery/v1/generated.pb.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by protoc-gen-gogo. DO NOT EDIT. // source: github.com/cilium/cilium/pkg/k8s/slim/k8s/api/discovery/v1/generated.proto diff --git a/pkg/k8s/slim/k8s/api/discovery/v1/generated.proto b/pkg/k8s/slim/k8s/api/discovery/v1/generated.proto index 58790c6473ff2..15fda13113ca9 100644 --- a/pkg/k8s/slim/k8s/api/discovery/v1/generated.proto +++ b/pkg/k8s/slim/k8s/api/discovery/v1/generated.proto @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // This file was autogenerated by go-to-protobuf. Do not edit it manually! diff --git a/pkg/k8s/slim/k8s/api/discovery/v1/zz_generated.deepcopy.go b/pkg/k8s/slim/k8s/api/discovery/v1/zz_generated.deepcopy.go index 5ce895fa5429a..84538aa06b11c 100644 --- a/pkg/k8s/slim/k8s/api/discovery/v1/zz_generated.deepcopy.go +++ b/pkg/k8s/slim/k8s/api/discovery/v1/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/api/discovery/v1/zz_generated.deepequal.go b/pkg/k8s/slim/k8s/api/discovery/v1/zz_generated.deepequal.go index 97707a477d456..6caddc2ef1ba2 100644 --- a/pkg/k8s/slim/k8s/api/discovery/v1/zz_generated.deepequal.go +++ b/pkg/k8s/slim/k8s/api/discovery/v1/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/api/discovery/v1beta1/doc.go b/pkg/k8s/slim/k8s/api/discovery/v1beta1/doc.go index dad3a6ed78106..a355bcf575cd3 100644 --- a/pkg/k8s/slim/k8s/api/discovery/v1beta1/doc.go +++ b/pkg/k8s/slim/k8s/api/discovery/v1beta1/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium // +k8s:deepcopy-gen=package // +k8s:protobuf-gen=package diff --git a/pkg/k8s/slim/k8s/api/discovery/v1beta1/generated.pb.go b/pkg/k8s/slim/k8s/api/discovery/v1beta1/generated.pb.go index 83579bb72920b..13a83acbc7adc 100644 --- a/pkg/k8s/slim/k8s/api/discovery/v1beta1/generated.pb.go +++ b/pkg/k8s/slim/k8s/api/discovery/v1beta1/generated.pb.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by protoc-gen-gogo. DO NOT EDIT. // source: github.com/cilium/cilium/pkg/k8s/slim/k8s/api/discovery/v1beta1/generated.proto diff --git a/pkg/k8s/slim/k8s/api/discovery/v1beta1/generated.proto b/pkg/k8s/slim/k8s/api/discovery/v1beta1/generated.proto index 65aae058a5b7b..9d2a8bfa0d387 100644 --- a/pkg/k8s/slim/k8s/api/discovery/v1beta1/generated.proto +++ b/pkg/k8s/slim/k8s/api/discovery/v1beta1/generated.proto @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // This file was autogenerated by go-to-protobuf. Do not edit it manually! diff --git a/pkg/k8s/slim/k8s/api/discovery/v1beta1/zz_generated.deepcopy.go b/pkg/k8s/slim/k8s/api/discovery/v1beta1/zz_generated.deepcopy.go index ce81938b9b960..0eab5fe747768 100644 --- a/pkg/k8s/slim/k8s/api/discovery/v1beta1/zz_generated.deepcopy.go +++ b/pkg/k8s/slim/k8s/api/discovery/v1beta1/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/api/discovery/v1beta1/zz_generated.deepequal.go b/pkg/k8s/slim/k8s/api/discovery/v1beta1/zz_generated.deepequal.go index 367dee51c27b2..f16d413645161 100644 --- a/pkg/k8s/slim/k8s/api/discovery/v1beta1/zz_generated.deepequal.go +++ b/pkg/k8s/slim/k8s/api/discovery/v1beta1/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/api/networking/v1/doc.go b/pkg/k8s/slim/k8s/api/networking/v1/doc.go index 17f414a35759e..28493dd648642 100644 --- a/pkg/k8s/slim/k8s/api/networking/v1/doc.go +++ b/pkg/k8s/slim/k8s/api/networking/v1/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium // +k8s:deepcopy-gen=package // +k8s:protobuf-gen=package diff --git a/pkg/k8s/slim/k8s/api/networking/v1/generated.pb.go b/pkg/k8s/slim/k8s/api/networking/v1/generated.pb.go index 1639df4e429ba..1338fd9489ef3 100644 --- a/pkg/k8s/slim/k8s/api/networking/v1/generated.pb.go +++ b/pkg/k8s/slim/k8s/api/networking/v1/generated.pb.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by protoc-gen-gogo. DO NOT EDIT. // source: github.com/cilium/cilium/pkg/k8s/slim/k8s/api/networking/v1/generated.proto diff --git a/pkg/k8s/slim/k8s/api/networking/v1/generated.proto b/pkg/k8s/slim/k8s/api/networking/v1/generated.proto index c9e8ad4c8fcb7..364f8c8f937f5 100644 --- a/pkg/k8s/slim/k8s/api/networking/v1/generated.proto +++ b/pkg/k8s/slim/k8s/api/networking/v1/generated.proto @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // This file was autogenerated by go-to-protobuf. Do not edit it manually! diff --git a/pkg/k8s/slim/k8s/api/networking/v1/zz_generated.deepcopy.go b/pkg/k8s/slim/k8s/api/networking/v1/zz_generated.deepcopy.go index b7b1b59a62e64..fec17c40731f3 100644 --- a/pkg/k8s/slim/k8s/api/networking/v1/zz_generated.deepcopy.go +++ b/pkg/k8s/slim/k8s/api/networking/v1/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/api/networking/v1/zz_generated.deepequal.go b/pkg/k8s/slim/k8s/api/networking/v1/zz_generated.deepequal.go index 7094ee13ddd44..22d24b8c07820 100644 --- a/pkg/k8s/slim/k8s/api/networking/v1/zz_generated.deepequal.go +++ b/pkg/k8s/slim/k8s/api/networking/v1/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/clientset.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/clientset.go index f354cccf005d6..3524637e24a16 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/clientset.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/clientset.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/doc.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/doc.go index 631303620c042..e40624f19aeb2 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/doc.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/fake/clientset_generated.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/fake/clientset_generated.go index efd476414521f..f05072f5b1a24 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/fake/clientset_generated.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/fake/clientset_generated.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/fake/doc.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/fake/doc.go index f62424e76ff5b..1da8cc9d5bb6f 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/fake/doc.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/fake/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/fake/register.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/fake/register.go index 12bab12a2ffdd..b4698ba8fc283 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/fake/register.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/fake/register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/scheme/doc.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/scheme/doc.go index 5c3204fd079f7..ba34515351fff 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/scheme/doc.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/scheme/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/scheme/register.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/scheme/register.go index 2034cef7b3934..8532949f42b9b 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/scheme/register.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/scheme/register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/apiextensions_client.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/apiextensions_client.go index d1ecd0edd2f63..5f5e04bd9aa8a 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/apiextensions_client.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/apiextensions_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/customresourcedefinition.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/customresourcedefinition.go index 4067e263e122e..d251544ef593b 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/customresourcedefinition.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/customresourcedefinition.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/doc.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/doc.go index d47fd684f5bcc..50cfbd485a545 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/doc.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/fake/doc.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/fake/doc.go index e04510ae55705..57bd090efb093 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/fake/doc.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/fake/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/fake/fake_apiextensions_client.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/fake/fake_apiextensions_client.go index faeed8a03517a..fb5d84c0a7385 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/fake/fake_apiextensions_client.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/fake/fake_apiextensions_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/fake/fake_customresourcedefinition.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/fake/fake_customresourcedefinition.go index e266c2c275c88..8520f60ea1529 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/fake/fake_customresourcedefinition.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/fake/fake_customresourcedefinition.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/generated_expansion.go b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/generated_expansion.go index 3eb26bc457d97..2ea7378ea9986 100644 --- a/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/generated_expansion.go +++ b/pkg/k8s/slim/k8s/apiextensions-client/clientset/versioned/typed/apiextensions/v1/generated_expansion.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apis/apiextensions/v1/generated.pb.go b/pkg/k8s/slim/k8s/apis/apiextensions/v1/generated.pb.go index 63bcad6213281..8829d29b9a77c 100644 --- a/pkg/k8s/slim/k8s/apis/apiextensions/v1/generated.pb.go +++ b/pkg/k8s/slim/k8s/apis/apiextensions/v1/generated.pb.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by protoc-gen-gogo. DO NOT EDIT. // source: github.com/cilium/cilium/pkg/k8s/slim/k8s/apis/apiextensions/v1/generated.proto diff --git a/pkg/k8s/slim/k8s/apis/apiextensions/v1/generated.proto b/pkg/k8s/slim/k8s/apis/apiextensions/v1/generated.proto index 710389c5c1b7d..e32eb31a2b2b8 100644 --- a/pkg/k8s/slim/k8s/apis/apiextensions/v1/generated.proto +++ b/pkg/k8s/slim/k8s/apis/apiextensions/v1/generated.proto @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // This file was autogenerated by go-to-protobuf. Do not edit it manually! diff --git a/pkg/k8s/slim/k8s/apis/apiextensions/v1/zz_generated.deepcopy.go b/pkg/k8s/slim/k8s/apis/apiextensions/v1/zz_generated.deepcopy.go index 8f63572204c77..0acce338ebecb 100644 --- a/pkg/k8s/slim/k8s/apis/apiextensions/v1/zz_generated.deepcopy.go +++ b/pkg/k8s/slim/k8s/apis/apiextensions/v1/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apis/labels/zz_generated.deepcopy.go b/pkg/k8s/slim/k8s/apis/labels/zz_generated.deepcopy.go index 22a9fa67ac4b0..4da7716da61d2 100644 --- a/pkg/k8s/slim/k8s/apis/labels/zz_generated.deepcopy.go +++ b/pkg/k8s/slim/k8s/apis/labels/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apis/labels/zz_generated.deepequal.go b/pkg/k8s/slim/k8s/apis/labels/zz_generated.deepequal.go index 3a0fa3304688f..fb093f0e95491 100644 --- a/pkg/k8s/slim/k8s/apis/labels/zz_generated.deepequal.go +++ b/pkg/k8s/slim/k8s/apis/labels/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apis/meta/v1/doc.go b/pkg/k8s/slim/k8s/apis/meta/v1/doc.go index cf4e49052552f..9624efbd4c0ba 100644 --- a/pkg/k8s/slim/k8s/apis/meta/v1/doc.go +++ b/pkg/k8s/slim/k8s/apis/meta/v1/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium // +k8s:conversion-gen=false // +k8s:deepcopy-gen=package diff --git a/pkg/k8s/slim/k8s/apis/meta/v1/generated.pb.go b/pkg/k8s/slim/k8s/apis/meta/v1/generated.pb.go index 1c8c85984398c..e6b47f3c5daec 100644 --- a/pkg/k8s/slim/k8s/apis/meta/v1/generated.pb.go +++ b/pkg/k8s/slim/k8s/apis/meta/v1/generated.pb.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by protoc-gen-gogo. DO NOT EDIT. // source: github.com/cilium/cilium/pkg/k8s/slim/k8s/apis/meta/v1/generated.proto diff --git a/pkg/k8s/slim/k8s/apis/meta/v1/generated.proto b/pkg/k8s/slim/k8s/apis/meta/v1/generated.proto index bf3c2a372ab44..fb6d67b4b3643 100644 --- a/pkg/k8s/slim/k8s/apis/meta/v1/generated.proto +++ b/pkg/k8s/slim/k8s/apis/meta/v1/generated.proto @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // This file was autogenerated by go-to-protobuf. Do not edit it manually! diff --git a/pkg/k8s/slim/k8s/apis/meta/v1/zz_generated.deepcopy.go b/pkg/k8s/slim/k8s/apis/meta/v1/zz_generated.deepcopy.go index b5a834ec5d840..939488c3f67c1 100644 --- a/pkg/k8s/slim/k8s/apis/meta/v1/zz_generated.deepcopy.go +++ b/pkg/k8s/slim/k8s/apis/meta/v1/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apis/meta/v1/zz_generated.deepequal.go b/pkg/k8s/slim/k8s/apis/meta/v1/zz_generated.deepequal.go index fe5489f9f387b..2906df121f71b 100644 --- a/pkg/k8s/slim/k8s/apis/meta/v1/zz_generated.deepequal.go +++ b/pkg/k8s/slim/k8s/apis/meta/v1/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apis/meta/v1beta1/generated.pb.go b/pkg/k8s/slim/k8s/apis/meta/v1beta1/generated.pb.go index 6cff0143d6571..e9839fc68ad38 100644 --- a/pkg/k8s/slim/k8s/apis/meta/v1beta1/generated.pb.go +++ b/pkg/k8s/slim/k8s/apis/meta/v1beta1/generated.pb.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by protoc-gen-gogo. DO NOT EDIT. // source: github.com/cilium/cilium/pkg/k8s/slim/k8s/apis/meta/v1beta1/generated.proto diff --git a/pkg/k8s/slim/k8s/apis/meta/v1beta1/generated.proto b/pkg/k8s/slim/k8s/apis/meta/v1beta1/generated.proto index 4597af183ac6b..fa8d17a01ec75 100644 --- a/pkg/k8s/slim/k8s/apis/meta/v1beta1/generated.proto +++ b/pkg/k8s/slim/k8s/apis/meta/v1beta1/generated.proto @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // This file was autogenerated by go-to-protobuf. Do not edit it manually! diff --git a/pkg/k8s/slim/k8s/apis/meta/v1beta1/zz_generated.deepcopy.go b/pkg/k8s/slim/k8s/apis/meta/v1beta1/zz_generated.deepcopy.go index 524c770a1f161..d3b949f0dd5c2 100644 --- a/pkg/k8s/slim/k8s/apis/meta/v1beta1/zz_generated.deepcopy.go +++ b/pkg/k8s/slim/k8s/apis/meta/v1beta1/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/apis/util/intstr/doc.go b/pkg/k8s/slim/k8s/apis/util/intstr/doc.go index ed196373dbf4b..3955e271b0e9c 100644 --- a/pkg/k8s/slim/k8s/apis/util/intstr/doc.go +++ b/pkg/k8s/slim/k8s/apis/util/intstr/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // +deepequal-gen=package diff --git a/pkg/k8s/slim/k8s/apis/util/intstr/generated.pb.go b/pkg/k8s/slim/k8s/apis/util/intstr/generated.pb.go index f2f2de628e988..2ee07a97a862a 100644 --- a/pkg/k8s/slim/k8s/apis/util/intstr/generated.pb.go +++ b/pkg/k8s/slim/k8s/apis/util/intstr/generated.pb.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by protoc-gen-gogo. DO NOT EDIT. // source: github.com/cilium/cilium/pkg/k8s/slim/k8s/apis/util/intstr/generated.proto diff --git a/pkg/k8s/slim/k8s/apis/util/intstr/generated.proto b/pkg/k8s/slim/k8s/apis/util/intstr/generated.proto index cb76e62adef70..69332cdaf7176 100644 --- a/pkg/k8s/slim/k8s/apis/util/intstr/generated.proto +++ b/pkg/k8s/slim/k8s/apis/util/intstr/generated.proto @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // This file was autogenerated by go-to-protobuf. Do not edit it manually! diff --git a/pkg/k8s/slim/k8s/apis/util/intstr/zz_generated.deepequal.go b/pkg/k8s/slim/k8s/apis/util/intstr/zz_generated.deepequal.go index aca8825920fd7..6a4c70ee7b446 100644 --- a/pkg/k8s/slim/k8s/apis/util/intstr/zz_generated.deepequal.go +++ b/pkg/k8s/slim/k8s/apis/util/intstr/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/clientset.go b/pkg/k8s/slim/k8s/client/clientset/versioned/clientset.go index 97130d940fda3..eab9fe8a34cf3 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/clientset.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/clientset.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/doc.go b/pkg/k8s/slim/k8s/client/clientset/versioned/doc.go index 631303620c042..e40624f19aeb2 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/doc.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/fake/clientset_generated.go b/pkg/k8s/slim/k8s/client/clientset/versioned/fake/clientset_generated.go index ea6d20682f0b6..a15f7116ba8ea 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/fake/clientset_generated.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/fake/clientset_generated.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/fake/doc.go b/pkg/k8s/slim/k8s/client/clientset/versioned/fake/doc.go index f62424e76ff5b..1da8cc9d5bb6f 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/fake/doc.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/fake/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/fake/register.go b/pkg/k8s/slim/k8s/client/clientset/versioned/fake/register.go index 7b08acce63f66..9b2b4af9b6867 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/fake/register.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/fake/register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/scheme/doc.go b/pkg/k8s/slim/k8s/client/clientset/versioned/scheme/doc.go index 5c3204fd079f7..ba34515351fff 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/scheme/doc.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/scheme/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/scheme/register.go b/pkg/k8s/slim/k8s/client/clientset/versioned/scheme/register.go index 7de457a7ad004..a264e895da23d 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/scheme/register.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/scheme/register.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/core_client.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/core_client.go index 73594572917c5..a6e4034860b19 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/core_client.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/core_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/doc.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/doc.go index d47fd684f5bcc..50cfbd485a545 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/doc.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/endpoints.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/endpoints.go index 0c3e67735cab0..9f363250eb850 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/endpoints.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/endpoints.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/doc.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/doc.go index e04510ae55705..57bd090efb093 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/doc.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_core_client.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_core_client.go index 098f1c07d3a35..cdf058645e488 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_core_client.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_core_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_endpoints.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_endpoints.go index 716aee9dbeb5e..752092536f172 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_endpoints.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_endpoints.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_namespace.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_namespace.go index 5c1ccf8ccb25b..24ab2911aab43 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_namespace.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_namespace.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_node.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_node.go index 6b5a7a4164742..1f27f6e627c9a 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_node.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_pod.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_pod.go index 477e7826730ca..a1a4b4a023db3 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_pod.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_pod.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_service.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_service.go index ef889d53a4732..2208b3c0a5dc7 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_service.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/fake/fake_service.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/generated_expansion.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/generated_expansion.go index 684d164fba8ed..1eeccd647465c 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/generated_expansion.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/generated_expansion.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/namespace.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/namespace.go index 9b5036a2a9788..7fea2416da531 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/namespace.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/namespace.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/node.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/node.go index 1c764007fd34a..6d2e916cff5c5 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/node.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/pod.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/pod.go index e0d1c8aa346f7..f46d4d7c3df94 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/pod.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/pod.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/service.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/service.go index d3e0a874e96ab..b981e197965e6 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/service.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/core/v1/service.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/discovery_client.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/discovery_client.go index 2d13ede29c9e1..be12aaba00e98 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/discovery_client.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/discovery_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/doc.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/doc.go index d47fd684f5bcc..50cfbd485a545 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/doc.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/endpointslice.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/endpointslice.go index f7074ec3c484c..cfb4ab528eee7 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/endpointslice.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/endpointslice.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/fake/doc.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/fake/doc.go index e04510ae55705..57bd090efb093 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/fake/doc.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/fake/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/fake/fake_discovery_client.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/fake/fake_discovery_client.go index 87e899d5eb812..0cee06b9942c9 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/fake/fake_discovery_client.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/fake/fake_discovery_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/fake/fake_endpointslice.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/fake/fake_endpointslice.go index 89c7c99b6d626..77b5ec3970945 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/fake/fake_endpointslice.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/fake/fake_endpointslice.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/generated_expansion.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/generated_expansion.go index 56de7efea441f..7295b601e640a 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/generated_expansion.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1/generated_expansion.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/discovery_client.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/discovery_client.go index 9cd41178dee0f..e5a55627f80b6 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/discovery_client.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/discovery_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/doc.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/doc.go index e85c598541903..07e23ed4aad76 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/doc.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/endpointslice.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/endpointslice.go index cb10c6b9372e5..a77bbb97e0aba 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/endpointslice.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/endpointslice.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/fake/doc.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/fake/doc.go index e04510ae55705..57bd090efb093 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/fake/doc.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/fake/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/fake/fake_discovery_client.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/fake/fake_discovery_client.go index da2eba9f82432..a1d258d80c557 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/fake/fake_discovery_client.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/fake/fake_discovery_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/fake/fake_endpointslice.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/fake/fake_endpointslice.go index 0d8e05018f1c7..df28d35608ddc 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/fake/fake_endpointslice.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/fake/fake_endpointslice.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/generated_expansion.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/generated_expansion.go index 4a4ff90ed3993..1aa54bf9b1aca 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/generated_expansion.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/discovery/v1beta1/generated_expansion.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/doc.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/doc.go index d47fd684f5bcc..50cfbd485a545 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/doc.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/fake/doc.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/fake/doc.go index e04510ae55705..57bd090efb093 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/fake/doc.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/fake/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/fake/fake_networking_client.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/fake/fake_networking_client.go index 2ff7b76bc50c5..2e1dbd437eeed 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/fake/fake_networking_client.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/fake/fake_networking_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/fake/fake_networkpolicy.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/fake/fake_networkpolicy.go index 441afbf4300bf..428a11b3dbde4 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/fake/fake_networkpolicy.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/fake/fake_networkpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/generated_expansion.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/generated_expansion.go index a58b8e4b9373f..e78ec0609159e 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/generated_expansion.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/generated_expansion.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/networking_client.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/networking_client.go index c26e5993b2664..2367f5f153f1a 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/networking_client.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/networking_client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/networkpolicy.go b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/networkpolicy.go index 7f0e0802001a2..2ec2caab96e7d 100644 --- a/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/networkpolicy.go +++ b/pkg/k8s/slim/k8s/client/clientset/versioned/typed/networking/v1/networkpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by client-gen. DO NOT EDIT. diff --git a/pkg/k8s/synced/apigroups.go b/pkg/k8s/synced/apigroups.go index 24db113e83949..be1fd5d5380c6 100644 --- a/pkg/k8s/synced/apigroups.go +++ b/pkg/k8s/synced/apigroups.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package synced diff --git a/pkg/k8s/synced/crd.go b/pkg/k8s/synced/crd.go index b2a732434aec9..52d975c449200 100644 --- a/pkg/k8s/synced/crd.go +++ b/pkg/k8s/synced/crd.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package synced provides tools for tracking if k8s resources have // been initially sychronized with the k8s apiserver. diff --git a/pkg/k8s/synced/logfields.go b/pkg/k8s/synced/logfields.go index 3e3391ba44430..6ed069ca7493c 100644 --- a/pkg/k8s/synced/logfields.go +++ b/pkg/k8s/synced/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package synced diff --git a/pkg/k8s/synced/resources.go b/pkg/k8s/synced/resources.go index 6a065cadba664..3a347bc4e7f21 100644 --- a/pkg/k8s/synced/resources.go +++ b/pkg/k8s/synced/resources.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package synced diff --git a/pkg/k8s/types/doc.go b/pkg/k8s/types/doc.go index 95ff3aff35ee2..7fc8fc41bbfb8 100644 --- a/pkg/k8s/types/doc.go +++ b/pkg/k8s/types/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium // +k8s:deepcopy-gen=package,register // +deepequal-gen=package diff --git a/pkg/k8s/types/types.go b/pkg/k8s/types/types.go index a438fa6773148..520ba78c07a7c 100644 --- a/pkg/k8s/types/types.go +++ b/pkg/k8s/types/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/k8s/types/zz_generated.deepcopy.go b/pkg/k8s/types/zz_generated.deepcopy.go index ce5bcff99d15d..d4a84efd29036 100644 --- a/pkg/k8s/types/zz_generated.deepcopy.go +++ b/pkg/k8s/types/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/k8s/types/zz_generated.deepequal.go b/pkg/k8s/types/zz_generated.deepequal.go index c9945606e1eb4..2355aa9c43d2f 100644 --- a/pkg/k8s/types/zz_generated.deepequal.go +++ b/pkg/k8s/types/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/k8s/utils/utils.go b/pkg/k8s/utils/utils.go index 5e0b0d973228a..9f48291519083 100644 --- a/pkg/k8s/utils/utils.go +++ b/pkg/k8s/utils/utils.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package utils diff --git a/pkg/k8s/utils/utils_test.go b/pkg/k8s/utils/utils_test.go index d7dbe3525c7f4..dc789ebea0d22 100644 --- a/pkg/k8s/utils/utils_test.go +++ b/pkg/k8s/utils/utils_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2022 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/version/version.go b/pkg/k8s/version/version.go index 0f5c31850a326..95f42fc287dab 100644 --- a/pkg/k8s/version/version.go +++ b/pkg/k8s/version/version.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium // Package version keeps track of the Kubernetes version the client is // connected to diff --git a/pkg/k8s/watchers/cilium_clusterwide_network_policy.go b/pkg/k8s/watchers/cilium_clusterwide_network_policy.go index 1b4ba15b0bfba..4ebbd7ebd8771 100644 --- a/pkg/k8s/watchers/cilium_clusterwide_network_policy.go +++ b/pkg/k8s/watchers/cilium_clusterwide_network_policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/cilium_egress_gateway_policy.go b/pkg/k8s/watchers/cilium_egress_gateway_policy.go index 5f7d828c69de9..fb43f670c9cda 100644 --- a/pkg/k8s/watchers/cilium_egress_gateway_policy.go +++ b/pkg/k8s/watchers/cilium_egress_gateway_policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/cilium_endpoint.go b/pkg/k8s/watchers/cilium_endpoint.go index 295cfc0c1df64..204c2a7a405f2 100644 --- a/pkg/k8s/watchers/cilium_endpoint.go +++ b/pkg/k8s/watchers/cilium_endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/cilium_endpoint_slice.go b/pkg/k8s/watchers/cilium_endpoint_slice.go index 78cc4f15fa4dc..4a857eeafe225 100644 --- a/pkg/k8s/watchers/cilium_endpoint_slice.go +++ b/pkg/k8s/watchers/cilium_endpoint_slice.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/cilium_endpoint_slice_subscriber.go b/pkg/k8s/watchers/cilium_endpoint_slice_subscriber.go index 9536a63fd06a1..7985fcf575af6 100644 --- a/pkg/k8s/watchers/cilium_endpoint_slice_subscriber.go +++ b/pkg/k8s/watchers/cilium_endpoint_slice_subscriber.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/cilium_local_redirect_policy.go b/pkg/k8s/watchers/cilium_local_redirect_policy.go index f77055ac5c140..5007bcdf36747 100644 --- a/pkg/k8s/watchers/cilium_local_redirect_policy.go +++ b/pkg/k8s/watchers/cilium_local_redirect_policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/cilium_network_policy.go b/pkg/k8s/watchers/cilium_network_policy.go index 8f34476f99144..6ab3b26fd31c2 100644 --- a/pkg/k8s/watchers/cilium_network_policy.go +++ b/pkg/k8s/watchers/cilium_network_policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/cilium_node.go b/pkg/k8s/watchers/cilium_node.go index 0c319de1dd52e..a486331d3fa17 100644 --- a/pkg/k8s/watchers/cilium_node.go +++ b/pkg/k8s/watchers/cilium_node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/endpoint.go b/pkg/k8s/watchers/endpoint.go index 1edf950918b19..7a1ad2ba7fe77 100644 --- a/pkg/k8s/watchers/endpoint.go +++ b/pkg/k8s/watchers/endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/endpoint_slice.go b/pkg/k8s/watchers/endpoint_slice.go index 714178c24a215..f2d3ca852d96e 100644 --- a/pkg/k8s/watchers/endpoint_slice.go +++ b/pkg/k8s/watchers/endpoint_slice.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/endpointsynchronizer.go b/pkg/k8s/watchers/endpointsynchronizer.go index 2d556365d43a1..530e2e9af5db6 100644 --- a/pkg/k8s/watchers/endpointsynchronizer.go +++ b/pkg/k8s/watchers/endpointsynchronizer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/namespace.go b/pkg/k8s/watchers/namespace.go index 464787ff3f2f3..4d396f26f712a 100644 --- a/pkg/k8s/watchers/namespace.go +++ b/pkg/k8s/watchers/namespace.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/network_policy.go b/pkg/k8s/watchers/network_policy.go index 9055992af5180..2d725f4bc30b3 100644 --- a/pkg/k8s/watchers/network_policy.go +++ b/pkg/k8s/watchers/network_policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/node.go b/pkg/k8s/watchers/node.go index c0c87e8baa691..34d9018ff3833 100644 --- a/pkg/k8s/watchers/node.go +++ b/pkg/k8s/watchers/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/pod.go b/pkg/k8s/watchers/pod.go index 345ed0bd7be9a..da3a3193a946a 100644 --- a/pkg/k8s/watchers/pod.go +++ b/pkg/k8s/watchers/pod.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/service.go b/pkg/k8s/watchers/service.go index 94c239ede49ae..8f53cb2e40a5b 100644 --- a/pkg/k8s/watchers/service.go +++ b/pkg/k8s/watchers/service.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/subscriber/ces.go b/pkg/k8s/watchers/subscriber/ces.go index 502c19bf49cc8..e0fa11dc3a877 100644 --- a/pkg/k8s/watchers/subscriber/ces.go +++ b/pkg/k8s/watchers/subscriber/ces.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package subscriber diff --git a/pkg/k8s/watchers/subscriber/ciliumnode.go b/pkg/k8s/watchers/subscriber/ciliumnode.go index 963c41f93a922..b1a82a1c8b83f 100644 --- a/pkg/k8s/watchers/subscriber/ciliumnode.go +++ b/pkg/k8s/watchers/subscriber/ciliumnode.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package subscriber diff --git a/pkg/k8s/watchers/subscriber/node.go b/pkg/k8s/watchers/subscriber/node.go index a51ace85f4a09..930b91a0a790b 100644 --- a/pkg/k8s/watchers/subscriber/node.go +++ b/pkg/k8s/watchers/subscriber/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package subscriber diff --git a/pkg/k8s/watchers/subscriber/raw.go b/pkg/k8s/watchers/subscriber/raw.go index 90e7800b9f642..eac44d6af6a34 100644 --- a/pkg/k8s/watchers/subscriber/raw.go +++ b/pkg/k8s/watchers/subscriber/raw.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package subscriber diff --git a/pkg/k8s/watchers/subscriber/service.go b/pkg/k8s/watchers/subscriber/service.go index 2b3cea0950937..d5bee1982834f 100644 --- a/pkg/k8s/watchers/subscriber/service.go +++ b/pkg/k8s/watchers/subscriber/service.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package subscriber diff --git a/pkg/k8s/watchers/subscriber/subscriber.go b/pkg/k8s/watchers/subscriber/subscriber.go index dab1a50e9b136..0439258e4cb66 100644 --- a/pkg/k8s/watchers/subscriber/subscriber.go +++ b/pkg/k8s/watchers/subscriber/subscriber.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // Package subscriber implements a mechanism to represent K8s watcher // subscribers and allows K8s events to objects / resources to notify their diff --git a/pkg/k8s/watchers/watcher.go b/pkg/k8s/watchers/watcher.go index ffe8581887246..41a081b00910c 100644 --- a/pkg/k8s/watchers/watcher.go +++ b/pkg/k8s/watchers/watcher.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package watchers diff --git a/pkg/k8s/watchers/watcher_test.go b/pkg/k8s/watchers/watcher_test.go index de55f0b421a13..afee7aec332f9 100644 --- a/pkg/k8s/watchers/watcher_test.go +++ b/pkg/k8s/watchers/watcher_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/k8s/zz_generated.deepcopy.go b/pkg/k8s/zz_generated.deepcopy.go index bc9d52a2ca663..d43621ac3875a 100644 --- a/pkg/k8s/zz_generated.deepcopy.go +++ b/pkg/k8s/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/k8s/zz_generated.deepequal.go b/pkg/k8s/zz_generated.deepequal.go index 09625f22c7266..e94c72b33a669 100644 --- a/pkg/k8s/zz_generated.deepequal.go +++ b/pkg/k8s/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/kafka/doc.go b/pkg/kafka/doc.go index c01743b5cf323..b18b8ae0d6b51 100644 --- a/pkg/kafka/doc.go +++ b/pkg/kafka/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium // Package kafka provides a library to parse Kafka requests and responses and // apply policy rules diff --git a/pkg/kafka/error.go b/pkg/kafka/error.go index 9f5f335c36894..6f43e27cfe8af 100644 --- a/pkg/kafka/error.go +++ b/pkg/kafka/error.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package kafka diff --git a/pkg/kafka/policy.go b/pkg/kafka/policy.go index a3c6498310e70..118d653d41c8f 100644 --- a/pkg/kafka/policy.go +++ b/pkg/kafka/policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package kafka diff --git a/pkg/kafka/policy_test.go b/pkg/kafka/policy_test.go index b4f3b4cbd997c..5600db74b642e 100644 --- a/pkg/kafka/policy_test.go +++ b/pkg/kafka/policy_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/kafka/request.go b/pkg/kafka/request.go index 2a9fd0ec711e6..0e303b4218f03 100644 --- a/pkg/kafka/request.go +++ b/pkg/kafka/request.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package kafka diff --git a/pkg/kafka/response.go b/pkg/kafka/response.go index 3ac86d869e438..7e6df36237a51 100644 --- a/pkg/kafka/response.go +++ b/pkg/kafka/response.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package kafka diff --git a/pkg/kvstore/allocator/allocator.go b/pkg/kvstore/allocator/allocator.go index 0a1bf93394628..cd7c47f63e67f 100644 --- a/pkg/kvstore/allocator/allocator.go +++ b/pkg/kvstore/allocator/allocator.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package allocator diff --git a/pkg/kvstore/allocator/allocator_test.go b/pkg/kvstore/allocator/allocator_test.go index 2717394009232..ee791b6522f6b 100644 --- a/pkg/kvstore/allocator/allocator_test.go +++ b/pkg/kvstore/allocator/allocator_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/kvstore/allocator/doc.go b/pkg/kvstore/allocator/doc.go index 3d25764ac89c2..26c9a9aad1020 100644 --- a/pkg/kvstore/allocator/doc.go +++ b/pkg/kvstore/allocator/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium // Package allocator provides a kvstore based ID allocator package allocator diff --git a/pkg/kvstore/allocator/logfields.go b/pkg/kvstore/allocator/logfields.go index 8d863e1f7e2b9..f990ae569b502 100644 --- a/pkg/kvstore/allocator/logfields.go +++ b/pkg/kvstore/allocator/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package allocator diff --git a/pkg/kvstore/backend.go b/pkg/kvstore/backend.go index bef916610e7eb..055bca38cc97b 100644 --- a/pkg/kvstore/backend.go +++ b/pkg/kvstore/backend.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package kvstore diff --git a/pkg/kvstore/backwards_compat.go b/pkg/kvstore/backwards_compat.go index aa334e6a9b0a8..8058fa94489bf 100644 --- a/pkg/kvstore/backwards_compat.go +++ b/pkg/kvstore/backwards_compat.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package kvstore diff --git a/pkg/kvstore/base_test.go b/pkg/kvstore/base_test.go index 626f7e65809de..55bf099e1c0de 100644 --- a/pkg/kvstore/base_test.go +++ b/pkg/kvstore/base_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/kvstore/client.go b/pkg/kvstore/client.go index 463e62c483ba8..6f9bdb1a39f50 100644 --- a/pkg/kvstore/client.go +++ b/pkg/kvstore/client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package kvstore diff --git a/pkg/kvstore/config.go b/pkg/kvstore/config.go index 5a8b1284194f7..7e85d4f0669e8 100644 --- a/pkg/kvstore/config.go +++ b/pkg/kvstore/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package kvstore diff --git a/pkg/kvstore/consul.go b/pkg/kvstore/consul.go index 93a21f1069ee2..8134f3845d155 100644 --- a/pkg/kvstore/consul.go +++ b/pkg/kvstore/consul.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package kvstore diff --git a/pkg/kvstore/consul_test.go b/pkg/kvstore/consul_test.go index 4cf411a7ba588..2ca4bb96a5e8d 100644 --- a/pkg/kvstore/consul_test.go +++ b/pkg/kvstore/consul_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/kvstore/doc.go b/pkg/kvstore/doc.go index e91ca8f1d00d4..b69800a22fb25 100644 --- a/pkg/kvstore/doc.go +++ b/pkg/kvstore/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium // Package kvstore abstracts KVstore access and provides a high level API to // atomically manage cluster wide resources diff --git a/pkg/kvstore/dummy.go b/pkg/kvstore/dummy.go index 654490de18877..537af1e903f3a 100644 --- a/pkg/kvstore/dummy.go +++ b/pkg/kvstore/dummy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package kvstore diff --git a/pkg/kvstore/etcd.go b/pkg/kvstore/etcd.go index d2e30c92732f2..14ee072f27681 100644 --- a/pkg/kvstore/etcd.go +++ b/pkg/kvstore/etcd.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package kvstore diff --git a/pkg/kvstore/etcd_test.go b/pkg/kvstore/etcd_test.go index 0378743777345..b665490edf5f3 100644 --- a/pkg/kvstore/etcd_test.go +++ b/pkg/kvstore/etcd_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/kvstore/events.go b/pkg/kvstore/events.go index 85d680f7e80e5..3ac02575fb94f 100644 --- a/pkg/kvstore/events.go +++ b/pkg/kvstore/events.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package kvstore import ( diff --git a/pkg/kvstore/kvstore.go b/pkg/kvstore/kvstore.go index 2fa15de0a325b..fa2b8bd1a8394 100644 --- a/pkg/kvstore/kvstore.go +++ b/pkg/kvstore/kvstore.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package kvstore diff --git a/pkg/kvstore/kvstore_test.go b/pkg/kvstore/kvstore_test.go index 4c11c8950ffbf..3377c67386bb5 100644 --- a/pkg/kvstore/kvstore_test.go +++ b/pkg/kvstore/kvstore_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/kvstore/lock.go b/pkg/kvstore/lock.go index 62b9f4a049908..964b27d0802a8 100644 --- a/pkg/kvstore/lock.go +++ b/pkg/kvstore/lock.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package kvstore diff --git a/pkg/kvstore/lock_test.go b/pkg/kvstore/lock_test.go index 9cac1b9420c03..7b169543524b7 100644 --- a/pkg/kvstore/lock_test.go +++ b/pkg/kvstore/lock_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/kvstore/logfields.go b/pkg/kvstore/logfields.go index 51aaf8f45c904..5b37cf5f06391 100644 --- a/pkg/kvstore/logfields.go +++ b/pkg/kvstore/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package kvstore diff --git a/pkg/kvstore/metrics.go b/pkg/kvstore/metrics.go index 991ce88a50e63..8771501abfaa1 100644 --- a/pkg/kvstore/metrics.go +++ b/pkg/kvstore/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package kvstore diff --git a/pkg/kvstore/store/doc.go b/pkg/kvstore/store/doc.go index 2962edbc903df..e1e20dc8b882d 100644 --- a/pkg/kvstore/store/doc.go +++ b/pkg/kvstore/store/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package store implements a shared store backed by a kvstore or similar with // the following properties: diff --git a/pkg/kvstore/store/store.go b/pkg/kvstore/store/store.go index dc96518527d3c..bd5209896b854 100644 --- a/pkg/kvstore/store/store.go +++ b/pkg/kvstore/store/store.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package store diff --git a/pkg/kvstore/store/store_test.go b/pkg/kvstore/store/store_test.go index f554cc3faa5ea..48f773aae2e95 100644 --- a/pkg/kvstore/store/store_test.go +++ b/pkg/kvstore/store/store_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests && integration_tests // +build !privileged_tests,integration_tests diff --git a/pkg/kvstore/trace.go b/pkg/kvstore/trace.go index 4527b55411e32..a58f966ba19a7 100644 --- a/pkg/kvstore/trace.go +++ b/pkg/kvstore/trace.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package kvstore diff --git a/pkg/kvstore/watcher_cache.go b/pkg/kvstore/watcher_cache.go index 32eb47704aace..a3bf7cbf55323 100644 --- a/pkg/kvstore/watcher_cache.go +++ b/pkg/kvstore/watcher_cache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package kvstore diff --git a/pkg/labels/array.go b/pkg/labels/array.go index d237b78ba7787..cce3ef765a039 100644 --- a/pkg/labels/array.go +++ b/pkg/labels/array.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package labels diff --git a/pkg/labels/array_test.go b/pkg/labels/array_test.go index 612cf282c92b5..ebd058a33fbf7 100644 --- a/pkg/labels/array_test.go +++ b/pkg/labels/array_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/labels/arraylist.go b/pkg/labels/arraylist.go index c3831c23e471b..d677700ffeba2 100644 --- a/pkg/labels/arraylist.go +++ b/pkg/labels/arraylist.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package labels diff --git a/pkg/labels/arraylist_test.go b/pkg/labels/arraylist_test.go index 52576d8d3bba9..826273900b1cf 100644 --- a/pkg/labels/arraylist_test.go +++ b/pkg/labels/arraylist_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/labels/cidr/cidr.go b/pkg/labels/cidr/cidr.go index 816a2524dac68..a83dd5418c79a 100644 --- a/pkg/labels/cidr/cidr.go +++ b/pkg/labels/cidr/cidr.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cidr diff --git a/pkg/labels/cidr/cidr_test.go b/pkg/labels/cidr/cidr_test.go index c300f17b27eb2..fcdf766a8ea1a 100644 --- a/pkg/labels/cidr/cidr_test.go +++ b/pkg/labels/cidr/cidr_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/labels/cidr/doc.go b/pkg/labels/cidr/doc.go index e2f0c67973c45..f97bd9a51f41a 100644 --- a/pkg/labels/cidr/doc.go +++ b/pkg/labels/cidr/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package cidr provides helper methods for generating labels for CIDRs which // are partially derived from node state. diff --git a/pkg/labels/doc.go b/pkg/labels/doc.go index d5be56cd1e660..527cb8d8cab61 100644 --- a/pkg/labels/doc.go +++ b/pkg/labels/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium // +deepequal-gen=package diff --git a/pkg/labels/labels.go b/pkg/labels/labels.go index 9965bbf8724bf..b1ca87d5d96ac 100644 --- a/pkg/labels/labels.go +++ b/pkg/labels/labels.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package labels diff --git a/pkg/labels/labels_test.go b/pkg/labels/labels_test.go index fa3260b2179b6..63d293f358e35 100644 --- a/pkg/labels/labels_test.go +++ b/pkg/labels/labels_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/labels/model/model.go b/pkg/labels/model/model.go index 39160362115d3..b8586372a8a8c 100644 --- a/pkg/labels/model/model.go +++ b/pkg/labels/model/model.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package model diff --git a/pkg/labels/oplabels.go b/pkg/labels/oplabels.go index 1856bae1ce42d..f05f9f0455120 100644 --- a/pkg/labels/oplabels.go +++ b/pkg/labels/oplabels.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package labels diff --git a/pkg/labels/zz_generated.deepequal.go b/pkg/labels/zz_generated.deepequal.go index 1407ef3d2e992..d4fd08d4cab1c 100644 --- a/pkg/labels/zz_generated.deepequal.go +++ b/pkg/labels/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/labelsfilter/filter.go b/pkg/labelsfilter/filter.go index adde6e238a13b..9bf06260be955 100644 --- a/pkg/labelsfilter/filter.go +++ b/pkg/labelsfilter/filter.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package labelsfilter diff --git a/pkg/labelsfilter/filter_test.go b/pkg/labelsfilter/filter_test.go index bc000c91c7318..9b49dbff16382 100644 --- a/pkg/labelsfilter/filter_test.go +++ b/pkg/labelsfilter/filter_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/launcher/launcher.go b/pkg/launcher/launcher.go index cea6988484091..b3dd6c95ce044 100644 --- a/pkg/launcher/launcher.go +++ b/pkg/launcher/launcher.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package launcher diff --git a/pkg/loadbalancer/doc.go b/pkg/loadbalancer/doc.go index 5ef5ce2df9bb0..997e3f7f18672 100644 --- a/pkg/loadbalancer/doc.go +++ b/pkg/loadbalancer/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // +k8s:deepcopy-gen=package,register diff --git a/pkg/loadbalancer/loadbalancer.go b/pkg/loadbalancer/loadbalancer.go index a526335a4cfe2..94cc41a317c9c 100644 --- a/pkg/loadbalancer/loadbalancer.go +++ b/pkg/loadbalancer/loadbalancer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package loadbalancer diff --git a/pkg/loadbalancer/loadbalancer_test.go b/pkg/loadbalancer/loadbalancer_test.go index b320b34d321a5..10adace69c87e 100644 --- a/pkg/loadbalancer/loadbalancer_test.go +++ b/pkg/loadbalancer/loadbalancer_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/loadbalancer/zz_generated.deepcopy.go b/pkg/loadbalancer/zz_generated.deepcopy.go index 7b5104c43a5ad..cff5e4ae11001 100644 --- a/pkg/loadbalancer/zz_generated.deepcopy.go +++ b/pkg/loadbalancer/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/loadbalancer/zz_generated.deepequal.go b/pkg/loadbalancer/zz_generated.deepequal.go index c4640f652c4a4..5705344c31df8 100644 --- a/pkg/loadbalancer/zz_generated.deepequal.go +++ b/pkg/loadbalancer/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/loadinfo/doc.go b/pkg/loadinfo/doc.go index 6f97494e7a570..db132607c6e67 100644 --- a/pkg/loadinfo/doc.go +++ b/pkg/loadinfo/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package loadinfo provides the ability to log system load information either // at a particular time or periodically in the background diff --git a/pkg/loadinfo/loadinfo.go b/pkg/loadinfo/loadinfo.go index 6b0f724aef7e3..104dce2ba1fcb 100644 --- a/pkg/loadinfo/loadinfo.go +++ b/pkg/loadinfo/loadinfo.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package loadinfo diff --git a/pkg/lock/lock.go b/pkg/lock/lock.go index b24581e2bf2af..3f9474660f1f7 100644 --- a/pkg/lock/lock.go +++ b/pkg/lock/lock.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package lock diff --git a/pkg/lock/lock_debug.go b/pkg/lock/lock_debug.go index d4b56391559d7..3ecd697ec0d75 100644 --- a/pkg/lock/lock_debug.go +++ b/pkg/lock/lock_debug.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build lockdebug // +build lockdebug diff --git a/pkg/lock/lock_fast.go b/pkg/lock/lock_fast.go index 1c52138ffff94..312f4909bb2a5 100644 --- a/pkg/lock/lock_fast.go +++ b/pkg/lock/lock_fast.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !lockdebug // +build !lockdebug diff --git a/pkg/lock/lock_test.go b/pkg/lock/lock_test.go index fa1a0b1364717..3a6840918723d 100644 --- a/pkg/lock/lock_test.go +++ b/pkg/lock/lock_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/lock/semaphored_mutex.go b/pkg/lock/semaphored_mutex.go index d02d99368af4e..9b2957abd86fd 100644 --- a/pkg/lock/semaphored_mutex.go +++ b/pkg/lock/semaphored_mutex.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package lock diff --git a/pkg/lock/semaphored_mutex_test.go b/pkg/lock/semaphored_mutex_test.go index 6eabc410198e6..27026e737286e 100644 --- a/pkg/lock/semaphored_mutex_test.go +++ b/pkg/lock/semaphored_mutex_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/lock/stoppable_waitgroup.go b/pkg/lock/stoppable_waitgroup.go index 8f34031187c16..614b0c0b6d7dc 100644 --- a/pkg/lock/stoppable_waitgroup.go +++ b/pkg/lock/stoppable_waitgroup.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package lock diff --git a/pkg/lock/stoppable_waitgroup_test.go b/pkg/lock/stoppable_waitgroup_test.go index 05d5823fde151..da7bdd6c0a15b 100644 --- a/pkg/lock/stoppable_waitgroup_test.go +++ b/pkg/lock/stoppable_waitgroup_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/logging/debugdetection.go b/pkg/logging/debugdetection.go index d7c9a6b8da910..7227b6be84e2e 100644 --- a/pkg/logging/debugdetection.go +++ b/pkg/logging/debugdetection.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package logging diff --git a/pkg/logging/hooks/file_rotation.go b/pkg/logging/hooks/file_rotation.go index a398106b34a44..128881c762823 100644 --- a/pkg/logging/hooks/file_rotation.go +++ b/pkg/logging/hooks/file_rotation.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2022 Authors of Cilium +// Copyright Authors of Cilium package hooks diff --git a/pkg/logging/limiter.go b/pkg/logging/limiter.go index bf64ff5f0e758..bc0c60202ae6c 100644 --- a/pkg/logging/limiter.go +++ b/pkg/logging/limiter.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package logging diff --git a/pkg/logging/limiter_test.go b/pkg/logging/limiter_test.go index 99993ebd4d78d..7408adbad1c8d 100644 --- a/pkg/logging/limiter_test.go +++ b/pkg/logging/limiter_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/logging/logfields/helpers.go b/pkg/logging/logfields/helpers.go index c79c364525220..9171bd52beef1 100644 --- a/pkg/logging/logfields/helpers.go +++ b/pkg/logging/logfields/helpers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package logfields diff --git a/pkg/logging/logfields/logfields.go b/pkg/logging/logfields/logfields.go index eb7f0d4ae1b82..04b794c0c9abc 100644 --- a/pkg/logging/logfields/logfields.go +++ b/pkg/logging/logfields/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2018 Authors of Cilium +// Copyright Authors of Cilium // Package logfields defines common logging fields which are used across packages package logfields diff --git a/pkg/logging/logging.go b/pkg/logging/logging.go index 9049efd6930ba..ba8c9300c418f 100644 --- a/pkg/logging/logging.go +++ b/pkg/logging/logging.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package logging diff --git a/pkg/logging/logging_nosyslog.go b/pkg/logging/logging_nosyslog.go index ff63411afc256..b23aba8f4fc9f 100644 --- a/pkg/logging/logging_nosyslog.go +++ b/pkg/logging/logging_nosyslog.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build windows // +build windows diff --git a/pkg/logging/logging_syslog.go b/pkg/logging/logging_syslog.go index 9ea5075b83996..25cc5b2edbe24 100644 --- a/pkg/logging/logging_syslog.go +++ b/pkg/logging/logging_syslog.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !windows // +build !windows diff --git a/pkg/logging/logging_test.go b/pkg/logging/logging_test.go index fd889d8179833..03907e44315d5 100644 --- a/pkg/logging/logging_test.go +++ b/pkg/logging/logging_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/mac/mac.go b/pkg/mac/mac.go index 6dc1a3930e225..ed63c41227f0e 100644 --- a/pkg/mac/mac.go +++ b/pkg/mac/mac.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package mac diff --git a/pkg/mac/mac_test.go b/pkg/mac/mac_test.go index 631714de4ff7a..abfe9ec6b90a6 100644 --- a/pkg/mac/mac_test.go +++ b/pkg/mac/mac_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/maglev/maglev.go b/pkg/maglev/maglev.go index 1c71fd9947d5c..90d9c991686da 100644 --- a/pkg/maglev/maglev.go +++ b/pkg/maglev/maglev.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package maglev diff --git a/pkg/maglev/maglev_test.go b/pkg/maglev/maglev_test.go index 3b6a98fb5ea27..c0606d30663f9 100644 --- a/pkg/maglev/maglev_test.go +++ b/pkg/maglev/maglev_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/maps/bwmap/bwmap.go b/pkg/maps/bwmap/bwmap.go index 5c5780352a306..275d62c953b49 100644 --- a/pkg/maps/bwmap/bwmap.go +++ b/pkg/maps/bwmap/bwmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package bwmap diff --git a/pkg/maps/bwmap/doc.go b/pkg/maps/bwmap/doc.go index 8568a20d98a59..b15be313f0c40 100644 --- a/pkg/maps/bwmap/doc.go +++ b/pkg/maps/bwmap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package bwmap represents the BPF map used to enforce Pod bandwidth // limitations via EDT (Earliest Departure Time) + BPF. diff --git a/pkg/maps/callsmap/callsmap.go b/pkg/maps/callsmap/callsmap.go index fee416c83384e..b84abbf7e8ffc 100644 --- a/pkg/maps/callsmap/callsmap.go +++ b/pkg/maps/callsmap/callsmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package callsmap diff --git a/pkg/maps/callsmap/doc.go b/pkg/maps/callsmap/doc.go index 749410055869a..2f3927745e799 100644 --- a/pkg/maps/callsmap/doc.go +++ b/pkg/maps/callsmap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package callsmap represents the internal calls map for endpoint and host // datapaths. It is primarily managed from the datapath; Cilium side contains a diff --git a/pkg/maps/cidrmap/cidrmap.go b/pkg/maps/cidrmap/cidrmap.go index fa0db0fab4292..df676af8d11ce 100644 --- a/pkg/maps/cidrmap/cidrmap.go +++ b/pkg/maps/cidrmap/cidrmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package cidrmap diff --git a/pkg/maps/ctmap/ctmap.go b/pkg/maps/ctmap/ctmap.go index be16fce9c118b..a25cac9557f26 100644 --- a/pkg/maps/ctmap/ctmap.go +++ b/pkg/maps/ctmap/ctmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package ctmap diff --git a/pkg/maps/ctmap/ctmap_privileged_test.go b/pkg/maps/ctmap/ctmap_privileged_test.go index d4c0c1a642a80..0aa3eac481e05 100644 --- a/pkg/maps/ctmap/ctmap_privileged_test.go +++ b/pkg/maps/ctmap/ctmap_privileged_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/maps/ctmap/ctmap_test.go b/pkg/maps/ctmap/ctmap_test.go index d87cb2a9702a5..97eefa9918d5e 100644 --- a/pkg/maps/ctmap/ctmap_test.go +++ b/pkg/maps/ctmap/ctmap_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/maps/ctmap/doc.go b/pkg/maps/ctmap/doc.go index 75584cc213a25..4fb4d53e2fb37 100644 --- a/pkg/maps/ctmap/doc.go +++ b/pkg/maps/ctmap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // +groupName=maps package ctmap diff --git a/pkg/maps/ctmap/gc/gc.go b/pkg/maps/ctmap/gc/gc.go index 5dd6126dba180..e205d9d0d61f6 100644 --- a/pkg/maps/ctmap/gc/gc.go +++ b/pkg/maps/ctmap/gc/gc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package gc diff --git a/pkg/maps/ctmap/lookup.go b/pkg/maps/ctmap/lookup.go index 3031403c86986..7651d9f0e15ac 100644 --- a/pkg/maps/ctmap/lookup.go +++ b/pkg/maps/ctmap/lookup.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package ctmap diff --git a/pkg/maps/ctmap/metrics.go b/pkg/maps/ctmap/metrics.go index 1b5b7b08d3d9f..44ac2d50cc6bb 100644 --- a/pkg/maps/ctmap/metrics.go +++ b/pkg/maps/ctmap/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package ctmap diff --git a/pkg/maps/ctmap/types.go b/pkg/maps/ctmap/types.go index a41c8ed6065f7..7708595f28b9e 100644 --- a/pkg/maps/ctmap/types.go +++ b/pkg/maps/ctmap/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package ctmap diff --git a/pkg/maps/ctmap/utils.go b/pkg/maps/ctmap/utils.go index 0207e1a29c537..177f86ec75e7f 100644 --- a/pkg/maps/ctmap/utils.go +++ b/pkg/maps/ctmap/utils.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package ctmap diff --git a/pkg/maps/ctmap/zz_generated.deepcopy.go b/pkg/maps/ctmap/zz_generated.deepcopy.go index 191bd51e8eb5c..bf4ead4df8f1a 100644 --- a/pkg/maps/ctmap/zz_generated.deepcopy.go +++ b/pkg/maps/ctmap/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/egressmap/doc.go b/pkg/maps/egressmap/doc.go index 53dc2909d5c02..b6de1a5a414c8 100644 --- a/pkg/maps/egressmap/doc.go +++ b/pkg/maps/egressmap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // +groupName=maps package egressmap diff --git a/pkg/maps/egressmap/egress.go b/pkg/maps/egressmap/egress.go index fb2c98e8758a0..184558d3a3069 100644 --- a/pkg/maps/egressmap/egress.go +++ b/pkg/maps/egressmap/egress.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package egressmap diff --git a/pkg/maps/egressmap/egress_privileged_test.go b/pkg/maps/egressmap/egress_privileged_test.go index 3cd5dd40650db..0539d1ccad1c3 100644 --- a/pkg/maps/egressmap/egress_privileged_test.go +++ b/pkg/maps/egressmap/egress_privileged_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/maps/egressmap/policy.go b/pkg/maps/egressmap/policy.go index 9706bc4c0aa3d..5208b0a70a05e 100644 --- a/pkg/maps/egressmap/policy.go +++ b/pkg/maps/egressmap/policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package egressmap diff --git a/pkg/maps/encrypt/doc.go b/pkg/maps/encrypt/doc.go index 51e66d313c2c2..70892260aa4f9 100644 --- a/pkg/maps/encrypt/doc.go +++ b/pkg/maps/encrypt/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package encrypt represents the nodes current encryption state. It is used // by the datapath to learn current encryption configuration and managed by diff --git a/pkg/maps/encrypt/encrypt.go b/pkg/maps/encrypt/encrypt.go index 31b600ef324b3..ef16b2d6556d2 100644 --- a/pkg/maps/encrypt/encrypt.go +++ b/pkg/maps/encrypt/encrypt.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package encrypt diff --git a/pkg/maps/encrypt/zz_generated.deepcopy.go b/pkg/maps/encrypt/zz_generated.deepcopy.go index 5b2880672af4b..35b6bfe0a67af 100644 --- a/pkg/maps/encrypt/zz_generated.deepcopy.go +++ b/pkg/maps/encrypt/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/eppolicymap/doc.go b/pkg/maps/eppolicymap/doc.go index 9b72dec47bd72..0f2f749e25960 100644 --- a/pkg/maps/eppolicymap/doc.go +++ b/pkg/maps/eppolicymap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium // Package eppolicymap represents the map from an endpoint ID to its policy map. // This map is of type bpf.MapTypeHashOfMaps where the key is the endpoint ID. diff --git a/pkg/maps/eppolicymap/eppolicymap.go b/pkg/maps/eppolicymap/eppolicymap.go index b89897b002515..3472e0c4e64f1 100644 --- a/pkg/maps/eppolicymap/eppolicymap.go +++ b/pkg/maps/eppolicymap/eppolicymap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package eppolicymap diff --git a/pkg/maps/eppolicymap/eppolicymap_test.go b/pkg/maps/eppolicymap/eppolicymap_test.go index bd7837c4a69da..bbcc31d522716 100644 --- a/pkg/maps/eppolicymap/eppolicymap_test.go +++ b/pkg/maps/eppolicymap/eppolicymap_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/maps/eppolicymap/zz_generated.deepcopy.go b/pkg/maps/eppolicymap/zz_generated.deepcopy.go index 89c6823939490..e897e7d410ee4 100644 --- a/pkg/maps/eppolicymap/zz_generated.deepcopy.go +++ b/pkg/maps/eppolicymap/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/eventsmap/doc.go b/pkg/maps/eventsmap/doc.go index 839b7fe4fbd9d..46e46b2a9bbef 100644 --- a/pkg/maps/eventsmap/doc.go +++ b/pkg/maps/eventsmap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package eventsmap represents the perf event map used by the datapath to // send events to the Cilium agent. It is primarily managed from the diff --git a/pkg/maps/eventsmap/eventsmap.go b/pkg/maps/eventsmap/eventsmap.go index 567494f4ef12d..0d600fd79c7e6 100644 --- a/pkg/maps/eventsmap/eventsmap.go +++ b/pkg/maps/eventsmap/eventsmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package eventsmap diff --git a/pkg/maps/eventsmap/zz_generated.deepcopy.go b/pkg/maps/eventsmap/zz_generated.deepcopy.go index fabb3a08331ef..03bbd38496151 100644 --- a/pkg/maps/eventsmap/zz_generated.deepcopy.go +++ b/pkg/maps/eventsmap/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/fragmap/doc.go b/pkg/maps/fragmap/doc.go index 3f9d0e046a23f..29622b561ff92 100644 --- a/pkg/maps/fragmap/doc.go +++ b/pkg/maps/fragmap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package fragmap represents the BPF map used to associate IPv4 datagram // fragments to the L4 ports of the datagram they belong to, in order to diff --git a/pkg/maps/fragmap/fragmap.go b/pkg/maps/fragmap/fragmap.go index d2ce3440ebad5..39e1e0f988ec3 100644 --- a/pkg/maps/fragmap/fragmap.go +++ b/pkg/maps/fragmap/fragmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package fragmap diff --git a/pkg/maps/fragmap/zz_generated.deepcopy.go b/pkg/maps/fragmap/zz_generated.deepcopy.go index 5d486250ad02b..95d95161adc85 100644 --- a/pkg/maps/fragmap/zz_generated.deepcopy.go +++ b/pkg/maps/fragmap/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/ipcache/doc.go b/pkg/maps/ipcache/doc.go index 129bf18bd1364..a24d83cb7e4db 100644 --- a/pkg/maps/ipcache/doc.go +++ b/pkg/maps/ipcache/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // +groupName=maps package ipcache diff --git a/pkg/maps/ipcache/ipcache.go b/pkg/maps/ipcache/ipcache.go index 35759f92a24ee..f8bfd76d0bb95 100644 --- a/pkg/maps/ipcache/ipcache.go +++ b/pkg/maps/ipcache/ipcache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package ipcache diff --git a/pkg/maps/ipcache/zz_generated.deepcopy.go b/pkg/maps/ipcache/zz_generated.deepcopy.go index b9046432ac49d..52a4163961736 100644 --- a/pkg/maps/ipcache/zz_generated.deepcopy.go +++ b/pkg/maps/ipcache/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/ipmasq/ipmasq.go b/pkg/maps/ipmasq/ipmasq.go index 84cf79f4c7f53..e624d38918e92 100644 --- a/pkg/maps/ipmasq/ipmasq.go +++ b/pkg/maps/ipmasq/ipmasq.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package ipmasq diff --git a/pkg/maps/ipmasq/zz_generated.deepcopy.go b/pkg/maps/ipmasq/zz_generated.deepcopy.go index a2d4bb893b1cf..4afab8cb7fb96 100644 --- a/pkg/maps/ipmasq/zz_generated.deepcopy.go +++ b/pkg/maps/ipmasq/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/lbmap/affinity.go b/pkg/maps/lbmap/affinity.go index 17d5c235d49a3..4bb2b41c7c9d7 100644 --- a/pkg/maps/lbmap/affinity.go +++ b/pkg/maps/lbmap/affinity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package lbmap diff --git a/pkg/maps/lbmap/doc.go b/pkg/maps/lbmap/doc.go index 286340789c394..71ea1be6fc445 100644 --- a/pkg/maps/lbmap/doc.go +++ b/pkg/maps/lbmap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // +groupName=maps package lbmap diff --git a/pkg/maps/lbmap/ipv4.go b/pkg/maps/lbmap/ipv4.go index 65fab0f39bdfc..aee1a95b328d6 100644 --- a/pkg/maps/lbmap/ipv4.go +++ b/pkg/maps/lbmap/ipv4.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package lbmap diff --git a/pkg/maps/lbmap/ipv6.go b/pkg/maps/lbmap/ipv6.go index 3911197587b16..f0d13ace08c56 100644 --- a/pkg/maps/lbmap/ipv6.go +++ b/pkg/maps/lbmap/ipv6.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package lbmap diff --git a/pkg/maps/lbmap/lbmap.go b/pkg/maps/lbmap/lbmap.go index b9326000bf63e..138870d90698d 100644 --- a/pkg/maps/lbmap/lbmap.go +++ b/pkg/maps/lbmap/lbmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package lbmap diff --git a/pkg/maps/lbmap/maglev.go b/pkg/maps/lbmap/maglev.go index 2939849c41903..65ac9f73c7e4e 100644 --- a/pkg/maps/lbmap/maglev.go +++ b/pkg/maps/lbmap/maglev.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2022 Authors of Cilium +// Copyright Authors of Cilium package lbmap diff --git a/pkg/maps/lbmap/maglev_inner_map.go b/pkg/maps/lbmap/maglev_inner_map.go index 67c738cb6d127..f0c1d798c331d 100644 --- a/pkg/maps/lbmap/maglev_inner_map.go +++ b/pkg/maps/lbmap/maglev_inner_map.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021-2022 Authors of Cilium +// Copyright Authors of Cilium package lbmap diff --git a/pkg/maps/lbmap/maglev_outer_map.go b/pkg/maps/lbmap/maglev_outer_map.go index aecf624fb1f85..d412fabdb1293 100644 --- a/pkg/maps/lbmap/maglev_outer_map.go +++ b/pkg/maps/lbmap/maglev_outer_map.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021-2022 Authors of Cilium +// Copyright Authors of Cilium package lbmap diff --git a/pkg/maps/lbmap/maglev_test.go b/pkg/maps/lbmap/maglev_test.go index 6f5374641b774..de7819325a1e1 100644 --- a/pkg/maps/lbmap/maglev_test.go +++ b/pkg/maps/lbmap/maglev_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/maps/lbmap/source_range.go b/pkg/maps/lbmap/source_range.go index 019cf0acbb19b..43fedf7c931c9 100644 --- a/pkg/maps/lbmap/source_range.go +++ b/pkg/maps/lbmap/source_range.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package lbmap diff --git a/pkg/maps/lbmap/types.go b/pkg/maps/lbmap/types.go index cf9d81df1fe6f..e074cbf17dbd0 100644 --- a/pkg/maps/lbmap/types.go +++ b/pkg/maps/lbmap/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package lbmap diff --git a/pkg/maps/lbmap/zz_generated.deepcopy.go b/pkg/maps/lbmap/zz_generated.deepcopy.go index 3eae70311a748..05fb5e807818e 100644 --- a/pkg/maps/lbmap/zz_generated.deepcopy.go +++ b/pkg/maps/lbmap/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/lxcmap/doc.go b/pkg/maps/lxcmap/doc.go index 8fe87073847c8..01af96c4adb98 100644 --- a/pkg/maps/lxcmap/doc.go +++ b/pkg/maps/lxcmap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium // Package lxcmap represents the endpoints BPF map in the BPF programs. It is // implemented as a hash table containing an entry for all local endpoints. diff --git a/pkg/maps/lxcmap/lxcmap.go b/pkg/maps/lxcmap/lxcmap.go index 3653252370586..d66cd9d9591c0 100644 --- a/pkg/maps/lxcmap/lxcmap.go +++ b/pkg/maps/lxcmap/lxcmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package lxcmap diff --git a/pkg/maps/lxcmap/zz_generated.deepcopy.go b/pkg/maps/lxcmap/zz_generated.deepcopy.go index 0da6c311581c6..19b9bba4ebce3 100644 --- a/pkg/maps/lxcmap/zz_generated.deepcopy.go +++ b/pkg/maps/lxcmap/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/metricsmap/doc.go b/pkg/maps/metricsmap/doc.go index 7fa45651d4d45..01ba8394eddd9 100644 --- a/pkg/maps/metricsmap/doc.go +++ b/pkg/maps/metricsmap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium // Package metricsmap represents the BPF metrics map in the BPF programs. It is // implemented as a hash table containing an entry of different drop and forward diff --git a/pkg/maps/metricsmap/metricsmap.go b/pkg/maps/metricsmap/metricsmap.go index f706ff131b3bf..c69e34b6b13b4 100644 --- a/pkg/maps/metricsmap/metricsmap.go +++ b/pkg/maps/metricsmap/metricsmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package metricsmap diff --git a/pkg/maps/nat/doc.go b/pkg/maps/nat/doc.go index 59395b4f178b0..d8d593832114e 100644 --- a/pkg/maps/nat/doc.go +++ b/pkg/maps/nat/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package nat implements the BPF NAT map interaction code. // +groupName=maps diff --git a/pkg/maps/nat/ipv4.go b/pkg/maps/nat/ipv4.go index d72456aad65b9..e6638a2a00d23 100644 --- a/pkg/maps/nat/ipv4.go +++ b/pkg/maps/nat/ipv4.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package nat diff --git a/pkg/maps/nat/ipv6.go b/pkg/maps/nat/ipv6.go index 4d3c540b56676..45f921c47306e 100644 --- a/pkg/maps/nat/ipv6.go +++ b/pkg/maps/nat/ipv6.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package nat diff --git a/pkg/maps/nat/nat.go b/pkg/maps/nat/nat.go index 8947ef1b6a2e4..75ab71b20e5cd 100644 --- a/pkg/maps/nat/nat.go +++ b/pkg/maps/nat/nat.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package nat diff --git a/pkg/maps/nat/types.go b/pkg/maps/nat/types.go index 42ec595935945..7a3c82a5fa6c2 100644 --- a/pkg/maps/nat/types.go +++ b/pkg/maps/nat/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package nat diff --git a/pkg/maps/nat/zz_generated.deepcopy.go b/pkg/maps/nat/zz_generated.deepcopy.go index 4037601d2ec8e..6d0733348986b 100644 --- a/pkg/maps/nat/zz_generated.deepcopy.go +++ b/pkg/maps/nat/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/neighborsmap/doc.go b/pkg/maps/neighborsmap/doc.go index 088495e4c2869..420d183139136 100644 --- a/pkg/maps/neighborsmap/doc.go +++ b/pkg/maps/neighborsmap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package neighborsmap represents the map that stores IP to mac address // mappings for NodePort clients. It is primarily managed from the diff --git a/pkg/maps/neighborsmap/neighborsmap.go b/pkg/maps/neighborsmap/neighborsmap.go index 46e7dd6467926..d29a868192722 100644 --- a/pkg/maps/neighborsmap/neighborsmap.go +++ b/pkg/maps/neighborsmap/neighborsmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package neighborsmap diff --git a/pkg/maps/neighborsmap/zz_generated.deepcopy.go b/pkg/maps/neighborsmap/zz_generated.deepcopy.go index 260dce61d742a..0fa89eb3d3273 100644 --- a/pkg/maps/neighborsmap/zz_generated.deepcopy.go +++ b/pkg/maps/neighborsmap/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/policymap/callmap.go b/pkg/maps/policymap/callmap.go index 25b2fb50a3174..f92e4fa04481b 100644 --- a/pkg/maps/policymap/callmap.go +++ b/pkg/maps/policymap/callmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package policymap diff --git a/pkg/maps/policymap/doc.go b/pkg/maps/policymap/doc.go index a1ccb534ceda4..506f53ff15e4a 100644 --- a/pkg/maps/policymap/doc.go +++ b/pkg/maps/policymap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // +groupName=maps package policymap diff --git a/pkg/maps/policymap/policymap.go b/pkg/maps/policymap/policymap.go index 1b2612cf98291..a5c82240452d9 100644 --- a/pkg/maps/policymap/policymap.go +++ b/pkg/maps/policymap/policymap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package policymap diff --git a/pkg/maps/policymap/policymap_privileged_test.go b/pkg/maps/policymap/policymap_privileged_test.go index 458ad3c00fdad..e53a12f037c69 100644 --- a/pkg/maps/policymap/policymap_privileged_test.go +++ b/pkg/maps/policymap/policymap_privileged_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/maps/policymap/policymap_test.go b/pkg/maps/policymap/policymap_test.go index f7c238b94c0e5..3a7bc93ea2deb 100644 --- a/pkg/maps/policymap/policymap_test.go +++ b/pkg/maps/policymap/policymap_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/maps/policymap/zz_generated.deepcopy.go b/pkg/maps/policymap/zz_generated.deepcopy.go index 884a12cd54ffe..49dac7f0af2cb 100644 --- a/pkg/maps/policymap/zz_generated.deepcopy.go +++ b/pkg/maps/policymap/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/recorder/doc.go b/pkg/maps/recorder/doc.go index 80a286d8abb17..82a3565d73573 100644 --- a/pkg/maps/recorder/doc.go +++ b/pkg/maps/recorder/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // Package recorder represents the BPF map used to (wildcard-)filter // traffic that is subject to the pcap recorder. diff --git a/pkg/maps/recorder/ipv4.go b/pkg/maps/recorder/ipv4.go index afeccba130bad..5b972948c9533 100644 --- a/pkg/maps/recorder/ipv4.go +++ b/pkg/maps/recorder/ipv4.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package recorder diff --git a/pkg/maps/recorder/ipv6.go b/pkg/maps/recorder/ipv6.go index 9b7aa3915d144..af3c8f9238672 100644 --- a/pkg/maps/recorder/ipv6.go +++ b/pkg/maps/recorder/ipv6.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package recorder diff --git a/pkg/maps/recorder/recorder.go b/pkg/maps/recorder/recorder.go index e9b12530de267..2dd0e4c27253d 100644 --- a/pkg/maps/recorder/recorder.go +++ b/pkg/maps/recorder/recorder.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package recorder diff --git a/pkg/maps/signalmap/doc.go b/pkg/maps/signalmap/doc.go index 0eb7868ca073d..f7263cacaad4b 100644 --- a/pkg/maps/signalmap/doc.go +++ b/pkg/maps/signalmap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package signalmap represents the perf event map used to signal // potential congestion to Cilium agent. It is primarily managed from the diff --git a/pkg/maps/signalmap/signalmap.go b/pkg/maps/signalmap/signalmap.go index 423f5e12b6ed1..de17dc3d4600d 100644 --- a/pkg/maps/signalmap/signalmap.go +++ b/pkg/maps/signalmap/signalmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package signalmap diff --git a/pkg/maps/signalmap/zz_generated.deepcopy.go b/pkg/maps/signalmap/zz_generated.deepcopy.go index fd40f7a8b8abf..b990978e67f00 100644 --- a/pkg/maps/signalmap/zz_generated.deepcopy.go +++ b/pkg/maps/signalmap/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/sockmap/doc.go b/pkg/maps/sockmap/doc.go index a4c887ff7fd3a..c759b4fa702e6 100644 --- a/pkg/maps/sockmap/doc.go +++ b/pkg/maps/sockmap/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium // Package Sockmap represents the map from 5-tuple to the socket. It // is primarily managed from the datapath using a sockops program. Cilium diff --git a/pkg/maps/sockmap/sockmap.go b/pkg/maps/sockmap/sockmap.go index 1f78b00bbe365..881589a4bc638 100644 --- a/pkg/maps/sockmap/sockmap.go +++ b/pkg/maps/sockmap/sockmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package sockmap diff --git a/pkg/maps/sockmap/zz_generated.deepcopy.go b/pkg/maps/sockmap/zz_generated.deepcopy.go index b6b2fc6ee8093..784dfdd92226d 100644 --- a/pkg/maps/sockmap/zz_generated.deepcopy.go +++ b/pkg/maps/sockmap/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/maps/tunnel/doc.go b/pkg/maps/tunnel/doc.go index 30146ebc9677f..ba51d3ffd0652 100644 --- a/pkg/maps/tunnel/doc.go +++ b/pkg/maps/tunnel/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // +groupName=maps package tunnel diff --git a/pkg/maps/tunnel/logfields.go b/pkg/maps/tunnel/logfields.go index 408cb7601a2e3..b4b9654dd63c2 100644 --- a/pkg/maps/tunnel/logfields.go +++ b/pkg/maps/tunnel/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package tunnel diff --git a/pkg/maps/tunnel/tunnel.go b/pkg/maps/tunnel/tunnel.go index a248c53f703ff..f52519b5a9ee4 100644 --- a/pkg/maps/tunnel/tunnel.go +++ b/pkg/maps/tunnel/tunnel.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package tunnel diff --git a/pkg/maps/tunnel/zz_generated.deepcopy.go b/pkg/maps/tunnel/zz_generated.deepcopy.go index 8f924afb98f42..0979d2f97e681 100644 --- a/pkg/maps/tunnel/zz_generated.deepcopy.go +++ b/pkg/maps/tunnel/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/math/int.go b/pkg/math/int.go index 766da96bfdd2d..f76d0064f5e2e 100644 --- a/pkg/math/int.go +++ b/pkg/math/int.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package math diff --git a/pkg/math/int_test.go b/pkg/math/int_test.go index 4b8cb3f6adb30..3485c524e36a3 100644 --- a/pkg/math/int_test.go +++ b/pkg/math/int_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/mcastmanager/doc.go b/pkg/mcastmanager/doc.go index e8e16a1db862f..3ef26be469491 100644 --- a/pkg/mcastmanager/doc.go +++ b/pkg/mcastmanager/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package mcastmanager manages endpoint's IPv6 addresses and join the node // solicitation multicast addresses diff --git a/pkg/mcastmanager/mcastmanager.go b/pkg/mcastmanager/mcastmanager.go index d30b42b63684f..ed4677ff6c03a 100644 --- a/pkg/mcastmanager/mcastmanager.go +++ b/pkg/mcastmanager/mcastmanager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package mcastmanager diff --git a/pkg/mcastmanager/mcastmanager_test.go b/pkg/mcastmanager/mcastmanager_test.go index b7de63c8bbf6c..94b9c3374ae35 100644 --- a/pkg/mcastmanager/mcastmanager_test.go +++ b/pkg/mcastmanager/mcastmanager_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/metrics/bpf.go b/pkg/metrics/bpf.go index 0ae4f7a37a9d1..ec5816542e68d 100644 --- a/pkg/metrics/bpf.go +++ b/pkg/metrics/bpf.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package metrics diff --git a/pkg/metrics/interfaces.go b/pkg/metrics/interfaces.go index f3a20b65161b9..cc8bbea204bbd 100644 --- a/pkg/metrics/interfaces.go +++ b/pkg/metrics/interfaces.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package metrics diff --git a/pkg/metrics/logging_hook.go b/pkg/metrics/logging_hook.go index 67c141358bddc..acee49922ebeb 100644 --- a/pkg/metrics/logging_hook.go +++ b/pkg/metrics/logging_hook.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package metrics diff --git a/pkg/metrics/metrics.go b/pkg/metrics/metrics.go index e102dee10ab60..8933d543f8c16 100644 --- a/pkg/metrics/metrics.go +++ b/pkg/metrics/metrics.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium // Package metrics holds prometheus metrics objects and related utility functions. It // does not abstract away the prometheus client but the caller rarely needs to diff --git a/pkg/metrics/metrics_test.go b/pkg/metrics/metrics_test.go index 71f94354e4d10..8fa95863ccc55 100644 --- a/pkg/metrics/metrics_test.go +++ b/pkg/metrics/metrics_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/metrics/metrics_unix.go b/pkg/metrics/metrics_unix.go index d0ce989d15135..81f795b493bb9 100644 --- a/pkg/metrics/metrics_unix.go +++ b/pkg/metrics/metrics_unix.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !windows // +build !windows diff --git a/pkg/metrics/middleware.go b/pkg/metrics/middleware.go index 6128209f0528b..ac3d02705d0be 100644 --- a/pkg/metrics/middleware.go +++ b/pkg/metrics/middleware.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package metrics diff --git a/pkg/metrics/middleware_test.go b/pkg/metrics/middleware_test.go index 94b7f50721003..f908d341eca10 100644 --- a/pkg/metrics/middleware_test.go +++ b/pkg/metrics/middleware_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/metrics/status.go b/pkg/metrics/status.go index 81279155e4315..98c4c9d9e0b01 100644 --- a/pkg/metrics/status.go +++ b/pkg/metrics/status.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package metrics diff --git a/pkg/metrics/status_test.go b/pkg/metrics/status_test.go index 2b580fa5b051d..baca0e80279dc 100644 --- a/pkg/metrics/status_test.go +++ b/pkg/metrics/status_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2022 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/modules/doc.go b/pkg/modules/doc.go index f942a352e591a..b30365df54786 100644 --- a/pkg/modules/doc.go +++ b/pkg/modules/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package modules contains a manager of loaded modules which supports search // operation. diff --git a/pkg/modules/modules.go b/pkg/modules/modules.go index eea4d2cf47792..1ddc7c4eff0a1 100644 --- a/pkg/modules/modules.go +++ b/pkg/modules/modules.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package modules diff --git a/pkg/modules/modules_linux.go b/pkg/modules/modules_linux.go index 38cca8f1b058b..21dee7eba56f8 100644 --- a/pkg/modules/modules_linux.go +++ b/pkg/modules/modules_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package modules diff --git a/pkg/modules/modules_linux_privileged_test.go b/pkg/modules/modules_linux_privileged_test.go index 8d3aed7bbcdad..96c06337572d7 100644 --- a/pkg/modules/modules_linux_privileged_test.go +++ b/pkg/modules/modules_linux_privileged_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build linux && privileged_tests // +build linux,privileged_tests diff --git a/pkg/modules/modules_test.go b/pkg/modules/modules_test.go index 864426a7bc852..99c2cf1c8b0d2 100644 --- a/pkg/modules/modules_test.go +++ b/pkg/modules/modules_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/modules/modules_unspecified.go b/pkg/modules/modules_unspecified.go index 3b1d5b5c5515b..88a909d31ab0e 100644 --- a/pkg/modules/modules_unspecified.go +++ b/pkg/modules/modules_unspecified.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !linux // +build !linux diff --git a/pkg/monitor/agent/agent.go b/pkg/monitor/agent/agent.go index b91c1a9cc3af0..3ed0fbd44d136 100644 --- a/pkg/monitor/agent/agent.go +++ b/pkg/monitor/agent/agent.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package agent diff --git a/pkg/monitor/agent/consumer/consumer.go b/pkg/monitor/agent/consumer/consumer.go index e5e8da67c91f2..ccfe80a97a80f 100644 --- a/pkg/monitor/agent/consumer/consumer.go +++ b/pkg/monitor/agent/consumer/consumer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package consumer diff --git a/pkg/monitor/agent/listener/listener.go b/pkg/monitor/agent/listener/listener.go index ffdcf3c6164a8..67635cdf4338a 100644 --- a/pkg/monitor/agent/listener/listener.go +++ b/pkg/monitor/agent/listener/listener.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package listener diff --git a/pkg/monitor/agent/listener1_2.go b/pkg/monitor/agent/listener1_2.go index e24feaa54e973..9d7f6703c8bb5 100644 --- a/pkg/monitor/agent/listener1_2.go +++ b/pkg/monitor/agent/listener1_2.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package agent diff --git a/pkg/monitor/agent/listener1_2_test.go b/pkg/monitor/agent/listener1_2_test.go index 088aa3089f073..f704f94e6c53a 100644 --- a/pkg/monitor/agent/listener1_2_test.go +++ b/pkg/monitor/agent/listener1_2_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/monitor/agent/server.go b/pkg/monitor/agent/server.go index 4ecf4711daae3..dcac652588642 100644 --- a/pkg/monitor/agent/server.go +++ b/pkg/monitor/agent/server.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package agent diff --git a/pkg/monitor/alignchecker/alignchecker.go b/pkg/monitor/alignchecker/alignchecker.go index fa1f7b8d47935..afa45a97f7a7d 100644 --- a/pkg/monitor/alignchecker/alignchecker.go +++ b/pkg/monitor/alignchecker/alignchecker.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package alignchecker diff --git a/pkg/monitor/alignchecker/doc.go b/pkg/monitor/alignchecker/doc.go index ad109d3239225..c003db13430f4 100644 --- a/pkg/monitor/alignchecker/doc.go +++ b/pkg/monitor/alignchecker/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package alignchecker is a thin wrapper around pkg/alignchecker to validate // monitor object alignment. diff --git a/pkg/monitor/api/drop.go b/pkg/monitor/api/drop.go index f0e3ac5317e41..39b100bb78147 100644 --- a/pkg/monitor/api/drop.go +++ b/pkg/monitor/api/drop.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/monitor/api/types.go b/pkg/monitor/api/types.go index 284f81def3d42..825beba81edde 100644 --- a/pkg/monitor/api/types.go +++ b/pkg/monitor/api/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/monitor/api/types_test.go b/pkg/monitor/api/types_test.go index fba22274720be..6521f053b7b1d 100644 --- a/pkg/monitor/api/types_test.go +++ b/pkg/monitor/api/types_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/monitor/datapath_debug.go b/pkg/monitor/datapath_debug.go index 0266c270a5dab..869075107fe9e 100644 --- a/pkg/monitor/datapath_debug.go +++ b/pkg/monitor/datapath_debug.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package monitor diff --git a/pkg/monitor/datapath_drop.go b/pkg/monitor/datapath_drop.go index bb0d1a46d630d..05846b0980270 100644 --- a/pkg/monitor/datapath_drop.go +++ b/pkg/monitor/datapath_drop.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package monitor diff --git a/pkg/monitor/datapath_policy.go b/pkg/monitor/datapath_policy.go index 4bdecee89db0f..becd58a090f3a 100644 --- a/pkg/monitor/datapath_policy.go +++ b/pkg/monitor/datapath_policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package monitor diff --git a/pkg/monitor/datapath_recorder.go b/pkg/monitor/datapath_recorder.go index 8ff24a20eec9b..7213c438e5997 100644 --- a/pkg/monitor/datapath_recorder.go +++ b/pkg/monitor/datapath_recorder.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package monitor diff --git a/pkg/monitor/datapath_trace.go b/pkg/monitor/datapath_trace.go index af4a3bb4dda3e..a8cfe0d3f9916 100644 --- a/pkg/monitor/datapath_trace.go +++ b/pkg/monitor/datapath_trace.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package monitor diff --git a/pkg/monitor/datapath_trace_test.go b/pkg/monitor/datapath_trace_test.go index b81022781e6bb..a8c637dcce17e 100644 --- a/pkg/monitor/datapath_trace_test.go +++ b/pkg/monitor/datapath_trace_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/monitor/dissect.go b/pkg/monitor/dissect.go index 6e3eb18775bbe..d84a86f10ef89 100644 --- a/pkg/monitor/dissect.go +++ b/pkg/monitor/dissect.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package monitor diff --git a/pkg/monitor/dissect_test.go b/pkg/monitor/dissect_test.go index dd42650ebc9f3..0c67aaacd3125 100644 --- a/pkg/monitor/dissect_test.go +++ b/pkg/monitor/dissect_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/monitor/format/doc.go b/pkg/monitor/format/doc.go index a72dfccaf1717..6572cd6406b5a 100644 --- a/pkg/monitor/format/doc.go +++ b/pkg/monitor/format/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2018 Authors of Cilium +// Copyright Authors of Cilium // Package format provides stdout formatting of monitor messages for reuse by // command-line clients of the monitor event channel. diff --git a/pkg/monitor/format/flags.go b/pkg/monitor/format/flags.go index 2b0e40dc051c0..a854de8661f0a 100644 --- a/pkg/monitor/format/flags.go +++ b/pkg/monitor/format/flags.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package format diff --git a/pkg/monitor/format/format.go b/pkg/monitor/format/format.go index a7b3b709015bf..0218e7135ec5d 100644 --- a/pkg/monitor/format/format.go +++ b/pkg/monitor/format/format.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package format diff --git a/pkg/monitor/logrecord.go b/pkg/monitor/logrecord.go index e801387298bd9..4d7a9781f46d6 100644 --- a/pkg/monitor/logrecord.go +++ b/pkg/monitor/logrecord.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package monitor diff --git a/pkg/monitor/notifications/notifications.go b/pkg/monitor/notifications/notifications.go index ebf87906d2068..045634e517d07 100644 --- a/pkg/monitor/notifications/notifications.go +++ b/pkg/monitor/notifications/notifications.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package notifications diff --git a/pkg/monitor/payload/monitor_payload.go b/pkg/monitor/payload/monitor_payload.go index a8870b852df3a..4242b5eca82bf 100644 --- a/pkg/monitor/payload/monitor_payload.go +++ b/pkg/monitor/payload/monitor_payload.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package payload diff --git a/pkg/monitor/payload/monitor_payload_test.go b/pkg/monitor/payload/monitor_payload_test.go index beddb902c6e76..1c28165bb7bf4 100644 --- a/pkg/monitor/payload/monitor_payload_test.go +++ b/pkg/monitor/payload/monitor_payload_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/monitor/types.go b/pkg/monitor/types.go index fdc5ab27823e6..721a1d24b824f 100644 --- a/pkg/monitor/types.go +++ b/pkg/monitor/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package monitor diff --git a/pkg/mountinfo/mountinfo.go b/pkg/mountinfo/mountinfo.go index cd6fd1e0641b2..62711a97ce379 100644 --- a/pkg/mountinfo/mountinfo.go +++ b/pkg/mountinfo/mountinfo.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package mountinfo diff --git a/pkg/mountinfo/mountinfo_linux.go b/pkg/mountinfo/mountinfo_linux.go index e5d9059a84450..4c3cb5d822e25 100644 --- a/pkg/mountinfo/mountinfo_linux.go +++ b/pkg/mountinfo/mountinfo_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package mountinfo diff --git a/pkg/mountinfo/mountinfo_privileged_test.go b/pkg/mountinfo/mountinfo_privileged_test.go index 56ab4fba7aa28..99c727746da87 100644 --- a/pkg/mountinfo/mountinfo_privileged_test.go +++ b/pkg/mountinfo/mountinfo_privileged_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build linux && privileged_tests // +build linux,privileged_tests diff --git a/pkg/mountinfo/mountinfo_test.go b/pkg/mountinfo/mountinfo_test.go index 74584b7000277..e54d7ddeacc5f 100644 --- a/pkg/mountinfo/mountinfo_test.go +++ b/pkg/mountinfo/mountinfo_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build linux && !privileged_tests // +build linux,!privileged_tests diff --git a/pkg/mountinfo/mountinfo_unspecified.go b/pkg/mountinfo/mountinfo_unspecified.go index 8edcffe7fb083..a983834bb75b1 100644 --- a/pkg/mountinfo/mountinfo_unspecified.go +++ b/pkg/mountinfo/mountinfo_unspecified.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !linux // +build !linux diff --git a/pkg/mtu/detect.go b/pkg/mtu/detect.go index 9945568a1a60e..f39b65de145ac 100644 --- a/pkg/mtu/detect.go +++ b/pkg/mtu/detect.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package mtu diff --git a/pkg/mtu/detect_darwin.go b/pkg/mtu/detect_darwin.go index 3d088f05a67b0..6792e668ced0c 100644 --- a/pkg/mtu/detect_darwin.go +++ b/pkg/mtu/detect_darwin.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build darwin // +build darwin diff --git a/pkg/mtu/detect_linux.go b/pkg/mtu/detect_linux.go index 27c008ddf43ec..618ebaf87c2d2 100644 --- a/pkg/mtu/detect_linux.go +++ b/pkg/mtu/detect_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build linux // +build linux diff --git a/pkg/mtu/detect_linux_test.go b/pkg/mtu/detect_linux_test.go index 44366e5aa32e1..d750d13622eca 100644 --- a/pkg/mtu/detect_linux_test.go +++ b/pkg/mtu/detect_linux_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/mtu/doc.go b/pkg/mtu/doc.go index f82fbeeaf41a4..7691799817ff9 100644 --- a/pkg/mtu/doc.go +++ b/pkg/mtu/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package mtu is a library for tracking and configuring MTU for devices and // routes. diff --git a/pkg/mtu/mtu.go b/pkg/mtu/mtu.go index fd8c4c378001d..ea075b80d9f64 100644 --- a/pkg/mtu/mtu.go +++ b/pkg/mtu/mtu.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package mtu diff --git a/pkg/mtu/mtu_test.go b/pkg/mtu/mtu_test.go index ad1c2a4ae1f00..d073074448e38 100644 --- a/pkg/mtu/mtu_test.go +++ b/pkg/mtu/mtu_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/multicast/doc.go b/pkg/multicast/doc.go index fdf80752b875e..1375a0110356f 100644 --- a/pkg/multicast/doc.go +++ b/pkg/multicast/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package multicast contains various utility functions to work with IPv6 // multicast diff --git a/pkg/multicast/multicast.go b/pkg/multicast/multicast.go index 3194465ba03d8..b073f8f804f30 100644 --- a/pkg/multicast/multicast.go +++ b/pkg/multicast/multicast.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package multicast diff --git a/pkg/multicast/multicast_test.go b/pkg/multicast/multicast_test.go index 9923e9f579111..176ee434145e8 100644 --- a/pkg/multicast/multicast_test.go +++ b/pkg/multicast/multicast_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/murmur3/murmur3.go b/pkg/murmur3/murmur3.go index 91aa758d1b3f5..240f0ad8ceec3 100644 --- a/pkg/murmur3/murmur3.go +++ b/pkg/murmur3/murmur3.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package murmur3 diff --git a/pkg/murmur3/murmur3_test.go b/pkg/murmur3/murmur3_test.go index db52e5ed9fd88..3890602f0c0be 100644 --- a/pkg/murmur3/murmur3_test.go +++ b/pkg/murmur3/murmur3_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/netns/cookie.go b/pkg/netns/cookie.go index 85a23e7dbdf08..655cf9726e0db 100644 --- a/pkg/netns/cookie.go +++ b/pkg/netns/cookie.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package netns diff --git a/pkg/netns/doc.go b/pkg/netns/doc.go index b932dbc5ebe49..4cb8bfa2d74a1 100644 --- a/pkg/netns/doc.go +++ b/pkg/netns/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package netns contains various utility functions to work with network // namespaces diff --git a/pkg/netns/netns.go b/pkg/netns/netns.go index 786ded65afd61..2526ef82948fb 100644 --- a/pkg/netns/netns.go +++ b/pkg/netns/netns.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package netns diff --git a/pkg/node/address.go b/pkg/node/address.go index 9d16d82ed84fb..f52d6e652e32f 100644 --- a/pkg/node/address.go +++ b/pkg/node/address.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package node diff --git a/pkg/node/address_darwin.go b/pkg/node/address_darwin.go index 2693d43919c9d..1f10790a72f7d 100644 --- a/pkg/node/address_darwin.go +++ b/pkg/node/address_darwin.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium //go:build darwin // +build darwin diff --git a/pkg/node/address_linux.go b/pkg/node/address_linux.go index 1388add8aaa14..52b1aac3f91f3 100644 --- a/pkg/node/address_linux.go +++ b/pkg/node/address_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !darwin // +build !darwin diff --git a/pkg/node/address_linux_test.go b/pkg/node/address_linux_test.go index 4a21221f94757..d28017c34df3f 100644 --- a/pkg/node/address_linux_test.go +++ b/pkg/node/address_linux_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !darwin && privileged_tests // +build !darwin,privileged_tests diff --git a/pkg/node/address_test.go b/pkg/node/address_test.go index 75be0fc189c71..3945797d29716 100644 --- a/pkg/node/address_test.go +++ b/pkg/node/address_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/node/addressing/addresstype.go b/pkg/node/addressing/addresstype.go index 87007f0b19c09..f75d584727464 100644 --- a/pkg/node/addressing/addresstype.go +++ b/pkg/node/addressing/addresstype.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package addressing diff --git a/pkg/node/doc.go b/pkg/node/doc.go index 21a6c90dbafa1..076044279a9c5 100644 --- a/pkg/node/doc.go +++ b/pkg/node/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium // Package node provides functionality related to the local and remote node // addresses diff --git a/pkg/node/host_endpoint.go b/pkg/node/host_endpoint.go index c99097818a1ff..32dadc237e4dc 100644 --- a/pkg/node/host_endpoint.go +++ b/pkg/node/host_endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package node diff --git a/pkg/node/ip.go b/pkg/node/ip.go index ccb700fdbc0bb..fe3a76e6ed08d 100644 --- a/pkg/node/ip.go +++ b/pkg/node/ip.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package node diff --git a/pkg/node/ip_linux.go b/pkg/node/ip_linux.go index e2fb79a779507..21a7176fc4e8d 100644 --- a/pkg/node/ip_linux.go +++ b/pkg/node/ip_linux.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package node diff --git a/pkg/node/logfields.go b/pkg/node/logfields.go index af48308dfaf2d..5b12bc9f1beca 100644 --- a/pkg/node/logfields.go +++ b/pkg/node/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package node diff --git a/pkg/node/manager/logfields.go b/pkg/node/manager/logfields.go index 257bd2c4f76bd..b8f7af7a9e60d 100644 --- a/pkg/node/manager/logfields.go +++ b/pkg/node/manager/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package manager diff --git a/pkg/node/manager/manager.go b/pkg/node/manager/manager.go index 39ca445680cbe..07d64415df0a8 100644 --- a/pkg/node/manager/manager.go +++ b/pkg/node/manager/manager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package manager diff --git a/pkg/node/manager/manager_test.go b/pkg/node/manager/manager_test.go index a7508c4ac028e..1aedbfce329dd 100644 --- a/pkg/node/manager/manager_test.go +++ b/pkg/node/manager/manager_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/node/store/logfields.go b/pkg/node/store/logfields.go index 63a6d11206439..a7a9e6954d43f 100644 --- a/pkg/node/store/logfields.go +++ b/pkg/node/store/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package store diff --git a/pkg/node/store/store.go b/pkg/node/store/store.go index d7e22ccb8c6a1..01ce3679bee1f 100644 --- a/pkg/node/store/store.go +++ b/pkg/node/store/store.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package store diff --git a/pkg/node/types/logfields.go b/pkg/node/types/logfields.go index 519a27f82ad29..f992f91369510 100644 --- a/pkg/node/types/logfields.go +++ b/pkg/node/types/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/node/types/node.go b/pkg/node/types/node.go index 48fe5d56cfd99..b6c0734770bb8 100644 --- a/pkg/node/types/node.go +++ b/pkg/node/types/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/node/types/node_test.go b/pkg/node/types/node_test.go index 019c59b482a0e..8dd12128de5c2 100644 --- a/pkg/node/types/node_test.go +++ b/pkg/node/types/node_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/node/types/nodename.go b/pkg/node/types/nodename.go index 356ca54f0b8e9..08d069c7f031e 100644 --- a/pkg/node/types/nodename.go +++ b/pkg/node/types/nodename.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/node/types/nodename_test.go b/pkg/node/types/nodename_test.go index 4302ab70256bd..daa3d2565f2e0 100644 --- a/pkg/node/types/nodename_test.go +++ b/pkg/node/types/nodename_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/node/types/zz_generated.deepcopy.go b/pkg/node/types/zz_generated.deepcopy.go index 2eb68b137fc4e..81f5b795a390f 100644 --- a/pkg/node/types/zz_generated.deepcopy.go +++ b/pkg/node/types/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/nodediscovery/nodediscovery.go b/pkg/nodediscovery/nodediscovery.go index 494a6b342be1c..daf4ecd46d253 100644 --- a/pkg/nodediscovery/nodediscovery.go +++ b/pkg/nodediscovery/nodediscovery.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package nodediscovery diff --git a/pkg/option/config.go b/pkg/option/config.go index c6d2d3fe22b45..2eeb85c82fb94 100644 --- a/pkg/option/config.go +++ b/pkg/option/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package option diff --git a/pkg/option/config_test.go b/pkg/option/config_test.go index e25aac9edfb66..1a13cfcce030e 100644 --- a/pkg/option/config_test.go +++ b/pkg/option/config_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/option/constants.go b/pkg/option/constants.go index 370d6b43a46f0..3f5c41f9a3432 100644 --- a/pkg/option/constants.go +++ b/pkg/option/constants.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package option diff --git a/pkg/option/daemon.go b/pkg/option/daemon.go index 130723f4014fd..25de8b6c247ed 100644 --- a/pkg/option/daemon.go +++ b/pkg/option/daemon.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package option diff --git a/pkg/option/endpoint.go b/pkg/option/endpoint.go index 7e54f34b50439..eb20f47ad7d84 100644 --- a/pkg/option/endpoint.go +++ b/pkg/option/endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package option diff --git a/pkg/option/fake/config.go b/pkg/option/fake/config.go index b0e84b26cb5c2..fc75c12dbd402 100644 --- a/pkg/option/fake/config.go +++ b/pkg/option/fake/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package fake diff --git a/pkg/option/map_options.go b/pkg/option/map_options.go index 3b84f93e0f6d4..a0bdc79cec0ef 100644 --- a/pkg/option/map_options.go +++ b/pkg/option/map_options.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package option diff --git a/pkg/option/monitor.go b/pkg/option/monitor.go index 94887e622022c..a25ee9e383754 100644 --- a/pkg/option/monitor.go +++ b/pkg/option/monitor.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package option diff --git a/pkg/option/monitor_test.go b/pkg/option/monitor_test.go index a40dc8c31b5ea..2a7a34a45c9b1 100644 --- a/pkg/option/monitor_test.go +++ b/pkg/option/monitor_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/option/option.go b/pkg/option/option.go index 7f15ec5e591ab..628c3553f8bb4 100644 --- a/pkg/option/option.go +++ b/pkg/option/option.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package option diff --git a/pkg/option/option_test.go b/pkg/option/option_test.go index f22dd3dac0720..dc95e86ce7025 100644 --- a/pkg/option/option_test.go +++ b/pkg/option/option_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/option/runtime_options.go b/pkg/option/runtime_options.go index f34e8314eaf2b..97236c9e2ecb9 100644 --- a/pkg/option/runtime_options.go +++ b/pkg/option/runtime_options.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package option diff --git a/pkg/pidfile/pidfile.go b/pkg/pidfile/pidfile.go index 73341634ff096..0814ddab53a08 100644 --- a/pkg/pidfile/pidfile.go +++ b/pkg/pidfile/pidfile.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package pidfile diff --git a/pkg/pidfile/pidfile_test.go b/pkg/pidfile/pidfile_test.go index 5bab1d57dae13..1b93d3e2e9041 100644 --- a/pkg/pidfile/pidfile_test.go +++ b/pkg/pidfile/pidfile_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/api/cidr.go b/pkg/policy/api/cidr.go index ca8addc3d8997..653cd33257dfb 100644 --- a/pkg/policy/api/cidr.go +++ b/pkg/policy/api/cidr.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/cidr_test.go b/pkg/policy/api/cidr_test.go index 1888258b59edc..d9f8959462f4b 100644 --- a/pkg/policy/api/cidr_test.go +++ b/pkg/policy/api/cidr_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/api/decision.go b/pkg/policy/api/decision.go index 1b26e629442aa..4f9041bbd9bae 100644 --- a/pkg/policy/api/decision.go +++ b/pkg/policy/api/decision.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/doc.go b/pkg/policy/api/doc.go index 3311c38a956c3..ef8723992fd8f 100644 --- a/pkg/policy/api/doc.go +++ b/pkg/policy/api/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium // +k8s:deepcopy-gen=package // +k8s:openapi-gen=true diff --git a/pkg/policy/api/egress.go b/pkg/policy/api/egress.go index 45c81c1c0cd37..593ae7cebc722 100644 --- a/pkg/policy/api/egress.go +++ b/pkg/policy/api/egress.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/egress_test.go b/pkg/policy/api/egress_test.go index 0a33c99825d26..cda1ada4a3693 100644 --- a/pkg/policy/api/egress_test.go +++ b/pkg/policy/api/egress_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/api/entity.go b/pkg/policy/api/entity.go index e7f62835c8913..5e8fe06144370 100644 --- a/pkg/policy/api/entity.go +++ b/pkg/policy/api/entity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/entity_test.go b/pkg/policy/api/entity_test.go index 6596979b41673..bf763f7d1f124 100644 --- a/pkg/policy/api/entity_test.go +++ b/pkg/policy/api/entity_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/api/fqdn.go b/pkg/policy/api/fqdn.go index 753899e2c48e1..6fe1b1d637932 100644 --- a/pkg/policy/api/fqdn.go +++ b/pkg/policy/api/fqdn.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/fqdn_test.go b/pkg/policy/api/fqdn_test.go index cbe3a2a03d033..c859019dbb1e9 100644 --- a/pkg/policy/api/fqdn_test.go +++ b/pkg/policy/api/fqdn_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/api/groups.go b/pkg/policy/api/groups.go index 6dd514b9a54ff..84f1706fe7b5b 100644 --- a/pkg/policy/api/groups.go +++ b/pkg/policy/api/groups.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/groups_test.go b/pkg/policy/api/groups_test.go index c83fffe40177a..a7f7992564401 100644 --- a/pkg/policy/api/groups_test.go +++ b/pkg/policy/api/groups_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/api/http.go b/pkg/policy/api/http.go index f0f390c379beb..fa7ee9173bab0 100644 --- a/pkg/policy/api/http.go +++ b/pkg/policy/api/http.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/icmp.go b/pkg/policy/api/icmp.go index 8b44ca543df2f..c2a6847295545 100644 --- a/pkg/policy/api/icmp.go +++ b/pkg/policy/api/icmp.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/ingress.go b/pkg/policy/api/ingress.go index f7344fa9b20ad..72c7be654cf20 100644 --- a/pkg/policy/api/ingress.go +++ b/pkg/policy/api/ingress.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/ingress_test.go b/pkg/policy/api/ingress_test.go index 4d2cd20b4f203..0d19ebc104065 100644 --- a/pkg/policy/api/ingress_test.go +++ b/pkg/policy/api/ingress_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/api/kafka/doc.go b/pkg/policy/api/kafka/doc.go index 825a2df040567..d7f4fc0cae8d5 100644 --- a/pkg/policy/api/kafka/doc.go +++ b/pkg/policy/api/kafka/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium // +k8s:openapi-gen=true // +deepequal-gen=package diff --git a/pkg/policy/api/kafka/kafka.go b/pkg/policy/api/kafka/kafka.go index 86868e299f392..606701b7d8b2b 100644 --- a/pkg/policy/api/kafka/kafka.go +++ b/pkg/policy/api/kafka/kafka.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package kafka diff --git a/pkg/policy/api/kafka/zz_generated.deepequal.go b/pkg/policy/api/kafka/zz_generated.deepequal.go index 4c6eb2fc7c113..06ac2b5d6240f 100644 --- a/pkg/policy/api/kafka/zz_generated.deepequal.go +++ b/pkg/policy/api/kafka/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/policy/api/l4.go b/pkg/policy/api/l4.go index 738d5b392f61d..420bf8ad66489 100644 --- a/pkg/policy/api/l4.go +++ b/pkg/policy/api/l4.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/l7.go b/pkg/policy/api/l7.go index dd29af870476b..ba1e924f075d4 100644 --- a/pkg/policy/api/l7.go +++ b/pkg/policy/api/l7.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/rule.go b/pkg/policy/api/rule.go index a1574d5a7f1b8..dbfa894a805d9 100644 --- a/pkg/policy/api/rule.go +++ b/pkg/policy/api/rule.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/rule_test.go b/pkg/policy/api/rule_test.go index 7cfc1630dfc3a..d6660b8956587 100644 --- a/pkg/policy/api/rule_test.go +++ b/pkg/policy/api/rule_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/api/rule_validation.go b/pkg/policy/api/rule_validation.go index 7659d6b27522c..5b7313a9e2823 100644 --- a/pkg/policy/api/rule_validation.go +++ b/pkg/policy/api/rule_validation.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/rule_validation_test.go b/pkg/policy/api/rule_validation_test.go index 2adfac4204187..b481987598fa4 100644 --- a/pkg/policy/api/rule_validation_test.go +++ b/pkg/policy/api/rule_validation_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/api/rules.go b/pkg/policy/api/rules.go index 6d665a07d82c9..aa69904eaa8a1 100644 --- a/pkg/policy/api/rules.go +++ b/pkg/policy/api/rules.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/rules_test.go b/pkg/policy/api/rules_test.go index 7117afc68edeb..6f97b85c552e9 100644 --- a/pkg/policy/api/rules_test.go +++ b/pkg/policy/api/rules_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/api/selector.go b/pkg/policy/api/selector.go index 1b559b6bbc3a7..f0893fb2ec69c 100644 --- a/pkg/policy/api/selector.go +++ b/pkg/policy/api/selector.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/selector_test.go b/pkg/policy/api/selector_test.go index 76d192c08809c..23a40e3f0a563 100644 --- a/pkg/policy/api/selector_test.go +++ b/pkg/policy/api/selector_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/api/service.go b/pkg/policy/api/service.go index 01b18c116e6ef..57868a367aa11 100644 --- a/pkg/policy/api/service.go +++ b/pkg/policy/api/service.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/utils.go b/pkg/policy/api/utils.go index edc7b7bc25e41..38886fdb5c44a 100644 --- a/pkg/policy/api/utils.go +++ b/pkg/policy/api/utils.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/pkg/policy/api/utils_test.go b/pkg/policy/api/utils_test.go index 0516749684997..d8b23c3af7fa9 100644 --- a/pkg/policy/api/utils_test.go +++ b/pkg/policy/api/utils_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/api/zz_generated.deepcopy.go b/pkg/policy/api/zz_generated.deepcopy.go index 18423d3e86386..e2fbacc3ff4e6 100644 --- a/pkg/policy/api/zz_generated.deepcopy.go +++ b/pkg/policy/api/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/policy/api/zz_generated.deepequal.go b/pkg/policy/api/zz_generated.deepequal.go index e54f705d69367..b5a8e9396bf5e 100644 --- a/pkg/policy/api/zz_generated.deepequal.go +++ b/pkg/policy/api/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/policy/cidr.go b/pkg/policy/cidr.go index ef4b6faf7fc5f..97fe85d31afb0 100644 --- a/pkg/policy/cidr.go +++ b/pkg/policy/cidr.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/cidr_test.go b/pkg/policy/cidr_test.go index 5d2dfd9f1b9c2..9b786683d4d59 100644 --- a/pkg/policy/cidr_test.go +++ b/pkg/policy/cidr_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/config.go b/pkg/policy/config.go index c699c751577fc..a2a34b4800bfb 100644 --- a/pkg/policy/config.go +++ b/pkg/policy/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/distillery.go b/pkg/policy/distillery.go index d58a7a51d352c..3fcc9de6ead2a 100644 --- a/pkg/policy/distillery.go +++ b/pkg/policy/distillery.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/distillery_test.go b/pkg/policy/distillery_test.go index 03d447cbe25af..c2e17daaf0aa3 100644 --- a/pkg/policy/distillery_test.go +++ b/pkg/policy/distillery_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/groups/actions.go b/pkg/policy/groups/actions.go index 566a6d97a1fb6..f10c1a5228beb 100644 --- a/pkg/policy/groups/actions.go +++ b/pkg/policy/groups/actions.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package groups diff --git a/pkg/policy/groups/aws/aws.go b/pkg/policy/groups/aws/aws.go index ad2ba2c42dd76..0f9da0b55ee7a 100644 --- a/pkg/policy/groups/aws/aws.go +++ b/pkg/policy/groups/aws/aws.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package aws diff --git a/pkg/policy/groups/cache.go b/pkg/policy/groups/cache.go index d5ba506f8a1b9..53e76e27dd544 100644 --- a/pkg/policy/groups/cache.go +++ b/pkg/policy/groups/cache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package groups diff --git a/pkg/policy/groups/cache_test.go b/pkg/policy/groups/cache_test.go index 44b3bfb41dd3d..6edc0a25caef7 100644 --- a/pkg/policy/groups/cache_test.go +++ b/pkg/policy/groups/cache_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/groups/controllers.go b/pkg/policy/groups/controllers.go index ec1b5edef5560..04cd476b12f07 100644 --- a/pkg/policy/groups/controllers.go +++ b/pkg/policy/groups/controllers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package groups diff --git a/pkg/policy/groups/groups_test.go b/pkg/policy/groups/groups_test.go index 6b8fdd12c9a36..7ccaa3c83e5e7 100644 --- a/pkg/policy/groups/groups_test.go +++ b/pkg/policy/groups/groups_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/groups/helpers.go b/pkg/policy/groups/helpers.go index 95208a40ea2a9..f511e30991603 100644 --- a/pkg/policy/groups/helpers.go +++ b/pkg/policy/groups/helpers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package groups diff --git a/pkg/policy/groups/helpers_test.go b/pkg/policy/groups/helpers_test.go index 8dba6ace78a65..661979e9078b8 100644 --- a/pkg/policy/groups/helpers_test.go +++ b/pkg/policy/groups/helpers_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/groups/log.go b/pkg/policy/groups/log.go index db88fbed68784..6b0b73dfa515a 100644 --- a/pkg/policy/groups/log.go +++ b/pkg/policy/groups/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package groups diff --git a/pkg/policy/identifier.go b/pkg/policy/identifier.go index fd662538e1026..432c1a40fbcc0 100644 --- a/pkg/policy/identifier.go +++ b/pkg/policy/identifier.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/identifier_test.go b/pkg/policy/identifier_test.go index f44a6fe8ddc22..84e0ac42d58ba 100644 --- a/pkg/policy/identifier_test.go +++ b/pkg/policy/identifier_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/l4.go b/pkg/policy/l4.go index 67e62b6932773..e35c49c1b56da 100644 --- a/pkg/policy/l4.go +++ b/pkg/policy/l4.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/l4_filter_deny_test.go b/pkg/policy/l4_filter_deny_test.go index de9ee1067cc21..626de442c58d4 100644 --- a/pkg/policy/l4_filter_deny_test.go +++ b/pkg/policy/l4_filter_deny_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/l4_filter_test.go b/pkg/policy/l4_filter_test.go index b2647305d396b..25aea4a4cab0d 100644 --- a/pkg/policy/l4_filter_test.go +++ b/pkg/policy/l4_filter_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/l4_test.go b/pkg/policy/l4_test.go index 3d7e6f3d08919..8418e1fbc1139 100644 --- a/pkg/policy/l4_test.go +++ b/pkg/policy/l4_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/mapstate.go b/pkg/policy/mapstate.go index 4ddd22c724eb2..74e795d74a9a8 100644 --- a/pkg/policy/mapstate.go +++ b/pkg/policy/mapstate.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/mapstate_test.go b/pkg/policy/mapstate_test.go index 24e00117173dd..954905840dcf9 100644 --- a/pkg/policy/mapstate_test.go +++ b/pkg/policy/mapstate_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/policy.go b/pkg/policy/policy.go index 94e714eadb497..716eea01b2db6 100644 --- a/pkg/policy/policy.go +++ b/pkg/policy/policy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/policy_test.go b/pkg/policy/policy_test.go index f422d7d926259..f9510b04e7f81 100644 --- a/pkg/policy/policy_test.go +++ b/pkg/policy/policy_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/portmap.go b/pkg/policy/portmap.go index b59434c5e8f2c..9354da3185365 100644 --- a/pkg/policy/portmap.go +++ b/pkg/policy/portmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/portmap_test.go b/pkg/policy/portmap_test.go index fd8ab7d936d9e..15b72d973c216 100644 --- a/pkg/policy/portmap_test.go +++ b/pkg/policy/portmap_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/proxyid.go b/pkg/policy/proxyid.go index ac4c3e5b866da..66f9d9173f9b7 100644 --- a/pkg/policy/proxyid.go +++ b/pkg/policy/proxyid.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/proxyid_test.go b/pkg/policy/proxyid_test.go index 53aa5cb2f3f2b..f01283eba8b43 100644 --- a/pkg/policy/proxyid_test.go +++ b/pkg/policy/proxyid_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/repository.go b/pkg/policy/repository.go index 0b8a421d6a779..a930a7a82bd1d 100644 --- a/pkg/policy/repository.go +++ b/pkg/policy/repository.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/repository_deny_test.go b/pkg/policy/repository_deny_test.go index 9667181e9552d..805575b0f0ad5 100644 --- a/pkg/policy/repository_deny_test.go +++ b/pkg/policy/repository_deny_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/repository_test.go b/pkg/policy/repository_test.go index 3d59d9e6a0983..6e8d10ed5274d 100644 --- a/pkg/policy/repository_test.go +++ b/pkg/policy/repository_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/resolve.go b/pkg/policy/resolve.go index ffd88d94767c7..982d78917721b 100644 --- a/pkg/policy/resolve.go +++ b/pkg/policy/resolve.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/resolve_deny_test.go b/pkg/policy/resolve_deny_test.go index 297184b0aa69a..7a9947d6844ce 100644 --- a/pkg/policy/resolve_deny_test.go +++ b/pkg/policy/resolve_deny_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/resolve_test.go b/pkg/policy/resolve_test.go index 96567af8a30a3..25023a11d3746 100644 --- a/pkg/policy/resolve_test.go +++ b/pkg/policy/resolve_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/rule.go b/pkg/policy/rule.go index c952dd38a57c9..3c99db4ff1630 100644 --- a/pkg/policy/rule.go +++ b/pkg/policy/rule.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/rule_test.go b/pkg/policy/rule_test.go index b428031ddac3b..6601ab19fbc1d 100644 --- a/pkg/policy/rule_test.go +++ b/pkg/policy/rule_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/rules.go b/pkg/policy/rules.go index 307b0897e5fb6..8bee65bd6aca0 100644 --- a/pkg/policy/rules.go +++ b/pkg/policy/rules.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/selectorcache.go b/pkg/policy/selectorcache.go index 697146b721da3..a00df39ebc697 100644 --- a/pkg/policy/selectorcache.go +++ b/pkg/policy/selectorcache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/selectorcache_test.go b/pkg/policy/selectorcache_test.go index 086792fa47d0d..12bff477f82e1 100644 --- a/pkg/policy/selectorcache_test.go +++ b/pkg/policy/selectorcache_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/trace/yaml.go b/pkg/policy/trace/yaml.go index b1c2a47483821..4408aa5b2bcaa 100644 --- a/pkg/policy/trace/yaml.go +++ b/pkg/policy/trace/yaml.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package trace diff --git a/pkg/policy/trafficdirection/doc.go b/pkg/policy/trafficdirection/doc.go index 2a289d43c8137..8255781887251 100644 --- a/pkg/policy/trafficdirection/doc.go +++ b/pkg/policy/trafficdirection/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // package trafficdirection specifies the directionality of policy in a // numeric representation. diff --git a/pkg/policy/trafficdirection/trafficdirection.go b/pkg/policy/trafficdirection/trafficdirection.go index 8ae7324bdc190..9b530cfc50564 100644 --- a/pkg/policy/trafficdirection/trafficdirection.go +++ b/pkg/policy/trafficdirection/trafficdirection.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package trafficdirection diff --git a/pkg/policy/trigger.go b/pkg/policy/trigger.go index aa7334586e55c..f1881c833f7a9 100644 --- a/pkg/policy/trigger.go +++ b/pkg/policy/trigger.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/utils.go b/pkg/policy/utils.go index 37734f010b993..fa3c4859038f1 100644 --- a/pkg/policy/utils.go +++ b/pkg/policy/utils.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/utils_test.go b/pkg/policy/utils_test.go index 251efedec2815..d5b4be0d6f070 100644 --- a/pkg/policy/utils_test.go +++ b/pkg/policy/utils_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/policy/visibility.go b/pkg/policy/visibility.go index 18632471bb27a..10b15601a2294 100644 --- a/pkg/policy/visibility.go +++ b/pkg/policy/visibility.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package policy diff --git a/pkg/policy/visibility_test.go b/pkg/policy/visibility_test.go index 81f567aa2dbeb..1fe9f83068a7d 100644 --- a/pkg/policy/visibility_test.go +++ b/pkg/policy/visibility_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/pprof/pprof.go b/pkg/pprof/pprof.go index 7b68dee5547f5..e14ca559f6b5c 100644 --- a/pkg/pprof/pprof.go +++ b/pkg/pprof/pprof.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium // Package pprof enables use of pprof in Cilium package pprof diff --git a/pkg/probe/doc.go b/pkg/probe/doc.go index 30adcfeaa5db8..1997888631058 100644 --- a/pkg/probe/doc.go +++ b/pkg/probe/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package probe provides a collection of kernel-side BPF feature probes. package probe diff --git a/pkg/probe/probe.go b/pkg/probe/probe.go index 65418f6f2d775..a686d86c0eea0 100644 --- a/pkg/probe/probe.go +++ b/pkg/probe/probe.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package probe diff --git a/pkg/proxy/accesslog/record.go b/pkg/proxy/accesslog/record.go index 4a76cef1c2945..d1066dc962ece 100644 --- a/pkg/proxy/accesslog/record.go +++ b/pkg/proxy/accesslog/record.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package accesslog diff --git a/pkg/proxy/dns.go b/pkg/proxy/dns.go index ee7560d8d3ef2..de1c6d8c909d4 100644 --- a/pkg/proxy/dns.go +++ b/pkg/proxy/dns.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package proxy diff --git a/pkg/proxy/envoyproxy.go b/pkg/proxy/envoyproxy.go index 67a58b45b5d0a..c49a3a1fc0de7 100644 --- a/pkg/proxy/envoyproxy.go +++ b/pkg/proxy/envoyproxy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package proxy diff --git a/pkg/proxy/epinfo.go b/pkg/proxy/epinfo.go index 65f4faa40a5f6..1ad32b1f40fc1 100644 --- a/pkg/proxy/epinfo.go +++ b/pkg/proxy/epinfo.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package proxy diff --git a/pkg/proxy/logger/doc.go b/pkg/proxy/logger/doc.go index 333a83ba7aca7..64b17c9cce745 100644 --- a/pkg/proxy/logger/doc.go +++ b/pkg/proxy/logger/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package logger provides the accesslog logging logic for all proxies package logger diff --git a/pkg/proxy/logger/epinfo.go b/pkg/proxy/logger/epinfo.go index 5d070324bbb6b..f31c5f74d2e7e 100644 --- a/pkg/proxy/logger/epinfo.go +++ b/pkg/proxy/logger/epinfo.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package logger diff --git a/pkg/proxy/logger/logger.go b/pkg/proxy/logger/logger.go index 609b0be67f89b..c8197a0f8e3db 100644 --- a/pkg/proxy/logger/logger.go +++ b/pkg/proxy/logger/logger.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package logger diff --git a/pkg/proxy/logger/test/epinfo.go b/pkg/proxy/logger/test/epinfo.go index 7e42106310e8a..4ececb8e2099a 100644 --- a/pkg/proxy/logger/test/epinfo.go +++ b/pkg/proxy/logger/test/epinfo.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/proxy/netstat.go b/pkg/proxy/netstat.go index c034c9248cbda..12f5f13f60845 100644 --- a/pkg/proxy/netstat.go +++ b/pkg/proxy/netstat.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package proxy diff --git a/pkg/proxy/proxy.go b/pkg/proxy/proxy.go index 0387223946878..8ecc34335e188 100644 --- a/pkg/proxy/proxy.go +++ b/pkg/proxy/proxy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2020 Authors of Cilium +// Copyright Authors of Cilium package proxy diff --git a/pkg/proxy/redirect.go b/pkg/proxy/redirect.go index f34ce4b73a7cd..02e095b066a07 100644 --- a/pkg/proxy/redirect.go +++ b/pkg/proxy/redirect.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package proxy diff --git a/pkg/rand/rand_name.go b/pkg/rand/rand_name.go index 7d7e86406138b..908d61f40ef7b 100644 --- a/pkg/rand/rand_name.go +++ b/pkg/rand/rand_name.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package rand diff --git a/pkg/rand/rand_name_test.go b/pkg/rand/rand_name_test.go index 4804bff0d5586..9de2fdad11978 100644 --- a/pkg/rand/rand_name_test.go +++ b/pkg/rand/rand_name_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/rand/safe_rand.go b/pkg/rand/safe_rand.go index 9e5c5fdedaedb..1a15ddbc387ae 100644 --- a/pkg/rand/safe_rand.go +++ b/pkg/rand/safe_rand.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package rand diff --git a/pkg/rand/safe_rand_test.go b/pkg/rand/safe_rand_test.go index 98bc916691406..c8a7a20a1e128 100644 --- a/pkg/rand/safe_rand_test.go +++ b/pkg/rand/safe_rand_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/rate/api_limiter.go b/pkg/rate/api_limiter.go index c8ef3462221bc..9d2c5ee34c4a8 100644 --- a/pkg/rate/api_limiter.go +++ b/pkg/rate/api_limiter.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package rate diff --git a/pkg/rate/api_limiter_norace_test.go b/pkg/rate/api_limiter_norace_test.go index 834f979d8dd1d..0c6d616b84b87 100644 --- a/pkg/rate/api_limiter_norace_test.go +++ b/pkg/rate/api_limiter_norace_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !race && !privileged_tests // +build !race,!privileged_tests diff --git a/pkg/rate/api_limiter_race_test.go b/pkg/rate/api_limiter_race_test.go index 9d8c4892c4d23..484f0a610685e 100644 --- a/pkg/rate/api_limiter_race_test.go +++ b/pkg/rate/api_limiter_race_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build race && !privileged_tests // +build race,!privileged_tests diff --git a/pkg/rate/api_limiter_test.go b/pkg/rate/api_limiter_test.go index 4b886eb88457c..9d81d30720d78 100644 --- a/pkg/rate/api_limiter_test.go +++ b/pkg/rate/api_limiter_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/rate/doc.go b/pkg/rate/doc.go index 749ee57fc8982..b031503aad7cd 100644 --- a/pkg/rate/doc.go +++ b/pkg/rate/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package rate provides a rate limiter to rate limit requests that can be // burstable but they should only allowed N per a period defined. diff --git a/pkg/rate/limiter.go b/pkg/rate/limiter.go index d1295dd0a2733..cc1ca60664468 100644 --- a/pkg/rate/limiter.go +++ b/pkg/rate/limiter.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package rate diff --git a/pkg/rate/limiter_test.go b/pkg/rate/limiter_test.go index a999ffe58b137..4d7cf1fe5793c 100644 --- a/pkg/rate/limiter_test.go +++ b/pkg/rate/limiter_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/recorder/doc.go b/pkg/recorder/doc.go index f7b98f3f534c3..84d7115eb162e 100644 --- a/pkg/recorder/doc.go +++ b/pkg/recorder/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // Package recorder provides an agent API for managing datapath pcap recorders. package recorder diff --git a/pkg/recorder/recorder.go b/pkg/recorder/recorder.go index 271955fff4b20..1ad0e7c751d87 100644 --- a/pkg/recorder/recorder.go +++ b/pkg/recorder/recorder.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package recorder diff --git a/pkg/recorder/zz_generated.deepcopy.go b/pkg/recorder/zz_generated.deepcopy.go index 5382ccd674935..6386b411f7f2b 100644 --- a/pkg/recorder/zz_generated.deepcopy.go +++ b/pkg/recorder/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/redirectpolicy/doc.go b/pkg/redirectpolicy/doc.go index a33c7e2be0ef2..0df4350e14c3e 100644 --- a/pkg/redirectpolicy/doc.go +++ b/pkg/redirectpolicy/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Package redirectpolicy defines an internal representation of the Cilium Local // Redirect Policy. The structures are managed by the RedirectPolicyManager. diff --git a/pkg/redirectpolicy/manager.go b/pkg/redirectpolicy/manager.go index 8666dd740365a..64e68f0daa439 100644 --- a/pkg/redirectpolicy/manager.go +++ b/pkg/redirectpolicy/manager.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package redirectpolicy diff --git a/pkg/redirectpolicy/manager_test.go b/pkg/redirectpolicy/manager_test.go index c4098360b552f..1a1233f559124 100644 --- a/pkg/redirectpolicy/manager_test.go +++ b/pkg/redirectpolicy/manager_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build privileged_tests // +build privileged_tests diff --git a/pkg/redirectpolicy/redirectpolicy.go b/pkg/redirectpolicy/redirectpolicy.go index 68ae1f2066cfb..57a4355545fa7 100644 --- a/pkg/redirectpolicy/redirectpolicy.go +++ b/pkg/redirectpolicy/redirectpolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package redirectpolicy diff --git a/pkg/revert/finalize.go b/pkg/revert/finalize.go index 1ae56a028facd..5c321a9321518 100644 --- a/pkg/revert/finalize.go +++ b/pkg/revert/finalize.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package revert diff --git a/pkg/revert/finalize_test.go b/pkg/revert/finalize_test.go index 2c4b749de979a..c62dc61435272 100644 --- a/pkg/revert/finalize_test.go +++ b/pkg/revert/finalize_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/revert/revert.go b/pkg/revert/revert.go index 223983a6340f4..06ab3db5fd7a0 100644 --- a/pkg/revert/revert.go +++ b/pkg/revert/revert.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package revert diff --git a/pkg/revert/revert_test.go b/pkg/revert/revert_test.go index 0d4c674bf65a8..331ee76377113 100644 --- a/pkg/revert/revert_test.go +++ b/pkg/revert/revert_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/safetime/doc.go b/pkg/safetime/doc.go index 06289c852f56b..11ecf3c5fd27f 100644 --- a/pkg/safetime/doc.go +++ b/pkg/safetime/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package safetime contains a wrapper function for time.Since to deal with // negative durations. diff --git a/pkg/safetime/safetime.go b/pkg/safetime/safetime.go index 9dc894fe3b12a..99240e6262cc7 100644 --- a/pkg/safetime/safetime.go +++ b/pkg/safetime/safetime.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package safetime diff --git a/pkg/safetime/safetime_test.go b/pkg/safetime/safetime_test.go index 3528e86b07326..6ce4dfcc32a4e 100644 --- a/pkg/safetime/safetime_test.go +++ b/pkg/safetime/safetime_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/serializer/func_queue.go b/pkg/serializer/func_queue.go index 3b5a76bac7224..33e1ea775cb0e 100644 --- a/pkg/serializer/func_queue.go +++ b/pkg/serializer/func_queue.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package serializer diff --git a/pkg/serializer/func_queue_test.go b/pkg/serializer/func_queue_test.go index 6f3de400b306b..8dc7c84768663 100644 --- a/pkg/serializer/func_queue_test.go +++ b/pkg/serializer/func_queue_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/service/const.go b/pkg/service/const.go index 049a42dcf7929..b442ba6b64335 100644 --- a/pkg/service/const.go +++ b/pkg/service/const.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package service diff --git a/pkg/service/healthserver/healthserver.go b/pkg/service/healthserver/healthserver.go index 312b2b91fb240..7ebf86cc572b4 100644 --- a/pkg/service/healthserver/healthserver.go +++ b/pkg/service/healthserver/healthserver.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package healthserver diff --git a/pkg/service/healthserver/healthserver_mock.go b/pkg/service/healthserver/healthserver_mock.go index cf17b6f503725..bf66a4ba7aade 100644 --- a/pkg/service/healthserver/healthserver_mock.go +++ b/pkg/service/healthserver/healthserver_mock.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package healthserver diff --git a/pkg/service/healthserver/healthserver_test.go b/pkg/service/healthserver/healthserver_test.go index 36a3a578215a3..f40ba42d41b32 100644 --- a/pkg/service/healthserver/healthserver_test.go +++ b/pkg/service/healthserver/healthserver_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/service/id.go b/pkg/service/id.go index 9e222ec4fad92..c33098f78b56a 100644 --- a/pkg/service/id.go +++ b/pkg/service/id.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package service diff --git a/pkg/service/id_local.go b/pkg/service/id_local.go index b3f3d4338fd53..02a5c10b8ef11 100644 --- a/pkg/service/id_local.go +++ b/pkg/service/id_local.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package service diff --git a/pkg/service/id_test.go b/pkg/service/id_test.go index 4fac979cca0bb..c0dbcd2f0775d 100644 --- a/pkg/service/id_test.go +++ b/pkg/service/id_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/service/logfields.go b/pkg/service/logfields.go index 03b68986659a4..d0a907b50ed1f 100644 --- a/pkg/service/logfields.go +++ b/pkg/service/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2018 Authors of Cilium +// Copyright Authors of Cilium package service diff --git a/pkg/service/service.go b/pkg/service/service.go index 4823e61dff04e..665629d314b90 100644 --- a/pkg/service/service.go +++ b/pkg/service/service.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package service diff --git a/pkg/service/service_test.go b/pkg/service/service_test.go index 4026ce11fcdf6..0075632ce784e 100644 --- a/pkg/service/service_test.go +++ b/pkg/service/service_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/service/store/logfields.go b/pkg/service/store/logfields.go index 00850ca303a3c..7dc7953d6841e 100644 --- a/pkg/service/store/logfields.go +++ b/pkg/service/store/logfields.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package store diff --git a/pkg/service/store/store.go b/pkg/service/store/store.go index 99a2a540a6cfa..ddbbb90d62466 100644 --- a/pkg/service/store/store.go +++ b/pkg/service/store/store.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package store diff --git a/pkg/service/store/store_test.go b/pkg/service/store/store_test.go index 8e5ae1187033e..c7c0765e2b1c5 100644 --- a/pkg/service/store/store_test.go +++ b/pkg/service/store/store_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/service/store/zz_generated.deepcopy.go b/pkg/service/store/zz_generated.deepcopy.go index 09389b68634a7..f08675bae17f7 100644 --- a/pkg/service/store/zz_generated.deepcopy.go +++ b/pkg/service/store/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/service/store/zz_generated.deepequal.go b/pkg/service/store/zz_generated.deepequal.go index 823901dc8193f..cdf7b54f542cf 100644 --- a/pkg/service/store/zz_generated.deepequal.go +++ b/pkg/service/store/zz_generated.deepequal.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by main. DO NOT EDIT. diff --git a/pkg/set/doc.go b/pkg/set/doc.go index 152d722247934..197cdebb4756f 100644 --- a/pkg/set/doc.go +++ b/pkg/set/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package set contains a function for performing a subset check for slices. package set diff --git a/pkg/set/set.go b/pkg/set/set.go index b1db357731e06..8fbb3db3ca954 100644 --- a/pkg/set/set.go +++ b/pkg/set/set.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package set diff --git a/pkg/set/set_test.go b/pkg/set/set_test.go index 1df184b781463..ad646180272d9 100644 --- a/pkg/set/set_test.go +++ b/pkg/set/set_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/signal/doc.go b/pkg/signal/doc.go index 4bb92046de84d..979c319fe8895 100644 --- a/pkg/signal/doc.go +++ b/pkg/signal/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package signal provides handling notifications from perf RB signal map. package signal diff --git a/pkg/signal/signal.go b/pkg/signal/signal.go index ccf520b8f5ad3..3ef965f47f5f0 100644 --- a/pkg/signal/signal.go +++ b/pkg/signal/signal.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package signal diff --git a/pkg/sockops/sockops.go b/pkg/sockops/sockops.go index a52caff34a03d..abc0a89f8e003 100644 --- a/pkg/sockops/sockops.go +++ b/pkg/sockops/sockops.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package sockops diff --git a/pkg/source/source.go b/pkg/source/source.go index 250ef30a9f051..239b9f1696568 100644 --- a/pkg/source/source.go +++ b/pkg/source/source.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package source diff --git a/pkg/source/source_test.go b/pkg/source/source_test.go index acbeeb74fc75a..17773ef2b4d86 100644 --- a/pkg/source/source_test.go +++ b/pkg/source/source_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/spanstat/doc.go b/pkg/spanstat/doc.go index dd650bd9df48d..61b9dc8124b8f 100644 --- a/pkg/spanstat/doc.go +++ b/pkg/spanstat/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package spanstat provides a mechanism to measure duration of multiple spans // and add them up to a total duration diff --git a/pkg/spanstat/spanstat.go b/pkg/spanstat/spanstat.go index 6e33cb8464754..e3f7dbb6cdd26 100644 --- a/pkg/spanstat/spanstat.go +++ b/pkg/spanstat/spanstat.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package spanstat diff --git a/pkg/spanstat/spanstat_test.go b/pkg/spanstat/spanstat_test.go index 3bf39f5b6634e..2f13e80c2955a 100644 --- a/pkg/spanstat/spanstat_test.go +++ b/pkg/spanstat/spanstat_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/status/status.go b/pkg/status/status.go index 3b71cd0ed2c10..510c885086d09 100644 --- a/pkg/status/status.go +++ b/pkg/status/status.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package status diff --git a/pkg/status/status_test.go b/pkg/status/status_test.go index 63e0ea2e441aa..e742520b32fc1 100644 --- a/pkg/status/status_test.go +++ b/pkg/status/status_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/sysctl/doc.go b/pkg/sysctl/doc.go index 5d48e89a62b16..07b01e24a640a 100644 --- a/pkg/sysctl/doc.go +++ b/pkg/sysctl/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package sysctl allows to change kernel parameters at runtime. package sysctl diff --git a/pkg/sysctl/sysctl.go b/pkg/sysctl/sysctl.go index 35705ddfbda9c..72b963a2231c3 100644 --- a/pkg/sysctl/sysctl.go +++ b/pkg/sysctl/sysctl.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package sysctl diff --git a/pkg/sysctl/sysctl_linux_privileged_test.go b/pkg/sysctl/sysctl_linux_privileged_test.go index 39a0682191594..7f7f52da776db 100644 --- a/pkg/sysctl/sysctl_linux_privileged_test.go +++ b/pkg/sysctl/sysctl_linux_privileged_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build linux && privileged_tests // +build linux,privileged_tests diff --git a/pkg/sysctl/sysctl_test.go b/pkg/sysctl/sysctl_test.go index 52c083f20720f..34f92d2395d3e 100644 --- a/pkg/sysctl/sysctl_test.go +++ b/pkg/sysctl/sysctl_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/testutils/condition.go b/pkg/testutils/condition.go index a79f40cc78004..2fe4ae24053c1 100644 --- a/pkg/testutils/condition.go +++ b/pkg/testutils/condition.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package testutils diff --git a/pkg/testutils/condition_test.go b/pkg/testutils/condition_test.go index e1421a6f17d64..4b52726b4799c 100644 --- a/pkg/testutils/condition_test.go +++ b/pkg/testutils/condition_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/testutils/endpoint.go b/pkg/testutils/endpoint.go index 7ccf77cbeed81..1ba8bfafc15be 100644 --- a/pkg/testutils/endpoint.go +++ b/pkg/testutils/endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package testutils diff --git a/pkg/testutils/identity/allocator.go b/pkg/testutils/identity/allocator.go index 294db758093a5..b52699bd5286a 100644 --- a/pkg/testutils/identity/allocator.go +++ b/pkg/testutils/identity/allocator.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package testidentity diff --git a/pkg/testutils/identity/notifier.go b/pkg/testutils/identity/notifier.go index c4fd8758d055b..e6ac55e606c89 100644 --- a/pkg/testutils/identity/notifier.go +++ b/pkg/testutils/identity/notifier.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package testidentity diff --git a/pkg/testutils/ipam.go b/pkg/testutils/ipam.go index 7175db1f3cec4..b825fb12af5e8 100644 --- a/pkg/testutils/ipam.go +++ b/pkg/testutils/ipam.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package testutils diff --git a/pkg/testutils/log.go b/pkg/testutils/log.go index c615fde8178c8..42883568c7b02 100644 --- a/pkg/testutils/log.go +++ b/pkg/testutils/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package testutils diff --git a/pkg/testutils/mockmaps/ctmap.go b/pkg/testutils/mockmaps/ctmap.go index 90c7e14e6f6f9..7a675b116b147 100644 --- a/pkg/testutils/mockmaps/ctmap.go +++ b/pkg/testutils/mockmaps/ctmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package mockmaps diff --git a/pkg/testutils/mockmaps/lbmap.go b/pkg/testutils/mockmaps/lbmap.go index e07c09e258155..6f1a8bd2e3b67 100644 --- a/pkg/testutils/mockmaps/lbmap.go +++ b/pkg/testutils/mockmaps/lbmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package mockmaps diff --git a/pkg/testutils/mockmaps/metricsmap.go b/pkg/testutils/mockmaps/metricsmap.go index d6092a9de9083..8c323114fd164 100644 --- a/pkg/testutils/mockmaps/metricsmap.go +++ b/pkg/testutils/mockmaps/metricsmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package mockmaps diff --git a/pkg/testutils/mockmaps/nat.go b/pkg/testutils/mockmaps/nat.go index a0e2a248f7fbd..4943380eb9a0e 100644 --- a/pkg/testutils/mockmaps/nat.go +++ b/pkg/testutils/mockmaps/nat.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package mockmaps diff --git a/pkg/testutils/testutils_test.go b/pkg/testutils/testutils_test.go index ba5412ffee4e2..9684866c50bde 100644 --- a/pkg/testutils/testutils_test.go +++ b/pkg/testutils/testutils_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/trigger/doc.go b/pkg/trigger/doc.go index 228ccbd045bae..7ca449cd3a5a5 100644 --- a/pkg/trigger/doc.go +++ b/pkg/trigger/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package trigger provides a mechanism to trigger actions that require to be // serialized while providing a non-blocking notification mechanism diff --git a/pkg/trigger/trigger.go b/pkg/trigger/trigger.go index f2eeeb0fe5778..9c2e0a77bcdf9 100644 --- a/pkg/trigger/trigger.go +++ b/pkg/trigger/trigger.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package trigger diff --git a/pkg/trigger/trigger_test.go b/pkg/trigger/trigger_test.go index a17b59394e7ac..31010a6fc4fb3 100644 --- a/pkg/trigger/trigger_test.go +++ b/pkg/trigger/trigger_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/tuple/doc.go b/pkg/tuple/doc.go index 492715a07f22e..dd82d2bfe2668 100644 --- a/pkg/tuple/doc.go +++ b/pkg/tuple/doc.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium // Package tuple defines keys used for connection tuples in multiple BPF maps. // +groupName=maps diff --git a/pkg/tuple/ipv4.go b/pkg/tuple/ipv4.go index 282beb0aa9c95..d091d990d252a 100644 --- a/pkg/tuple/ipv4.go +++ b/pkg/tuple/ipv4.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package tuple diff --git a/pkg/tuple/ipv6.go b/pkg/tuple/ipv6.go index 2fccf30db9c53..cc89b313bfd55 100644 --- a/pkg/tuple/ipv6.go +++ b/pkg/tuple/ipv6.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package tuple diff --git a/pkg/tuple/tuple.go b/pkg/tuple/tuple.go index 47aaab534cd0a..116f48055df19 100644 --- a/pkg/tuple/tuple.go +++ b/pkg/tuple/tuple.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package tuple diff --git a/pkg/tuple/zz_generated.deepcopy.go b/pkg/tuple/zz_generated.deepcopy.go index e8c9eaad2109e..3425d309b4b63 100644 --- a/pkg/tuple/zz_generated.deepcopy.go +++ b/pkg/tuple/zz_generated.deepcopy.go @@ -2,7 +2,7 @@ // +build !ignore_autogenerated // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2022 Authors of Cilium +// Copyright Authors of Cilium // Code generated by deepcopy-gen. DO NOT EDIT. diff --git a/pkg/types/ipv4.go b/pkg/types/ipv4.go index 68f3cd0b1a0c9..2eb644700519b 100644 --- a/pkg/types/ipv4.go +++ b/pkg/types/ipv4.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/types/ipv4_test.go b/pkg/types/ipv4_test.go index b3c2c603ae2d7..8d761e8c21dbf 100644 --- a/pkg/types/ipv4_test.go +++ b/pkg/types/ipv4_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/types/ipv6.go b/pkg/types/ipv6.go index 470de835a8d13..f7db193d80be4 100644 --- a/pkg/types/ipv6.go +++ b/pkg/types/ipv6.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/types/ipv6_test.go b/pkg/types/ipv6_test.go index 6b9d120a32b74..85c8717497a50 100644 --- a/pkg/types/ipv6_test.go +++ b/pkg/types/ipv6_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/types/macaddr.go b/pkg/types/macaddr.go index 686152790ad69..29c37dae30271 100644 --- a/pkg/types/macaddr.go +++ b/pkg/types/macaddr.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/pkg/types/macaddr_test.go b/pkg/types/macaddr_test.go index fe90a8f31d933..bd769449a8e1a 100644 --- a/pkg/types/macaddr_test.go +++ b/pkg/types/macaddr_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/u8proto/u8proto.go b/pkg/u8proto/u8proto.go index eddbbd7e1d447..b965a6ec28b02 100644 --- a/pkg/u8proto/u8proto.go +++ b/pkg/u8proto/u8proto.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package u8proto diff --git a/pkg/version/version.go b/pkg/version/version.go index cba9f9a080b7e..75d56eac92b2c 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package version diff --git a/pkg/version/version_test.go b/pkg/version/version_test.go index afd1a11e22595..394de9c7cd024 100644 --- a/pkg/version/version_test.go +++ b/pkg/version/version_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/version/version_unix.go b/pkg/version/version_unix.go index e03b2f57aaa70..2f03cdfb85533 100644 --- a/pkg/version/version_unix.go +++ b/pkg/version/version_unix.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !windows // +build !windows diff --git a/pkg/version/version_unix_test.go b/pkg/version/version_unix_test.go index 09cad85347827..008e1dbff36f6 100644 --- a/pkg/version/version_unix_test.go +++ b/pkg/version/version_unix_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !windows && !privileged_tests // +build !windows,!privileged_tests diff --git a/pkg/versioncheck/check.go b/pkg/versioncheck/check.go index f5d7229f82af8..8f87954c0309c 100644 --- a/pkg/versioncheck/check.go +++ b/pkg/versioncheck/check.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // Package versioncheck provides utility wrappers for go-version, allowing the // constraints to be used as global variables. diff --git a/pkg/versioncheck/check_test.go b/pkg/versioncheck/check_test.go index 83e21871bed9d..42067d9a5916a 100644 --- a/pkg/versioncheck/check_test.go +++ b/pkg/versioncheck/check_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/wireguard/agent/agent.go b/pkg/wireguard/agent/agent.go index d624b245399ab..f9af0c7cc4d3e 100644 --- a/pkg/wireguard/agent/agent.go +++ b/pkg/wireguard/agent/agent.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // This package contains the agent code used to configure the Wireguard tunnel // between nodes. The code supports adding and removing peers at run-time diff --git a/pkg/wireguard/agent/agent_test.go b/pkg/wireguard/agent/agent_test.go index 0febd6fa8aebb..59f6987aa1818 100644 --- a/pkg/wireguard/agent/agent_test.go +++ b/pkg/wireguard/agent/agent_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/pkg/wireguard/types/types.go b/pkg/wireguard/types/types.go index e7c5ce3c75693..954f0da58cf84 100644 --- a/pkg/wireguard/types/types.go +++ b/pkg/wireguard/types/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium // Common Wireguard types and constants package types diff --git a/plugins/Makefile b/plugins/Makefile index 243866646f6f9..36b91ade84a19 100644 --- a/plugins/Makefile +++ b/plugins/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2019 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../Makefile.defs diff --git a/plugins/cilium-cni/Makefile b/plugins/cilium-cni/Makefile index 39b32f62555dc..693829ecc52f1 100644 --- a/plugins/cilium-cni/Makefile +++ b/plugins/cilium-cni/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../../Makefile.defs diff --git a/plugins/cilium-cni/chaining/api/api.go b/plugins/cilium-cni/chaining/api/api.go index 754e917d61d0d..0e0900a6f280e 100644 --- a/plugins/cilium-cni/chaining/api/api.go +++ b/plugins/cilium-cni/chaining/api/api.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package api diff --git a/plugins/cilium-cni/chaining/api/api_test.go b/plugins/cilium-cni/chaining/api/api_test.go index 8599dfb8d6b4e..b32382c5f32a1 100644 --- a/plugins/cilium-cni/chaining/api/api_test.go +++ b/plugins/cilium-cni/chaining/api/api_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/plugins/cilium-cni/chaining/awscni/aws-cni.go b/plugins/cilium-cni/chaining/awscni/aws-cni.go index f5cf094d30dc9..483fb864b0830 100644 --- a/plugins/cilium-cni/chaining/awscni/aws-cni.go +++ b/plugins/cilium-cni/chaining/awscni/aws-cni.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package awscni diff --git a/plugins/cilium-cni/chaining/azure/azure-cni.go b/plugins/cilium-cni/chaining/azure/azure-cni.go index f79fcae2cc5bc..0cacd76ebb92a 100644 --- a/plugins/cilium-cni/chaining/azure/azure-cni.go +++ b/plugins/cilium-cni/chaining/azure/azure-cni.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package azure diff --git a/plugins/cilium-cni/chaining/flannel/flannel.go b/plugins/cilium-cni/chaining/flannel/flannel.go index 925dc044d4475..d1ea725af4e8e 100644 --- a/plugins/cilium-cni/chaining/flannel/flannel.go +++ b/plugins/cilium-cni/chaining/flannel/flannel.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package flannel diff --git a/plugins/cilium-cni/chaining/generic-veth/generic-veth.go b/plugins/cilium-cni/chaining/generic-veth/generic-veth.go index 754be23f20e57..3792daaa0e18b 100644 --- a/plugins/cilium-cni/chaining/generic-veth/generic-veth.go +++ b/plugins/cilium-cni/chaining/generic-veth/generic-veth.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package genericveth diff --git a/plugins/cilium-cni/chaining/portmap/portmap.go b/plugins/cilium-cni/chaining/portmap/portmap.go index f016eb23b2389..bef2f591a6eeb 100644 --- a/plugins/cilium-cni/chaining/portmap/portmap.go +++ b/plugins/cilium-cni/chaining/portmap/portmap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package portmap diff --git a/plugins/cilium-cni/cilium-cni.go b/plugins/cilium-cni/cilium-cni.go index f70273151b8a0..acb91ec564983 100644 --- a/plugins/cilium-cni/cilium-cni.go +++ b/plugins/cilium-cni/cilium-cni.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium // Ensure build fails on versions of Go that are not supported by Cilium. // This build tag should be kept in sync with the version specified in go.mod. diff --git a/plugins/cilium-cni/interface.go b/plugins/cilium-cni/interface.go index c3ce927359cb7..4f389f38a2e89 100644 --- a/plugins/cilium-cni/interface.go +++ b/plugins/cilium-cni/interface.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/plugins/cilium-cni/types/types.go b/plugins/cilium-cni/types/types.go index 3d55597bd0405..de78d6a8a2cc8 100644 --- a/plugins/cilium-cni/types/types.go +++ b/plugins/cilium-cni/types/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2021 Authors of Cilium +// Copyright Authors of Cilium package types diff --git a/plugins/cilium-cni/types/types_test.go b/plugins/cilium-cni/types/types_test.go index 611cc98011e00..f4674f91774c3 100644 --- a/plugins/cilium-cni/types/types_test.go +++ b/plugins/cilium-cni/types/types_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/plugins/cilium-docker/Makefile b/plugins/cilium-docker/Makefile index c27c1e39d5070..a6b2ed3d1ee32 100644 --- a/plugins/cilium-docker/Makefile +++ b/plugins/cilium-docker/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../../Makefile.defs diff --git a/plugins/cilium-docker/driver/driver.go b/plugins/cilium-docker/driver/driver.go index 71dd2607c84bb..70294ebe0bef3 100644 --- a/plugins/cilium-docker/driver/driver.go +++ b/plugins/cilium-docker/driver/driver.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package driver diff --git a/plugins/cilium-docker/driver/ipam.go b/plugins/cilium-docker/driver/ipam.go index 1e9c71e9e0f73..e04caf49a969b 100644 --- a/plugins/cilium-docker/driver/ipam.go +++ b/plugins/cilium-docker/driver/ipam.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium package driver diff --git a/plugins/cilium-docker/main.go b/plugins/cilium-docker/main.go index 238f3665b528e..7eaeffd9cef6c 100644 --- a/plugins/cilium-docker/main.go +++ b/plugins/cilium-docker/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2017 Authors of Cilium +// Copyright Authors of Cilium // Ensure build fails on versions of Go that are not supported by Cilium. // This build tag should be kept in sync with the version specified in go.mod. diff --git a/plugins/cilium-docker/version.go b/plugins/cilium-docker/version.go index 8adb7ffe6e033..160693d57a640 100644 --- a/plugins/cilium-docker/version.go +++ b/plugins/cilium-docker/version.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2016-2019 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/proxylib/Makefile b/proxylib/Makefile index 2dc2179e92796..ca928d761da62 100644 --- a/proxylib/Makefile +++ b/proxylib/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../Makefile.defs diff --git a/proxylib/accesslog/client.go b/proxylib/accesslog/client.go index 9ad89715a0f1a..72cb177eea8dc 100644 --- a/proxylib/accesslog/client.go +++ b/proxylib/accesslog/client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package accesslog diff --git a/proxylib/cassandra/cassandraparser.go b/proxylib/cassandra/cassandraparser.go index 16857d4729760..07e2a4d5c61d1 100644 --- a/proxylib/cassandra/cassandraparser.go +++ b/proxylib/cassandra/cassandraparser.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package cassandra diff --git a/proxylib/cassandra/cassandraparser_test.go b/proxylib/cassandra/cassandraparser_test.go index 69f10d4299aa8..7fa0c460e2a1d 100644 --- a/proxylib/cassandra/cassandraparser_test.go +++ b/proxylib/cassandra/cassandraparser_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/proxylib/helpers_test.go b/proxylib/helpers_test.go index e69469488fc35..6cf81d13f092f 100644 --- a/proxylib/helpers_test.go +++ b/proxylib/helpers_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/proxylib/kafka/parser.go b/proxylib/kafka/parser.go index 8bdcf8bb77128..0786eb3686748 100644 --- a/proxylib/kafka/parser.go +++ b/proxylib/kafka/parser.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package kafka diff --git a/proxylib/kafka/parser_test.go b/proxylib/kafka/parser_test.go index 03131ff571e2f..d773ba467c588 100644 --- a/proxylib/kafka/parser_test.go +++ b/proxylib/kafka/parser_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/proxylib/memcached/binary/parser.go b/proxylib/memcached/binary/parser.go index 5542f22e319fd..58c0d9b5c68f5 100644 --- a/proxylib/memcached/binary/parser.go +++ b/proxylib/memcached/binary/parser.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package binary diff --git a/proxylib/memcached/binary/parser_test.go b/proxylib/memcached/binary/parser_test.go index de4e63b83e33c..601d8ec883487 100644 --- a/proxylib/memcached/binary/parser_test.go +++ b/proxylib/memcached/binary/parser_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/proxylib/memcached/meta/meta.go b/proxylib/memcached/meta/meta.go index 44620656b4d86..222709148c1cd 100644 --- a/proxylib/memcached/meta/meta.go +++ b/proxylib/memcached/meta/meta.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // text memcache protocol parser based on https://github.com/memcached/memcached/blob/master/doc/protocol.txt diff --git a/proxylib/memcached/parser.go b/proxylib/memcached/parser.go index b8e66c6a5a2be..c464736a99045 100644 --- a/proxylib/memcached/parser.go +++ b/proxylib/memcached/parser.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // text memcache protocol parser based on https://github.com/memcached/memcached/blob/master/doc/protocol.txt diff --git a/proxylib/memcached/text/parser.go b/proxylib/memcached/text/parser.go index 146df7bd6cb67..56807901686d9 100644 --- a/proxylib/memcached/text/parser.go +++ b/proxylib/memcached/text/parser.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // text memcache protocol parser based on https://github.com/memcached/memcached/blob/master/doc/protocol.txt diff --git a/proxylib/npds/client.go b/proxylib/npds/client.go index 1971acf9fe325..f4a4ff7a56666 100644 --- a/proxylib/npds/client.go +++ b/proxylib/npds/client.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package npds diff --git a/proxylib/npds/client_test.go b/proxylib/npds/client_test.go index ab24646f317f4..4ab941ffae2ef 100644 --- a/proxylib/npds/client_test.go +++ b/proxylib/npds/client_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/proxylib/proxylib.go b/proxylib/proxylib.go index b190c792d8bee..fb130e0e191f3 100644 --- a/proxylib/proxylib.go +++ b/proxylib/proxylib.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/proxylib/proxylib/connection.go b/proxylib/proxylib/connection.go index 6e0e624bb5f47..cf00c76a2d305 100644 --- a/proxylib/proxylib/connection.go +++ b/proxylib/proxylib/connection.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package proxylib diff --git a/proxylib/proxylib/input_test.go b/proxylib/proxylib/input_test.go index e84d9c5d6c578..6985dc1141143 100644 --- a/proxylib/proxylib/input_test.go +++ b/proxylib/proxylib/input_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/proxylib/proxylib/instance.go b/proxylib/proxylib/instance.go index de7352def27e4..7476eb4623ef0 100644 --- a/proxylib/proxylib/instance.go +++ b/proxylib/proxylib/instance.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package proxylib diff --git a/proxylib/proxylib/parserfactory.go b/proxylib/proxylib/parserfactory.go index 89ca3ad596f9a..3045d1b8d0aea 100644 --- a/proxylib/proxylib/parserfactory.go +++ b/proxylib/proxylib/parserfactory.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package proxylib diff --git a/proxylib/proxylib/policymap.go b/proxylib/proxylib/policymap.go index 816b790522549..c66b870a4f340 100644 --- a/proxylib/proxylib/policymap.go +++ b/proxylib/proxylib/policymap.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package proxylib diff --git a/proxylib/proxylib/reader.go b/proxylib/proxylib/reader.go index b50154327f036..8a26db630afbe 100644 --- a/proxylib/proxylib/reader.go +++ b/proxylib/proxylib/reader.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package proxylib diff --git a/proxylib/proxylib/test_util.go b/proxylib/proxylib/test_util.go index 46d0b94014836..0d4c5333fe294 100644 --- a/proxylib/proxylib/test_util.go +++ b/proxylib/proxylib/test_util.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package proxylib diff --git a/proxylib/proxylib/types.go b/proxylib/proxylib/types.go index e0052f724520b..238fab2b4436f 100644 --- a/proxylib/proxylib/types.go +++ b/proxylib/proxylib/types.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package proxylib diff --git a/proxylib/proxylib/types.h b/proxylib/proxylib/types.h index 62c8fdc230e88..1b57b45547b04 100644 --- a/proxylib/proxylib/types.h +++ b/proxylib/proxylib/types.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: Apache-2.0 */ -/* Copyright 2018 Authors of Cilium */ +/* Copyright Authors of Cilium */ #ifndef PROXYLIB_TYPES_H #define PROXYLIB_TYPES_H diff --git a/proxylib/proxylib_memcached_test.go b/proxylib/proxylib_memcached_test.go index 2702755f65ea9..4c2f5a5e4bded 100644 --- a/proxylib/proxylib_memcached_test.go +++ b/proxylib/proxylib_memcached_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/proxylib/proxylib_test.go b/proxylib/proxylib_test.go index 33d0b72d24b7d..8e018aaf2328b 100644 --- a/proxylib/proxylib_test.go +++ b/proxylib/proxylib_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/proxylib/r2d2/r2d2parser.go b/proxylib/r2d2/r2d2parser.go index b00f26ee8d272..b9c475e2b3b2c 100644 --- a/proxylib/r2d2/r2d2parser.go +++ b/proxylib/r2d2/r2d2parser.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package r2d2 diff --git a/proxylib/r2d2/r2d2parser_test.go b/proxylib/r2d2/r2d2parser_test.go index a4f3bd337b186..af14ad0433a71 100644 --- a/proxylib/r2d2/r2d2parser_test.go +++ b/proxylib/r2d2/r2d2parser_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium //go:build !privileged_tests // +build !privileged_tests diff --git a/proxylib/test/accesslog_server.go b/proxylib/test/accesslog_server.go index 85ca2e20a7c46..3ce89edea8f0c 100644 --- a/proxylib/test/accesslog_server.go +++ b/proxylib/test/accesslog_server.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2018 Authors of Cilium +// Copyright Authors of Cilium package test diff --git a/proxylib/test/tmpdir.go b/proxylib/test/tmpdir.go index 0645f5f4359f8..ce96347ec71c0 100644 --- a/proxylib/test/tmpdir.go +++ b/proxylib/test/tmpdir.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package test diff --git a/proxylib/testparsers/blockparser.go b/proxylib/testparsers/blockparser.go index ed8c34d117028..24e3e261dfafa 100644 --- a/proxylib/testparsers/blockparser.go +++ b/proxylib/testparsers/blockparser.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package testparsers diff --git a/proxylib/testparsers/headerparser.go b/proxylib/testparsers/headerparser.go index cf90ea2b9f38a..ecfaac3857670 100644 --- a/proxylib/testparsers/headerparser.go +++ b/proxylib/testparsers/headerparser.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium // // Accompanying file `headerparser.policy` contains an example policy diff --git a/proxylib/testparsers/lineparser.go b/proxylib/testparsers/lineparser.go index fd37422456816..d22bdfe3fadb3 100644 --- a/proxylib/testparsers/lineparser.go +++ b/proxylib/testparsers/lineparser.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package testparsers diff --git a/proxylib/testparsers/passer.go b/proxylib/testparsers/passer.go index 968102df21635..fb8c93b4b5d73 100644 --- a/proxylib/testparsers/passer.go +++ b/proxylib/testparsers/passer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package testparsers diff --git a/test/Makefile b/test/Makefile index e4b23293825b2..4e3967cf12947 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2019 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../Makefile.defs diff --git a/test/bpf/Makefile b/test/bpf/Makefile index e6a21c5b80707..8fa7022557c7d 100644 --- a/test/bpf/Makefile +++ b/test/bpf/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2021 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../../Makefile.defs diff --git a/test/bpf/check-complexity.sh b/test/bpf/check-complexity.sh index 0c22ee133cb94..243a5a429ab0b 100755 --- a/test/bpf/check-complexity.sh +++ b/test/bpf/check-complexity.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2018 Authors of Cilium +# Copyright Authors of Cilium set -eo pipefail diff --git a/test/bpf/elf-demo.c b/test/bpf/elf-demo.c index 29cf27bdf29d8..c29d91444652f 100644 --- a/test/bpf/elf-demo.c +++ b/test/bpf/elf-demo.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -// Copyright (c) 2018-2021 Authors of Cilium +// Copyright Authors of Cilium #include #include diff --git a/test/bpf/nat-test.c b/test/bpf/nat-test.c index fae79d7a9f0b6..5ad48fc0280f1 100644 --- a/test/bpf/nat-test.c +++ b/test/bpf/nat-test.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (C) 2021 Authors of Cilium */ +/* Copyright Authors of Cilium */ // source file for nat_test.h. // It contains contains main functions to run test functions nat_test.h. diff --git a/test/bpf/probes-test.sh b/test/bpf/probes-test.sh index b98d00c7346d9..b9d0d88415041 100755 --- a/test/bpf/probes-test.sh +++ b/test/bpf/probes-test.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2018 Authors of Cilium +# Copyright Authors of Cilium set -e diff --git a/test/bpf/unit-test.c b/test/bpf/unit-test.c index f98052a01d4fa..5461b923b174e 100644 --- a/test/bpf/unit-test.c +++ b/test/bpf/unit-test.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -// Copyright (c) 2018-2019 Authors of Cilium +// Copyright Authors of Cilium #include #include diff --git a/test/bpf/verifier-test.sh b/test/bpf/verifier-test.sh index 48c73ee3e33cb..6584a5c18e1ea 100755 --- a/test/bpf/verifier-test.sh +++ b/test/bpf/verifier-test.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2018-2021 Authors of Cilium +# Copyright Authors of Cilium set -eo pipefail diff --git a/test/config/config.go b/test/config/config.go index 337c9a2f62ead..b0d463d225d41 100644 --- a/test/config/config.go +++ b/test/config/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package config diff --git a/test/fuzzing/fuzz.go b/test/fuzzing/fuzz.go index 9481a3d557b2b..9ede9ee1cb04b 100644 --- a/test/fuzzing/fuzz.go +++ b/test/fuzzing/fuzz.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium //go:build gofuzz // +build gofuzz diff --git a/test/ginkgo-ext/writer.go b/test/ginkgo-ext/writer.go index 0f392a6a720d0..be1436a41f6e8 100644 --- a/test/ginkgo-ext/writer.go +++ b/test/ginkgo-ext/writer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package ginkgoext diff --git a/test/gke/resize-cluster.sh b/test/gke/resize-cluster.sh index 15d0df2c7b1e9..1ff342f3184c9 100755 --- a/test/gke/resize-cluster.sh +++ b/test/gke/resize-cluster.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 set -o errexit diff --git a/test/helpers/buffer.go b/test/helpers/buffer.go index 4d94b82a0e325..dbb37aa9af39b 100644 --- a/test/helpers/buffer.go +++ b/test/helpers/buffer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/cilium.go b/test/helpers/cilium.go index ef7fddeeca57f..e86b71d025255 100644 --- a/test/helpers/cilium.go +++ b/test/helpers/cilium.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/cmd.go b/test/helpers/cmd.go index 6e45c91b2b813..a6c056e9700f0 100644 --- a/test/helpers/cmd.go +++ b/test/helpers/cmd.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/cons.go b/test/helpers/cons.go index c856c12cb38f0..c68182f94ce42 100644 --- a/test/helpers/cons.go +++ b/test/helpers/cons.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/constants/images.go b/test/helpers/constants/images.go index dc17905b6c41e..11cb53f3d45fa 100644 --- a/test/helpers/constants/images.go +++ b/test/helpers/constants/images.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package constants diff --git a/test/helpers/docker.go b/test/helpers/docker.go index f6c694a1f0973..ee3644317785c 100644 --- a/test/helpers/docker.go +++ b/test/helpers/docker.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/filterBuffer.go b/test/helpers/filterBuffer.go index 6133330290b59..5e6b096a5f17d 100644 --- a/test/helpers/filterBuffer.go +++ b/test/helpers/filterBuffer.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/hubble.go b/test/helpers/hubble.go index 2892653bd51ca..449a927a7f386 100644 --- a/test/helpers/hubble.go +++ b/test/helpers/hubble.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/kubectl.go b/test/helpers/kubectl.go index 04265905e3958..d36d34fa7cffa 100644 --- a/test/helpers/kubectl.go +++ b/test/helpers/kubectl.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/local_node.go b/test/helpers/local_node.go index 099a640943818..1d79add94c600 100644 --- a/test/helpers/local_node.go +++ b/test/helpers/local_node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/logutils/utils.go b/test/helpers/logutils/utils.go index 629c95c88cf01..abcd98104ae8d 100644 --- a/test/helpers/logutils/utils.go +++ b/test/helpers/logutils/utils.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package logutils diff --git a/test/helpers/logutils/utils_test.go b/test/helpers/logutils/utils_test.go index 74c69b0f4abf1..ad481abc3d937 100644 --- a/test/helpers/logutils/utils_test.go +++ b/test/helpers/logutils/utils_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package logutils diff --git a/test/helpers/manifest.go b/test/helpers/manifest.go index 70da36c9e0cce..3a92220201ba8 100644 --- a/test/helpers/manifest.go +++ b/test/helpers/manifest.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/node.go b/test/helpers/node.go index 66c98eede54d7..de10403e2df03 100644 --- a/test/helpers/node.go +++ b/test/helpers/node.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/nodes_info.go b/test/helpers/nodes_info.go index bc879074fd6e8..cd905387b0f39 100644 --- a/test/helpers/nodes_info.go +++ b/test/helpers/nodes_info.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021-2022 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/policygen/actions.go b/test/helpers/policygen/actions.go index 1b65402a9301d..ba631cc93e4e0 100644 --- a/test/helpers/policygen/actions.go +++ b/test/helpers/policygen/actions.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package policygen diff --git a/test/helpers/policygen/const.go b/test/helpers/policygen/const.go index 1298fe6308f8d..bb7d5541b7958 100644 --- a/test/helpers/policygen/const.go +++ b/test/helpers/policygen/const.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package policygen diff --git a/test/helpers/policygen/models.go b/test/helpers/policygen/models.go index 40ee50fc12cf3..e04b4930b63a9 100644 --- a/test/helpers/policygen/models.go +++ b/test/helpers/policygen/models.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package policygen diff --git a/test/helpers/policygen/policygen.go b/test/helpers/policygen/policygen.go index d9d7d6211ad6a..d8c4b0ac8b780 100644 --- a/test/helpers/policygen/policygen.go +++ b/test/helpers/policygen/policygen.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package policygen diff --git a/test/helpers/runtime.go b/test/helpers/runtime.go index 80749471d535c..1a759e605e3a5 100644 --- a/test/helpers/runtime.go +++ b/test/helpers/runtime.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/ssh_command.go b/test/helpers/ssh_command.go index a92306ef5ff13..a39aacd239b33 100644 --- a/test/helpers/ssh_command.go +++ b/test/helpers/ssh_command.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/utils.go b/test/helpers/utils.go index 999d30348bfe5..d1e883f3b47b2 100644 --- a/test/helpers/utils.go +++ b/test/helpers/utils.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/vagrant.go b/test/helpers/vagrant.go index dae25e8152cb9..4ed71ac8e1131 100644 --- a/test/helpers/vagrant.go +++ b/test/helpers/vagrant.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/helpers/wrappers.go b/test/helpers/wrappers.go index 83c90aaa07842..3a31207cb8424 100644 --- a/test/helpers/wrappers.go +++ b/test/helpers/wrappers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package helpers diff --git a/test/k8sT/Bandwidth.go b/test/k8sT/Bandwidth.go index 8ef8a02492ffe..b2aabdf8aa5f8 100644 --- a/test/k8sT/Bandwidth.go +++ b/test/k8sT/Bandwidth.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/Chaos.go b/test/k8sT/Chaos.go index 24ffb19300018..ed8a009b17d22 100644 --- a/test/k8sT/Chaos.go +++ b/test/k8sT/Chaos.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/Conformance.go b/test/k8sT/Conformance.go index 4210c0bd3faa7..28c4a3fa236b6 100644 --- a/test/k8sT/Conformance.go +++ b/test/k8sT/Conformance.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/CustomCalls.go b/test/k8sT/CustomCalls.go index 4f48ea9421604..4e468601bc923 100644 --- a/test/k8sT/CustomCalls.go +++ b/test/k8sT/CustomCalls.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/DatapathConfiguration.go b/test/k8sT/DatapathConfiguration.go index 93374fdb40d26..93899b72d178f 100644 --- a/test/k8sT/DatapathConfiguration.go +++ b/test/k8sT/DatapathConfiguration.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/Egress.go b/test/k8sT/Egress.go index 8d60f7c9ad297..219f969978a7e 100644 --- a/test/k8sT/Egress.go +++ b/test/k8sT/Egress.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/Health.go b/test/k8sT/Health.go index 92d53fcb9f6af..872ac8db3c3dd 100644 --- a/test/k8sT/Health.go +++ b/test/k8sT/Health.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/Identity.go b/test/k8sT/Identity.go index 02edaa4508dbb..9bc22c692526f 100644 --- a/test/k8sT/Identity.go +++ b/test/k8sT/Identity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/KafkaPolicies.go b/test/k8sT/KafkaPolicies.go index 92c4ec5bf3bf8..9f5b2a4ee648e 100644 --- a/test/k8sT/KafkaPolicies.go +++ b/test/k8sT/KafkaPolicies.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/Policies.go b/test/k8sT/Policies.go index 19504635465bd..38a58936aceb1 100644 --- a/test/k8sT/Policies.go +++ b/test/k8sT/Policies.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/PoliciesNightly.go b/test/k8sT/PoliciesNightly.go index b3737a4850b38..cd01e74675aca 100644 --- a/test/k8sT/PoliciesNightly.go +++ b/test/k8sT/PoliciesNightly.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/Services.go b/test/k8sT/Services.go index 3ae178f2d4b36..ef363ac86cdf3 100644 --- a/test/k8sT/Services.go +++ b/test/k8sT/Services.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/StressPolicy.go b/test/k8sT/StressPolicy.go index c866edda6fd56..15bf74f52de54 100644 --- a/test/k8sT/StressPolicy.go +++ b/test/k8sT/StressPolicy.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/Updates.go b/test/k8sT/Updates.go index 7c61d27d96829..25c7a20da33f1 100644 --- a/test/k8sT/Updates.go +++ b/test/k8sT/Updates.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/Verifier.go b/test/k8sT/Verifier.go index 2e709761bb60b..96814ba3908fe 100644 --- a/test/k8sT/Verifier.go +++ b/test/k8sT/Verifier.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/assertionHelpers.go b/test/k8sT/assertionHelpers.go index 7b694f9b90761..348f48105b41b 100644 --- a/test/k8sT/assertionHelpers.go +++ b/test/k8sT/assertionHelpers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2021 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/bgp.go b/test/k8sT/bgp.go index f1d5746560edf..640a8cf859462 100644 --- a/test/k8sT/bgp.go +++ b/test/k8sT/bgp.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021-2022 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/bookinfo.go b/test/k8sT/bookinfo.go index e9205f2d949f5..4e4fc35e85629 100644 --- a/test/k8sT/bookinfo.go +++ b/test/k8sT/bookinfo.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/cli.go b/test/k8sT/cli.go index 9f20f794185e1..aac805ad37909 100644 --- a/test/k8sT/cli.go +++ b/test/k8sT/cli.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/fqdn.go b/test/k8sT/fqdn.go index 6d018ee7f297e..d6884cf4d7b67 100644 --- a/test/k8sT/fqdn.go +++ b/test/k8sT/fqdn.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/hubble.go b/test/k8sT/hubble.go index 3a5ef7a3a64a3..02412416d72f8 100644 --- a/test/k8sT/hubble.go +++ b/test/k8sT/hubble.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/istio.go b/test/k8sT/istio.go index 94e7f58415a26..4dd112405d665 100644 --- a/test/k8sT/istio.go +++ b/test/k8sT/istio.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/l7_demos.go b/test/k8sT/l7_demos.go index aed8e9cf5b856..36848b3f76881 100644 --- a/test/k8sT/l7_demos.go +++ b/test/k8sT/l7_demos.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/log.go b/test/k8sT/log.go index 8a116b280006a..15818b4296a88 100644 --- a/test/k8sT/log.go +++ b/test/k8sT/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/lrp.go b/test/k8sT/lrp.go index d3e2df1027627..fb87c5f1f777d 100644 --- a/test/k8sT/lrp.go +++ b/test/k8sT/lrp.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/manifests.go b/test/k8sT/manifests.go index 2889d59f17e10..f56277167be36 100644 --- a/test/k8sT/manifests.go +++ b/test/k8sT/manifests.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/k8sT/service_helpers.go b/test/k8sT/service_helpers.go index 2629056ffbd62..b733a5aef9768 100644 --- a/test/k8sT/service_helpers.go +++ b/test/k8sT/service_helpers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium package k8sTest diff --git a/test/runtime/Policies.go b/test/runtime/Policies.go index 73bdcb05a052f..329b04e241fce 100644 --- a/test/runtime/Policies.go +++ b/test/runtime/Policies.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/assertionHelpers.go b/test/runtime/assertionHelpers.go index aea74f6d7d527..6cec2f75b6f56 100644 --- a/test/runtime/assertionHelpers.go +++ b/test/runtime/assertionHelpers.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/benchmark.go b/test/runtime/benchmark.go index e663cea567bfb..e7653d4384aac 100644 --- a/test/runtime/benchmark.go +++ b/test/runtime/benchmark.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/cassandra.go b/test/runtime/cassandra.go index d96f98054c665..d2dddf117b682 100644 --- a/test/runtime/cassandra.go +++ b/test/runtime/cassandra.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/chaos.go b/test/runtime/chaos.go index bc0bab4125c70..f6e3edb00bdf1 100644 --- a/test/runtime/chaos.go +++ b/test/runtime/chaos.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/chaos_agent.go b/test/runtime/chaos_agent.go index 1246e43f6b3f3..8f79e3d822024 100644 --- a/test/runtime/chaos_agent.go +++ b/test/runtime/chaos_agent.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/chaos_endpoint.go b/test/runtime/chaos_endpoint.go index 5be1195d0b618..afbda848a3292 100644 --- a/test/runtime/chaos_endpoint.go +++ b/test/runtime/chaos_endpoint.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/connectivity.go b/test/runtime/connectivity.go index 3514ee640961a..f84dc9083b160 100644 --- a/test/runtime/connectivity.go +++ b/test/runtime/connectivity.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2020 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/fqdn.go b/test/runtime/fqdn.go index 1175801e7009c..ca31fe148d8f4 100644 --- a/test/runtime/fqdn.go +++ b/test/runtime/fqdn.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2020 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/kafka.go b/test/runtime/kafka.go index 2a7b7533ac1de..b3829d646b800 100644 --- a/test/runtime/kafka.go +++ b/test/runtime/kafka.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/kvstore.go b/test/runtime/kvstore.go index 039578f39b3f3..2d622c079720b 100644 --- a/test/runtime/kvstore.go +++ b/test/runtime/kvstore.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2020 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/lb.go b/test/runtime/lb.go index 572c3351d5b6e..9565eaec7d0fb 100644 --- a/test/runtime/lb.go +++ b/test/runtime/lb.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/log.go b/test/runtime/log.go index b66431fc2bc16..72e78f3dcc1cd 100644 --- a/test/runtime/log.go +++ b/test/runtime/log.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/memcache.go b/test/runtime/memcache.go index 65a58b9afdd05..6f0285454b910 100644 --- a/test/runtime/memcache.go +++ b/test/runtime/memcache.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2018-2019 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/monitor.go b/test/runtime/monitor.go index 92915f06aa2e4..1cdeccfd943f0 100644 --- a/test/runtime/monitor.go +++ b/test/runtime/monitor.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/privileged_tests.go b/test/runtime/privileged_tests.go index 2d4ec5a3b7bb8..7858fa768f14e 100644 --- a/test/runtime/privileged_tests.go +++ b/test/runtime/privileged_tests.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/runtime/ssh.go b/test/runtime/ssh.go index 5d5e799c4f230..595f631201d45 100644 --- a/test/runtime/ssh.go +++ b/test/runtime/ssh.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package RuntimeTest diff --git a/test/test_suite_test.go b/test/test_suite_test.go index 967ceb68ad675..caf7fb5e42bfe 100644 --- a/test/test_suite_test.go +++ b/test/test_suite_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2019 Authors of Cilium +// Copyright Authors of Cilium package ciliumTest diff --git a/test/test_test.go b/test/test_test.go index 54ba1895f9ece..69922be0cb4bf 100644 --- a/test/test_test.go +++ b/test/test_test.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2017-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build integration_tests // +build integration_tests diff --git a/test/vtep/install.sh b/test/vtep/install.sh index 04d983e54e1a1..0d707decd494b 100755 --- a/test/vtep/install.sh +++ b/test/vtep/install.sh @@ -1,6 +1,6 @@ #!/bin/bash # SPDX-License-Identifier: Apache-2.0 -# Copyright 2021 Authors of Cilium +# Copyright Authors of Cilium #Please refer https://docs.cilium.io/en/stable/gettingstarted/kind/ diff --git a/tools/Makefile b/tools/Makefile index 96076de0e05d3..fe8b75ff48b2f 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2021 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../Makefile.defs diff --git a/tools/alignchecker/Makefile b/tools/alignchecker/Makefile index 6e3a4c7a9cbe3..e7621f564b0a3 100644 --- a/tools/alignchecker/Makefile +++ b/tools/alignchecker/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../../Makefile.defs diff --git a/tools/alignchecker/main.go b/tools/alignchecker/main.go index 3aad2a485cc60..0383568ddc4e9 100644 --- a/tools/alignchecker/main.go +++ b/tools/alignchecker/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/crdcheck/main.go b/tools/crdcheck/main.go index 72868d5da717f..84b1b5bb2a032 100644 --- a/tools/crdcheck/main.go +++ b/tools/crdcheck/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/dev-doctor/binarycheck.go b/tools/dev-doctor/binarycheck.go index 1d0a82202f715..feb2721de7ff9 100644 --- a/tools/dev-doctor/binarycheck.go +++ b/tools/dev-doctor/binarycheck.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/dev-doctor/check.go b/tools/dev-doctor/check.go index bcd6c94514649..eb41dc43d59d8 100644 --- a/tools/dev-doctor/check.go +++ b/tools/dev-doctor/check.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/dev-doctor/commandcheck.go b/tools/dev-doctor/commandcheck.go index f48e7118046c4..01629d567d323 100644 --- a/tools/dev-doctor/commandcheck.go +++ b/tools/dev-doctor/commandcheck.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/dev-doctor/common.go b/tools/dev-doctor/common.go index b28b314c00550..04c2414f9dec3 100644 --- a/tools/dev-doctor/common.go +++ b/tools/dev-doctor/common.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/dev-doctor/config.go b/tools/dev-doctor/config.go index 96f9f430dafca..a1c9fe955bfed 100644 --- a/tools/dev-doctor/config.go +++ b/tools/dev-doctor/config.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/dev-doctor/dockergroupcheck.go b/tools/dev-doctor/dockergroupcheck.go index fabd34e4c2660..4485e0d2c75ed 100644 --- a/tools/dev-doctor/dockergroupcheck.go +++ b/tools/dev-doctor/dockergroupcheck.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/dev-doctor/envvarcheck.go b/tools/dev-doctor/envvarcheck.go index 92caa0799f4c0..d55b83909a72f 100644 --- a/tools/dev-doctor/envvarcheck.go +++ b/tools/dev-doctor/envvarcheck.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/dev-doctor/etcnfsconfcheck.go b/tools/dev-doctor/etcnfsconfcheck.go index fb945f7e58449..302f1cdbdecc7 100644 --- a/tools/dev-doctor/etcnfsconfcheck.go +++ b/tools/dev-doctor/etcnfsconfcheck.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/dev-doctor/iptablescheck.go b/tools/dev-doctor/iptablescheck.go index 18321e0837a6b..f18b97bfd5af9 100644 --- a/tools/dev-doctor/iptablescheck.go +++ b/tools/dev-doctor/iptablescheck.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/dev-doctor/main.go b/tools/dev-doctor/main.go index 9383dde216067..2638fea269850 100644 --- a/tools/dev-doctor/main.go +++ b/tools/dev-doctor/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium // Command doctor checks the development setup for common problems. package main diff --git a/tools/dev-doctor/osarchcheck.go b/tools/dev-doctor/osarchcheck.go index 5f1794e216eea..6f68e0356eae7 100644 --- a/tools/dev-doctor/osarchcheck.go +++ b/tools/dev-doctor/osarchcheck.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/dev-doctor/rootcmd.go b/tools/dev-doctor/rootcmd.go index b4de7ec8e7b6c..de2449ddf22de 100644 --- a/tools/dev-doctor/rootcmd.go +++ b/tools/dev-doctor/rootcmd.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020-2021 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/dev-doctor/rootdircheck.go b/tools/dev-doctor/rootdircheck.go index 2099d161b7920..908a085cb4ffd 100644 --- a/tools/dev-doctor/rootdircheck.go +++ b/tools/dev-doctor/rootdircheck.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/dev-doctor/unamecheck.go b/tools/dev-doctor/unamecheck.go index 40a286772ea6b..5abbc23c4d872 100644 --- a/tools/dev-doctor/unamecheck.go +++ b/tools/dev-doctor/unamecheck.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2020 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/maptool/Makefile b/tools/maptool/Makefile index 8c78180a4eb92..aaa3d4b712413 100644 --- a/tools/maptool/Makefile +++ b/tools/maptool/Makefile @@ -1,4 +1,4 @@ -# Copyright 2017-2020 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../../Makefile.defs diff --git a/tools/maptool/main.go b/tools/maptool/main.go index 799707b331cf5..b060458118181 100644 --- a/tools/maptool/main.go +++ b/tools/maptool/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/mount/Makefile b/tools/mount/Makefile index 5f75c95d549f9..105d451f7bca1 100644 --- a/tools/mount/Makefile +++ b/tools/mount/Makefile @@ -1,4 +1,4 @@ -# Copyright 2021 Authors of Cilium +# Copyright Authors of Cilium # SPDX-License-Identifier: Apache-2.0 include ../../Makefile.defs diff --git a/tools/mount/main.go b/tools/mount/main.go index 244ba8701e356..ca1addce8b704 100644 --- a/tools/mount/main.go +++ b/tools/mount/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2021 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/spdxconv/main.go b/tools/spdxconv/main.go index 4ec07ccb9db3e..3211fc3c8a143 100644 --- a/tools/spdxconv/main.go +++ b/tools/spdxconv/main.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019 Authors of Cilium +// Copyright Authors of Cilium package main diff --git a/tools/tools.go b/tools/tools.go index d6d5a50d054ab..74fbe7bf2c366 100644 --- a/tools/tools.go +++ b/tools/tools.go @@ -1,5 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 -// Copyright 2019-2021 Authors of Cilium +// Copyright Authors of Cilium //go:build tools // +build tools