From 6c94d7db3d4116d8add1d9af1bcec0b185783694 Mon Sep 17 00:00:00 2001 From: iwilltry42 Date: Fri, 21 May 2021 13:07:59 +0200 Subject: [PATCH] overall/license: update to year range -2021 --- LICENSE | 2 +- cmd/cluster/cluster.go | 2 +- cmd/cluster/clusterCreate.go | 2 +- cmd/cluster/clusterDelete.go | 2 +- cmd/cluster/clusterList.go | 2 +- cmd/cluster/clusterStart.go | 2 +- cmd/cluster/clusterStop.go | 2 +- cmd/config/config.go | 2 +- cmd/config/configInit.go | 2 +- cmd/config/configView.go | 2 +- cmd/image/image.go | 2 +- cmd/image/imageImport.go | 2 +- cmd/kubeconfig/kubeconfig.go | 2 +- cmd/kubeconfig/kubeconfigGet.go | 2 +- cmd/kubeconfig/kubeconfigMerge.go | 2 +- cmd/node/node.go | 2 +- cmd/node/nodeCreate.go | 2 +- cmd/node/nodeDelete.go | 2 +- cmd/node/nodeList.go | 2 +- cmd/node/nodeStart.go | 2 +- cmd/node/nodeStop.go | 2 +- cmd/registry/registry.go | 2 +- cmd/registry/registryConnect.go | 2 +- cmd/registry/registryCreate.go | 2 +- cmd/registry/registryDelete.go | 2 +- cmd/registry/registryList.go | 2 +- cmd/registry/registryStart.go | 2 +- cmd/registry/registryStop.go | 2 +- cmd/root.go | 2 +- cmd/util/completion.go | 2 +- cmd/util/filter.go | 2 +- cmd/util/listings.go | 2 +- cmd/util/plugins.go | 2 +- cmd/util/ports.go | 2 +- cmd/util/util.go | 2 +- cmd/util/volumes.go | 2 +- main.go | 2 +- mkdocs.yml | 2 +- pkg/actions/nodehooks.go | 2 +- pkg/client/cluster.go | 2 +- pkg/client/clusterName.go | 2 +- pkg/client/fixes.go | 2 +- pkg/client/host.go | 2 +- pkg/client/ipam.go | 2 +- pkg/client/kubeconfig.go | 2 +- pkg/client/loadbalancer.go | 2 +- pkg/client/node.go | 2 +- pkg/client/registry.go | 2 +- pkg/client/registry_test.go | 2 +- pkg/config/config.go | 2 +- pkg/config/config_test.go | 2 +- pkg/config/jsonschema.go | 2 +- pkg/config/jsonschema_test.go | 2 +- pkg/config/merge.go | 2 +- pkg/config/merge_test.go | 2 +- pkg/config/process.go | 2 +- pkg/config/process_test.go | 2 +- pkg/config/transform.go | 2 +- pkg/config/transform_test.go | 2 +- pkg/config/v1alpha2/types.go | 2 +- pkg/config/validate.go | 2 +- pkg/config/validate_test.go | 2 +- pkg/runtimes/docker/container.go | 2 +- pkg/runtimes/docker/docker.go | 2 +- pkg/runtimes/docker/host.go | 2 +- pkg/runtimes/docker/image.go | 2 +- pkg/runtimes/docker/info.go | 2 +- pkg/runtimes/docker/kubeconfig.go | 2 +- pkg/runtimes/docker/machine.go | 2 +- pkg/runtimes/docker/network.go | 2 +- pkg/runtimes/docker/node.go | 2 +- pkg/runtimes/docker/translate.go | 2 +- pkg/runtimes/docker/translate_test.go | 2 +- pkg/runtimes/docker/types.go | 2 +- pkg/runtimes/docker/util.go | 2 +- pkg/runtimes/docker/volume.go | 2 +- pkg/runtimes/errors/errors.go | 2 +- pkg/runtimes/runtime.go | 2 +- pkg/runtimes/types/types.go | 2 +- pkg/runtimes/util/volumes.go | 2 +- pkg/tools/tools.go | 2 +- pkg/types/fixes/fixes.go | 2 +- pkg/types/k3s/registry.go | 2 +- pkg/types/k8s/registry.go | 2 +- pkg/types/types.go | 2 +- pkg/util/files.go | 2 +- pkg/util/filter.go | 2 +- pkg/util/infofaker.go | 2 +- pkg/util/labels.go | 2 +- pkg/util/ports.go | 2 +- pkg/util/randomString.go | 2 +- pkg/util/regexp.go | 2 +- pkg/util/registry.go | 2 +- version/version.go | 2 +- 94 files changed, 94 insertions(+), 94 deletions(-) diff --git a/LICENSE b/LICENSE index 31f21541..36bceb06 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright © 2019-2020 Thorsten Klein +Copyright © 2019-2021 Thorsten Klein Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/cluster/cluster.go b/cmd/cluster/cluster.go index 4e97d1a6..b932da6a 100644 --- a/cmd/cluster/cluster.go +++ b/cmd/cluster/cluster.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/cluster/clusterCreate.go b/cmd/cluster/clusterCreate.go index bb44f208..f5fc4af5 100644 --- a/cmd/cluster/clusterCreate.go +++ b/cmd/cluster/clusterCreate.go @@ -1,6 +1,6 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/cluster/clusterDelete.go b/cmd/cluster/clusterDelete.go index 890886e6..5316d2b9 100644 --- a/cmd/cluster/clusterDelete.go +++ b/cmd/cluster/clusterDelete.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/cluster/clusterList.go b/cmd/cluster/clusterList.go index d4829b1a..b680dece 100644 --- a/cmd/cluster/clusterList.go +++ b/cmd/cluster/clusterList.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/cluster/clusterStart.go b/cmd/cluster/clusterStart.go index c2dd4793..376c9fa9 100644 --- a/cmd/cluster/clusterStart.go +++ b/cmd/cluster/clusterStart.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/cluster/clusterStop.go b/cmd/cluster/clusterStop.go index 1dfe0619..37766476 100644 --- a/cmd/cluster/clusterStop.go +++ b/cmd/cluster/clusterStop.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/config/config.go b/cmd/config/config.go index c512e03e..2a49986a 100644 --- a/cmd/config/config.go +++ b/cmd/config/config.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/config/configInit.go b/cmd/config/configInit.go index a6e0000c..34b27b91 100644 --- a/cmd/config/configInit.go +++ b/cmd/config/configInit.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/config/configView.go b/cmd/config/configView.go index 2299fe81..658d13b6 100644 --- a/cmd/config/configView.go +++ b/cmd/config/configView.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/image/image.go b/cmd/image/image.go index 87465c30..89698839 100644 --- a/cmd/image/image.go +++ b/cmd/image/image.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/image/imageImport.go b/cmd/image/imageImport.go index d3b135b8..da1d3966 100644 --- a/cmd/image/imageImport.go +++ b/cmd/image/imageImport.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/kubeconfig/kubeconfig.go b/cmd/kubeconfig/kubeconfig.go index ee8a55c2..4a955c30 100644 --- a/cmd/kubeconfig/kubeconfig.go +++ b/cmd/kubeconfig/kubeconfig.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/kubeconfig/kubeconfigGet.go b/cmd/kubeconfig/kubeconfigGet.go index 9e4e8abd..0afcb48a 100644 --- a/cmd/kubeconfig/kubeconfigGet.go +++ b/cmd/kubeconfig/kubeconfigGet.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/kubeconfig/kubeconfigMerge.go b/cmd/kubeconfig/kubeconfigMerge.go index f51012b9..58e73ab0 100644 --- a/cmd/kubeconfig/kubeconfigMerge.go +++ b/cmd/kubeconfig/kubeconfigMerge.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/node/node.go b/cmd/node/node.go index a535a528..5266e150 100644 --- a/cmd/node/node.go +++ b/cmd/node/node.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/node/nodeCreate.go b/cmd/node/nodeCreate.go index c2d86281..52f255d5 100644 --- a/cmd/node/nodeCreate.go +++ b/cmd/node/nodeCreate.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/node/nodeDelete.go b/cmd/node/nodeDelete.go index d7982149..91c50764 100644 --- a/cmd/node/nodeDelete.go +++ b/cmd/node/nodeDelete.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/node/nodeList.go b/cmd/node/nodeList.go index 42c091c3..fd0698f8 100644 --- a/cmd/node/nodeList.go +++ b/cmd/node/nodeList.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/node/nodeStart.go b/cmd/node/nodeStart.go index e18fc7d9..86506c86 100644 --- a/cmd/node/nodeStart.go +++ b/cmd/node/nodeStart.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/node/nodeStop.go b/cmd/node/nodeStop.go index 117ba07f..43781ad0 100644 --- a/cmd/node/nodeStop.go +++ b/cmd/node/nodeStop.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/registry/registry.go b/cmd/registry/registry.go index afd7d781..9ed70a9a 100644 --- a/cmd/registry/registry.go +++ b/cmd/registry/registry.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/registry/registryConnect.go b/cmd/registry/registryConnect.go index 31bcd5ca..4974a572 100644 --- a/cmd/registry/registryConnect.go +++ b/cmd/registry/registryConnect.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/registry/registryCreate.go b/cmd/registry/registryCreate.go index 3e2cff7b..75ca0abc 100644 --- a/cmd/registry/registryCreate.go +++ b/cmd/registry/registryCreate.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/registry/registryDelete.go b/cmd/registry/registryDelete.go index e5f19f54..af5e12dd 100644 --- a/cmd/registry/registryDelete.go +++ b/cmd/registry/registryDelete.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/registry/registryList.go b/cmd/registry/registryList.go index d0921e52..f41d5f89 100644 --- a/cmd/registry/registryList.go +++ b/cmd/registry/registryList.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/registry/registryStart.go b/cmd/registry/registryStart.go index ca3d7841..7a7caeff 100644 --- a/cmd/registry/registryStart.go +++ b/cmd/registry/registryStart.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/registry/registryStop.go b/cmd/registry/registryStop.go index a2e43932..345695fb 100644 --- a/cmd/registry/registryStop.go +++ b/cmd/registry/registryStop.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/root.go b/cmd/root.go index 9922d874..418e4008 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/util/completion.go b/cmd/util/completion.go index 0e7f5724..34304ae9 100644 --- a/cmd/util/completion.go +++ b/cmd/util/completion.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/util/filter.go b/cmd/util/filter.go index 183471b2..cfca1ab7 100644 --- a/cmd/util/filter.go +++ b/cmd/util/filter.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/util/listings.go b/cmd/util/listings.go index 13365052..f742851f 100644 --- a/cmd/util/listings.go +++ b/cmd/util/listings.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/util/plugins.go b/cmd/util/plugins.go index 420ab375..e1e28b84 100644 --- a/cmd/util/plugins.go +++ b/cmd/util/plugins.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/util/ports.go b/cmd/util/ports.go index 96d8ad5d..589ab05d 100644 --- a/cmd/util/ports.go +++ b/cmd/util/ports.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/util/util.go b/cmd/util/util.go index 1ce05bfa..daee6571 100644 --- a/cmd/util/util.go +++ b/cmd/util/util.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/util/volumes.go b/cmd/util/volumes.go index 307ed1f6..f6c530f5 100644 --- a/cmd/util/volumes.go +++ b/cmd/util/volumes.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/main.go b/main.go index 4d7efa0d..59a1fbba 100644 --- a/main.go +++ b/main.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/mkdocs.yml b/mkdocs.yml index 5d84f649..804ecba8 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -3,7 +3,7 @@ site_name: k3d site_description: Little helper to run Rancher Lab's k3s in Docker site_url: https://k3d.io/ -copyright: "Copyright © 2020 k3d Authors" +copyright: "Copyright © 2020-2021 k3d Authors" # Extra Files extra_javascript: diff --git a/pkg/actions/nodehooks.go b/pkg/actions/nodehooks.go index efd22ed2..a37577f7 100644 --- a/pkg/actions/nodehooks.go +++ b/pkg/actions/nodehooks.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/client/cluster.go b/pkg/client/cluster.go index e5cd8ade..ec6cf801 100644 --- a/pkg/client/cluster.go +++ b/pkg/client/cluster.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/client/clusterName.go b/pkg/client/clusterName.go index f3584606..9f3b3dc3 100644 --- a/pkg/client/clusterName.go +++ b/pkg/client/clusterName.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/client/fixes.go b/pkg/client/fixes.go index 4c126071..5e16a645 100644 --- a/pkg/client/fixes.go +++ b/pkg/client/fixes.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/client/host.go b/pkg/client/host.go index b86c281a..08c03cf0 100644 --- a/pkg/client/host.go +++ b/pkg/client/host.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/client/ipam.go b/pkg/client/ipam.go index 773fe007..cb196a37 100644 --- a/pkg/client/ipam.go +++ b/pkg/client/ipam.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/client/kubeconfig.go b/pkg/client/kubeconfig.go index a1a335f4..2570012e 100644 --- a/pkg/client/kubeconfig.go +++ b/pkg/client/kubeconfig.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/client/loadbalancer.go b/pkg/client/loadbalancer.go index 2a70f0cb..f0fa74fc 100644 --- a/pkg/client/loadbalancer.go +++ b/pkg/client/loadbalancer.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/client/node.go b/pkg/client/node.go index 3c00ddcc..7c91996a 100644 --- a/pkg/client/node.go +++ b/pkg/client/node.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/client/registry.go b/pkg/client/registry.go index 03b43155..4df7ff7a 100644 --- a/pkg/client/registry.go +++ b/pkg/client/registry.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/client/registry_test.go b/pkg/client/registry_test.go index c1538c73..0d0d3ef0 100644 --- a/pkg/client/registry_test.go +++ b/pkg/client/registry_test.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/config/config.go b/pkg/config/config.go index a18f1dc7..9cf51e23 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/config/config_test.go b/pkg/config/config_test.go index e1d215c5..9f6e05d7 100644 --- a/pkg/config/config_test.go +++ b/pkg/config/config_test.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/config/jsonschema.go b/pkg/config/jsonschema.go index d1f56c2c..6927b220 100644 --- a/pkg/config/jsonschema.go +++ b/pkg/config/jsonschema.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/config/jsonschema_test.go b/pkg/config/jsonschema_test.go index 3451e2d1..5ece4e79 100644 --- a/pkg/config/jsonschema_test.go +++ b/pkg/config/jsonschema_test.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/config/merge.go b/pkg/config/merge.go index 7073d881..390269dc 100644 --- a/pkg/config/merge.go +++ b/pkg/config/merge.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/config/merge_test.go b/pkg/config/merge_test.go index 0cb483ec..349f7d4b 100644 --- a/pkg/config/merge_test.go +++ b/pkg/config/merge_test.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/config/process.go b/pkg/config/process.go index 099343b5..199a77cf 100644 --- a/pkg/config/process.go +++ b/pkg/config/process.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/config/process_test.go b/pkg/config/process_test.go index e38045d0..5326ca53 100644 --- a/pkg/config/process_test.go +++ b/pkg/config/process_test.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/config/transform.go b/pkg/config/transform.go index 6b7373f8..76f9751e 100644 --- a/pkg/config/transform.go +++ b/pkg/config/transform.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/config/transform_test.go b/pkg/config/transform_test.go index e23fb17b..6cfb336d 100644 --- a/pkg/config/transform_test.go +++ b/pkg/config/transform_test.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/config/v1alpha2/types.go b/pkg/config/v1alpha2/types.go index 967ccda5..0679cfd4 100644 --- a/pkg/config/v1alpha2/types.go +++ b/pkg/config/v1alpha2/types.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/config/validate.go b/pkg/config/validate.go index 57060427..bb81ba41 100644 --- a/pkg/config/validate.go +++ b/pkg/config/validate.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/config/validate_test.go b/pkg/config/validate_test.go index 8cc35458..45e736e3 100644 --- a/pkg/config/validate_test.go +++ b/pkg/config/validate_test.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/container.go b/pkg/runtimes/docker/container.go index aab1b178..25a76075 100644 --- a/pkg/runtimes/docker/container.go +++ b/pkg/runtimes/docker/container.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/docker.go b/pkg/runtimes/docker/docker.go index 607a2006..6283b7e0 100644 --- a/pkg/runtimes/docker/docker.go +++ b/pkg/runtimes/docker/docker.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/host.go b/pkg/runtimes/docker/host.go index f28cf8c0..4c1d991b 100644 --- a/pkg/runtimes/docker/host.go +++ b/pkg/runtimes/docker/host.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/image.go b/pkg/runtimes/docker/image.go index bdbab8d5..b2a72d20 100644 --- a/pkg/runtimes/docker/image.go +++ b/pkg/runtimes/docker/image.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/info.go b/pkg/runtimes/docker/info.go index 3db973c5..627d2fd2 100644 --- a/pkg/runtimes/docker/info.go +++ b/pkg/runtimes/docker/info.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/kubeconfig.go b/pkg/runtimes/docker/kubeconfig.go index 5d4aa630..b1f50faa 100644 --- a/pkg/runtimes/docker/kubeconfig.go +++ b/pkg/runtimes/docker/kubeconfig.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/machine.go b/pkg/runtimes/docker/machine.go index 2fe30c0b..a25711c0 100644 --- a/pkg/runtimes/docker/machine.go +++ b/pkg/runtimes/docker/machine.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/network.go b/pkg/runtimes/docker/network.go index 17ee8659..48c98cd7 100644 --- a/pkg/runtimes/docker/network.go +++ b/pkg/runtimes/docker/network.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/node.go b/pkg/runtimes/docker/node.go index 21f76f0b..24d0a618 100644 --- a/pkg/runtimes/docker/node.go +++ b/pkg/runtimes/docker/node.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/translate.go b/pkg/runtimes/docker/translate.go index cf56bf51..b6861aad 100644 --- a/pkg/runtimes/docker/translate.go +++ b/pkg/runtimes/docker/translate.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/translate_test.go b/pkg/runtimes/docker/translate_test.go index 3476ae2f..38c6f3a2 100644 --- a/pkg/runtimes/docker/translate_test.go +++ b/pkg/runtimes/docker/translate_test.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/types.go b/pkg/runtimes/docker/types.go index bbb75494..da84d34c 100644 --- a/pkg/runtimes/docker/types.go +++ b/pkg/runtimes/docker/types.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/util.go b/pkg/runtimes/docker/util.go index 9a8170a9..e98b51ea 100644 --- a/pkg/runtimes/docker/util.go +++ b/pkg/runtimes/docker/util.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/docker/volume.go b/pkg/runtimes/docker/volume.go index 7855ae43..6c0f4c80 100644 --- a/pkg/runtimes/docker/volume.go +++ b/pkg/runtimes/docker/volume.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/errors/errors.go b/pkg/runtimes/errors/errors.go index 86e0efb5..4997d3b5 100644 --- a/pkg/runtimes/errors/errors.go +++ b/pkg/runtimes/errors/errors.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/runtime.go b/pkg/runtimes/runtime.go index cf9de45b..b27d87b1 100644 --- a/pkg/runtimes/runtime.go +++ b/pkg/runtimes/runtime.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/types/types.go b/pkg/runtimes/types/types.go index fb8606dc..042abcba 100644 --- a/pkg/runtimes/types/types.go +++ b/pkg/runtimes/types/types.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/runtimes/util/volumes.go b/pkg/runtimes/util/volumes.go index 00beeb4f..05d90c79 100644 --- a/pkg/runtimes/util/volumes.go +++ b/pkg/runtimes/util/volumes.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/tools/tools.go b/pkg/tools/tools.go index 34f03f13..7e29cff3 100644 --- a/pkg/tools/tools.go +++ b/pkg/tools/tools.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/types/fixes/fixes.go b/pkg/types/fixes/fixes.go index 077553ee..60c8c03b 100644 --- a/pkg/types/fixes/fixes.go +++ b/pkg/types/fixes/fixes.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/types/k3s/registry.go b/pkg/types/k3s/registry.go index 8be11c01..ba250aae 100644 --- a/pkg/types/k3s/registry.go +++ b/pkg/types/k3s/registry.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/types/k8s/registry.go b/pkg/types/k8s/registry.go index 3229acc6..6e6b7814 100644 --- a/pkg/types/k8s/registry.go +++ b/pkg/types/k8s/registry.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/types/types.go b/pkg/types/types.go index 5745ce1c..832146e9 100644 --- a/pkg/types/types.go +++ b/pkg/types/types.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/util/files.go b/pkg/util/files.go index 2276a3a8..5571f012 100644 --- a/pkg/util/files.go +++ b/pkg/util/files.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/util/filter.go b/pkg/util/filter.go index 3d7d7f3d..99bcab9f 100644 --- a/pkg/util/filter.go +++ b/pkg/util/filter.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/util/infofaker.go b/pkg/util/infofaker.go index 035ec653..7667b3b6 100644 --- a/pkg/util/infofaker.go +++ b/pkg/util/infofaker.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/util/labels.go b/pkg/util/labels.go index 2a60e0ab..359bc6db 100644 --- a/pkg/util/labels.go +++ b/pkg/util/labels.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/util/ports.go b/pkg/util/ports.go index 1eaead82..acdc7322 100644 --- a/pkg/util/ports.go +++ b/pkg/util/ports.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/util/randomString.go b/pkg/util/randomString.go index def2d959..e98060c5 100644 --- a/pkg/util/randomString.go +++ b/pkg/util/randomString.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/util/regexp.go b/pkg/util/regexp.go index a7530a94..f576e885 100644 --- a/pkg/util/regexp.go +++ b/pkg/util/regexp.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/util/registry.go b/pkg/util/registry.go index b524a8f8..d76056d6 100644 --- a/pkg/util/registry.go +++ b/pkg/util/registry.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/version/version.go b/version/version.go index 8d78d27a..7654d459 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ /* -Copyright © 2020 The k3d Author(s) +Copyright © 2020-2021 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal