From ab1ec89db9d7068785d22a6b3d94260818cebe70 Mon Sep 17 00:00:00 2001 From: Hiroto Funakoshi Date: Mon, 28 Dec 2020 10:45:25 +0900 Subject: [PATCH 1/8] :white_check_mark: Add test case for internal/errors/file.go (#893) * feat: add test case and comment Signed-off-by: hlts2 * fix: test case name Signed-off-by: hlts2 * Update internal/errors/file_test.go Co-authored-by: Kiichiro YUKAWA * Update internal/errors/file_test.go Co-authored-by: Kiichiro YUKAWA * Update internal/errors/file_test.go Co-authored-by: Kiichiro YUKAWA * fix: apply suggestion Signed-off-by: hlts2 * :robot: Update license headers / Format go codes and yaml files Signed-off-by: vdaas-ci Co-authored-by: Kiichiro YUKAWA Co-authored-by: vdaas-ci --- internal/errors/file.go | 3 + internal/errors/file_test.go | 174 +++++++++++++++++++++++++++++++++++ 2 files changed, 177 insertions(+) create mode 100644 internal/errors/file_test.go diff --git a/internal/errors/file.go b/internal/errors/file.go index 267a6a0e5a7..e5c6cc84eee 100644 --- a/internal/errors/file.go +++ b/internal/errors/file.go @@ -18,11 +18,14 @@ package errors var ( + // ErrWatchDirNotFound represents an error that the watch directory is not found. ErrWatchDirNotFound = New("fs watcher watch dir not found") + // ErrFileAlreadyExists represents a function to generate an error that the file already exists. ErrFileAlreadyExists = func(path string) error { return Errorf("file already exists: %s", path) } + // ErrPathNotSpecified represents an error that the path is not specified. ErrPathNotSpecified = New("the path is not specified") ) diff --git a/internal/errors/file_test.go b/internal/errors/file_test.go new file mode 100644 index 00000000000..80a4880aa61 --- /dev/null +++ b/internal/errors/file_test.go @@ -0,0 +1,174 @@ +// +// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +package errors + +import ( + "testing" +) + +func TestErrWatchDirNotFound(t *testing.T) { + type want struct { + want error + } + type test struct { + name string + want want + checkFunc func(want, error) error + beforeFunc func() + afterFunc func() + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return ErrWatchDirNotFound error", + want: want{ + want: New("fs watcher watch dir not found"), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc() + } + if test.afterFunc != nil { + defer test.afterFunc() + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := ErrWatchDirNotFound + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} + +func TestErrFileAlreadyExists(t *testing.T) { + type args struct { + path string + } + type want struct { + want error + } + type test struct { + name string + args args + want want + checkFunc func(want, error) error + beforeFunc func(args) + afterFunc func(args) + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return ErrFileAlreadyExists error with the file path is 'metadata.json'", + args: args{ + path: "metadata.json", + }, + want: want{ + want: New("file already exists: metadata.json"), + }, + }, + { + name: "return ErrFileAlreadyExists error with the file path is empty", + args: args{ + path: "", + }, + want: want{ + want: New("file already exists: "), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc(test.args) + } + if test.afterFunc != nil { + defer test.afterFunc(test.args) + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := ErrFileAlreadyExists(test.args.path) + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} + +func TestErrPathNotSpecified(t *testing.T) { + type want struct { + want error + } + type test struct { + name string + want want + checkFunc func(want, error) error + beforeFunc func() + afterFunc func() + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return ErrPathNotSpecified error", + want: want{ + want: New("the path is not specified"), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc() + } + if test.afterFunc != nil { + defer test.afterFunc() + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := ErrPathNotSpecified + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} From 5b8cfade91c39688919332cccfc6bf19338bd7ec Mon Sep 17 00:00:00 2001 From: Yusuke Kato Date: Fri, 1 Jan 2021 20:30:36 +0900 Subject: [PATCH 2/8] [patch] Happy new year (#905) * Happy new yeargit diff Signed-off-by: kpango * fix github actions Signed-off-by: kpango --- .commit_template | 2 +- .deepsource.toml | 2 +- .dependabot/config.yml | 2 +- .fossa.yml | 2 +- .github/workflows/dockers-agent-ngt-image.yml | 2 +- .../workflows/dockers-agent-sidecar-image.yml | 2 +- ...dockers-backup-manager-cassandra-image.yml | 2 +- .../dockers-backup-manager-mysql-image.yml | 2 +- .github/workflows/dockers-base-image.yml | 2 +- .../workflows/dockers-ci-container-image.yml | 2 +- .../workflows/dockers-dev-container-image.yml | 2 +- .../dockers-discoverer-k8s-image.yml | 2 +- .../workflows/dockers-gateway-vald-image.yml | 2 +- .../workflows/dockers-helm-operator-image.yml | 2 +- .github/workflows/dockers-loadtest-image.yml | 2 +- .../dockers-manager-compressor-image.yml | 2 +- .../workflows/dockers-manager-index-image.yml | 2 +- .../dockers-meta-cassandra-image.yml | 2 +- .../workflows/dockers-meta-redis-image.yml | 2 +- .golangci.yml | 2 +- LICENSE | 2 +- Makefile | 13 +++- Makefile.d/bench.mk | 2 +- Makefile.d/build.mk | 2 +- Makefile.d/client.mk | 2 +- Makefile.d/docker.mk | 77 +++++++++++-------- Makefile.d/functions.mk | 2 +- Makefile.d/git.mk | 2 +- Makefile.d/helm.mk | 2 +- Makefile.d/k8s.mk | 2 +- Makefile.d/kind.mk | 2 +- Makefile.d/ml.mk | 2 +- Makefile.d/proto.mk | 2 +- Makefile.d/test.mk | 2 +- apis/grpc/agent/core/agent.pb.go | 2 +- apis/grpc/agent/sidecar/sidecar.pb.go | 2 +- apis/grpc/discoverer/discoverer.pb.go | 2 +- apis/grpc/errors/errors.pb.go | 2 +- apis/grpc/filter/egress/egress_filter.pb.go | 2 +- apis/grpc/filter/ingress/ingress_filter.pb.go | 2 +- apis/grpc/gateway/vald/vald.pb.go | 2 +- apis/grpc/manager/backup/backup_manager.pb.go | 2 +- apis/grpc/manager/compressor/compressor.pb.go | 2 +- apis/grpc/manager/index/index_manager.pb.go | 2 +- .../agent/replication_manager.pb.go | 2 +- .../controller/replication_manager.pb.go | 2 +- .../manager/traffic/traffic_manager.pb.go | 2 +- apis/grpc/meta/meta.pb.go | 2 +- apis/grpc/payload/payload.pb.go | 2 +- apis/proto/agent/core/agent.proto | 2 +- apis/proto/agent/sidecar/sidecar.proto | 2 +- apis/proto/discoverer/discoverer.proto | 2 +- apis/proto/errors/errors.proto | 2 +- apis/proto/filter/egress/egress_filter.proto | 2 +- .../proto/filter/ingress/ingress_filter.proto | 2 +- apis/proto/gateway/vald/vald.proto | 2 +- .../proto/manager/backup/backup_manager.proto | 2 +- .../proto/manager/compressor/compressor.proto | 2 +- apis/proto/manager/index/index_manager.proto | 2 +- .../agent/replication_manager.proto | 2 +- .../controller/replication_manager.proto | 2 +- .../manager/traffic/traffic_manager.proto | 2 +- apis/proto/meta/meta.proto | 2 +- apis/proto/payload/payload.proto | 2 +- charts/vald-helm-operator/Chart.yaml | 2 +- .../crds/valdhelmoperatorrelease.yaml | 2 +- .../vald-helm-operator/crds/valdrelease.yaml | 2 +- .../templates/clusterrole.yaml | 2 +- .../templates/clusterrolebinding.yaml | 2 +- .../templates/operator.yaml | 2 +- .../templates/serviceaccount.yaml | 2 +- charts/vald-helm-operator/templates/svc.yaml | 2 +- charts/vald-helm-operator/values.yaml | 2 +- charts/vald/Chart.yaml | 2 +- charts/vald/templates/agent/configmap.yaml | 2 +- charts/vald/templates/agent/daemonset.yaml | 2 +- charts/vald/templates/agent/deployment.yaml | 2 +- charts/vald/templates/agent/hpa.yaml | 2 +- charts/vald/templates/agent/pdb.yaml | 2 +- .../vald/templates/agent/priorityclass.yaml | 2 +- .../templates/agent/sidecar-configmap.yaml | 2 +- charts/vald/templates/agent/sidecar-svc.yaml | 2 +- charts/vald/templates/agent/statefulset.yaml | 2 +- charts/vald/templates/agent/svc.yaml | 2 +- .../templates/discoverer/clusterrole.yaml | 2 +- .../discoverer/clusterrolebinding.yaml | 2 +- .../vald/templates/discoverer/configmap.yaml | 2 +- .../vald/templates/discoverer/daemonset.yaml | 2 +- .../vald/templates/discoverer/deployment.yaml | 2 +- charts/vald/templates/discoverer/hpa.yaml | 2 +- charts/vald/templates/discoverer/pdb.yaml | 2 +- .../templates/discoverer/priorityclass.yaml | 2 +- .../templates/discoverer/serviceaccount.yaml | 2 +- charts/vald/templates/discoverer/svc.yaml | 2 +- .../templates/gateway/vald/configmap.yaml | 2 +- .../templates/gateway/vald/daemonset.yaml | 2 +- .../templates/gateway/vald/deployment.yaml | 2 +- charts/vald/templates/gateway/vald/hpa.yaml | 2 +- charts/vald/templates/gateway/vald/ing.yaml | 2 +- charts/vald/templates/gateway/vald/pdb.yaml | 2 +- .../templates/gateway/vald/priorityclass.yaml | 2 +- charts/vald/templates/gateway/vald/svc.yaml | 2 +- .../db/initialize/cassandra/configmap.yaml | 2 +- .../jobs/db/initialize/cassandra/job.yaml | 2 +- .../jobs/db/initialize/cassandra/secret.yaml | 2 +- .../jobs/db/initialize/mysql/configmap.yaml | 2 +- .../jobs/db/initialize/mysql/job.yaml | 2 +- .../jobs/db/initialize/mysql/secret.yaml | 2 +- .../jobs/db/initialize/redis/job.yaml | 2 +- .../jobs/db/initialize/redis/secret.yaml | 2 +- .../templates/manager/backup/configmap.yaml | 2 +- .../templates/manager/backup/daemonset.yaml | 2 +- .../templates/manager/backup/deployment.yaml | 2 +- charts/vald/templates/manager/backup/hpa.yaml | 2 +- charts/vald/templates/manager/backup/pdb.yaml | 2 +- .../manager/backup/priorityclass.yaml | 2 +- charts/vald/templates/manager/backup/svc.yaml | 2 +- .../manager/compressor/configmap.yaml | 2 +- .../manager/compressor/daemonset.yaml | 2 +- .../manager/compressor/deployment.yaml | 2 +- .../templates/manager/compressor/hpa.yaml | 2 +- .../templates/manager/compressor/pdb.yaml | 2 +- .../manager/compressor/priorityclass.yaml | 2 +- .../templates/manager/compressor/svc.yaml | 2 +- .../templates/manager/index/configmap.yaml | 2 +- .../templates/manager/index/daemonset.yaml | 2 +- .../templates/manager/index/deployment.yaml | 2 +- charts/vald/templates/manager/index/pdb.yaml | 2 +- .../manager/index/priorityclass.yaml | 2 +- charts/vald/templates/manager/index/svc.yaml | 2 +- charts/vald/templates/meta/configmap.yaml | 2 +- charts/vald/templates/meta/daemonset.yaml | 2 +- charts/vald/templates/meta/deployment.yaml | 2 +- charts/vald/templates/meta/hpa.yaml | 2 +- charts/vald/templates/meta/pdb.yaml | 2 +- charts/vald/templates/meta/priorityclass.yaml | 2 +- charts/vald/templates/meta/svc.yaml | 2 +- charts/vald/values-agent-ngt-standalone.yaml | 2 +- charts/vald/values-cassandra.yaml | 2 +- charts/vald/values-ci.yaml | 2 +- charts/vald/values-dev.yaml | 2 +- charts/vald/values-scylla.yaml | 2 +- charts/vald/values.yaml | 2 +- cmd/agent/core/ngt/main.go | 2 +- cmd/agent/core/ngt/main_test.go | 2 +- cmd/agent/core/ngt/sample.yaml | 2 +- cmd/agent/sidecar/main.go | 2 +- cmd/agent/sidecar/main_test.go | 2 +- cmd/discoverer/k8s/main.go | 2 +- cmd/discoverer/k8s/main_test.go | 2 +- cmd/discoverer/k8s/sample.yaml | 2 +- cmd/gateway/vald/main.go | 2 +- cmd/gateway/vald/main_test.go | 2 +- cmd/gateway/vald/sample.yaml | 2 +- cmd/manager/backup/cassandra/main.go | 2 +- cmd/manager/backup/cassandra/main_test.go | 2 +- cmd/manager/backup/mysql/main.go | 2 +- cmd/manager/backup/mysql/main_test.go | 2 +- cmd/manager/compressor/main.go | 2 +- cmd/manager/compressor/main_test.go | 2 +- cmd/manager/index/main.go | 2 +- cmd/manager/index/main_test.go | 2 +- cmd/manager/replication/agent/main.go | 2 +- cmd/manager/replication/agent/main_test.go | 2 +- cmd/manager/replication/controller/main.go | 2 +- .../replication/controller/main_test.go | 2 +- cmd/meta/cassandra/main.go | 2 +- cmd/meta/cassandra/main_test.go | 2 +- cmd/meta/cassandra/sample.yaml | 2 +- cmd/meta/redis/main.go | 2 +- cmd/meta/redis/main_test.go | 2 +- cmd/meta/redis/sample.yaml | 2 +- cmd/tools/cli/loadtest/main.go | 2 +- cmd/tools/cli/loadtest/main_test.go | 2 +- cmd/tools/cli/loadtest/sample.yaml | 2 +- cmd/tools/cli/vdctl/main.go | 2 +- cmd/tools/cli/vdctl/main_test.go | 2 +- dockers/agent/core/ngt/Dockerfile | 5 +- dockers/agent/sidecar/Dockerfile | 5 +- dockers/base/Dockerfile | 2 +- dockers/ci/base/Dockerfile | 2 +- dockers/dev/Dockerfile | 4 +- dockers/discoverer/k8s/Dockerfile | 5 +- dockers/gateway/vald/Dockerfile | 5 +- dockers/manager/backup/cassandra/Dockerfile | 5 +- dockers/manager/backup/mysql/Dockerfile | 5 +- dockers/manager/compressor/Dockerfile | 5 +- dockers/manager/index/Dockerfile | 5 +- dockers/manager/replication/agent/Dockerfile | 5 +- .../manager/replication/controller/Dockerfile | 5 +- dockers/meta/cassandra/Dockerfile | 5 +- dockers/meta/redis/Dockerfile | 5 +- dockers/operator/helm/Dockerfile | 5 +- dockers/tools/cli/loadtest/Dockerfile | 4 +- example/client/agent/main.go | 2 +- example/client/main.go | 2 +- example/helm/values-scylla.yaml | 2 +- example/helm/values-standalone-agent-ngt.yaml | 2 +- hack/benchmark/assets/x1b/loader.go | 2 +- .../benchmark/assets/x1b/loader_bench_test.go | 2 +- hack/benchmark/assets/x1b/loader_test.go | 2 +- hack/benchmark/core/benchmark/benchmark.go | 2 +- .../core/benchmark/benchmark_test.go | 2 +- hack/benchmark/core/benchmark/option.go | 2 +- hack/benchmark/core/benchmark/option_test.go | 2 +- hack/benchmark/core/benchmark/strategy.go | 2 +- .../core/benchmark/strategy/bulk_insert.go | 2 +- .../benchmark/strategy/bulk_insert_commit.go | 2 +- .../strategy/bulk_insert_commit_test.go | 2 +- .../benchmark/strategy/bulk_insert_test.go | 2 +- .../core/benchmark/strategy/get_vector.go | 2 +- .../benchmark/strategy/get_vector_test.go | 2 +- .../core/benchmark/strategy/insert.go | 2 +- .../core/benchmark/strategy/insert_commit.go | 2 +- .../benchmark/strategy/insert_commit_test.go | 2 +- .../core/benchmark/strategy/insert_test.go | 2 +- .../core/benchmark/strategy/remove.go | 2 +- .../core/benchmark/strategy/remove_test.go | 2 +- .../core/benchmark/strategy/search.go | 2 +- .../core/benchmark/strategy/search_test.go | 2 +- .../core/benchmark/strategy/strategy.go | 2 +- .../benchmark/strategy/strategy_option.go | 2 +- .../strategy/strategy_option_test.go | 2 +- .../core/benchmark/strategy/strategy_test.go | 2 +- .../benchmark/core/benchmark/strategy/util.go | 2 +- .../core/benchmark/strategy/util_test.go | 2 +- hack/benchmark/core/gongt/gongt_bench_test.go | 2 +- hack/benchmark/core/ngt/ngt_bench_test.go | 2 +- .../e2e/agent/core/ngt/ngt_bench_test.go | 2 +- .../e2e/external/ngtd/ngtd_bench_test.go | 2 +- .../e2e/gateway/vald/vald_bench_test.go | 2 +- hack/benchmark/internal/assets/dataset.go | 2 +- .../benchmark/internal/assets/dataset_test.go | 2 +- .../internal/client/ngtd/grpc/client.go | 2 +- .../internal/client/ngtd/grpc/client_test.go | 2 +- .../internal/client/ngtd/grpc/option.go | 2 +- .../internal/client/ngtd/grpc/option_test.go | 2 +- .../internal/client/ngtd/rest/client.go | 2 +- .../internal/client/ngtd/rest/client_test.go | 2 +- .../internal/client/ngtd/rest/option.go | 2 +- .../internal/client/ngtd/rest/option_test.go | 2 +- hack/benchmark/internal/core/core.go | 2 +- hack/benchmark/internal/core/gongt/gongt.go | 2 +- .../internal/core/gongt/gongt_test.go | 2 +- hack/benchmark/internal/core/gongt/option.go | 2 +- .../internal/core/gongt/option_test.go | 2 +- hack/benchmark/internal/core/ngt/ngt.go | 2 +- hack/benchmark/internal/core/ngt/ngt_test.go | 2 +- hack/benchmark/internal/core/ngt/option.go | 2 +- .../internal/core/ngt/option_test.go | 2 +- .../db/nosql/cassandra/cassandra_test.go | 2 +- hack/benchmark/internal/e2e/e2e.go | 2 +- hack/benchmark/internal/e2e/e2e_test.go | 2 +- hack/benchmark/internal/e2e/option.go | 2 +- hack/benchmark/internal/e2e/option_test.go | 2 +- hack/benchmark/internal/e2e/strategy.go | 2 +- .../internal/e2e/strategy/create_index.go | 2 +- .../e2e/strategy/create_index_option.go | 2 +- .../e2e/strategy/create_index_option_test.go | 2 +- .../e2e/strategy/create_index_test.go | 2 +- .../benchmark/internal/e2e/strategy/insert.go | 2 +- .../internal/e2e/strategy/insert_option.go | 2 +- .../e2e/strategy/insert_option_test.go | 2 +- .../internal/e2e/strategy/insert_test.go | 2 +- .../benchmark/internal/e2e/strategy/remove.go | 2 +- .../internal/e2e/strategy/remove_option.go | 2 +- .../e2e/strategy/remove_option_test.go | 2 +- .../internal/e2e/strategy/remove_test.go | 2 +- .../benchmark/internal/e2e/strategy/search.go | 2 +- .../internal/e2e/strategy/search_option.go | 2 +- .../e2e/strategy/search_option_test.go | 2 +- .../internal/e2e/strategy/search_test.go | 2 +- .../internal/e2e/strategy/stream_insert.go | 2 +- .../e2e/strategy/stream_insert_option.go | 2 +- .../e2e/strategy/stream_insert_test.go | 2 +- .../internal/e2e/strategy/stream_remove.go | 2 +- .../e2e/strategy/stream_remove_option.go | 2 +- .../e2e/strategy/stream_remove_test.go | 2 +- .../internal/e2e/strategy/stream_search.go | 2 +- .../e2e/strategy/stream_search_option.go | 2 +- .../e2e/strategy/stream_search_option_test.go | 2 +- .../e2e/strategy/stream_search_test.go | 2 +- .../internal/starter/agent/core/ngt/ngt.go | 2 +- .../starter/agent/core/ngt/ngt_test.go | 2 +- .../internal/starter/agent/core/ngt/option.go | 2 +- .../starter/agent/core/ngt/option_test.go | 2 +- .../internal/starter/external/ngtd/ngtd.go | 2 +- .../starter/external/ngtd/ngtd_test.go | 2 +- .../internal/starter/external/ngtd/option.go | 2 +- .../starter/external/ngtd/option_test.go | 2 +- .../internal/starter/gateway/vald/option.go | 2 +- .../internal/starter/gateway/vald/vald.go | 2 +- .../starter/gateway/vald/vald_test.go | 2 +- hack/benchmark/internal/starter/starter.go | 2 +- hack/benchmark/metrics/metrics.go | 2 +- .../singleflight/singleflight_bench_test.go | 2 +- hack/git/hooks/pre-commit | 2 +- hack/graphql/gqlgen.sh | 2 +- hack/helm/schema/gen/main.go | 2 +- hack/helm/schema/gen/main_test.go | 2 +- hack/license/gen/main.go | 23 ++++-- hack/license/gen/main_test.go | 2 +- hack/swagger/main.go | 2 +- hack/swagger/main_test.go | 2 +- hack/tools/config/agent/core/ngt/main.go | 2 +- hack/tools/config/agent/core/ngt/main_test.go | 2 +- hack/tools/config/agent/core/ngt/sample.yaml | 2 +- hack/tools/config/discoverer/k8s/main.go | 2 +- hack/tools/config/discoverer/k8s/main_test.go | 2 +- hack/tools/config/discoverer/k8s/sample.yaml | 2 +- hack/tools/config/gateway/vald/main.go | 2 +- hack/tools/config/gateway/vald/main_test.go | 2 +- hack/tools/config/gateway/vald/sample.yaml | 2 +- .../tools/config/manager/backup/mysql/main.go | 2 +- .../config/manager/backup/mysql/main_test.go | 2 +- .../config/manager/backup/mysql/sample.yaml | 2 +- hack/tools/config/meta/redis/main.go | 2 +- hack/tools/config/meta/redis/main_test.go | 2 +- hack/tools/config/meta/redis/sample.yaml | 2 +- hack/tools/metrics/main.go | 2 +- hack/tools/metrics/main_test.go | 2 +- internal/backoff/backoff.go | 2 +- internal/backoff/backoff_test.go | 2 +- internal/backoff/option.go | 2 +- internal/backoff/option_test.go | 2 +- internal/cache/cache.go | 2 +- internal/cache/cache_test.go | 2 +- internal/cache/cacher/cacher.go | 2 +- internal/cache/cacher/cacher_test.go | 2 +- internal/cache/gache/gache.go | 2 +- internal/cache/gache/gache_test.go | 2 +- internal/cache/gache/option.go | 2 +- internal/cache/gache/option_test.go | 2 +- internal/cache/option.go | 2 +- internal/cache/option_test.go | 2 +- internal/client/agent/grpc/client.go | 2 +- internal/client/agent/grpc/client_test.go | 2 +- internal/client/agent/grpc/option.go | 2 +- internal/client/agent/grpc/option_test.go | 2 +- internal/client/agent/rest/client.go | 2 +- internal/client/agent/rest/client_test.go | 2 +- internal/client/agent/rest/option.go | 2 +- internal/client/agent/rest/option_test.go | 2 +- internal/client/client.go | 2 +- internal/client/compressor/client.go | 2 +- internal/client/compressor/client_test.go | 2 +- internal/client/compressor/option.go | 2 +- internal/client/compressor/option_test.go | 2 +- internal/client/discoverer/discover.go | 2 +- internal/client/discoverer/discover_test.go | 2 +- internal/client/discoverer/option.go | 2 +- internal/client/discoverer/option_test.go | 2 +- internal/client/gateway/vald/grpc/client.go | 2 +- .../client/gateway/vald/grpc/client_test.go | 2 +- internal/client/gateway/vald/grpc/option.go | 2 +- .../client/gateway/vald/grpc/option_test.go | 2 +- internal/client/gateway/vald/rest/client.go | 2 +- .../client/gateway/vald/rest/client_test.go | 2 +- internal/client/gateway/vald/rest/option.go | 2 +- .../client/gateway/vald/rest/option_test.go | 2 +- internal/compress/compress.go | 2 +- internal/compress/gob.go | 2 +- internal/compress/gob/gob.go | 2 +- internal/compress/gob/gob_mock.go | 2 +- internal/compress/gob_option.go | 2 +- internal/compress/gob_test.go | 2 +- internal/compress/gzip.go | 2 +- internal/compress/gzip/gzip.go | 2 +- internal/compress/gzip/gzip_mock.go | 2 +- internal/compress/gzip_option.go | 2 +- internal/compress/gzip_option_test.go | 2 +- internal/compress/gzip_test.go | 2 +- internal/compress/lz4.go | 2 +- internal/compress/lz4/lz4.go | 2 +- internal/compress/lz4/lz4_mock.go | 2 +- internal/compress/lz4_option.go | 2 +- internal/compress/lz4_option_test.go | 2 +- internal/compress/lz4_test.go | 2 +- internal/compress/mock.go | 2 +- internal/compress/zstd.go | 2 +- internal/compress/zstd/option.go | 2 +- internal/compress/zstd/zstd.go | 2 +- internal/compress/zstd/zstd_mock.go | 2 +- internal/compress/zstd_option.go | 2 +- internal/compress/zstd_option_test.go | 2 +- internal/compress/zstd_test.go | 2 +- internal/config/backoff.go | 2 +- internal/config/backoff_test.go | 2 +- internal/config/backup.go | 2 +- internal/config/backup_test.go | 2 +- internal/config/blob.go | 2 +- internal/config/blob_test.go | 2 +- internal/config/cassandra.go | 2 +- internal/config/cassandra_test.go | 2 +- internal/config/client.go | 2 +- internal/config/client_test.go | 2 +- internal/config/compress.go | 2 +- internal/config/compress_test.go | 2 +- internal/config/config.go | 2 +- internal/config/config_test.go | 2 +- internal/config/debug.go | 2 +- internal/config/debug_test.go | 2 +- internal/config/discoverer.go | 2 +- internal/config/discoverer_test.go | 2 +- internal/config/filter.go | 2 +- internal/config/filter_test.go | 2 +- internal/config/gateway.go | 2 +- internal/config/gateway_test.go | 2 +- internal/config/grpc.go | 2 +- internal/config/grpc_test.go | 2 +- internal/config/index.go | 2 +- internal/config/index_test.go | 2 +- internal/config/log.go | 2 +- internal/config/log_test.go | 2 +- internal/config/meta.go | 2 +- internal/config/meta_test.go | 2 +- internal/config/mysql.go | 2 +- internal/config/mysql_test.go | 2 +- internal/config/ngt.go | 2 +- internal/config/ngt_test.go | 2 +- internal/config/observability.go | 2 +- internal/config/observability_test.go | 2 +- internal/config/redis.go | 2 +- internal/config/redis_test.go | 2 +- internal/config/server.go | 2 +- internal/config/server_test.go | 2 +- internal/config/sidecar.go | 2 +- internal/config/sidecar_test.go | 2 +- internal/config/tcp.go | 2 +- internal/config/tcp_test.go | 2 +- internal/config/tls.go | 2 +- internal/config/tls_test.go | 2 +- internal/config/transport.go | 2 +- internal/config/transport_test.go | 2 +- internal/core/converter/tensorflow/option.go | 2 +- .../core/converter/tensorflow/option_test.go | 2 +- .../core/converter/tensorflow/tensorflow.go | 2 +- .../tensorflow/tensorflow_mock_test.go | 2 +- .../converter/tensorflow/tensorflow_test.go | 2 +- internal/core/ngt/Makefile | 2 +- internal/core/ngt/model.go | 2 +- internal/core/ngt/ngt.go | 2 +- internal/core/ngt/option.go | 2 +- internal/core/ngt/util.go | 2 +- internal/db/kvs/redis/delete.go | 2 +- internal/db/kvs/redis/get.go | 2 +- internal/db/kvs/redis/hook.go | 2 +- internal/db/kvs/redis/list.go | 2 +- internal/db/kvs/redis/option.go | 2 +- internal/db/kvs/redis/option_test.go | 2 +- internal/db/kvs/redis/redis.go | 2 +- internal/db/kvs/redis/redis_mock_test.go | 2 +- internal/db/kvs/redis/redis_test.go | 2 +- internal/db/kvs/redis/set.go | 2 +- internal/db/nosql/cassandra/cassandra.go | 2 +- internal/db/nosql/cassandra/cassandra_mock.go | 2 +- .../db/nosql/cassandra/cassandra_mock_test.go | 2 +- internal/db/nosql/cassandra/cassandra_test.go | 2 +- internal/db/nosql/cassandra/conviction.go | 2 +- .../db/nosql/cassandra/conviction_test.go | 2 +- internal/db/nosql/cassandra/delete.go | 2 +- internal/db/nosql/cassandra/observer.go | 2 +- internal/db/nosql/cassandra/option.go | 2 +- internal/db/nosql/cassandra/option_test.go | 2 +- internal/db/rdb/mysql/dbr/connection.go | 2 +- internal/db/rdb/mysql/dbr/dbr.go | 2 +- internal/db/rdb/mysql/dbr/dbr_mock.go | 2 +- internal/db/rdb/mysql/dbr/delete.go | 2 +- internal/db/rdb/mysql/dbr/doc.go | 2 +- internal/db/rdb/mysql/dbr/insert.go | 2 +- internal/db/rdb/mysql/dbr/select.go | 2 +- internal/db/rdb/mysql/dbr/session.go | 2 +- internal/db/rdb/mysql/dbr/tx.go | 2 +- internal/db/rdb/mysql/doc.go | 2 +- internal/db/rdb/mysql/get.go | 2 +- internal/db/rdb/mysql/model.go | 2 +- internal/db/rdb/mysql/model_test.go | 2 +- internal/db/rdb/mysql/mysql.go | 2 +- internal/db/rdb/mysql/mysql_test.go | 2 +- internal/db/rdb/mysql/option.go | 2 +- internal/db/rdb/mysql/option_test.go | 2 +- internal/db/rdb/mysql/receiver.go | 2 +- internal/db/rdb/mysql/set.go | 2 +- internal/db/storage/blob/blob.go | 2 +- internal/db/storage/blob/s3/option.go | 2 +- internal/db/storage/blob/s3/option_test.go | 2 +- internal/db/storage/blob/s3/reader/io/io.go | 2 +- internal/db/storage/blob/s3/reader/option.go | 2 +- .../db/storage/blob/s3/reader/option_test.go | 2 +- internal/db/storage/blob/s3/reader/reader.go | 2 +- .../db/storage/blob/s3/reader/reader_mock.go | 2 +- .../db/storage/blob/s3/reader/reader_test.go | 2 +- internal/db/storage/blob/s3/s3.go | 2 +- internal/db/storage/blob/s3/s3_test.go | 2 +- internal/db/storage/blob/s3/sdk/s3/s3.go | 2 +- .../storage/blob/s3/sdk/s3/s3iface/s3iface.go | 2 +- .../blob/s3/sdk/s3/s3manager/s3manager.go | 2 +- internal/db/storage/blob/s3/session/option.go | 2 +- .../db/storage/blob/s3/session/option_test.go | 2 +- .../db/storage/blob/s3/session/session.go | 2 +- .../storage/blob/s3/session/session_test.go | 2 +- .../db/storage/blob/s3/writer/mock_test.go | 2 +- internal/db/storage/blob/s3/writer/option.go | 2 +- .../db/storage/blob/s3/writer/option_test.go | 2 +- internal/db/storage/blob/s3/writer/writer.go | 2 +- .../db/storage/blob/s3/writer/writer_mock.go | 2 +- .../db/storage/blob/s3/writer/writer_test.go | 2 +- internal/encoding/json/json.go | 2 +- internal/encoding/json/json_test.go | 2 +- internal/errgroup/group.go | 2 +- internal/errgroup/group_test.go | 2 +- internal/errors/backup.go | 2 +- internal/errors/benchmark.go | 2 +- internal/errors/blob.go | 2 +- internal/errors/blob_test.go | 2 +- internal/errors/cache.go | 2 +- internal/errors/cassandra.go | 2 +- internal/errors/cassandra_test.go | 2 +- internal/errors/client.go | 2 +- internal/errors/compressor.go | 2 +- internal/errors/compressor_test.go | 2 +- internal/errors/discoverer.go | 2 +- internal/errors/discoverer_test.go | 2 +- internal/errors/errors.go | 2 +- internal/errors/file.go | 2 +- internal/errors/file_test.go | 2 +- internal/errors/gongt.go | 2 +- internal/errors/grpc.go | 2 +- internal/errors/http.go | 2 +- internal/errors/io.go | 2 +- internal/errors/k8s.go | 2 +- internal/errors/meta.go | 2 +- internal/errors/mysql.go | 2 +- internal/errors/mysql_test.go | 2 +- internal/errors/net.go | 2 +- internal/errors/ngt.go | 2 +- internal/errors/observability.go | 2 +- internal/errors/option.go | 2 +- internal/errors/redis.go | 2 +- internal/errors/redis_test.go | 2 +- internal/errors/runner.go | 2 +- internal/errors/runtime.go | 2 +- internal/errors/storage.go | 2 +- internal/errors/tensorflow.go | 2 +- internal/errors/tls.go | 2 +- internal/errors/unit.go | 2 +- internal/errors/vald.go | 2 +- internal/errors/worker.go | 2 +- internal/file/file.go | 2 +- internal/file/file_test.go | 2 +- internal/file/watch/option.go | 2 +- internal/file/watch/option_test.go | 2 +- internal/file/watch/watch.go | 2 +- internal/file/watch/watch_test.go | 2 +- internal/info/info.go | 2 +- internal/info/info_test.go | 2 +- internal/io/io.go | 2 +- internal/k8s/metrics/node/node.go | 2 +- internal/k8s/metrics/node/node_test.go | 2 +- internal/k8s/metrics/node/option.go | 2 +- internal/k8s/metrics/node/option_test.go | 2 +- internal/k8s/metrics/pod/option.go | 2 +- internal/k8s/metrics/pod/option_test.go | 2 +- internal/k8s/metrics/pod/pod.go | 2 +- internal/k8s/metrics/pod/pod_test.go | 2 +- internal/k8s/node/node.go | 2 +- internal/k8s/node/node_test.go | 2 +- internal/k8s/node/option.go | 2 +- internal/k8s/node/option_test.go | 2 +- internal/k8s/option.go | 2 +- internal/k8s/option_test.go | 2 +- internal/k8s/pod/option.go | 2 +- internal/k8s/pod/option_test.go | 2 +- internal/k8s/pod/pod.go | 2 +- internal/k8s/pod/pod_test.go | 2 +- internal/k8s/reconciler.go | 2 +- internal/k8s/reconciler_test.go | 2 +- internal/log/format/format.go | 2 +- internal/log/format/format_test.go | 2 +- internal/log/glg/glg.go | 2 +- internal/log/glg/glg_test.go | 2 +- internal/log/glg/option.go | 2 +- internal/log/glg/option_test.go | 2 +- internal/log/level/level.go | 2 +- internal/log/level/level_test.go | 2 +- internal/log/log.go | 2 +- internal/log/log_test.go | 2 +- internal/log/logger/type.go | 2 +- internal/log/logger/type_test.go | 2 +- internal/log/mock/logger.go | 2 +- internal/log/mock/logger_test.go | 2 +- internal/log/mock/retry.go | 2 +- internal/log/mock/retry_test.go | 2 +- internal/log/option.go | 2 +- internal/log/option_test.go | 2 +- internal/log/retry/option.go | 2 +- internal/log/retry/option_test.go | 2 +- internal/log/retry/retry.go | 2 +- internal/log/retry/retry_test.go | 2 +- internal/net/grpc/client.go | 2 +- internal/net/grpc/client_test.go | 2 +- internal/net/grpc/grpcconns.go | 2 +- internal/net/grpc/grpcconns_test.go | 2 +- internal/net/grpc/handler.go | 2 +- internal/net/grpc/interceptor.go | 2 +- internal/net/grpc/interceptor_test.go | 2 +- internal/net/grpc/metric/client.go | 2 +- internal/net/grpc/metric/client_option.go | 2 +- internal/net/grpc/metric/client_test.go | 2 +- internal/net/grpc/metric/server.go | 2 +- internal/net/grpc/metric/server_option.go | 2 +- internal/net/grpc/metric/server_test.go | 2 +- internal/net/grpc/option.go | 2 +- internal/net/grpc/option_test.go | 2 +- internal/net/grpc/pool/option.go | 2 +- internal/net/grpc/pool/option_test.go | 2 +- internal/net/grpc/pool/pool.go | 2 +- internal/net/grpc/pool/pool_bench_test.go | 2 +- internal/net/grpc/pool/pool_test.go | 2 +- internal/net/grpc/proto/proto.go | 2 +- internal/net/grpc/proto/proto_test.go | 2 +- internal/net/grpc/status/status.go | 2 +- internal/net/grpc/status/status_test.go | 2 +- internal/net/grpc/stream.go | 2 +- internal/net/grpc/stream_test.go | 2 +- internal/net/http/client/client.go | 2 +- internal/net/http/client/client_test.go | 2 +- internal/net/http/client/option.go | 2 +- internal/net/http/client/option_test.go | 2 +- internal/net/http/dump/dump.go | 2 +- internal/net/http/dump/dump_test.go | 2 +- internal/net/http/json/json.go | 2 +- internal/net/http/json/json_test.go | 2 +- internal/net/http/metrics/pprof.go | 2 +- internal/net/http/metrics/pprof_test.go | 2 +- internal/net/http/middleware/middleware.go | 2 +- internal/net/http/middleware/option.go | 2 +- internal/net/http/middleware/option_test.go | 2 +- internal/net/http/middleware/timeout.go | 2 +- internal/net/http/middleware/timeout_test.go | 2 +- internal/net/http/rest/rest.go | 2 +- internal/net/http/rest/rest_test.go | 2 +- .../net/http/routing/middleware_mock_test.go | 2 +- internal/net/http/routing/option.go | 2 +- internal/net/http/routing/option_test.go | 2 +- internal/net/http/routing/router.go | 2 +- internal/net/http/routing/router_test.go | 2 +- internal/net/http/routing/routes.go | 2 +- internal/net/http/transport/option.go | 2 +- internal/net/http/transport/option_test.go | 2 +- internal/net/http/transport/roundtrip.go | 2 +- .../net/http/transport/roundtrip_mock_test.go | 2 +- internal/net/http/transport/roundtrip_test.go | 2 +- internal/net/net.go | 2 +- internal/net/net_test.go | 2 +- internal/net/tcp/control_darwin.go | 2 +- internal/net/tcp/control_darwin_test.go | 2 +- internal/net/tcp/control_other.go | 2 +- internal/net/tcp/control_other_test.go | 2 +- internal/net/tcp/control_unix.go | 2 +- internal/net/tcp/control_unix_test.go | 2 +- internal/net/tcp/control_windows.go | 2 +- internal/net/tcp/control_windows_test.go | 2 +- internal/net/tcp/dialer.go | 2 +- internal/net/tcp/dialer_test.go | 2 +- internal/net/tcp/option.go | 2 +- internal/net/tcp/option_test.go | 2 +- .../observability/client/google/option.go | 2 +- .../client/google/option_test.go | 2 +- internal/observability/collector/collector.go | 2 +- .../collector/collector_option.go | 2 +- .../collector/collector_option_test.go | 2 +- .../observability/collector/collector_test.go | 2 +- internal/observability/exporter/exporter.go | 2 +- .../observability/exporter/jaeger/jaeger.go | 2 +- .../exporter/jaeger/jaeger_option.go | 2 +- .../exporter/jaeger/jaeger_option_test.go | 2 +- .../exporter/jaeger/jaeger_test.go | 2 +- .../exporter/prometheus/prometheus.go | 2 +- .../exporter/prometheus/prometheus_option.go | 2 +- .../prometheus/prometheus_option_test.go | 2 +- .../exporter/prometheus/prometheus_test.go | 2 +- .../exporter/stackdriver/stackdriver.go | 2 +- .../stackdriver/stackdriver_option.go | 2 +- .../stackdriver/stackdriver_option_test.go | 2 +- .../exporter/stackdriver/stackdriver_test.go | 2 +- .../metrics/agent/core/ngt/ngt.go | 2 +- .../metrics/agent/core/ngt/ngt_test.go | 2 +- .../metrics/agent/sidecar/sidecar.go | 2 +- .../metrics/agent/sidecar/sidecar_test.go | 2 +- .../metrics/db/kvs/redis/redis.go | 2 +- .../metrics/db/kvs/redis/redis_test.go | 2 +- .../metrics/db/nosql/cassandra/cassandra.go | 2 +- .../db/nosql/cassandra/cassandra_test.go | 2 +- .../metrics/db/rdb/mysql/mysql.go | 2 +- .../metrics/db/rdb/mysql/mysql_test.go | 2 +- internal/observability/metrics/grpc/grpc.go | 2 +- .../metrics/manager/compressor/compressor.go | 2 +- .../manager/compressor/compressor_test.go | 2 +- .../metrics/manager/index/index.go | 2 +- .../metrics/manager/index/index_test.go | 2 +- internal/observability/metrics/mem/mem.go | 2 +- .../observability/metrics/mem/mem_test.go | 2 +- internal/observability/metrics/metrics.go | 2 +- .../observability/metrics/metrics_test.go | 2 +- .../observability/metrics/runtime/cgo/cgo.go | 2 +- .../metrics/runtime/cgo/cgo_test.go | 2 +- .../metrics/runtime/goroutine/goroutine.go | 2 +- .../runtime/goroutine/goroutine_test.go | 2 +- .../observability/metrics/version/version.go | 2 +- .../metrics/version/version_test.go | 2 +- internal/observability/observability.go | 2 +- .../observability/observability_option.go | 2 +- .../observability_option_test.go | 2 +- internal/observability/observability_test.go | 2 +- internal/observability/profiler/profiler.go | 2 +- .../profiler/stackdriver/stackdriver.go | 2 +- .../stackdriver/stackdriver_option.go | 2 +- .../stackdriver/stackdriver_option_test.go | 2 +- .../profiler/stackdriver/stackdriver_test.go | 2 +- internal/observability/trace/status.go | 2 +- internal/observability/trace/status_test.go | 2 +- internal/observability/trace/trace.go | 2 +- internal/observability/trace/trace_option.go | 2 +- .../observability/trace/trace_option_test.go | 2 +- internal/observability/trace/trace_test.go | 2 +- internal/params/option.go | 2 +- internal/params/option_test.go | 2 +- internal/params/params.go | 2 +- internal/params/params_test.go | 2 +- internal/rand/rand.go | 2 +- internal/rand/rand_test.go | 2 +- internal/runner/option.go | 2 +- internal/runner/option_test.go | 2 +- internal/runner/runner.go | 2 +- internal/runner/runner_mock_test.go | 2 +- internal/runner/runner_test.go | 2 +- internal/safety/safety.go | 2 +- internal/safety/safety_test.go | 2 +- internal/servers/option.go | 2 +- internal/servers/option_test.go | 2 +- internal/servers/server/option.go | 2 +- internal/servers/server/option_test.go | 2 +- internal/servers/server/server.go | 2 +- internal/servers/server/server_test.go | 2 +- internal/servers/servers.go | 2 +- internal/servers/servers_mock_test.go | 2 +- internal/servers/servers_test.go | 2 +- internal/servers/starter/option.go | 2 +- internal/servers/starter/option_test.go | 2 +- internal/servers/starter/starter.go | 2 +- internal/servers/starter/starter_test.go | 2 +- internal/singleflight/singleflight.go | 2 +- internal/singleflight/singleflight_test.go | 2 +- internal/test/comparator/standard.go | 2 +- internal/test/doc.go | 2 +- internal/test/testdata.go | 2 +- internal/test/testdata_test.go | 2 +- internal/timeutil/location/loc.go | 2 +- internal/timeutil/location/loc_test.go | 2 +- internal/timeutil/time.go | 2 +- internal/timeutil/time_test.go | 2 +- internal/tls/option.go | 2 +- internal/tls/option_test.go | 2 +- internal/tls/tls.go | 2 +- internal/tls/tls_test.go | 2 +- internal/unit/unit.go | 2 +- internal/unit/unit_test.go | 2 +- internal/version/version.go | 2 +- internal/version/version_test.go | 2 +- internal/worker/queue.go | 2 +- internal/worker/queue_mock_test.go | 2 +- internal/worker/queue_option.go | 2 +- internal/worker/queue_option_test.go | 2 +- internal/worker/queue_test.go | 2 +- internal/worker/worker.go | 2 +- internal/worker/worker_option.go | 2 +- internal/worker/worker_option_test.go | 2 +- internal/worker/worker_test.go | 2 +- k8s/agent/configmap.yaml | 2 +- k8s/agent/pdb.yaml | 2 +- k8s/agent/priorityclass.yaml | 2 +- k8s/agent/statefulset.yaml | 2 +- k8s/agent/svc.yaml | 2 +- k8s/debug/kind/config.yaml | 2 +- k8s/discoverer/clusterrole.yaml | 2 +- k8s/discoverer/clusterrolebinding.yaml | 2 +- k8s/discoverer/configmap.yaml | 2 +- k8s/discoverer/deployment.yaml | 2 +- k8s/discoverer/pdb.yaml | 2 +- k8s/discoverer/priorityclass.yaml | 2 +- k8s/discoverer/serviceaccount.yaml | 2 +- k8s/discoverer/svc.yaml | 2 +- k8s/external/cassandra/statefulset.yaml | 2 +- k8s/external/cassandra/svc.yaml | 2 +- k8s/external/mysql/deployment.yaml | 2 +- k8s/external/mysql/pv.yaml | 2 +- k8s/external/mysql/pvc.yaml | 2 +- k8s/external/mysql/secret.yaml | 2 +- k8s/external/mysql/svc.yaml | 2 +- k8s/external/redis/deployment.yaml | 2 +- k8s/external/redis/secret.yaml | 2 +- k8s/external/redis/svc.yaml | 2 +- k8s/external/scylla/statefulset.yaml | 2 +- k8s/external/scylla/svc.yaml | 2 +- k8s/gateway/vald/configmap.yaml | 2 +- k8s/gateway/vald/deployment.yaml | 2 +- k8s/gateway/vald/hpa.yaml | 2 +- k8s/gateway/vald/ing.yaml | 2 +- k8s/gateway/vald/pdb.yaml | 2 +- k8s/gateway/vald/priorityclass.yaml | 2 +- k8s/gateway/vald/svc.yaml | 2 +- .../db/initialize/cassandra/configmap.yaml | 2 +- k8s/jobs/db/initialize/cassandra/job.yaml | 2 +- k8s/jobs/db/initialize/cassandra/secret.yaml | 2 +- k8s/jobs/db/initialize/mysql/configmap.yaml | 2 +- k8s/jobs/db/initialize/mysql/job.yaml | 2 +- k8s/jobs/db/initialize/mysql/secret.yaml | 2 +- k8s/jobs/db/initialize/redis/job.yaml | 2 +- k8s/jobs/db/initialize/redis/secret.yaml | 2 +- k8s/manager/backup/configmap.yaml | 2 +- k8s/manager/backup/deployment.yaml | 2 +- k8s/manager/backup/hpa.yaml | 2 +- k8s/manager/backup/pdb.yaml | 2 +- k8s/manager/backup/priorityclass.yaml | 2 +- k8s/manager/backup/svc.yaml | 2 +- k8s/manager/compressor/configmap.yaml | 2 +- k8s/manager/compressor/deployment.yaml | 2 +- k8s/manager/compressor/hpa.yaml | 2 +- k8s/manager/compressor/pdb.yaml | 2 +- k8s/manager/compressor/priorityclass.yaml | 2 +- k8s/manager/compressor/svc.yaml | 2 +- k8s/manager/index/configmap.yaml | 2 +- k8s/manager/index/deployment.yaml | 2 +- k8s/manager/index/pdb.yaml | 2 +- k8s/manager/index/priorityclass.yaml | 2 +- k8s/manager/index/svc.yaml | 2 +- k8s/meta/configmap.yaml | 2 +- k8s/meta/deployment.yaml | 2 +- k8s/meta/hpa.yaml | 2 +- k8s/meta/pdb.yaml | 2 +- k8s/meta/priorityclass.yaml | 2 +- k8s/meta/svc.yaml | 2 +- k8s/metrics/grafana/configmap.yaml | 2 +- k8s/metrics/grafana/deployment.yaml | 2 +- k8s/metrics/grafana/svc.yaml | 2 +- k8s/metrics/jaeger/deployment.yaml | 2 +- k8s/metrics/jaeger/svc.yaml | 2 +- .../aggregated-metrics-reader.yaml | 2 +- .../metrics-server/auth-delegator.yaml | 2 +- k8s/metrics/metrics-server/auth-reader.yaml | 2 +- .../metrics-server/metrics-apiservice.yaml | 2 +- .../metrics-server-deployment.yaml | 2 +- .../metrics-server-service.yaml | 2 +- .../metrics-server/resource-reader.yaml | 2 +- k8s/metrics/profefe/clusterrole.yaml | 2 +- k8s/metrics/profefe/clusterrolebinding.yaml | 2 +- k8s/metrics/profefe/cronjob.yaml | 2 +- k8s/metrics/profefe/deployment.yaml | 2 +- k8s/metrics/profefe/serviceaccount.yaml | 2 +- k8s/metrics/profefe/svc.yaml | 2 +- k8s/metrics/prometheus/clusterrole.yaml | 2 +- .../prometheus/clusterrolebinding.yaml | 2 +- k8s/metrics/prometheus/configmap.yaml | 2 +- k8s/metrics/prometheus/deployment.yaml | 2 +- k8s/metrics/prometheus/serviceaccount.yaml | 2 +- k8s/metrics/prometheus/svc.yaml | 2 +- k8s/operator/helm/clusterrole.yaml | 2 +- k8s/operator/helm/clusterrolebinding.yaml | 2 +- .../helm/crds/valdhelmoperatorrelease.yaml | 2 +- k8s/operator/helm/crds/valdrelease.yaml | 2 +- k8s/operator/helm/operator.yaml | 2 +- k8s/operator/helm/serviceaccount.yaml | 2 +- k8s/operator/helm/svc.yaml | 2 +- k8s/tools/cli/loadtest/configmap.yaml | 2 +- k8s/tools/cli/loadtest/cronjob.yaml | 2 +- k8s/tools/cli/loadtest/job.yaml | 2 +- pkg/agent/core/ngt/config/config.go | 2 +- pkg/agent/core/ngt/config/config_test.go | 2 +- pkg/agent/core/ngt/handler/doc.go | 2 +- pkg/agent/core/ngt/handler/grpc/handler.go | 2 +- .../core/ngt/handler/grpc/handler_test.go | 2 +- pkg/agent/core/ngt/handler/grpc/option.go | 2 +- .../core/ngt/handler/grpc/option_test.go | 2 +- pkg/agent/core/ngt/handler/rest/handler.go | 2 +- .../core/ngt/handler/rest/handler_test.go | 2 +- pkg/agent/core/ngt/handler/rest/option.go | 2 +- .../core/ngt/handler/rest/option_test.go | 2 +- pkg/agent/core/ngt/model/ngt.go | 2 +- pkg/agent/core/ngt/router/option.go | 2 +- pkg/agent/core/ngt/router/option_test.go | 2 +- pkg/agent/core/ngt/router/router.go | 2 +- pkg/agent/core/ngt/router/router_test.go | 2 +- pkg/agent/core/ngt/service/doc.go | 2 +- pkg/agent/core/ngt/service/kvs/kvs.go | 2 +- pkg/agent/core/ngt/service/kvs/kvs_test.go | 2 +- pkg/agent/core/ngt/service/kvs/ou.go | 2 +- pkg/agent/core/ngt/service/kvs/ou_test.go | 2 +- pkg/agent/core/ngt/service/kvs/uo.go | 2 +- pkg/agent/core/ngt/service/kvs/uo_test.go | 2 +- pkg/agent/core/ngt/service/ngt.go | 2 +- pkg/agent/core/ngt/service/ngt_test.go | 2 +- pkg/agent/core/ngt/service/option.go | 2 +- pkg/agent/core/ngt/service/option_test.go | 2 +- pkg/agent/core/ngt/service/vcaches.go | 2 +- pkg/agent/core/ngt/service/vcaches_test.go | 2 +- pkg/agent/core/ngt/usecase/agentd.go | 2 +- pkg/agent/core/ngt/usecase/agentd_test.go | 2 +- pkg/agent/internal/metadata/metadata.go | 2 +- pkg/agent/sidecar/config/config.go | 2 +- pkg/agent/sidecar/config/config_test.go | 2 +- pkg/agent/sidecar/handler/doc.go | 2 +- pkg/agent/sidecar/handler/grpc/handler.go | 2 +- .../sidecar/handler/grpc/handler_test.go | 2 +- pkg/agent/sidecar/handler/grpc/option.go | 2 +- pkg/agent/sidecar/handler/grpc/option_test.go | 2 +- pkg/agent/sidecar/handler/rest/handler.go | 2 +- .../sidecar/handler/rest/handler_test.go | 2 +- pkg/agent/sidecar/handler/rest/option.go | 2 +- pkg/agent/sidecar/handler/rest/option_test.go | 2 +- pkg/agent/sidecar/router/option.go | 2 +- pkg/agent/sidecar/router/option_test.go | 2 +- pkg/agent/sidecar/router/router.go | 2 +- pkg/agent/sidecar/router/router_test.go | 2 +- pkg/agent/sidecar/service/doc.go | 2 +- pkg/agent/sidecar/service/observer/hook.go | 2 +- .../sidecar/service/observer/observer.go | 2 +- .../sidecar/service/observer/observer_test.go | 2 +- pkg/agent/sidecar/service/observer/option.go | 2 +- .../sidecar/service/observer/option_test.go | 2 +- pkg/agent/sidecar/service/restorer/option.go | 2 +- .../sidecar/service/restorer/option_test.go | 2 +- .../sidecar/service/restorer/restorer.go | 2 +- .../sidecar/service/restorer/restorer_test.go | 2 +- pkg/agent/sidecar/service/storage/info.go | 2 +- pkg/agent/sidecar/service/storage/option.go | 2 +- .../sidecar/service/storage/option_test.go | 2 +- pkg/agent/sidecar/service/storage/storage.go | 2 +- .../sidecar/service/storage/storage_test.go | 2 +- .../usecase/initcontainer/initcontainer.go | 2 +- .../initcontainer/initcontainer_test.go | 2 +- pkg/agent/sidecar/usecase/sidecar/sidecar.go | 2 +- .../sidecar/usecase/sidecar/sidecar_test.go | 2 +- pkg/agent/sidecar/usecase/sidecard.go | 2 +- pkg/agent/sidecar/usecase/sidecard_test.go | 2 +- pkg/discoverer/k8s/config/config.go | 2 +- pkg/discoverer/k8s/config/config_test.go | 2 +- pkg/discoverer/k8s/handler/doc.go | 2 +- pkg/discoverer/k8s/handler/grpc/handler.go | 2 +- .../k8s/handler/grpc/handler_test.go | 2 +- pkg/discoverer/k8s/handler/grpc/option.go | 2 +- .../k8s/handler/grpc/option_test.go | 2 +- pkg/discoverer/k8s/handler/rest/handler.go | 2 +- .../k8s/handler/rest/handler_test.go | 2 +- pkg/discoverer/k8s/handler/rest/option.go | 2 +- .../k8s/handler/rest/option_test.go | 2 +- pkg/discoverer/k8s/router/option.go | 2 +- pkg/discoverer/k8s/router/option_test.go | 2 +- pkg/discoverer/k8s/router/router.go | 2 +- pkg/discoverer/k8s/router/router_test.go | 2 +- pkg/discoverer/k8s/service/discover.go | 2 +- pkg/discoverer/k8s/service/discover_test.go | 2 +- pkg/discoverer/k8s/service/doc.go | 2 +- pkg/discoverer/k8s/service/nodemap.go | 2 +- pkg/discoverer/k8s/service/nodemap_test.go | 2 +- pkg/discoverer/k8s/service/nodemetricsmap.go | 2 +- .../k8s/service/nodemetricsmap_test.go | 2 +- pkg/discoverer/k8s/service/option.go | 2 +- pkg/discoverer/k8s/service/option_test.go | 2 +- pkg/discoverer/k8s/service/podmetricsmap.go | 2 +- .../k8s/service/podmetricsmap_test.go | 2 +- pkg/discoverer/k8s/service/podsmap.go | 2 +- pkg/discoverer/k8s/service/podsmap_test.go | 2 +- pkg/discoverer/k8s/usecase/discovered.go | 2 +- pkg/discoverer/k8s/usecase/discovered_test.go | 2 +- pkg/gateway/vald/config/config.go | 2 +- pkg/gateway/vald/config/config_test.go | 2 +- pkg/gateway/vald/handler/doc.go | 2 +- pkg/gateway/vald/handler/grpc/checklist.go | 2 +- .../vald/handler/grpc/checklist_test.go | 2 +- pkg/gateway/vald/handler/grpc/handler.go | 2 +- pkg/gateway/vald/handler/grpc/handler_test.go | 2 +- pkg/gateway/vald/handler/grpc/option.go | 2 +- pkg/gateway/vald/handler/grpc/option_test.go | 2 +- pkg/gateway/vald/handler/rest/handler.go | 2 +- pkg/gateway/vald/handler/rest/handler_test.go | 2 +- pkg/gateway/vald/handler/rest/option.go | 2 +- pkg/gateway/vald/handler/rest/option_test.go | 2 +- pkg/gateway/vald/router/option.go | 2 +- pkg/gateway/vald/router/option_test.go | 2 +- pkg/gateway/vald/router/router.go | 2 +- pkg/gateway/vald/router/router_test.go | 2 +- pkg/gateway/vald/service/backup.go | 2 +- pkg/gateway/vald/service/backup_option.go | 2 +- .../vald/service/backup_option_test.go | 2 +- pkg/gateway/vald/service/backup_test.go | 2 +- pkg/gateway/vald/service/doc.go | 2 +- pkg/gateway/vald/service/filter.go | 2 +- pkg/gateway/vald/service/filter_option.go | 2 +- .../vald/service/filter_option_test.go | 2 +- pkg/gateway/vald/service/filter_test.go | 2 +- pkg/gateway/vald/service/gateway.go | 2 +- pkg/gateway/vald/service/gateway_option.go | 2 +- .../vald/service/gateway_option_test.go | 2 +- pkg/gateway/vald/service/gateway_test.go | 2 +- pkg/gateway/vald/service/meta.go | 2 +- pkg/gateway/vald/service/meta_option.go | 2 +- pkg/gateway/vald/service/meta_option_test.go | 2 +- pkg/gateway/vald/service/meta_test.go | 2 +- pkg/gateway/vald/usecase/vald.go | 2 +- pkg/gateway/vald/usecase/vald_test.go | 2 +- pkg/manager/backup/cassandra/config/config.go | 2 +- .../backup/cassandra/config/config_test.go | 2 +- pkg/manager/backup/cassandra/handler/doc.go | 2 +- .../backup/cassandra/handler/grpc/handler.go | 2 +- .../cassandra/handler/grpc/handler_test.go | 2 +- .../backup/cassandra/handler/grpc/option.go | 2 +- .../cassandra/handler/grpc/option_test.go | 2 +- .../backup/cassandra/handler/rest/handler.go | 2 +- .../cassandra/handler/rest/handler_test.go | 2 +- .../backup/cassandra/handler/rest/option.go | 2 +- .../cassandra/handler/rest/option_test.go | 2 +- pkg/manager/backup/cassandra/model/model.go | 2 +- pkg/manager/backup/cassandra/router/option.go | 2 +- .../backup/cassandra/router/option_test.go | 2 +- pkg/manager/backup/cassandra/router/router.go | 2 +- .../backup/cassandra/router/router_test.go | 2 +- .../backup/cassandra/service/cassandra.go | 2 +- .../cassandra/service/cassandra_test.go | 2 +- pkg/manager/backup/cassandra/service/doc.go | 2 +- .../backup/cassandra/service/option.go | 2 +- .../backup/cassandra/usecase/backupd.go | 2 +- .../backup/cassandra/usecase/backupd_test.go | 2 +- pkg/manager/backup/mysql/config/config.go | 2 +- .../backup/mysql/config/config_test.go | 2 +- pkg/manager/backup/mysql/handler/doc.go | 2 +- .../backup/mysql/handler/grpc/handler.go | 2 +- .../backup/mysql/handler/grpc/handler_test.go | 2 +- .../backup/mysql/handler/grpc/option.go | 2 +- .../backup/mysql/handler/grpc/option_test.go | 2 +- .../backup/mysql/handler/rest/handler.go | 2 +- .../backup/mysql/handler/rest/handler_test.go | 2 +- .../backup/mysql/handler/rest/option.go | 2 +- .../backup/mysql/handler/rest/option_test.go | 2 +- pkg/manager/backup/mysql/model/model.go | 2 +- pkg/manager/backup/mysql/model/model_test.go | 2 +- pkg/manager/backup/mysql/router/option.go | 2 +- .../backup/mysql/router/option_test.go | 2 +- pkg/manager/backup/mysql/router/router.go | 2 +- .../backup/mysql/router/router_test.go | 2 +- pkg/manager/backup/mysql/service/doc.go | 2 +- pkg/manager/backup/mysql/service/mysql.go | 2 +- .../backup/mysql/service/mysql_test.go | 2 +- pkg/manager/backup/mysql/service/option.go | 2 +- pkg/manager/backup/mysql/usecase/backupd.go | 2 +- .../backup/mysql/usecase/backupd_test.go | 2 +- pkg/manager/compressor/config/config.go | 2 +- pkg/manager/compressor/config/config_test.go | 2 +- pkg/manager/compressor/handler/doc.go | 2 +- .../compressor/handler/grpc/handler.go | 2 +- .../compressor/handler/grpc/handler_test.go | 2 +- pkg/manager/compressor/handler/grpc/option.go | 2 +- .../compressor/handler/grpc/option_test.go | 2 +- .../compressor/handler/rest/handler.go | 2 +- .../compressor/handler/rest/handler_test.go | 2 +- pkg/manager/compressor/handler/rest/option.go | 2 +- .../compressor/handler/rest/option_test.go | 2 +- pkg/manager/compressor/model/model.go | 2 +- pkg/manager/compressor/router/option.go | 2 +- pkg/manager/compressor/router/option_test.go | 2 +- pkg/manager/compressor/router/router.go | 2 +- pkg/manager/compressor/router/router_test.go | 2 +- pkg/manager/compressor/service/backup.go | 2 +- .../compressor/service/backup_option.go | 2 +- .../compressor/service/backup_option_test.go | 2 +- pkg/manager/compressor/service/backup_test.go | 2 +- pkg/manager/compressor/service/compress.go | 2 +- .../compressor/service/compress_option.go | 2 +- .../service/compress_option_test.go | 2 +- .../compressor/service/compress_test.go | 2 +- pkg/manager/compressor/service/doc.go | 2 +- pkg/manager/compressor/service/registerer.go | 2 +- .../compressor/service/registerer_option.go | 2 +- .../service/registerer_option_test.go | 2 +- .../compressor/service/registerer_test.go | 2 +- pkg/manager/compressor/usecase/compressord.go | 2 +- .../compressor/usecase/compressord_test.go | 2 +- pkg/manager/index/config/config.go | 2 +- pkg/manager/index/config/config_test.go | 2 +- pkg/manager/index/handler/doc.go | 2 +- pkg/manager/index/handler/grpc/checklist.go | 2 +- .../index/handler/grpc/checklist_test.go | 2 +- pkg/manager/index/handler/grpc/handler.go | 2 +- .../index/handler/grpc/handler_test.go | 2 +- pkg/manager/index/handler/grpc/option.go | 2 +- pkg/manager/index/handler/grpc/option_test.go | 2 +- pkg/manager/index/handler/rest/handler.go | 2 +- .../index/handler/rest/handler_test.go | 2 +- pkg/manager/index/handler/rest/option.go | 2 +- pkg/manager/index/handler/rest/option_test.go | 2 +- pkg/manager/index/router/option.go | 2 +- pkg/manager/index/router/option_test.go | 2 +- pkg/manager/index/router/router.go | 2 +- pkg/manager/index/router/router_test.go | 2 +- pkg/manager/index/service/doc.go | 2 +- pkg/manager/index/service/indexer.go | 2 +- pkg/manager/index/service/indexer_test.go | 2 +- pkg/manager/index/service/indexinfos.go | 2 +- pkg/manager/index/service/indexinfos_test.go | 2 +- pkg/manager/index/service/option.go | 2 +- pkg/manager/index/service/option_test.go | 2 +- pkg/manager/index/usecase/indexer.go | 2 +- pkg/manager/index/usecase/indexer_test.go | 2 +- .../replication/agent/config/config.go | 2 +- .../replication/agent/config/config_test.go | 2 +- pkg/manager/replication/agent/handler/doc.go | 2 +- .../replication/agent/handler/grpc/handler.go | 2 +- .../agent/handler/grpc/handler_test.go | 2 +- .../replication/agent/handler/grpc/option.go | 2 +- .../agent/handler/grpc/option_test.go | 2 +- .../replication/agent/handler/rest/handler.go | 2 +- .../agent/handler/rest/handler_test.go | 2 +- .../replication/agent/handler/rest/option.go | 2 +- .../agent/handler/rest/option_test.go | 2 +- pkg/manager/replication/agent/model/model.go | 2 +- .../replication/agent/router/option.go | 2 +- .../replication/agent/router/option_test.go | 2 +- .../replication/agent/router/router.go | 2 +- .../replication/agent/router/router_test.go | 2 +- .../replication/agent/service/agent.go | 2 +- .../replication/agent/service/agent_test.go | 2 +- pkg/manager/replication/agent/service/doc.go | 2 +- .../replication/agent/usecase/backupd.go | 2 +- .../replication/agent/usecase/backupd_test.go | 2 +- .../replication/controller/config/config.go | 2 +- .../controller/config/config_test.go | 2 +- .../replication/controller/handler/doc.go | 2 +- .../controller/handler/grpc/handler.go | 2 +- .../controller/handler/grpc/handler_test.go | 2 +- .../controller/handler/grpc/option.go | 2 +- .../controller/handler/grpc/option_test.go | 2 +- .../controller/handler/rest/handler.go | 2 +- .../controller/handler/rest/handler_test.go | 2 +- .../controller/handler/rest/option.go | 2 +- .../controller/handler/rest/option_test.go | 2 +- .../replication/controller/router/option.go | 2 +- .../controller/router/option_test.go | 2 +- .../replication/controller/router/router.go | 2 +- .../controller/router/router_test.go | 2 +- .../controller/service/discover.go | 2 +- .../controller/service/discover_test.go | 2 +- .../replication/controller/service/doc.go | 2 +- .../replication/controller/service/nodemap.go | 2 +- .../controller/service/nodemap_test.go | 2 +- .../controller/service/nodemetricsmap.go | 2 +- .../controller/service/nodemetricsmap_test.go | 2 +- .../replication/controller/service/option.go | 2 +- .../controller/service/option_test.go | 2 +- .../controller/service/podmetricsmap.go | 2 +- .../controller/service/podmetricsmap_test.go | 2 +- .../replication/controller/service/podsmap.go | 2 +- .../controller/service/podsmap_test.go | 2 +- .../controller/usecase/discovered.go | 2 +- .../controller/usecase/discovered_test.go | 2 +- pkg/meta/cassandra/config/config.go | 2 +- pkg/meta/cassandra/config/config_test.go | 2 +- pkg/meta/cassandra/handler/doc.go | 2 +- pkg/meta/cassandra/handler/grpc/handler.go | 2 +- .../cassandra/handler/grpc/handler_test.go | 2 +- pkg/meta/cassandra/handler/grpc/option.go | 2 +- .../cassandra/handler/grpc/option_test.go | 2 +- pkg/meta/cassandra/handler/rest/handler.go | 2 +- .../cassandra/handler/rest/handler_test.go | 2 +- pkg/meta/cassandra/handler/rest/option.go | 2 +- .../cassandra/handler/rest/option_test.go | 2 +- pkg/meta/cassandra/router/option.go | 2 +- pkg/meta/cassandra/router/option_test.go | 2 +- pkg/meta/cassandra/router/router.go | 2 +- pkg/meta/cassandra/router/router_test.go | 2 +- pkg/meta/cassandra/service/cassandra.go | 2 +- pkg/meta/cassandra/service/cassandra_test.go | 2 +- pkg/meta/cassandra/service/doc.go | 2 +- pkg/meta/cassandra/service/option.go | 2 +- pkg/meta/cassandra/usecase/meta.go | 2 +- pkg/meta/cassandra/usecase/meta_test.go | 2 +- pkg/meta/redis/config/config.go | 2 +- pkg/meta/redis/config/config_test.go | 2 +- pkg/meta/redis/handler/doc.go | 2 +- pkg/meta/redis/handler/grpc/handler.go | 2 +- pkg/meta/redis/handler/grpc/handler_test.go | 2 +- pkg/meta/redis/handler/grpc/option.go | 2 +- pkg/meta/redis/handler/grpc/option_test.go | 2 +- pkg/meta/redis/handler/rest/handler.go | 2 +- pkg/meta/redis/handler/rest/handler_test.go | 2 +- pkg/meta/redis/handler/rest/option.go | 2 +- pkg/meta/redis/handler/rest/option_test.go | 2 +- pkg/meta/redis/router/option.go | 2 +- pkg/meta/redis/router/option_test.go | 2 +- pkg/meta/redis/router/router.go | 2 +- pkg/meta/redis/router/router_test.go | 2 +- pkg/meta/redis/service/doc.go | 2 +- pkg/meta/redis/service/option.go | 2 +- pkg/meta/redis/service/redis.go | 2 +- pkg/meta/redis/service/redis_test.go | 2 +- pkg/meta/redis/usecase/meta.go | 2 +- pkg/meta/redis/usecase/meta_test.go | 2 +- pkg/tools/cli/loadtest/assets/dataset.go | 2 +- pkg/tools/cli/loadtest/assets/dataset_test.go | 2 +- pkg/tools/cli/loadtest/assets/hdf5_loader.go | 2 +- .../cli/loadtest/assets/hdf5_loader_test.go | 2 +- .../cli/loadtest/assets/large_dataset.go | 2 +- .../cli/loadtest/assets/large_dataset_test.go | 2 +- .../cli/loadtest/assets/small_dataset.go | 2 +- .../cli/loadtest/assets/small_dataset_test.go | 2 +- pkg/tools/cli/loadtest/config/config.go | 2 +- pkg/tools/cli/loadtest/config/config_test.go | 2 +- pkg/tools/cli/loadtest/service/insert.go | 2 +- pkg/tools/cli/loadtest/service/insert_test.go | 2 +- pkg/tools/cli/loadtest/service/loader.go | 2 +- .../cli/loadtest/service/loader_option.go | 2 +- .../loadtest/service/loader_option_test.go | 2 +- pkg/tools/cli/loadtest/service/loader_test.go | 2 +- pkg/tools/cli/loadtest/service/search.go | 2 +- pkg/tools/cli/loadtest/service/search_test.go | 2 +- pkg/tools/cli/loadtest/usecase/load.go | 2 +- pkg/tools/cli/loadtest/usecase/load_test.go | 2 +- 1226 files changed, 1325 insertions(+), 1277 deletions(-) diff --git a/.commit_template b/.commit_template index 06231ad0a61..e7a9335675d 100644 --- a/.commit_template +++ b/.commit_template @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.deepsource.toml b/.deepsource.toml index d6588c28b84..9d21801a9d7 100644 --- a/.deepsource.toml +++ b/.deepsource.toml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.dependabot/config.yml b/.dependabot/config.yml index 526f0190715..1311006e5ea 100644 --- a/.dependabot/config.yml +++ b/.dependabot/config.yml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.fossa.yml b/.fossa.yml index e9cc081846e..edabef3bd21 100644 --- a/.fossa.yml +++ b/.fossa.yml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.github/workflows/dockers-agent-ngt-image.yml b/.github/workflows/dockers-agent-ngt-image.yml index 45ad326a47d..a1645930b51 100755 --- a/.github/workflows/dockers-agent-ngt-image.yml +++ b/.github/workflows/dockers-agent-ngt-image.yml @@ -112,7 +112,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/agent-ngt make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-agent-sidecar-image.yml b/.github/workflows/dockers-agent-sidecar-image.yml index 03a32e05651..e52525c4e7c 100644 --- a/.github/workflows/dockers-agent-sidecar-image.yml +++ b/.github/workflows/dockers-agent-sidecar-image.yml @@ -112,7 +112,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/agent-sidecar make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-backup-manager-cassandra-image.yml b/.github/workflows/dockers-backup-manager-cassandra-image.yml index d3c85e8c154..c81cf718576 100644 --- a/.github/workflows/dockers-backup-manager-cassandra-image.yml +++ b/.github/workflows/dockers-backup-manager-cassandra-image.yml @@ -114,7 +114,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/backup-manager-cassandra make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-backup-manager-mysql-image.yml b/.github/workflows/dockers-backup-manager-mysql-image.yml index 85fc111abaf..15adb0c23eb 100644 --- a/.github/workflows/dockers-backup-manager-mysql-image.yml +++ b/.github/workflows/dockers-backup-manager-mysql-image.yml @@ -112,7 +112,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/backup-manager-mysql make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-base-image.yml b/.github/workflows/dockers-base-image.yml index 50d1b773897..180baf9a0ea 100755 --- a/.github/workflows/dockers-base-image.yml +++ b/.github/workflows/dockers-base-image.yml @@ -82,7 +82,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/base make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-ci-container-image.yml b/.github/workflows/dockers-ci-container-image.yml index 0581f1d86c8..f1a9f367d79 100644 --- a/.github/workflows/dockers-ci-container-image.yml +++ b/.github/workflows/dockers-ci-container-image.yml @@ -76,7 +76,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/ci-container make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-dev-container-image.yml b/.github/workflows/dockers-dev-container-image.yml index 819139bec70..3d7b82c6adb 100644 --- a/.github/workflows/dockers-dev-container-image.yml +++ b/.github/workflows/dockers-dev-container-image.yml @@ -76,7 +76,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/dev-container make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-discoverer-k8s-image.yml b/.github/workflows/dockers-discoverer-k8s-image.yml index 9fe2cbc63fe..ea730201156 100755 --- a/.github/workflows/dockers-discoverer-k8s-image.yml +++ b/.github/workflows/dockers-discoverer-k8s-image.yml @@ -108,7 +108,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/discoverer-k8s make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-gateway-vald-image.yml b/.github/workflows/dockers-gateway-vald-image.yml index aa3f3fea00f..9ec71a7cd3b 100755 --- a/.github/workflows/dockers-gateway-vald-image.yml +++ b/.github/workflows/dockers-gateway-vald-image.yml @@ -110,7 +110,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/gateway-vald make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-helm-operator-image.yml b/.github/workflows/dockers-helm-operator-image.yml index fcf38e32c32..16c8976044e 100755 --- a/.github/workflows/dockers-helm-operator-image.yml +++ b/.github/workflows/dockers-helm-operator-image.yml @@ -102,7 +102,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/operator/helm make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-loadtest-image.yml b/.github/workflows/dockers-loadtest-image.yml index aafa831c353..ac32e2685bb 100755 --- a/.github/workflows/dockers-loadtest-image.yml +++ b/.github/workflows/dockers-loadtest-image.yml @@ -99,7 +99,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/loadtest make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-manager-compressor-image.yml b/.github/workflows/dockers-manager-compressor-image.yml index 2a57871f5f2..8796e040ee6 100644 --- a/.github/workflows/dockers-manager-compressor-image.yml +++ b/.github/workflows/dockers-manager-compressor-image.yml @@ -110,7 +110,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/manager-compressor make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-manager-index-image.yml b/.github/workflows/dockers-manager-index-image.yml index c5d7d15f899..28724bc0f28 100644 --- a/.github/workflows/dockers-manager-index-image.yml +++ b/.github/workflows/dockers-manager-index-image.yml @@ -110,7 +110,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/manager-index make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-meta-cassandra-image.yml b/.github/workflows/dockers-meta-cassandra-image.yml index cd60b100b6b..a16dcb66ac4 100644 --- a/.github/workflows/dockers-meta-cassandra-image.yml +++ b/.github/workflows/dockers-meta-cassandra-image.yml @@ -112,7 +112,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/meta-cassandra make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.github/workflows/dockers-meta-redis-image.yml b/.github/workflows/dockers-meta-redis-image.yml index 8a170c7d34e..5fbf3d3a84a 100755 --- a/.github/workflows/dockers-meta-redis-image.yml +++ b/.github/workflows/dockers-meta-redis-image.yml @@ -112,7 +112,7 @@ jobs: TAG="${PRIMARY_TAG}" \ docker/build/meta-redis make \ - REPO="ghcr.io/vdaas/vald" \ + ORG="ghcr.io/vdaas/vald" \ DOCKER="docker buildx" \ DOCKER_OPTS="--platform ${PLATFORMS} --builder ${BUILDER} ${CACHE_OPTS} ${LABEL_OPTS} --push" \ TAG="${PRIMARY_TAG}" \ diff --git a/.golangci.yml b/.golangci.yml index 7eaf0e63119..67a999aa969 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/LICENSE b/LICENSE index c5c0986add9..a2e0625ffc5 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) + Copyright (C) 2019-2021 vdaas.org vald team Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Makefile b/Makefile index e811b36fb09..73b50ca0179 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -14,9 +14,9 @@ # limitations under the License. # -REPO ?= vdaas +ORG ?= vdaas NAME = vald -GOPKG = github.com/$(REPO)/$(NAME) +GOPKG = github.com/$(ORG)/$(NAME) DATETIME = $(eval DATETIME := $(shell date -u +%Y/%m/%d_%H:%M:%S%z))$(DATETIME) TAG ?= latest BASE_IMAGE = $(NAME)-base @@ -34,6 +34,7 @@ CI_CONTAINER_IMAGE = $(NAME)-ci-container DEV_CONTAINER_IMAGE = $(NAME)-dev-container HELM_OPERATOR_IMAGE = $(NAME)-helm-operator LOADTEST_IMAGE = $(NAME)-loadtest +MAINTAINER = "$(ORG).org $(NAME) team <$(NAME)@$(ORG).org>" VERSION := $(eval VALD_VERSION := $(shell cat versions/VALD_VERSION))$(VALD_VERSION) @@ -211,6 +212,11 @@ SHELL = bash include Makefile.d/functions.mk +.PHONY: maintainer +## print maintainer +maintainer: + @echo $(MAINTAINER) + .PHONY: help ## print all available commands help: @@ -252,6 +258,7 @@ clean: .PHONY: license ## add license to files license: + MAINTAINER=$(MAINTAINER) \ go run hack/license/gen/main.go ./ .PHONY: init diff --git a/Makefile.d/bench.mk b/Makefile.d/bench.mk index a8f98cbf902..65422bc815b 100644 --- a/Makefile.d/bench.mk +++ b/Makefile.d/bench.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/Makefile.d/build.mk b/Makefile.d/build.mk index 0a76e4b9594..ea2a09dac67 100644 --- a/Makefile.d/build.mk +++ b/Makefile.d/build.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/Makefile.d/client.mk b/Makefile.d/client.mk index 6b3b8d5d9e8..d046261ad14 100644 --- a/Makefile.d/client.mk +++ b/Makefile.d/client.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/Makefile.d/docker.mk b/Makefile.d/docker.mk index b9a7b702c05..46ca7458c67 100644 --- a/Makefile.d/docker.mk +++ b/Makefile.d/docker.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -35,7 +35,7 @@ docker/platforms: .PHONY: docker/name/base docker/name/base: - @echo "$(REPO)/$(BASE_IMAGE)" + @echo "$(ORG)/$(BASE_IMAGE)" .PHONY: docker/build/base ## build base image @@ -43,12 +43,13 @@ docker/build/base: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/base/Dockerfile \ - -t $(REPO)/$(BASE_IMAGE):$(TAG) . \ + -t $(ORG)/$(BASE_IMAGE):$(TAG) . \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg GO_VERSION=$(GO_VERSION) .PHONY: docker/name/agent-ngt docker/name/agent-ngt: - @echo "$(REPO)/$(AGENT_IMAGE)" + @echo "$(ORG)/$(AGENT_IMAGE)" .PHONY: docker/build/agent-ngt ## build agent-ngt image @@ -56,15 +57,16 @@ docker/build/agent-ngt: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/agent/core/ngt/Dockerfile \ - -t $(REPO)/$(AGENT_IMAGE):$(TAG) . \ + -t $(ORG)/$(AGENT_IMAGE):$(TAG) . \ --build-arg GO_VERSION=$(GO_VERSION) \ --build-arg DISTROLESS_IMAGE=$(DISTROLESS_IMAGE) \ --build-arg DISTROLESS_IMAGE_TAG=$(DISTROLESS_IMAGE_TAG) \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg UPX_OPTIONS=$(UPX_OPTIONS) .PHONY: docker/name/agent-sidecar docker/name/agent-sidecar: - @echo "$(REPO)/$(AGENT_SIDECAR_IMAGE)" + @echo "$(ORG)/$(AGENT_SIDECAR_IMAGE)" .PHONY: docker/build/agent-sidecar ## build agent-sidecar image @@ -72,15 +74,16 @@ docker/build/agent-sidecar: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/agent/sidecar/Dockerfile \ - -t $(REPO)/$(AGENT_SIDECAR_IMAGE):$(TAG) . \ + -t $(ORG)/$(AGENT_SIDECAR_IMAGE):$(TAG) . \ --build-arg GO_VERSION=$(GO_VERSION) \ --build-arg DISTROLESS_IMAGE=$(DISTROLESS_IMAGE) \ --build-arg DISTROLESS_IMAGE_TAG=$(DISTROLESS_IMAGE_TAG) \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg UPX_OPTIONS=$(UPX_OPTIONS) .PHONY: docker/name/discoverer-k8s docker/name/discoverer-k8s: - @echo "$(REPO)/$(DISCOVERER_IMAGE)" + @echo "$(ORG)/$(DISCOVERER_IMAGE)" .PHONY: docker/build/discoverer-k8s ## build discoverer-k8s image @@ -88,15 +91,16 @@ docker/build/discoverer-k8s: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/discoverer/k8s/Dockerfile \ - -t $(REPO)/$(DISCOVERER_IMAGE):$(TAG) . \ + -t $(ORG)/$(DISCOVERER_IMAGE):$(TAG) . \ --build-arg GO_VERSION=$(GO_VERSION) \ --build-arg DISTROLESS_IMAGE=$(DISTROLESS_IMAGE) \ --build-arg DISTROLESS_IMAGE_TAG=$(DISTROLESS_IMAGE_TAG) \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg UPX_OPTIONS=$(UPX_OPTIONS) .PHONY: docker/name/gateway-vald docker/name/gateway-vald: - @echo "$(REPO)/$(GATEWAY_IMAGE)" + @echo "$(ORG)/$(GATEWAY_IMAGE)" .PHONY: docker/build/gateway-vald ## build gateway-vald image @@ -104,15 +108,16 @@ docker/build/gateway-vald: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/gateway/vald/Dockerfile \ - -t $(REPO)/$(GATEWAY_IMAGE):$(TAG) . \ + -t $(ORG)/$(GATEWAY_IMAGE):$(TAG) . \ --build-arg GO_VERSION=$(GO_VERSION) \ --build-arg DISTROLESS_IMAGE=$(DISTROLESS_IMAGE) \ --build-arg DISTROLESS_IMAGE_TAG=$(DISTROLESS_IMAGE_TAG) \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg UPX_OPTIONS=$(UPX_OPTIONS) .PHONY: docker/name/meta-redis docker/name/meta-redis: - @echo "$(REPO)/$(META_REDIS_IMAGE)" + @echo "$(ORG)/$(META_REDIS_IMAGE)" .PHONY: docker/build/meta-redis ## build meta-redis image @@ -120,15 +125,16 @@ docker/build/meta-redis: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/meta/redis/Dockerfile \ - -t $(REPO)/$(META_REDIS_IMAGE):$(TAG) . \ + -t $(ORG)/$(META_REDIS_IMAGE):$(TAG) . \ --build-arg GO_VERSION=$(GO_VERSION) \ --build-arg DISTROLESS_IMAGE=$(DISTROLESS_IMAGE) \ --build-arg DISTROLESS_IMAGE_TAG=$(DISTROLESS_IMAGE_TAG) \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg UPX_OPTIONS=$(UPX_OPTIONS) .PHONY: docker/name/meta-cassandra docker/name/meta-cassandra: - @echo "$(REPO)/$(META_CASSANDRA_IMAGE)" + @echo "$(ORG)/$(META_CASSANDRA_IMAGE)" .PHONY: docker/build/meta-cassandra ## build meta-cassandra image @@ -136,15 +142,16 @@ docker/build/meta-cassandra: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/meta/cassandra/Dockerfile \ - -t $(REPO)/$(META_CASSANDRA_IMAGE):$(TAG) . \ + -t $(ORG)/$(META_CASSANDRA_IMAGE):$(TAG) . \ --build-arg GO_VERSION=$(GO_VERSION) \ --build-arg DISTROLESS_IMAGE=$(DISTROLESS_IMAGE) \ --build-arg DISTROLESS_IMAGE_TAG=$(DISTROLESS_IMAGE_TAG) \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg UPX_OPTIONS=$(UPX_OPTIONS) .PHONY: docker/name/backup-manager-mysql docker/name/backup-manager-mysql: - @echo "$(REPO)/$(MANAGER_BACKUP_MYSQL_IMAGE)" + @echo "$(ORG)/$(MANAGER_BACKUP_MYSQL_IMAGE)" .PHONY: docker/build/backup-manager-mysql ## build backup-manager-mysql image @@ -152,15 +159,16 @@ docker/build/backup-manager-mysql: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/manager/backup/mysql/Dockerfile \ - -t $(REPO)/$(MANAGER_BACKUP_MYSQL_IMAGE):$(TAG) . \ + -t $(ORG)/$(MANAGER_BACKUP_MYSQL_IMAGE):$(TAG) . \ --build-arg GO_VERSION=$(GO_VERSION) \ --build-arg DISTROLESS_IMAGE=$(DISTROLESS_IMAGE) \ --build-arg DISTROLESS_IMAGE_TAG=$(DISTROLESS_IMAGE_TAG) \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg UPX_OPTIONS=$(UPX_OPTIONS) .PHONY: docker/name/backup-manager-cassandra docker/name/backup-manager-cassandra: - @echo "$(REPO)/$(MANAGER_BACKUP_CASSANDRA_IMAGE)" + @echo "$(ORG)/$(MANAGER_BACKUP_CASSANDRA_IMAGE)" .PHONY: docker/build/backup-manager-cassandra ## build backup-manager-cassandra image @@ -168,15 +176,16 @@ docker/build/backup-manager-cassandra: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/manager/backup/cassandra/Dockerfile \ - -t $(REPO)/$(MANAGER_BACKUP_CASSANDRA_IMAGE):$(TAG) . \ + -t $(ORG)/$(MANAGER_BACKUP_CASSANDRA_IMAGE):$(TAG) . \ --build-arg GO_VERSION=$(GO_VERSION) \ --build-arg DISTROLESS_IMAGE=$(DISTROLESS_IMAGE) \ --build-arg DISTROLESS_IMAGE_TAG=$(DISTROLESS_IMAGE_TAG) \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg UPX_OPTIONS=$(UPX_OPTIONS) .PHONY: docker/name/manager-compressor docker/name/manager-compressor: - @echo "$(REPO)/$(MANAGER_COMPRESSOR_IMAGE)" + @echo "$(ORG)/$(MANAGER_COMPRESSOR_IMAGE)" .PHONY: docker/build/manager-compressor ## build manager-compressor image @@ -184,15 +193,16 @@ docker/build/manager-compressor: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/manager/compressor/Dockerfile \ - -t $(REPO)/$(MANAGER_COMPRESSOR_IMAGE):$(TAG) . \ + -t $(ORG)/$(MANAGER_COMPRESSOR_IMAGE):$(TAG) . \ --build-arg GO_VERSION=$(GO_VERSION) \ --build-arg DISTROLESS_IMAGE=$(DISTROLESS_IMAGE) \ --build-arg DISTROLESS_IMAGE_TAG=$(DISTROLESS_IMAGE_TAG) \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg UPX_OPTIONS=$(UPX_OPTIONS) .PHONY: docker/name/manager-index docker/name/manager-index: - @echo "$(REPO)/$(MANAGER_INDEX_IMAGE)" + @echo "$(ORG)/$(MANAGER_INDEX_IMAGE)" .PHONY: docker/build/manager-index ## build manager-index image @@ -200,15 +210,16 @@ docker/build/manager-index: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/manager/index/Dockerfile \ - -t $(REPO)/$(MANAGER_INDEX_IMAGE):$(TAG) . \ + -t $(ORG)/$(MANAGER_INDEX_IMAGE):$(TAG) . \ --build-arg GO_VERSION=$(GO_VERSION) \ --build-arg DISTROLESS_IMAGE=$(DISTROLESS_IMAGE) \ --build-arg DISTROLESS_IMAGE_TAG=$(DISTROLESS_IMAGE_TAG) \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg UPX_OPTIONS=$(UPX_OPTIONS) .PHONY: docker/name/ci-container docker/name/ci-container: - @echo "$(REPO)/$(CI_CONTAINER_IMAGE)" + @echo "$(ORG)/$(CI_CONTAINER_IMAGE)" .PHONY: docker/build/ci-container ## build ci-container image @@ -216,12 +227,13 @@ docker/build/ci-container: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/ci/base/Dockerfile \ - -t $(REPO)/$(CI_CONTAINER_IMAGE):$(TAG) . \ + -t $(ORG)/$(CI_CONTAINER_IMAGE):$(TAG) . \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg GO_VERSION=$(GO_VERSION) .PHONY: docker/name/dev-container docker/name/dev-container: - @echo "$(REPO)/$(DEV_CONTAINER_IMAGE)" + @echo "$(ORG)/$(DEV_CONTAINER_IMAGE)" .PHONY: docker/build/dev-container ## build dev-container image @@ -229,12 +241,13 @@ docker/build/dev-container: docker/build/ci-container $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/dev/Dockerfile \ - -t $(REPO)/$(DEV_CONTAINER_IMAGE):$(TAG) . \ + -t $(ORG)/$(DEV_CONTAINER_IMAGE):$(TAG) . \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg BASE_TAG=$(TAG) .PHONY: docker/name/operator/helm docker/name/operator/helm: - @echo "$(REPO)/$(HELM_OPERATOR_IMAGE)" + @echo "$(ORG)/$(HELM_OPERATOR_IMAGE)" .PHONY: docker/build/operator/helm ## build helm-operator image @@ -242,12 +255,13 @@ docker/build/operator/helm: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/operator/helm/Dockerfile \ - -t $(REPO)/$(HELM_OPERATOR_IMAGE):$(TAG) . \ + -t $(ORG)/$(HELM_OPERATOR_IMAGE):$(TAG) . \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg OPERATOR_SDK_VERSION=$(OPERATOR_SDK_VERSION) .PHONY: docker/name/loadtest docker/name/loadtest: - @echo "$(REPO)/$(LOADTEST_IMAGE)" + @echo "$(ORG)/$(LOADTEST_IMAGE)" .PHONY: docker/build/loadtest ## build loadtest image @@ -255,5 +269,6 @@ docker/build/loadtest: $(DOCKER) build \ $(DOCKER_OPTS) \ -f dockers/tools/cli/loadtest/Dockerfile \ - -t $(REPO)/$(LOADTEST_IMAGE):$(TAG) . \ + -t $(ORG)/$(LOADTEST_IMAGE):$(TAG) . \ + --build-arg MAINTAINER=$(MAINTAINER) \ --build-arg GO_VERSION=$(GO_VERSION) diff --git a/Makefile.d/functions.mk b/Makefile.d/functions.mk index e82b69c956c..824272f872a 100644 --- a/Makefile.d/functions.mk +++ b/Makefile.d/functions.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/Makefile.d/git.mk b/Makefile.d/git.mk index 74b4ed31bb3..487fa30ede3 100644 --- a/Makefile.d/git.mk +++ b/Makefile.d/git.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/Makefile.d/helm.mk b/Makefile.d/helm.mk index 406d128381f..f501322dc5c 100644 --- a/Makefile.d/helm.mk +++ b/Makefile.d/helm.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/Makefile.d/k8s.mk b/Makefile.d/k8s.mk index 9b6f2f5062b..ca4a20adede 100644 --- a/Makefile.d/k8s.mk +++ b/Makefile.d/k8s.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/Makefile.d/kind.mk b/Makefile.d/kind.mk index 1d48796fcac..d844f3ddd5b 100644 --- a/Makefile.d/kind.mk +++ b/Makefile.d/kind.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/Makefile.d/ml.mk b/Makefile.d/ml.mk index 4c021267072..d10233f8612 100644 --- a/Makefile.d/ml.mk +++ b/Makefile.d/ml.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/Makefile.d/proto.mk b/Makefile.d/proto.mk index 28b0e627cfd..6183a1f91c5 100644 --- a/Makefile.d/proto.mk +++ b/Makefile.d/proto.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/Makefile.d/test.mk b/Makefile.d/test.mk index 7b4cca1c97e..1acac464ddd 100644 --- a/Makefile.d/test.mk +++ b/Makefile.d/test.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/apis/grpc/agent/core/agent.pb.go b/apis/grpc/agent/core/agent.pb.go index 1f69fbcaae4..f612744aa15 100644 --- a/apis/grpc/agent/core/agent.pb.go +++ b/apis/grpc/agent/core/agent.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/agent/sidecar/sidecar.pb.go b/apis/grpc/agent/sidecar/sidecar.pb.go index 08e363b7758..11027ee9a93 100644 --- a/apis/grpc/agent/sidecar/sidecar.pb.go +++ b/apis/grpc/agent/sidecar/sidecar.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/discoverer/discoverer.pb.go b/apis/grpc/discoverer/discoverer.pb.go index 0f373a8f1bd..878ca94cbc7 100644 --- a/apis/grpc/discoverer/discoverer.pb.go +++ b/apis/grpc/discoverer/discoverer.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/errors/errors.pb.go b/apis/grpc/errors/errors.pb.go index 9c780a00bbd..21ec66b2039 100644 --- a/apis/grpc/errors/errors.pb.go +++ b/apis/grpc/errors/errors.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/filter/egress/egress_filter.pb.go b/apis/grpc/filter/egress/egress_filter.pb.go index 6e923b7c346..6d5565838fb 100644 --- a/apis/grpc/filter/egress/egress_filter.pb.go +++ b/apis/grpc/filter/egress/egress_filter.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/filter/ingress/ingress_filter.pb.go b/apis/grpc/filter/ingress/ingress_filter.pb.go index 61734d018eb..35626bbb6ff 100644 --- a/apis/grpc/filter/ingress/ingress_filter.pb.go +++ b/apis/grpc/filter/ingress/ingress_filter.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/gateway/vald/vald.pb.go b/apis/grpc/gateway/vald/vald.pb.go index 58ea02233fa..50e1f299355 100644 --- a/apis/grpc/gateway/vald/vald.pb.go +++ b/apis/grpc/gateway/vald/vald.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/manager/backup/backup_manager.pb.go b/apis/grpc/manager/backup/backup_manager.pb.go index b6bb876020f..84734f34dba 100644 --- a/apis/grpc/manager/backup/backup_manager.pb.go +++ b/apis/grpc/manager/backup/backup_manager.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/manager/compressor/compressor.pb.go b/apis/grpc/manager/compressor/compressor.pb.go index dba61a4f563..64cd632d861 100644 --- a/apis/grpc/manager/compressor/compressor.pb.go +++ b/apis/grpc/manager/compressor/compressor.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/manager/index/index_manager.pb.go b/apis/grpc/manager/index/index_manager.pb.go index 5c7cc063eb6..f200d4464d3 100644 --- a/apis/grpc/manager/index/index_manager.pb.go +++ b/apis/grpc/manager/index/index_manager.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/manager/replication/agent/replication_manager.pb.go b/apis/grpc/manager/replication/agent/replication_manager.pb.go index af4356a222b..c814cfc0ff3 100644 --- a/apis/grpc/manager/replication/agent/replication_manager.pb.go +++ b/apis/grpc/manager/replication/agent/replication_manager.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/manager/replication/controller/replication_manager.pb.go b/apis/grpc/manager/replication/controller/replication_manager.pb.go index d984cef2195..ead7cce82ab 100644 --- a/apis/grpc/manager/replication/controller/replication_manager.pb.go +++ b/apis/grpc/manager/replication/controller/replication_manager.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/manager/traffic/traffic_manager.pb.go b/apis/grpc/manager/traffic/traffic_manager.pb.go index 4202bbd9401..2ccbea475e3 100644 --- a/apis/grpc/manager/traffic/traffic_manager.pb.go +++ b/apis/grpc/manager/traffic/traffic_manager.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/meta/meta.pb.go b/apis/grpc/meta/meta.pb.go index 2737f22a605..127a5290533 100644 --- a/apis/grpc/meta/meta.pb.go +++ b/apis/grpc/meta/meta.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/grpc/payload/payload.pb.go b/apis/grpc/payload/payload.pb.go index fb94a103e64..e17d59bbc4d 100644 --- a/apis/grpc/payload/payload.pb.go +++ b/apis/grpc/payload/payload.pb.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/agent/core/agent.proto b/apis/proto/agent/core/agent.proto index d5a834bc709..2bfa259553f 100644 --- a/apis/proto/agent/core/agent.proto +++ b/apis/proto/agent/core/agent.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/agent/sidecar/sidecar.proto b/apis/proto/agent/sidecar/sidecar.proto index 8f65d76a363..23cd5e69171 100644 --- a/apis/proto/agent/sidecar/sidecar.proto +++ b/apis/proto/agent/sidecar/sidecar.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/discoverer/discoverer.proto b/apis/proto/discoverer/discoverer.proto index b23fe925658..52147a97985 100644 --- a/apis/proto/discoverer/discoverer.proto +++ b/apis/proto/discoverer/discoverer.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/errors/errors.proto b/apis/proto/errors/errors.proto index 39ddfd686f7..cf6bce3309d 100644 --- a/apis/proto/errors/errors.proto +++ b/apis/proto/errors/errors.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/filter/egress/egress_filter.proto b/apis/proto/filter/egress/egress_filter.proto index c99d6ac05e8..f4377886351 100644 --- a/apis/proto/filter/egress/egress_filter.proto +++ b/apis/proto/filter/egress/egress_filter.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/filter/ingress/ingress_filter.proto b/apis/proto/filter/ingress/ingress_filter.proto index 8d93e7c48c9..27e85ca691c 100644 --- a/apis/proto/filter/ingress/ingress_filter.proto +++ b/apis/proto/filter/ingress/ingress_filter.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/gateway/vald/vald.proto b/apis/proto/gateway/vald/vald.proto index dbf926bd671..0375973f4f0 100644 --- a/apis/proto/gateway/vald/vald.proto +++ b/apis/proto/gateway/vald/vald.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/manager/backup/backup_manager.proto b/apis/proto/manager/backup/backup_manager.proto index bec4c69d53b..43118350b52 100644 --- a/apis/proto/manager/backup/backup_manager.proto +++ b/apis/proto/manager/backup/backup_manager.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/manager/compressor/compressor.proto b/apis/proto/manager/compressor/compressor.proto index 3b2fe595fd0..8d84062c2eb 100644 --- a/apis/proto/manager/compressor/compressor.proto +++ b/apis/proto/manager/compressor/compressor.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/manager/index/index_manager.proto b/apis/proto/manager/index/index_manager.proto index faee7636011..aaa43bea50e 100644 --- a/apis/proto/manager/index/index_manager.proto +++ b/apis/proto/manager/index/index_manager.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/manager/replication/agent/replication_manager.proto b/apis/proto/manager/replication/agent/replication_manager.proto index ec8afc7a1f5..56d9d22d175 100644 --- a/apis/proto/manager/replication/agent/replication_manager.proto +++ b/apis/proto/manager/replication/agent/replication_manager.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/manager/replication/controller/replication_manager.proto b/apis/proto/manager/replication/controller/replication_manager.proto index c3c7a8443e2..f14a69226ee 100644 --- a/apis/proto/manager/replication/controller/replication_manager.proto +++ b/apis/proto/manager/replication/controller/replication_manager.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/manager/traffic/traffic_manager.proto b/apis/proto/manager/traffic/traffic_manager.proto index 805b3c90f80..4b6e59ba90a 100644 --- a/apis/proto/manager/traffic/traffic_manager.proto +++ b/apis/proto/manager/traffic/traffic_manager.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/meta/meta.proto b/apis/proto/meta/meta.proto index ac958e0c7b4..b8fc9942544 100644 --- a/apis/proto/meta/meta.proto +++ b/apis/proto/meta/meta.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/apis/proto/payload/payload.proto b/apis/proto/payload/payload.proto index 37838684cbb..8cb59e5587b 100644 --- a/apis/proto/payload/payload.proto +++ b/apis/proto/payload/payload.proto @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/charts/vald-helm-operator/Chart.yaml b/charts/vald-helm-operator/Chart.yaml index 79a91352da2..14b0d5ba95f 100644 --- a/charts/vald-helm-operator/Chart.yaml +++ b/charts/vald-helm-operator/Chart.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald-helm-operator/crds/valdhelmoperatorrelease.yaml b/charts/vald-helm-operator/crds/valdhelmoperatorrelease.yaml index 8d4e57a7c47..fad871faf54 100644 --- a/charts/vald-helm-operator/crds/valdhelmoperatorrelease.yaml +++ b/charts/vald-helm-operator/crds/valdhelmoperatorrelease.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald-helm-operator/crds/valdrelease.yaml b/charts/vald-helm-operator/crds/valdrelease.yaml index 4b925afe347..c6e8aff0a6f 100644 --- a/charts/vald-helm-operator/crds/valdrelease.yaml +++ b/charts/vald-helm-operator/crds/valdrelease.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald-helm-operator/templates/clusterrole.yaml b/charts/vald-helm-operator/templates/clusterrole.yaml index 4f21b492dca..a482a80d588 100644 --- a/charts/vald-helm-operator/templates/clusterrole.yaml +++ b/charts/vald-helm-operator/templates/clusterrole.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald-helm-operator/templates/clusterrolebinding.yaml b/charts/vald-helm-operator/templates/clusterrolebinding.yaml index 93dd4396eb9..c89a7e4a8f4 100644 --- a/charts/vald-helm-operator/templates/clusterrolebinding.yaml +++ b/charts/vald-helm-operator/templates/clusterrolebinding.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald-helm-operator/templates/operator.yaml b/charts/vald-helm-operator/templates/operator.yaml index 6f9adac75c7..e9d7e0d3bd4 100644 --- a/charts/vald-helm-operator/templates/operator.yaml +++ b/charts/vald-helm-operator/templates/operator.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald-helm-operator/templates/serviceaccount.yaml b/charts/vald-helm-operator/templates/serviceaccount.yaml index 4038ada5a7b..01e1abbc414 100644 --- a/charts/vald-helm-operator/templates/serviceaccount.yaml +++ b/charts/vald-helm-operator/templates/serviceaccount.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald-helm-operator/templates/svc.yaml b/charts/vald-helm-operator/templates/svc.yaml index b48f31e52a0..dc40eb13eb4 100644 --- a/charts/vald-helm-operator/templates/svc.yaml +++ b/charts/vald-helm-operator/templates/svc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald-helm-operator/values.yaml b/charts/vald-helm-operator/values.yaml index 25b70cc2dcd..cfa19abb644 100644 --- a/charts/vald-helm-operator/values.yaml +++ b/charts/vald-helm-operator/values.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/Chart.yaml b/charts/vald/Chart.yaml index 88d04cfbf7f..77dc7914499 100644 --- a/charts/vald/Chart.yaml +++ b/charts/vald/Chart.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/agent/configmap.yaml b/charts/vald/templates/agent/configmap.yaml index ff8bf261672..59df5da61cd 100644 --- a/charts/vald/templates/agent/configmap.yaml +++ b/charts/vald/templates/agent/configmap.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/agent/daemonset.yaml b/charts/vald/templates/agent/daemonset.yaml index f2e9961c980..a27268cf281 100644 --- a/charts/vald/templates/agent/daemonset.yaml +++ b/charts/vald/templates/agent/daemonset.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/agent/deployment.yaml b/charts/vald/templates/agent/deployment.yaml index 0b0ddf2c432..8502b32dbd5 100644 --- a/charts/vald/templates/agent/deployment.yaml +++ b/charts/vald/templates/agent/deployment.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/agent/hpa.yaml b/charts/vald/templates/agent/hpa.yaml index 914ee805df3..f557bf15653 100644 --- a/charts/vald/templates/agent/hpa.yaml +++ b/charts/vald/templates/agent/hpa.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/agent/pdb.yaml b/charts/vald/templates/agent/pdb.yaml index b25362e5ff0..897adae35e9 100644 --- a/charts/vald/templates/agent/pdb.yaml +++ b/charts/vald/templates/agent/pdb.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/agent/priorityclass.yaml b/charts/vald/templates/agent/priorityclass.yaml index 7b3fd3b1aca..716827182c6 100644 --- a/charts/vald/templates/agent/priorityclass.yaml +++ b/charts/vald/templates/agent/priorityclass.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/agent/sidecar-configmap.yaml b/charts/vald/templates/agent/sidecar-configmap.yaml index 9faa03e6fba..d478d61b451 100644 --- a/charts/vald/templates/agent/sidecar-configmap.yaml +++ b/charts/vald/templates/agent/sidecar-configmap.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/agent/sidecar-svc.yaml b/charts/vald/templates/agent/sidecar-svc.yaml index ea1cf41db40..7c1530112a5 100644 --- a/charts/vald/templates/agent/sidecar-svc.yaml +++ b/charts/vald/templates/agent/sidecar-svc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/agent/statefulset.yaml b/charts/vald/templates/agent/statefulset.yaml index 25406f8169d..bbbf480509b 100644 --- a/charts/vald/templates/agent/statefulset.yaml +++ b/charts/vald/templates/agent/statefulset.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/agent/svc.yaml b/charts/vald/templates/agent/svc.yaml index 39447eca8d5..b4f104cac9f 100644 --- a/charts/vald/templates/agent/svc.yaml +++ b/charts/vald/templates/agent/svc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/discoverer/clusterrole.yaml b/charts/vald/templates/discoverer/clusterrole.yaml index 7d27a29f58a..e1106fe947e 100644 --- a/charts/vald/templates/discoverer/clusterrole.yaml +++ b/charts/vald/templates/discoverer/clusterrole.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/discoverer/clusterrolebinding.yaml b/charts/vald/templates/discoverer/clusterrolebinding.yaml index 55ddb1795d7..af5d84d0480 100644 --- a/charts/vald/templates/discoverer/clusterrolebinding.yaml +++ b/charts/vald/templates/discoverer/clusterrolebinding.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/discoverer/configmap.yaml b/charts/vald/templates/discoverer/configmap.yaml index 870ed89b051..597169ab3c1 100644 --- a/charts/vald/templates/discoverer/configmap.yaml +++ b/charts/vald/templates/discoverer/configmap.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/discoverer/daemonset.yaml b/charts/vald/templates/discoverer/daemonset.yaml index 0959662ddeb..077be6c08e9 100644 --- a/charts/vald/templates/discoverer/daemonset.yaml +++ b/charts/vald/templates/discoverer/daemonset.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/discoverer/deployment.yaml b/charts/vald/templates/discoverer/deployment.yaml index 0a6151e3cc3..c2bca89c363 100644 --- a/charts/vald/templates/discoverer/deployment.yaml +++ b/charts/vald/templates/discoverer/deployment.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/discoverer/hpa.yaml b/charts/vald/templates/discoverer/hpa.yaml index e8bbed5ffe3..cd28c60834e 100644 --- a/charts/vald/templates/discoverer/hpa.yaml +++ b/charts/vald/templates/discoverer/hpa.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/discoverer/pdb.yaml b/charts/vald/templates/discoverer/pdb.yaml index 6eda9a95bb8..fcfade87dc5 100644 --- a/charts/vald/templates/discoverer/pdb.yaml +++ b/charts/vald/templates/discoverer/pdb.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/discoverer/priorityclass.yaml b/charts/vald/templates/discoverer/priorityclass.yaml index 6304a6766ee..969deea1829 100644 --- a/charts/vald/templates/discoverer/priorityclass.yaml +++ b/charts/vald/templates/discoverer/priorityclass.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/discoverer/serviceaccount.yaml b/charts/vald/templates/discoverer/serviceaccount.yaml index b60e4d81bed..e9fadbe834e 100644 --- a/charts/vald/templates/discoverer/serviceaccount.yaml +++ b/charts/vald/templates/discoverer/serviceaccount.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/discoverer/svc.yaml b/charts/vald/templates/discoverer/svc.yaml index 866ef363521..3ca00758d16 100644 --- a/charts/vald/templates/discoverer/svc.yaml +++ b/charts/vald/templates/discoverer/svc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/gateway/vald/configmap.yaml b/charts/vald/templates/gateway/vald/configmap.yaml index 74a74b27409..33a7c38ee71 100644 --- a/charts/vald/templates/gateway/vald/configmap.yaml +++ b/charts/vald/templates/gateway/vald/configmap.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/gateway/vald/daemonset.yaml b/charts/vald/templates/gateway/vald/daemonset.yaml index a399303d4ec..8616e2ffb34 100644 --- a/charts/vald/templates/gateway/vald/daemonset.yaml +++ b/charts/vald/templates/gateway/vald/daemonset.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/gateway/vald/deployment.yaml b/charts/vald/templates/gateway/vald/deployment.yaml index 295c409b06d..7508243b6f0 100644 --- a/charts/vald/templates/gateway/vald/deployment.yaml +++ b/charts/vald/templates/gateway/vald/deployment.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/gateway/vald/hpa.yaml b/charts/vald/templates/gateway/vald/hpa.yaml index 144538a892a..ffa0ca3ca7e 100644 --- a/charts/vald/templates/gateway/vald/hpa.yaml +++ b/charts/vald/templates/gateway/vald/hpa.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/gateway/vald/ing.yaml b/charts/vald/templates/gateway/vald/ing.yaml index cb113a496f4..df671018b27 100644 --- a/charts/vald/templates/gateway/vald/ing.yaml +++ b/charts/vald/templates/gateway/vald/ing.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/gateway/vald/pdb.yaml b/charts/vald/templates/gateway/vald/pdb.yaml index 7fd1c9e2232..7edaf898eb0 100644 --- a/charts/vald/templates/gateway/vald/pdb.yaml +++ b/charts/vald/templates/gateway/vald/pdb.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/gateway/vald/priorityclass.yaml b/charts/vald/templates/gateway/vald/priorityclass.yaml index d2b9f044a70..89a2cfdd1ac 100644 --- a/charts/vald/templates/gateway/vald/priorityclass.yaml +++ b/charts/vald/templates/gateway/vald/priorityclass.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/gateway/vald/svc.yaml b/charts/vald/templates/gateway/vald/svc.yaml index 8cb9cbc02bc..b76988709e4 100644 --- a/charts/vald/templates/gateway/vald/svc.yaml +++ b/charts/vald/templates/gateway/vald/svc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/jobs/db/initialize/cassandra/configmap.yaml b/charts/vald/templates/jobs/db/initialize/cassandra/configmap.yaml index 7dc3e7c5780..3d38d9ce35e 100644 --- a/charts/vald/templates/jobs/db/initialize/cassandra/configmap.yaml +++ b/charts/vald/templates/jobs/db/initialize/cassandra/configmap.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/jobs/db/initialize/cassandra/job.yaml b/charts/vald/templates/jobs/db/initialize/cassandra/job.yaml index 85a1a28d287..3520b328394 100644 --- a/charts/vald/templates/jobs/db/initialize/cassandra/job.yaml +++ b/charts/vald/templates/jobs/db/initialize/cassandra/job.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/jobs/db/initialize/cassandra/secret.yaml b/charts/vald/templates/jobs/db/initialize/cassandra/secret.yaml index 8c53bcbadcc..4b8b0c763c5 100644 --- a/charts/vald/templates/jobs/db/initialize/cassandra/secret.yaml +++ b/charts/vald/templates/jobs/db/initialize/cassandra/secret.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/jobs/db/initialize/mysql/configmap.yaml b/charts/vald/templates/jobs/db/initialize/mysql/configmap.yaml index 604c7e3456a..8799b463219 100644 --- a/charts/vald/templates/jobs/db/initialize/mysql/configmap.yaml +++ b/charts/vald/templates/jobs/db/initialize/mysql/configmap.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/jobs/db/initialize/mysql/job.yaml b/charts/vald/templates/jobs/db/initialize/mysql/job.yaml index b1bae3a5c07..7f269ce4827 100644 --- a/charts/vald/templates/jobs/db/initialize/mysql/job.yaml +++ b/charts/vald/templates/jobs/db/initialize/mysql/job.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/jobs/db/initialize/mysql/secret.yaml b/charts/vald/templates/jobs/db/initialize/mysql/secret.yaml index ec829d96525..dca91bb4fad 100644 --- a/charts/vald/templates/jobs/db/initialize/mysql/secret.yaml +++ b/charts/vald/templates/jobs/db/initialize/mysql/secret.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/jobs/db/initialize/redis/job.yaml b/charts/vald/templates/jobs/db/initialize/redis/job.yaml index 11ccb90845d..d757a3025e7 100644 --- a/charts/vald/templates/jobs/db/initialize/redis/job.yaml +++ b/charts/vald/templates/jobs/db/initialize/redis/job.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/jobs/db/initialize/redis/secret.yaml b/charts/vald/templates/jobs/db/initialize/redis/secret.yaml index 1196437753f..d499e124d48 100644 --- a/charts/vald/templates/jobs/db/initialize/redis/secret.yaml +++ b/charts/vald/templates/jobs/db/initialize/redis/secret.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/backup/configmap.yaml b/charts/vald/templates/manager/backup/configmap.yaml index 7499f7efed0..6597bda3422 100644 --- a/charts/vald/templates/manager/backup/configmap.yaml +++ b/charts/vald/templates/manager/backup/configmap.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/backup/daemonset.yaml b/charts/vald/templates/manager/backup/daemonset.yaml index 659853f17b9..0c810ff436d 100644 --- a/charts/vald/templates/manager/backup/daemonset.yaml +++ b/charts/vald/templates/manager/backup/daemonset.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/backup/deployment.yaml b/charts/vald/templates/manager/backup/deployment.yaml index d79250dc148..d9cd8d14a9c 100644 --- a/charts/vald/templates/manager/backup/deployment.yaml +++ b/charts/vald/templates/manager/backup/deployment.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/backup/hpa.yaml b/charts/vald/templates/manager/backup/hpa.yaml index 25d5ec7cd92..6744212a12f 100644 --- a/charts/vald/templates/manager/backup/hpa.yaml +++ b/charts/vald/templates/manager/backup/hpa.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/backup/pdb.yaml b/charts/vald/templates/manager/backup/pdb.yaml index 2bbea1a7eef..9d64fa23617 100644 --- a/charts/vald/templates/manager/backup/pdb.yaml +++ b/charts/vald/templates/manager/backup/pdb.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/backup/priorityclass.yaml b/charts/vald/templates/manager/backup/priorityclass.yaml index d2fd8a191d7..89ddc8ff191 100644 --- a/charts/vald/templates/manager/backup/priorityclass.yaml +++ b/charts/vald/templates/manager/backup/priorityclass.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/backup/svc.yaml b/charts/vald/templates/manager/backup/svc.yaml index 5538452dfb7..381528c864c 100644 --- a/charts/vald/templates/manager/backup/svc.yaml +++ b/charts/vald/templates/manager/backup/svc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/compressor/configmap.yaml b/charts/vald/templates/manager/compressor/configmap.yaml index 2114952dccf..c1121792e5d 100644 --- a/charts/vald/templates/manager/compressor/configmap.yaml +++ b/charts/vald/templates/manager/compressor/configmap.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/compressor/daemonset.yaml b/charts/vald/templates/manager/compressor/daemonset.yaml index e212e82226a..14ea1c36fb5 100644 --- a/charts/vald/templates/manager/compressor/daemonset.yaml +++ b/charts/vald/templates/manager/compressor/daemonset.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/compressor/deployment.yaml b/charts/vald/templates/manager/compressor/deployment.yaml index 13e1c9dbcdd..676c0ec7d6f 100644 --- a/charts/vald/templates/manager/compressor/deployment.yaml +++ b/charts/vald/templates/manager/compressor/deployment.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/compressor/hpa.yaml b/charts/vald/templates/manager/compressor/hpa.yaml index 8e13be05b3c..5eff8d5054a 100644 --- a/charts/vald/templates/manager/compressor/hpa.yaml +++ b/charts/vald/templates/manager/compressor/hpa.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/compressor/pdb.yaml b/charts/vald/templates/manager/compressor/pdb.yaml index 0eaeb65c3fe..4465b8ba3ac 100644 --- a/charts/vald/templates/manager/compressor/pdb.yaml +++ b/charts/vald/templates/manager/compressor/pdb.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/compressor/priorityclass.yaml b/charts/vald/templates/manager/compressor/priorityclass.yaml index bb26afa5e21..83c3e56f8b5 100644 --- a/charts/vald/templates/manager/compressor/priorityclass.yaml +++ b/charts/vald/templates/manager/compressor/priorityclass.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/compressor/svc.yaml b/charts/vald/templates/manager/compressor/svc.yaml index 369514b824c..bbfeef1dd7f 100644 --- a/charts/vald/templates/manager/compressor/svc.yaml +++ b/charts/vald/templates/manager/compressor/svc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/index/configmap.yaml b/charts/vald/templates/manager/index/configmap.yaml index 8ab65dbaea8..e4c8441bcae 100644 --- a/charts/vald/templates/manager/index/configmap.yaml +++ b/charts/vald/templates/manager/index/configmap.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/index/daemonset.yaml b/charts/vald/templates/manager/index/daemonset.yaml index e94111065f5..ce7f75ffbf6 100644 --- a/charts/vald/templates/manager/index/daemonset.yaml +++ b/charts/vald/templates/manager/index/daemonset.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/index/deployment.yaml b/charts/vald/templates/manager/index/deployment.yaml index 5b60b318ccc..f7b31a35726 100644 --- a/charts/vald/templates/manager/index/deployment.yaml +++ b/charts/vald/templates/manager/index/deployment.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/index/pdb.yaml b/charts/vald/templates/manager/index/pdb.yaml index 93636bf0a59..9f257fa8b76 100644 --- a/charts/vald/templates/manager/index/pdb.yaml +++ b/charts/vald/templates/manager/index/pdb.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/index/priorityclass.yaml b/charts/vald/templates/manager/index/priorityclass.yaml index bbac922642a..d1abbf3d3cd 100644 --- a/charts/vald/templates/manager/index/priorityclass.yaml +++ b/charts/vald/templates/manager/index/priorityclass.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/manager/index/svc.yaml b/charts/vald/templates/manager/index/svc.yaml index 63294e83e17..ffa6e8af245 100644 --- a/charts/vald/templates/manager/index/svc.yaml +++ b/charts/vald/templates/manager/index/svc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/meta/configmap.yaml b/charts/vald/templates/meta/configmap.yaml index 19ea6623bb8..952f2b2d32c 100644 --- a/charts/vald/templates/meta/configmap.yaml +++ b/charts/vald/templates/meta/configmap.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/meta/daemonset.yaml b/charts/vald/templates/meta/daemonset.yaml index 9a7be9fac08..717aa58f267 100644 --- a/charts/vald/templates/meta/daemonset.yaml +++ b/charts/vald/templates/meta/daemonset.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/meta/deployment.yaml b/charts/vald/templates/meta/deployment.yaml index b33ed9f2af8..be1971ff319 100644 --- a/charts/vald/templates/meta/deployment.yaml +++ b/charts/vald/templates/meta/deployment.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/meta/hpa.yaml b/charts/vald/templates/meta/hpa.yaml index a22f0aea86e..1f4ba5c77cd 100644 --- a/charts/vald/templates/meta/hpa.yaml +++ b/charts/vald/templates/meta/hpa.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/meta/pdb.yaml b/charts/vald/templates/meta/pdb.yaml index 023aaff3b4a..3b8c7ae9f87 100644 --- a/charts/vald/templates/meta/pdb.yaml +++ b/charts/vald/templates/meta/pdb.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/meta/priorityclass.yaml b/charts/vald/templates/meta/priorityclass.yaml index b4975fc9b05..def66b127f5 100644 --- a/charts/vald/templates/meta/priorityclass.yaml +++ b/charts/vald/templates/meta/priorityclass.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/templates/meta/svc.yaml b/charts/vald/templates/meta/svc.yaml index 6441434e43e..6c430828ca4 100644 --- a/charts/vald/templates/meta/svc.yaml +++ b/charts/vald/templates/meta/svc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/values-agent-ngt-standalone.yaml b/charts/vald/values-agent-ngt-standalone.yaml index 074bc3ba332..bf43eba9eab 100644 --- a/charts/vald/values-agent-ngt-standalone.yaml +++ b/charts/vald/values-agent-ngt-standalone.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/values-cassandra.yaml b/charts/vald/values-cassandra.yaml index 66c2cea3083..d1b4dd51480 100644 --- a/charts/vald/values-cassandra.yaml +++ b/charts/vald/values-cassandra.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/values-ci.yaml b/charts/vald/values-ci.yaml index da333affe06..ee535dbd2d7 100644 --- a/charts/vald/values-ci.yaml +++ b/charts/vald/values-ci.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/values-dev.yaml b/charts/vald/values-dev.yaml index 1c9e98a5df6..2addd31c5be 100644 --- a/charts/vald/values-dev.yaml +++ b/charts/vald/values-dev.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/values-scylla.yaml b/charts/vald/values-scylla.yaml index 90021606f37..dd047b59bb8 100644 --- a/charts/vald/values-scylla.yaml +++ b/charts/vald/values-scylla.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/charts/vald/values.yaml b/charts/vald/values.yaml index 33d67ad9228..e3ad210f5e1 100644 --- a/charts/vald/values.yaml +++ b/charts/vald/values.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/cmd/agent/core/ngt/main.go b/cmd/agent/core/ngt/main.go index 9081670efca..5d22df61f03 100644 --- a/cmd/agent/core/ngt/main.go +++ b/cmd/agent/core/ngt/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/agent/core/ngt/main_test.go b/cmd/agent/core/ngt/main_test.go index 77175e62955..d1ed2280469 100644 --- a/cmd/agent/core/ngt/main_test.go +++ b/cmd/agent/core/ngt/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/agent/core/ngt/sample.yaml b/cmd/agent/core/ngt/sample.yaml index 842b83b1166..9b4389d90bb 100644 --- a/cmd/agent/core/ngt/sample.yaml +++ b/cmd/agent/core/ngt/sample.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/cmd/agent/sidecar/main.go b/cmd/agent/sidecar/main.go index 69598ab141d..1515630ff35 100644 --- a/cmd/agent/sidecar/main.go +++ b/cmd/agent/sidecar/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/agent/sidecar/main_test.go b/cmd/agent/sidecar/main_test.go index 77175e62955..d1ed2280469 100644 --- a/cmd/agent/sidecar/main_test.go +++ b/cmd/agent/sidecar/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/discoverer/k8s/main.go b/cmd/discoverer/k8s/main.go index 404c9c4e3c8..342b4b09156 100644 --- a/cmd/discoverer/k8s/main.go +++ b/cmd/discoverer/k8s/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/discoverer/k8s/main_test.go b/cmd/discoverer/k8s/main_test.go index 77175e62955..d1ed2280469 100644 --- a/cmd/discoverer/k8s/main_test.go +++ b/cmd/discoverer/k8s/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/discoverer/k8s/sample.yaml b/cmd/discoverer/k8s/sample.yaml index 4a520a462b8..15aef42ebf1 100644 --- a/cmd/discoverer/k8s/sample.yaml +++ b/cmd/discoverer/k8s/sample.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/cmd/gateway/vald/main.go b/cmd/gateway/vald/main.go index 3e9cb874290..16a30fdb885 100644 --- a/cmd/gateway/vald/main.go +++ b/cmd/gateway/vald/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/gateway/vald/main_test.go b/cmd/gateway/vald/main_test.go index 77175e62955..d1ed2280469 100644 --- a/cmd/gateway/vald/main_test.go +++ b/cmd/gateway/vald/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/gateway/vald/sample.yaml b/cmd/gateway/vald/sample.yaml index 703c6976ec8..1f71bd9e75a 100644 --- a/cmd/gateway/vald/sample.yaml +++ b/cmd/gateway/vald/sample.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/cmd/manager/backup/cassandra/main.go b/cmd/manager/backup/cassandra/main.go index b2a9504d353..8348cd1309b 100644 --- a/cmd/manager/backup/cassandra/main.go +++ b/cmd/manager/backup/cassandra/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/manager/backup/cassandra/main_test.go b/cmd/manager/backup/cassandra/main_test.go index 77175e62955..d1ed2280469 100644 --- a/cmd/manager/backup/cassandra/main_test.go +++ b/cmd/manager/backup/cassandra/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/manager/backup/mysql/main.go b/cmd/manager/backup/mysql/main.go index 36d8c122360..33b85990b5e 100644 --- a/cmd/manager/backup/mysql/main.go +++ b/cmd/manager/backup/mysql/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/manager/backup/mysql/main_test.go b/cmd/manager/backup/mysql/main_test.go index 77175e62955..d1ed2280469 100644 --- a/cmd/manager/backup/mysql/main_test.go +++ b/cmd/manager/backup/mysql/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/manager/compressor/main.go b/cmd/manager/compressor/main.go index 44a6adb0387..d475b2fcd58 100644 --- a/cmd/manager/compressor/main.go +++ b/cmd/manager/compressor/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/manager/compressor/main_test.go b/cmd/manager/compressor/main_test.go index 77175e62955..d1ed2280469 100644 --- a/cmd/manager/compressor/main_test.go +++ b/cmd/manager/compressor/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/manager/index/main.go b/cmd/manager/index/main.go index 356115f574a..93af713afc1 100644 --- a/cmd/manager/index/main.go +++ b/cmd/manager/index/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/manager/index/main_test.go b/cmd/manager/index/main_test.go index 77175e62955..d1ed2280469 100644 --- a/cmd/manager/index/main_test.go +++ b/cmd/manager/index/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/manager/replication/agent/main.go b/cmd/manager/replication/agent/main.go index c7a137e2821..95fff33be1f 100644 --- a/cmd/manager/replication/agent/main.go +++ b/cmd/manager/replication/agent/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/manager/replication/agent/main_test.go b/cmd/manager/replication/agent/main_test.go index 77175e62955..d1ed2280469 100644 --- a/cmd/manager/replication/agent/main_test.go +++ b/cmd/manager/replication/agent/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/manager/replication/controller/main.go b/cmd/manager/replication/controller/main.go index add1336e8e4..6871ee216a7 100644 --- a/cmd/manager/replication/controller/main.go +++ b/cmd/manager/replication/controller/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/manager/replication/controller/main_test.go b/cmd/manager/replication/controller/main_test.go index 77175e62955..d1ed2280469 100644 --- a/cmd/manager/replication/controller/main_test.go +++ b/cmd/manager/replication/controller/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/meta/cassandra/main.go b/cmd/meta/cassandra/main.go index ecb6667d81c..183a27dc5bb 100644 --- a/cmd/meta/cassandra/main.go +++ b/cmd/meta/cassandra/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/meta/cassandra/main_test.go b/cmd/meta/cassandra/main_test.go index 77175e62955..d1ed2280469 100644 --- a/cmd/meta/cassandra/main_test.go +++ b/cmd/meta/cassandra/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/meta/cassandra/sample.yaml b/cmd/meta/cassandra/sample.yaml index f58cb6d3601..2f720132ff6 100644 --- a/cmd/meta/cassandra/sample.yaml +++ b/cmd/meta/cassandra/sample.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/cmd/meta/redis/main.go b/cmd/meta/redis/main.go index 31d746f3a27..713f06ca2b0 100644 --- a/cmd/meta/redis/main.go +++ b/cmd/meta/redis/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/meta/redis/main_test.go b/cmd/meta/redis/main_test.go index 77175e62955..d1ed2280469 100644 --- a/cmd/meta/redis/main_test.go +++ b/cmd/meta/redis/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/meta/redis/sample.yaml b/cmd/meta/redis/sample.yaml index d90c8670605..bdd90cb602c 100644 --- a/cmd/meta/redis/sample.yaml +++ b/cmd/meta/redis/sample.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/cmd/tools/cli/loadtest/main.go b/cmd/tools/cli/loadtest/main.go index 9d884c19f1f..5b3a33c2767 100644 --- a/cmd/tools/cli/loadtest/main.go +++ b/cmd/tools/cli/loadtest/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/tools/cli/loadtest/main_test.go b/cmd/tools/cli/loadtest/main_test.go index d8407687c35..595686aeeb5 100644 --- a/cmd/tools/cli/loadtest/main_test.go +++ b/cmd/tools/cli/loadtest/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/tools/cli/loadtest/sample.yaml b/cmd/tools/cli/loadtest/sample.yaml index 39178f9d19a..9da1b7cdd65 100644 --- a/cmd/tools/cli/loadtest/sample.yaml +++ b/cmd/tools/cli/loadtest/sample.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/cmd/tools/cli/vdctl/main.go b/cmd/tools/cli/vdctl/main.go index 882e3398dca..da617b6bb60 100644 --- a/cmd/tools/cli/vdctl/main.go +++ b/cmd/tools/cli/vdctl/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/tools/cli/vdctl/main_test.go b/cmd/tools/cli/vdctl/main_test.go index 30710c21ffe..9fdff7f711b 100644 --- a/cmd/tools/cli/vdctl/main_test.go +++ b/cmd/tools/cli/vdctl/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/dockers/agent/core/ngt/Dockerfile b/dockers/agent/core/ngt/Dockerfile index 4130308efd0..8476ad7678e 100644 --- a/dockers/agent/core/ngt/Dockerfile +++ b/dockers/agent/core/ngt/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,6 +19,7 @@ ARG BASE_TAG=latest ARG DISTROLESS_IMAGE=gcr.io/distroless/static ARG DISTROLESS_IMAGE_TAG=nonroot ARG UPX_OPTIONS=-9 +ARG MAINTAINER="vdaas.org vald team FROM golang:${GO_VERSION} AS golang @@ -67,7 +68,7 @@ WORKDIR ${GOPATH}/src/github.com/${ORG}/${REPO}/cmd/${PKG} RUN cp sample.yaml /tmp/config.yaml FROM ${DISTROLESS_IMAGE}:${DISTROLESS_IMAGE_TAG} -LABEL maintainer "Vald team " +LABEL maintainer "${MAINTAINER}" ENV APP_NAME ngt diff --git a/dockers/agent/sidecar/Dockerfile b/dockers/agent/sidecar/Dockerfile index 983689bf7bb..3fc421a545f 100644 --- a/dockers/agent/sidecar/Dockerfile +++ b/dockers/agent/sidecar/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,6 +19,7 @@ ARG BASE_TAG=latest ARG DISTROLESS_IMAGE=gcr.io/distroless/static ARG DISTROLESS_IMAGE_TAG=nonroot ARG UPX_OPTIONS=-9 +ARG MAINTAINER="vdaas.org vald team FROM golang:${GO_VERSION} AS golang @@ -62,7 +63,7 @@ RUN make REPO=${ORG} NAME=${REPO} cmd/${PKG}/${APP_NAME} \ && upx ${UPX_OPTIONS} -o "/usr/bin/${APP_NAME}" "cmd/${PKG}/${APP_NAME}" FROM ${DISTROLESS_IMAGE}:${DISTROLESS_IMAGE_TAG} -LABEL maintainer "Vald team " +LABEL maintainer "${MAINTAINER}" ENV APP_NAME sidecar diff --git a/dockers/base/Dockerfile b/dockers/base/Dockerfile index 93b9185b5f6..3d27229a91f 100644 --- a/dockers/base/Dockerfile +++ b/dockers/base/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/dockers/ci/base/Dockerfile b/dockers/ci/base/Dockerfile index 12d2d56d463..7c10f25aaed 100644 --- a/dockers/ci/base/Dockerfile +++ b/dockers/ci/base/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/dockers/dev/Dockerfile b/dockers/dev/Dockerfile index 4db1bb598d3..f6abae1848e 100644 --- a/dockers/dev/Dockerfile +++ b/dockers/dev/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -15,10 +15,12 @@ # ARG BASE_TAG=latest +ARG MAINTAINER="vdaas.org vald team FROM vdaas/vald-ci-container:${BASE_TAG} AS vald FROM mcr.microsoft.com/vscode/devcontainers/go:1 AS base +LABEL maintainer "${MAINTAINER}" RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ diff --git a/dockers/discoverer/k8s/Dockerfile b/dockers/discoverer/k8s/Dockerfile index 6aaed418579..2280dfb376a 100644 --- a/dockers/discoverer/k8s/Dockerfile +++ b/dockers/discoverer/k8s/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,6 +19,7 @@ ARG BASE_TAG=latest ARG DISTROLESS_IMAGE=gcr.io/distroless/static ARG DISTROLESS_IMAGE_TAG=nonroot ARG UPX_OPTIONS=-9 +ARG MAINTAINER="vdaas.org vald team FROM golang:${GO_VERSION} AS golang @@ -58,7 +59,7 @@ RUN make REPO=${ORG} NAME=${REPO} cmd/${PKG}/${APP_NAME} \ && upx ${UPX_OPTIONS} -o "/usr/bin/${APP_NAME}" "cmd/${PKG}/${APP_NAME}" FROM ${DISTROLESS_IMAGE}:${DISTROLESS_IMAGE_TAG} -LABEL maintainer "Vald team " +LABEL maintainer "${MAINTAINER}" ENV APP_NAME discoverer diff --git a/dockers/gateway/vald/Dockerfile b/dockers/gateway/vald/Dockerfile index c18bc9d3417..34ec4f7f291 100644 --- a/dockers/gateway/vald/Dockerfile +++ b/dockers/gateway/vald/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,6 +19,7 @@ ARG BASE_TAG=latest ARG DISTROLESS_IMAGE=gcr.io/distroless/static ARG DISTROLESS_IMAGE_TAG=nonroot ARG UPX_OPTIONS=-9 +ARG MAINTAINER="vdaas.org vald team FROM golang:${GO_VERSION} AS golang @@ -58,7 +59,7 @@ RUN make REPO=${ORG} NAME=${REPO} cmd/${PKG}/${APP_NAME} \ && upx ${UPX_OPTIONS} -o "/usr/bin/${APP_NAME}" "cmd/${PKG}/${APP_NAME}" FROM ${DISTROLESS_IMAGE}:${DISTROLESS_IMAGE_TAG} -LABEL maintainer "Vald team " +LABEL maintainer "${MAINTAINER}" ENV APP_NAME vald diff --git a/dockers/manager/backup/cassandra/Dockerfile b/dockers/manager/backup/cassandra/Dockerfile index b10da468f29..3e3fdca4280 100644 --- a/dockers/manager/backup/cassandra/Dockerfile +++ b/dockers/manager/backup/cassandra/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,6 +19,7 @@ ARG BASE_TAG=latest ARG DISTROLESS_IMAGE=gcr.io/distroless/static ARG DISTROLESS_IMAGE_TAG=nonroot ARG UPX_OPTIONS=-9 +ARG MAINTAINER="vdaas.org vald team FROM golang:${GO_VERSION} AS golang @@ -58,7 +59,7 @@ RUN make REPO=${ORG} NAME=${REPO} cmd/${PKG}/${APP_NAME} \ && upx ${UPX_OPTIONS} -o "/usr/bin/${APP_NAME}" "cmd/${PKG}/${APP_NAME}" FROM ${DISTROLESS_IMAGE}:${DISTROLESS_IMAGE_TAG} -LABEL maintainer "Vald team " +LABEL maintainer "${MAINTAINER}" ENV APP_NAME backup diff --git a/dockers/manager/backup/mysql/Dockerfile b/dockers/manager/backup/mysql/Dockerfile index a133fab5daf..785297720b5 100644 --- a/dockers/manager/backup/mysql/Dockerfile +++ b/dockers/manager/backup/mysql/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,6 +19,7 @@ ARG BASE_TAG=latest ARG DISTROLESS_IMAGE=gcr.io/distroless/static ARG DISTROLESS_IMAGE_TAG=nonroot ARG UPX_OPTIONS=-9 +ARG MAINTAINER="vdaas.org vald team FROM golang:${GO_VERSION} AS golang @@ -58,7 +59,7 @@ RUN make REPO=${ORG} NAME=${REPO} cmd/${PKG}/${APP_NAME} \ && upx ${UPX_OPTIONS} -o "/usr/bin/${APP_NAME}" "cmd/${PKG}/${APP_NAME}" FROM ${DISTROLESS_IMAGE}:${DISTROLESS_IMAGE_TAG} -LABEL maintainer "Vald team " +LABEL maintainer "${MAINTAINER}" ENV APP_NAME backup diff --git a/dockers/manager/compressor/Dockerfile b/dockers/manager/compressor/Dockerfile index 36bf125abcd..b4768045b92 100644 --- a/dockers/manager/compressor/Dockerfile +++ b/dockers/manager/compressor/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,6 +19,7 @@ ARG BASE_TAG=latest ARG DISTROLESS_IMAGE=gcr.io/distroless/static ARG DISTROLESS_IMAGE_TAG=nonroot ARG UPX_OPTIONS=-9 +ARG MAINTAINER="vdaas.org vald team FROM golang:${GO_VERSION} AS golang @@ -58,7 +59,7 @@ RUN make REPO=${ORG} NAME=${REPO} cmd/${PKG}/${APP_NAME} \ && upx ${UPX_OPTIONS} -o "/usr/bin/${APP_NAME}" "cmd/${PKG}/${APP_NAME}" FROM ${DISTROLESS_IMAGE}:${DISTROLESS_IMAGE_TAG} -LABEL maintainer "Vald team " +LABEL maintainer "${MAINTAINER}" ENV APP_NAME compressor diff --git a/dockers/manager/index/Dockerfile b/dockers/manager/index/Dockerfile index 4cf3624870c..30eccce5e8d 100644 --- a/dockers/manager/index/Dockerfile +++ b/dockers/manager/index/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,6 +19,7 @@ ARG BASE_TAG=latest ARG DISTROLESS_IMAGE=gcr.io/distroless/static ARG DISTROLESS_IMAGE_TAG=nonroot ARG UPX_OPTIONS=-9 +ARG MAINTAINER="vdaas.org vald team FROM golang:${GO_VERSION} AS golang @@ -58,7 +59,7 @@ RUN make REPO=${ORG} NAME=${REPO} cmd/${PKG}/${APP_NAME} \ && upx ${UPX_OPTIONS} -o "/usr/bin/${APP_NAME}" "cmd/${PKG}/${APP_NAME}" FROM ${DISTROLESS_IMAGE}:${DISTROLESS_IMAGE_TAG} -LABEL maintainer "Vald team " +LABEL maintainer "${MAINTAINER}" ENV APP_NAME index diff --git a/dockers/manager/replication/agent/Dockerfile b/dockers/manager/replication/agent/Dockerfile index 499cb1337c3..937899e62b8 100644 --- a/dockers/manager/replication/agent/Dockerfile +++ b/dockers/manager/replication/agent/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -17,6 +17,7 @@ ARG DISTROLESS_IMAGE=gcr.io/distroless/static ARG DISTROLESS_IMAGE_TAG=nonroot ARG UPX_OPTIONS=-9 +ARG MAINTAINER="vdaas.org vald team FROM vdaas/vald-base:latest AS builder ARG UPX_OPTIONS @@ -52,7 +53,7 @@ RUN make REPO=${ORG} NAME=${REPO} cmd/${PKG}/${APP_NAME} \ && upx ${UPX_OPTIONS} -o "/usr/bin/${APP_NAME}" "cmd/${PKG}/${APP_NAME}" FROM ${DISTROLESS_IMAGE}:${DISTROLESS_IMAGE_TAG} -LABEL maintainer "Vald team " +LABEL maintainer "${MAINTAINER}" ENV APP_NAME agent diff --git a/dockers/manager/replication/controller/Dockerfile b/dockers/manager/replication/controller/Dockerfile index 85b1baf00f9..95ea631af57 100644 --- a/dockers/manager/replication/controller/Dockerfile +++ b/dockers/manager/replication/controller/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -17,6 +17,7 @@ ARG DISTROLESS_IMAGE=gcr.io/distroless/static ARG DISTROLESS_IMAGE_TAG=nonroot ARG UPX_OPTIONS=-9 +ARG MAINTAINER="vdaas.org vald team FROM vdaas/vald-base:latest AS builder ARG UPX_OPTIONS @@ -52,7 +53,7 @@ RUN make REPO=${ORG} NAME=${REPO} cmd/${PKG}/${APP_NAME} \ && upx ${UPX_OPTIONS} -o "/usr/bin/${APP_NAME}" "cmd/${PKG}/${APP_NAME}" FROM ${DISTROLESS_IMAGE}:${DISTROLESS_IMAGE_TAG} -LABEL maintainer "Vald team " +LABEL maintainer "${MAINTAINER}" ENV APP_NAME controller diff --git a/dockers/meta/cassandra/Dockerfile b/dockers/meta/cassandra/Dockerfile index 27d7e5ee82f..d3011eeee7b 100644 --- a/dockers/meta/cassandra/Dockerfile +++ b/dockers/meta/cassandra/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,6 +19,7 @@ ARG BASE_TAG=latest ARG DISTROLESS_IMAGE=gcr.io/distroless/static ARG DISTROLESS_IMAGE_TAG=nonroot ARG UPX_OPTIONS=-9 +ARG MAINTAINER="vdaas.org vald team FROM golang:${GO_VERSION} AS golang @@ -58,7 +59,7 @@ RUN make REPO=${ORG} NAME=${REPO} cmd/${PKG}/${APP_NAME} \ && upx ${UPX_OPTIONS} -o "/usr/bin/${APP_NAME}" "cmd/${PKG}/${APP_NAME}" FROM ${DISTROLESS_IMAGE}:${DISTROLESS_IMAGE_TAG} -LABEL maintainer "Vald team " +LABEL maintainer "${MAINTAINER}" ENV APP_NAME meta diff --git a/dockers/meta/redis/Dockerfile b/dockers/meta/redis/Dockerfile index ca6a53f7ba6..22568c91068 100644 --- a/dockers/meta/redis/Dockerfile +++ b/dockers/meta/redis/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,6 +19,7 @@ ARG BASE_TAG=latest ARG DISTROLESS_IMAGE=gcr.io/distroless/static ARG DISTROLESS_IMAGE_TAG=nonroot ARG UPX_OPTIONS=-9 +ARG MAINTAINER="vdaas.org vald team FROM golang:${GO_VERSION} AS golang @@ -58,7 +59,7 @@ RUN make REPO=${ORG} NAME=${REPO} cmd/${PKG}/${APP_NAME} \ && upx ${UPX_OPTIONS} -o "/usr/bin/${APP_NAME}" "cmd/${PKG}/${APP_NAME}" FROM ${DISTROLESS_IMAGE}:${DISTROLESS_IMAGE_TAG} -LABEL maintainer "Vald team " +LABEL maintainer "${MAINTAINER}" ENV APP_NAME meta diff --git a/dockers/operator/helm/Dockerfile b/dockers/operator/helm/Dockerfile index 62bf6875521..9729029f547 100644 --- a/dockers/operator/helm/Dockerfile +++ b/dockers/operator/helm/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,6 +19,7 @@ ARG GROUP="vald.vdaas.org" ARG VALD_KIND="ValdRelease" ARG VALD_HELM_OPERATOR_KIND="ValdHelmOperatorRelease" ARG BASE_TAG=latest +ARG MAINTAINER="vdaas.org vald team FROM vdaas/vald-base:${BASE_TAG} AS builder ARG OPERATOR_SDK_VERSION @@ -66,7 +67,7 @@ RUN make helm/schema/vald-helm-operator RUN cp -r charts /charts FROM quay.io/operator-framework/helm-operator:${OPERATOR_SDK_VERSION} -LABEL maintainer "Vald team " +LABEL maintainer "${MAINTAINER}" COPY --from=builder /tmp/watches.yaml ${HOME}/watches.yaml diff --git a/dockers/tools/cli/loadtest/Dockerfile b/dockers/tools/cli/loadtest/Dockerfile index ce937811ae9..b0cd1179d4a 100644 --- a/dockers/tools/cli/loadtest/Dockerfile +++ b/dockers/tools/cli/loadtest/Dockerfile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -15,6 +15,7 @@ # ARG GO_VERSION=latest +ARG MAINTAINER="vdaas.org vald team FROM golang:${GO_VERSION} AS golang @@ -84,6 +85,7 @@ RUN GO_VERSION="$(cat GO_VERSION)" \ FROM ubuntu:devel # Start From Alpine For Debug Environment # FROM alpine:latest +LABEL maintainer "${MAINTAINER}" ENV APP_NAME loadtest diff --git a/example/client/agent/main.go b/example/client/agent/main.go index 3f97e8e0486..f2999ef455b 100644 --- a/example/client/agent/main.go +++ b/example/client/agent/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/example/client/main.go b/example/client/main.go index 683f40042cd..b6116636d28 100644 --- a/example/client/main.go +++ b/example/client/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/example/helm/values-scylla.yaml b/example/helm/values-scylla.yaml index c4f8c18a334..643aa7dc362 100644 --- a/example/helm/values-scylla.yaml +++ b/example/helm/values-scylla.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/example/helm/values-standalone-agent-ngt.yaml b/example/helm/values-standalone-agent-ngt.yaml index 7797ea3e464..35f70a0618d 100644 --- a/example/helm/values-standalone-agent-ngt.yaml +++ b/example/helm/values-standalone-agent-ngt.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hack/benchmark/assets/x1b/loader.go b/hack/benchmark/assets/x1b/loader.go index 277db20338c..54321478b98 100644 --- a/hack/benchmark/assets/x1b/loader.go +++ b/hack/benchmark/assets/x1b/loader.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/assets/x1b/loader_bench_test.go b/hack/benchmark/assets/x1b/loader_bench_test.go index 0a24d0658f4..b4b0847c6b8 100644 --- a/hack/benchmark/assets/x1b/loader_bench_test.go +++ b/hack/benchmark/assets/x1b/loader_bench_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/assets/x1b/loader_test.go b/hack/benchmark/assets/x1b/loader_test.go index aae11b84f62..3aa2a8ebd04 100644 --- a/hack/benchmark/assets/x1b/loader_test.go +++ b/hack/benchmark/assets/x1b/loader_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/benchmark.go b/hack/benchmark/core/benchmark/benchmark.go index cb5e9b54ba2..dd34f5da132 100644 --- a/hack/benchmark/core/benchmark/benchmark.go +++ b/hack/benchmark/core/benchmark/benchmark.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/benchmark_test.go b/hack/benchmark/core/benchmark/benchmark_test.go index d9dfb119c4a..8535e7cd70c 100644 --- a/hack/benchmark/core/benchmark/benchmark_test.go +++ b/hack/benchmark/core/benchmark/benchmark_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/option.go b/hack/benchmark/core/benchmark/option.go index 897664f6232..1b17cbaee87 100644 --- a/hack/benchmark/core/benchmark/option.go +++ b/hack/benchmark/core/benchmark/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/option_test.go b/hack/benchmark/core/benchmark/option_test.go index 1db182d1ed1..f0f5730423e 100644 --- a/hack/benchmark/core/benchmark/option_test.go +++ b/hack/benchmark/core/benchmark/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy.go b/hack/benchmark/core/benchmark/strategy.go index 0c23198346f..e90232eff34 100644 --- a/hack/benchmark/core/benchmark/strategy.go +++ b/hack/benchmark/core/benchmark/strategy.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/bulk_insert.go b/hack/benchmark/core/benchmark/strategy/bulk_insert.go index 8846ea10148..6a6ff7a70eb 100644 --- a/hack/benchmark/core/benchmark/strategy/bulk_insert.go +++ b/hack/benchmark/core/benchmark/strategy/bulk_insert.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/bulk_insert_commit.go b/hack/benchmark/core/benchmark/strategy/bulk_insert_commit.go index 80eea2a5b15..7d1664b33d9 100644 --- a/hack/benchmark/core/benchmark/strategy/bulk_insert_commit.go +++ b/hack/benchmark/core/benchmark/strategy/bulk_insert_commit.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/bulk_insert_commit_test.go b/hack/benchmark/core/benchmark/strategy/bulk_insert_commit_test.go index 29a01fa4f4f..447adb5f1c5 100644 --- a/hack/benchmark/core/benchmark/strategy/bulk_insert_commit_test.go +++ b/hack/benchmark/core/benchmark/strategy/bulk_insert_commit_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/bulk_insert_test.go b/hack/benchmark/core/benchmark/strategy/bulk_insert_test.go index 1ab449423a1..de293119a50 100644 --- a/hack/benchmark/core/benchmark/strategy/bulk_insert_test.go +++ b/hack/benchmark/core/benchmark/strategy/bulk_insert_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/get_vector.go b/hack/benchmark/core/benchmark/strategy/get_vector.go index 8be24b9d751..668ee03b541 100644 --- a/hack/benchmark/core/benchmark/strategy/get_vector.go +++ b/hack/benchmark/core/benchmark/strategy/get_vector.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/get_vector_test.go b/hack/benchmark/core/benchmark/strategy/get_vector_test.go index e9167e496ed..3628ffa4bb6 100644 --- a/hack/benchmark/core/benchmark/strategy/get_vector_test.go +++ b/hack/benchmark/core/benchmark/strategy/get_vector_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/insert.go b/hack/benchmark/core/benchmark/strategy/insert.go index 688d4c68cb3..c503188a7ac 100644 --- a/hack/benchmark/core/benchmark/strategy/insert.go +++ b/hack/benchmark/core/benchmark/strategy/insert.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/insert_commit.go b/hack/benchmark/core/benchmark/strategy/insert_commit.go index 7b8bb98baa5..decf90a3478 100644 --- a/hack/benchmark/core/benchmark/strategy/insert_commit.go +++ b/hack/benchmark/core/benchmark/strategy/insert_commit.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/insert_commit_test.go b/hack/benchmark/core/benchmark/strategy/insert_commit_test.go index 0f3ad1a2d12..2d35dde1484 100644 --- a/hack/benchmark/core/benchmark/strategy/insert_commit_test.go +++ b/hack/benchmark/core/benchmark/strategy/insert_commit_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/insert_test.go b/hack/benchmark/core/benchmark/strategy/insert_test.go index 13582a28b82..6a94f349fe4 100644 --- a/hack/benchmark/core/benchmark/strategy/insert_test.go +++ b/hack/benchmark/core/benchmark/strategy/insert_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/remove.go b/hack/benchmark/core/benchmark/strategy/remove.go index 431b3a37406..cf97f778430 100644 --- a/hack/benchmark/core/benchmark/strategy/remove.go +++ b/hack/benchmark/core/benchmark/strategy/remove.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/remove_test.go b/hack/benchmark/core/benchmark/strategy/remove_test.go index 49e713d4c9e..95ba1c105ba 100644 --- a/hack/benchmark/core/benchmark/strategy/remove_test.go +++ b/hack/benchmark/core/benchmark/strategy/remove_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/search.go b/hack/benchmark/core/benchmark/strategy/search.go index d05d7532830..59708f7b2aa 100644 --- a/hack/benchmark/core/benchmark/strategy/search.go +++ b/hack/benchmark/core/benchmark/strategy/search.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/search_test.go b/hack/benchmark/core/benchmark/strategy/search_test.go index e634a6c1265..3a835691d03 100644 --- a/hack/benchmark/core/benchmark/strategy/search_test.go +++ b/hack/benchmark/core/benchmark/strategy/search_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/strategy.go b/hack/benchmark/core/benchmark/strategy/strategy.go index cc1a513fec9..7c9d0939515 100644 --- a/hack/benchmark/core/benchmark/strategy/strategy.go +++ b/hack/benchmark/core/benchmark/strategy/strategy.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/strategy_option.go b/hack/benchmark/core/benchmark/strategy/strategy_option.go index 4d3027842d6..b8ff48024ac 100644 --- a/hack/benchmark/core/benchmark/strategy/strategy_option.go +++ b/hack/benchmark/core/benchmark/strategy/strategy_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/strategy_option_test.go b/hack/benchmark/core/benchmark/strategy/strategy_option_test.go index d92069e4211..fe4c8986ed6 100644 --- a/hack/benchmark/core/benchmark/strategy/strategy_option_test.go +++ b/hack/benchmark/core/benchmark/strategy/strategy_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/strategy_test.go b/hack/benchmark/core/benchmark/strategy/strategy_test.go index 89eb93cf205..a275b72d9c7 100644 --- a/hack/benchmark/core/benchmark/strategy/strategy_test.go +++ b/hack/benchmark/core/benchmark/strategy/strategy_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/util.go b/hack/benchmark/core/benchmark/strategy/util.go index a67c8a80ad7..18472004f07 100644 --- a/hack/benchmark/core/benchmark/strategy/util.go +++ b/hack/benchmark/core/benchmark/strategy/util.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/benchmark/strategy/util_test.go b/hack/benchmark/core/benchmark/strategy/util_test.go index 4ab7d38de97..5f1e1ead636 100644 --- a/hack/benchmark/core/benchmark/strategy/util_test.go +++ b/hack/benchmark/core/benchmark/strategy/util_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/gongt/gongt_bench_test.go b/hack/benchmark/core/gongt/gongt_bench_test.go index a56f8861757..0bd21c08b2f 100644 --- a/hack/benchmark/core/gongt/gongt_bench_test.go +++ b/hack/benchmark/core/gongt/gongt_bench_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/core/ngt/ngt_bench_test.go b/hack/benchmark/core/ngt/ngt_bench_test.go index d5974405b05..51caf9c59a9 100644 --- a/hack/benchmark/core/ngt/ngt_bench_test.go +++ b/hack/benchmark/core/ngt/ngt_bench_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/e2e/agent/core/ngt/ngt_bench_test.go b/hack/benchmark/e2e/agent/core/ngt/ngt_bench_test.go index f59c70dc2b9..56260ac39d6 100644 --- a/hack/benchmark/e2e/agent/core/ngt/ngt_bench_test.go +++ b/hack/benchmark/e2e/agent/core/ngt/ngt_bench_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/e2e/external/ngtd/ngtd_bench_test.go b/hack/benchmark/e2e/external/ngtd/ngtd_bench_test.go index 4e675d3e300..94f87812c70 100644 --- a/hack/benchmark/e2e/external/ngtd/ngtd_bench_test.go +++ b/hack/benchmark/e2e/external/ngtd/ngtd_bench_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/e2e/gateway/vald/vald_bench_test.go b/hack/benchmark/e2e/gateway/vald/vald_bench_test.go index 27ea43667af..3381d35653c 100644 --- a/hack/benchmark/e2e/gateway/vald/vald_bench_test.go +++ b/hack/benchmark/e2e/gateway/vald/vald_bench_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/assets/dataset.go b/hack/benchmark/internal/assets/dataset.go index c7be66290ac..a7a6258c77d 100644 --- a/hack/benchmark/internal/assets/dataset.go +++ b/hack/benchmark/internal/assets/dataset.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/assets/dataset_test.go b/hack/benchmark/internal/assets/dataset_test.go index 61703a10fae..12c56b7eb3d 100644 --- a/hack/benchmark/internal/assets/dataset_test.go +++ b/hack/benchmark/internal/assets/dataset_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/client/ngtd/grpc/client.go b/hack/benchmark/internal/client/ngtd/grpc/client.go index a3b3a3663f1..9dbc154dd37 100644 --- a/hack/benchmark/internal/client/ngtd/grpc/client.go +++ b/hack/benchmark/internal/client/ngtd/grpc/client.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/client/ngtd/grpc/client_test.go b/hack/benchmark/internal/client/ngtd/grpc/client_test.go index da40edb4e21..551e0635418 100644 --- a/hack/benchmark/internal/client/ngtd/grpc/client_test.go +++ b/hack/benchmark/internal/client/ngtd/grpc/client_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/client/ngtd/grpc/option.go b/hack/benchmark/internal/client/ngtd/grpc/option.go index c6cdaf16e91..bc2a708d2b4 100644 --- a/hack/benchmark/internal/client/ngtd/grpc/option.go +++ b/hack/benchmark/internal/client/ngtd/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/client/ngtd/grpc/option_test.go b/hack/benchmark/internal/client/ngtd/grpc/option_test.go index c7d5a10a40e..a4d634f24cb 100644 --- a/hack/benchmark/internal/client/ngtd/grpc/option_test.go +++ b/hack/benchmark/internal/client/ngtd/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/client/ngtd/rest/client.go b/hack/benchmark/internal/client/ngtd/rest/client.go index 3f4f124daf5..0aaac6a5be4 100644 --- a/hack/benchmark/internal/client/ngtd/rest/client.go +++ b/hack/benchmark/internal/client/ngtd/rest/client.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/client/ngtd/rest/client_test.go b/hack/benchmark/internal/client/ngtd/rest/client_test.go index 7b7773a98ba..c8626f461b4 100644 --- a/hack/benchmark/internal/client/ngtd/rest/client_test.go +++ b/hack/benchmark/internal/client/ngtd/rest/client_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/client/ngtd/rest/option.go b/hack/benchmark/internal/client/ngtd/rest/option.go index 7e9ad741cc1..52f1833f614 100644 --- a/hack/benchmark/internal/client/ngtd/rest/option.go +++ b/hack/benchmark/internal/client/ngtd/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/client/ngtd/rest/option_test.go b/hack/benchmark/internal/client/ngtd/rest/option_test.go index ecf35803728..c296dfcb4c4 100644 --- a/hack/benchmark/internal/client/ngtd/rest/option_test.go +++ b/hack/benchmark/internal/client/ngtd/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/core/core.go b/hack/benchmark/internal/core/core.go index 8c120761666..567ef57840c 100644 --- a/hack/benchmark/internal/core/core.go +++ b/hack/benchmark/internal/core/core.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/core/gongt/gongt.go b/hack/benchmark/internal/core/gongt/gongt.go index 4b201079b9d..be55d77e19a 100644 --- a/hack/benchmark/internal/core/gongt/gongt.go +++ b/hack/benchmark/internal/core/gongt/gongt.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/core/gongt/gongt_test.go b/hack/benchmark/internal/core/gongt/gongt_test.go index 5bfd4cb7f55..3d1b44df761 100644 --- a/hack/benchmark/internal/core/gongt/gongt_test.go +++ b/hack/benchmark/internal/core/gongt/gongt_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/core/gongt/option.go b/hack/benchmark/internal/core/gongt/option.go index 0ca456dd990..11cf795f975 100644 --- a/hack/benchmark/internal/core/gongt/option.go +++ b/hack/benchmark/internal/core/gongt/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/core/gongt/option_test.go b/hack/benchmark/internal/core/gongt/option_test.go index 5a8f79a43b7..c705d241188 100644 --- a/hack/benchmark/internal/core/gongt/option_test.go +++ b/hack/benchmark/internal/core/gongt/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/core/ngt/ngt.go b/hack/benchmark/internal/core/ngt/ngt.go index 1cd233bb1a5..afe1db92816 100644 --- a/hack/benchmark/internal/core/ngt/ngt.go +++ b/hack/benchmark/internal/core/ngt/ngt.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/core/ngt/ngt_test.go b/hack/benchmark/internal/core/ngt/ngt_test.go index 85d98c288b6..37bdf6a5996 100644 --- a/hack/benchmark/internal/core/ngt/ngt_test.go +++ b/hack/benchmark/internal/core/ngt/ngt_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/core/ngt/option.go b/hack/benchmark/internal/core/ngt/option.go index 87b24245d29..b9df436bea1 100644 --- a/hack/benchmark/internal/core/ngt/option.go +++ b/hack/benchmark/internal/core/ngt/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/core/ngt/option_test.go b/hack/benchmark/internal/core/ngt/option_test.go index be5dff05124..db8e024fde9 100644 --- a/hack/benchmark/internal/core/ngt/option_test.go +++ b/hack/benchmark/internal/core/ngt/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/db/nosql/cassandra/cassandra_test.go b/hack/benchmark/internal/db/nosql/cassandra/cassandra_test.go index 371df5d93ae..e2a55c5356e 100644 --- a/hack/benchmark/internal/db/nosql/cassandra/cassandra_test.go +++ b/hack/benchmark/internal/db/nosql/cassandra/cassandra_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/e2e.go b/hack/benchmark/internal/e2e/e2e.go index 8ed79513dde..0ca6c8a14e3 100644 --- a/hack/benchmark/internal/e2e/e2e.go +++ b/hack/benchmark/internal/e2e/e2e.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/e2e_test.go b/hack/benchmark/internal/e2e/e2e_test.go index ec958854345..72abef2335e 100644 --- a/hack/benchmark/internal/e2e/e2e_test.go +++ b/hack/benchmark/internal/e2e/e2e_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/option.go b/hack/benchmark/internal/e2e/option.go index 6da6982450c..020ad269354 100644 --- a/hack/benchmark/internal/e2e/option.go +++ b/hack/benchmark/internal/e2e/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/option_test.go b/hack/benchmark/internal/e2e/option_test.go index 70c81659798..5548e3236d4 100644 --- a/hack/benchmark/internal/e2e/option_test.go +++ b/hack/benchmark/internal/e2e/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy.go b/hack/benchmark/internal/e2e/strategy.go index bffd03ea652..05141a4c2cf 100644 --- a/hack/benchmark/internal/e2e/strategy.go +++ b/hack/benchmark/internal/e2e/strategy.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/create_index.go b/hack/benchmark/internal/e2e/strategy/create_index.go index 34df1ddf4c1..7ea6bdf1133 100644 --- a/hack/benchmark/internal/e2e/strategy/create_index.go +++ b/hack/benchmark/internal/e2e/strategy/create_index.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/create_index_option.go b/hack/benchmark/internal/e2e/strategy/create_index_option.go index 42952e3b13c..04d714607fc 100644 --- a/hack/benchmark/internal/e2e/strategy/create_index_option.go +++ b/hack/benchmark/internal/e2e/strategy/create_index_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/create_index_option_test.go b/hack/benchmark/internal/e2e/strategy/create_index_option_test.go index 844962aeeb4..8305b5ab8c1 100644 --- a/hack/benchmark/internal/e2e/strategy/create_index_option_test.go +++ b/hack/benchmark/internal/e2e/strategy/create_index_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/create_index_test.go b/hack/benchmark/internal/e2e/strategy/create_index_test.go index 6def125f8e2..05395b596aa 100644 --- a/hack/benchmark/internal/e2e/strategy/create_index_test.go +++ b/hack/benchmark/internal/e2e/strategy/create_index_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/insert.go b/hack/benchmark/internal/e2e/strategy/insert.go index 4baf51f9539..97847bddcd6 100644 --- a/hack/benchmark/internal/e2e/strategy/insert.go +++ b/hack/benchmark/internal/e2e/strategy/insert.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/insert_option.go b/hack/benchmark/internal/e2e/strategy/insert_option.go index 9b9c082b116..f35e2a713b6 100644 --- a/hack/benchmark/internal/e2e/strategy/insert_option.go +++ b/hack/benchmark/internal/e2e/strategy/insert_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/insert_option_test.go b/hack/benchmark/internal/e2e/strategy/insert_option_test.go index 8ea010bccb3..798b23c9b4e 100644 --- a/hack/benchmark/internal/e2e/strategy/insert_option_test.go +++ b/hack/benchmark/internal/e2e/strategy/insert_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/insert_test.go b/hack/benchmark/internal/e2e/strategy/insert_test.go index 58bf76ebcf8..864f2cade97 100644 --- a/hack/benchmark/internal/e2e/strategy/insert_test.go +++ b/hack/benchmark/internal/e2e/strategy/insert_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/remove.go b/hack/benchmark/internal/e2e/strategy/remove.go index 7661b764be0..e9c65f2e5ad 100644 --- a/hack/benchmark/internal/e2e/strategy/remove.go +++ b/hack/benchmark/internal/e2e/strategy/remove.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/remove_option.go b/hack/benchmark/internal/e2e/strategy/remove_option.go index c1328728b0c..79ef616c895 100644 --- a/hack/benchmark/internal/e2e/strategy/remove_option.go +++ b/hack/benchmark/internal/e2e/strategy/remove_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/remove_option_test.go b/hack/benchmark/internal/e2e/strategy/remove_option_test.go index fa50629662b..89074012ec9 100644 --- a/hack/benchmark/internal/e2e/strategy/remove_option_test.go +++ b/hack/benchmark/internal/e2e/strategy/remove_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/remove_test.go b/hack/benchmark/internal/e2e/strategy/remove_test.go index 3eeb93801d8..f0b85bf87cb 100644 --- a/hack/benchmark/internal/e2e/strategy/remove_test.go +++ b/hack/benchmark/internal/e2e/strategy/remove_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/search.go b/hack/benchmark/internal/e2e/strategy/search.go index d0ca62a386b..092b3712c7b 100644 --- a/hack/benchmark/internal/e2e/strategy/search.go +++ b/hack/benchmark/internal/e2e/strategy/search.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/search_option.go b/hack/benchmark/internal/e2e/strategy/search_option.go index a2b4cdfd29f..80e782813a2 100644 --- a/hack/benchmark/internal/e2e/strategy/search_option.go +++ b/hack/benchmark/internal/e2e/strategy/search_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/search_option_test.go b/hack/benchmark/internal/e2e/strategy/search_option_test.go index 52eb76ac78c..ff4ff4c8140 100644 --- a/hack/benchmark/internal/e2e/strategy/search_option_test.go +++ b/hack/benchmark/internal/e2e/strategy/search_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/search_test.go b/hack/benchmark/internal/e2e/strategy/search_test.go index a1e3229556a..5a6e5b6ac58 100644 --- a/hack/benchmark/internal/e2e/strategy/search_test.go +++ b/hack/benchmark/internal/e2e/strategy/search_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/stream_insert.go b/hack/benchmark/internal/e2e/strategy/stream_insert.go index 1e1cdfc97a4..3ef9b315aa4 100644 --- a/hack/benchmark/internal/e2e/strategy/stream_insert.go +++ b/hack/benchmark/internal/e2e/strategy/stream_insert.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/stream_insert_option.go b/hack/benchmark/internal/e2e/strategy/stream_insert_option.go index b5a68dde3f1..cf635f446c6 100644 --- a/hack/benchmark/internal/e2e/strategy/stream_insert_option.go +++ b/hack/benchmark/internal/e2e/strategy/stream_insert_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/stream_insert_test.go b/hack/benchmark/internal/e2e/strategy/stream_insert_test.go index 370af2059eb..61bab5e3487 100644 --- a/hack/benchmark/internal/e2e/strategy/stream_insert_test.go +++ b/hack/benchmark/internal/e2e/strategy/stream_insert_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/stream_remove.go b/hack/benchmark/internal/e2e/strategy/stream_remove.go index 6143ae41588..6d4171df91f 100644 --- a/hack/benchmark/internal/e2e/strategy/stream_remove.go +++ b/hack/benchmark/internal/e2e/strategy/stream_remove.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/stream_remove_option.go b/hack/benchmark/internal/e2e/strategy/stream_remove_option.go index c0a7f51f29f..59e39d02e5e 100644 --- a/hack/benchmark/internal/e2e/strategy/stream_remove_option.go +++ b/hack/benchmark/internal/e2e/strategy/stream_remove_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/stream_remove_test.go b/hack/benchmark/internal/e2e/strategy/stream_remove_test.go index 896e9e22db4..aa3b3d391c6 100644 --- a/hack/benchmark/internal/e2e/strategy/stream_remove_test.go +++ b/hack/benchmark/internal/e2e/strategy/stream_remove_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/stream_search.go b/hack/benchmark/internal/e2e/strategy/stream_search.go index 30ebabf794d..7cd8d3073d5 100644 --- a/hack/benchmark/internal/e2e/strategy/stream_search.go +++ b/hack/benchmark/internal/e2e/strategy/stream_search.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/stream_search_option.go b/hack/benchmark/internal/e2e/strategy/stream_search_option.go index aca02eba682..db7fc41c324 100644 --- a/hack/benchmark/internal/e2e/strategy/stream_search_option.go +++ b/hack/benchmark/internal/e2e/strategy/stream_search_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/stream_search_option_test.go b/hack/benchmark/internal/e2e/strategy/stream_search_option_test.go index 2c93d438dcc..270623315f2 100644 --- a/hack/benchmark/internal/e2e/strategy/stream_search_option_test.go +++ b/hack/benchmark/internal/e2e/strategy/stream_search_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/e2e/strategy/stream_search_test.go b/hack/benchmark/internal/e2e/strategy/stream_search_test.go index 2a459d5d160..af7262cb1ef 100644 --- a/hack/benchmark/internal/e2e/strategy/stream_search_test.go +++ b/hack/benchmark/internal/e2e/strategy/stream_search_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/starter/agent/core/ngt/ngt.go b/hack/benchmark/internal/starter/agent/core/ngt/ngt.go index 50f648b2429..cfe32829b08 100644 --- a/hack/benchmark/internal/starter/agent/core/ngt/ngt.go +++ b/hack/benchmark/internal/starter/agent/core/ngt/ngt.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/starter/agent/core/ngt/ngt_test.go b/hack/benchmark/internal/starter/agent/core/ngt/ngt_test.go index 75405eb84f0..ef732e2a45a 100644 --- a/hack/benchmark/internal/starter/agent/core/ngt/ngt_test.go +++ b/hack/benchmark/internal/starter/agent/core/ngt/ngt_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/starter/agent/core/ngt/option.go b/hack/benchmark/internal/starter/agent/core/ngt/option.go index 00049b85b21..7370fc05e8c 100644 --- a/hack/benchmark/internal/starter/agent/core/ngt/option.go +++ b/hack/benchmark/internal/starter/agent/core/ngt/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/starter/agent/core/ngt/option_test.go b/hack/benchmark/internal/starter/agent/core/ngt/option_test.go index 49ed740aa80..971a56b389a 100644 --- a/hack/benchmark/internal/starter/agent/core/ngt/option_test.go +++ b/hack/benchmark/internal/starter/agent/core/ngt/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/starter/external/ngtd/ngtd.go b/hack/benchmark/internal/starter/external/ngtd/ngtd.go index ca10cca9bd2..9e1618bbac3 100644 --- a/hack/benchmark/internal/starter/external/ngtd/ngtd.go +++ b/hack/benchmark/internal/starter/external/ngtd/ngtd.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/starter/external/ngtd/ngtd_test.go b/hack/benchmark/internal/starter/external/ngtd/ngtd_test.go index a72e413df3b..87f4974ec79 100644 --- a/hack/benchmark/internal/starter/external/ngtd/ngtd_test.go +++ b/hack/benchmark/internal/starter/external/ngtd/ngtd_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/starter/external/ngtd/option.go b/hack/benchmark/internal/starter/external/ngtd/option.go index 9ac534b46b6..49b1e9ed5cb 100644 --- a/hack/benchmark/internal/starter/external/ngtd/option.go +++ b/hack/benchmark/internal/starter/external/ngtd/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/starter/external/ngtd/option_test.go b/hack/benchmark/internal/starter/external/ngtd/option_test.go index 25b5b6a5600..5ba0b96ca4b 100644 --- a/hack/benchmark/internal/starter/external/ngtd/option_test.go +++ b/hack/benchmark/internal/starter/external/ngtd/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/starter/gateway/vald/option.go b/hack/benchmark/internal/starter/gateway/vald/option.go index f4a11cb2524..dfd2c1098c9 100644 --- a/hack/benchmark/internal/starter/gateway/vald/option.go +++ b/hack/benchmark/internal/starter/gateway/vald/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/starter/gateway/vald/vald.go b/hack/benchmark/internal/starter/gateway/vald/vald.go index f752b0bc761..d75ac2cef15 100644 --- a/hack/benchmark/internal/starter/gateway/vald/vald.go +++ b/hack/benchmark/internal/starter/gateway/vald/vald.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/starter/gateway/vald/vald_test.go b/hack/benchmark/internal/starter/gateway/vald/vald_test.go index a327954b1ea..2040c6695fe 100644 --- a/hack/benchmark/internal/starter/gateway/vald/vald_test.go +++ b/hack/benchmark/internal/starter/gateway/vald/vald_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/internal/starter/starter.go b/hack/benchmark/internal/starter/starter.go index dab88e2369e..d2fae1bbde9 100644 --- a/hack/benchmark/internal/starter/starter.go +++ b/hack/benchmark/internal/starter/starter.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/metrics/metrics.go b/hack/benchmark/metrics/metrics.go index 9a04621785a..19408ace066 100644 --- a/hack/benchmark/metrics/metrics.go +++ b/hack/benchmark/metrics/metrics.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/benchmark/src/singleflight/singleflight_bench_test.go b/hack/benchmark/src/singleflight/singleflight_bench_test.go index d20c86be67f..bb88fcd52f3 100644 --- a/hack/benchmark/src/singleflight/singleflight_bench_test.go +++ b/hack/benchmark/src/singleflight/singleflight_bench_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/git/hooks/pre-commit b/hack/git/hooks/pre-commit index c0d2c2a49c7..ed89d585a0b 100644 --- a/hack/git/hooks/pre-commit +++ b/hack/git/hooks/pre-commit @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hack/graphql/gqlgen.sh b/hack/graphql/gqlgen.sh index f1d8a0d3c03..203d43f69ae 100644 --- a/hack/graphql/gqlgen.sh +++ b/hack/graphql/gqlgen.sh @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hack/helm/schema/gen/main.go b/hack/helm/schema/gen/main.go index d1e4c4bd27e..5019e775e4a 100644 --- a/hack/helm/schema/gen/main.go +++ b/hack/helm/schema/gen/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/helm/schema/gen/main_test.go b/hack/helm/schema/gen/main_test.go index b4d5e26325f..d7faaf43456 100644 --- a/hack/helm/schema/gen/main_test.go +++ b/hack/helm/schema/gen/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/license/gen/main.go b/hack/license/gen/main.go index f0f0cda9372..72c349e860b 100644 --- a/hack/license/gen/main.go +++ b/hack/license/gen/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -34,7 +34,7 @@ import ( var ( apache = template.Must(template.New("Apache License").Parse(`{{.Escape}} -{{.Escape}} Copyright (C) 2019-{{.Year}} {{.NickName}} ({{.FullName}}) +{{.Escape}} Copyright (C) 2019-{{.Year}} {{.Maintainer}} {{.Escape}} {{.Escape}} Licensed under the Apache License, Version 2.0 (the "License"); {{.Escape}} you may not use this file except in compliance with the License. @@ -55,11 +55,14 @@ var ( type Data struct { Escape string - NickName string - FullName string + Maintainer string Year int } +const ( + defaultMaintainer = "vdaas.org vald team " + maintainerKey = "MAINTAINER" +) func main() { if len(os.Args) < 2 { log.Fatal(errors.New("invalid argument")) @@ -72,6 +75,7 @@ func main() { } } } + func dirwalk(dir string) []string { files, err := ioutil.ReadDir(dir) if err != nil { @@ -90,6 +94,7 @@ func dirwalk(dir string) []string { switch filepath.Ext(file.Name()) { case ".ai", + ".all-contributorsrc", ".cfg", ".crt", ".default", @@ -145,6 +150,7 @@ func dirwalk(dir string) []string { } return paths } + func readAndRewrite(path string) error { f, err := os.Open(path) if err != nil { @@ -159,9 +165,12 @@ func readAndRewrite(path string) error { return errors.Errorf("filepath %s, could not open", path) } buf := bytes.NewBuffer(make([]byte, 0, fi.Size())) + maintainer := os.Getenv(maintainerKey) + if len(maintainer) == 0 { + maintainer = defaultMaintainer + } d := Data{ - NickName: "Vdaas.org Vald team", - FullName: " kpango, rinx, kmrmt ", + Maintainer: maintainer, Year: time.Now().Year(), Escape: sharpEscape, } @@ -450,7 +459,7 @@ var ( same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright (C) 2019-{{.Year}} {{.NickName}} ({{.FullName}}) + Copyright (C) 2019-{{.Year}} {{.Maintainer}} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/hack/license/gen/main_test.go b/hack/license/gen/main_test.go index 3562cd2c4e6..38ff78d65cf 100644 --- a/hack/license/gen/main_test.go +++ b/hack/license/gen/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/swagger/main.go b/hack/swagger/main.go index c5697462ddf..b1a8e518eb4 100644 --- a/hack/swagger/main.go +++ b/hack/swagger/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/swagger/main_test.go b/hack/swagger/main_test.go index a41a655117d..69996e69651 100644 --- a/hack/swagger/main_test.go +++ b/hack/swagger/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/tools/config/agent/core/ngt/main.go b/hack/tools/config/agent/core/ngt/main.go index 267c59d5e32..e91602ebb2e 100644 --- a/hack/tools/config/agent/core/ngt/main.go +++ b/hack/tools/config/agent/core/ngt/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/tools/config/agent/core/ngt/main_test.go b/hack/tools/config/agent/core/ngt/main_test.go index 4d0f6075cbe..13cad8a1b58 100644 --- a/hack/tools/config/agent/core/ngt/main_test.go +++ b/hack/tools/config/agent/core/ngt/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/tools/config/agent/core/ngt/sample.yaml b/hack/tools/config/agent/core/ngt/sample.yaml index c707a8e532d..78d0c0f44ec 100644 --- a/hack/tools/config/agent/core/ngt/sample.yaml +++ b/hack/tools/config/agent/core/ngt/sample.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hack/tools/config/discoverer/k8s/main.go b/hack/tools/config/discoverer/k8s/main.go index c2d7119bd28..51699cdb27d 100644 --- a/hack/tools/config/discoverer/k8s/main.go +++ b/hack/tools/config/discoverer/k8s/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/tools/config/discoverer/k8s/main_test.go b/hack/tools/config/discoverer/k8s/main_test.go index 4d0f6075cbe..13cad8a1b58 100644 --- a/hack/tools/config/discoverer/k8s/main_test.go +++ b/hack/tools/config/discoverer/k8s/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/tools/config/discoverer/k8s/sample.yaml b/hack/tools/config/discoverer/k8s/sample.yaml index 1c261258bfe..dc864a174a4 100644 --- a/hack/tools/config/discoverer/k8s/sample.yaml +++ b/hack/tools/config/discoverer/k8s/sample.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hack/tools/config/gateway/vald/main.go b/hack/tools/config/gateway/vald/main.go index c9d692d8f0b..57fc964683b 100644 --- a/hack/tools/config/gateway/vald/main.go +++ b/hack/tools/config/gateway/vald/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/tools/config/gateway/vald/main_test.go b/hack/tools/config/gateway/vald/main_test.go index 4d0f6075cbe..13cad8a1b58 100644 --- a/hack/tools/config/gateway/vald/main_test.go +++ b/hack/tools/config/gateway/vald/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/tools/config/gateway/vald/sample.yaml b/hack/tools/config/gateway/vald/sample.yaml index d6b63503714..56f27d80720 100644 --- a/hack/tools/config/gateway/vald/sample.yaml +++ b/hack/tools/config/gateway/vald/sample.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hack/tools/config/manager/backup/mysql/main.go b/hack/tools/config/manager/backup/mysql/main.go index 5fce0465e50..e1424157a5c 100644 --- a/hack/tools/config/manager/backup/mysql/main.go +++ b/hack/tools/config/manager/backup/mysql/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/tools/config/manager/backup/mysql/main_test.go b/hack/tools/config/manager/backup/mysql/main_test.go index 4d0f6075cbe..13cad8a1b58 100644 --- a/hack/tools/config/manager/backup/mysql/main_test.go +++ b/hack/tools/config/manager/backup/mysql/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/tools/config/manager/backup/mysql/sample.yaml b/hack/tools/config/manager/backup/mysql/sample.yaml index 1f389d65431..a545f7a45fe 100644 --- a/hack/tools/config/manager/backup/mysql/sample.yaml +++ b/hack/tools/config/manager/backup/mysql/sample.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hack/tools/config/meta/redis/main.go b/hack/tools/config/meta/redis/main.go index 034cd2ba034..fef08a74d5b 100644 --- a/hack/tools/config/meta/redis/main.go +++ b/hack/tools/config/meta/redis/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/tools/config/meta/redis/main_test.go b/hack/tools/config/meta/redis/main_test.go index 4d0f6075cbe..13cad8a1b58 100644 --- a/hack/tools/config/meta/redis/main_test.go +++ b/hack/tools/config/meta/redis/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/tools/config/meta/redis/sample.yaml b/hack/tools/config/meta/redis/sample.yaml index 4840ba465ac..ffaa22c0bea 100644 --- a/hack/tools/config/meta/redis/sample.yaml +++ b/hack/tools/config/meta/redis/sample.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hack/tools/metrics/main.go b/hack/tools/metrics/main.go index 754c904865d..f09aa768053 100644 --- a/hack/tools/metrics/main.go +++ b/hack/tools/metrics/main.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/tools/metrics/main_test.go b/hack/tools/metrics/main_test.go index 92dce22eac1..05fc4e404b1 100644 --- a/hack/tools/metrics/main_test.go +++ b/hack/tools/metrics/main_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/backoff/backoff.go b/internal/backoff/backoff.go index 285d224cb00..9bc06586b8b 100644 --- a/internal/backoff/backoff.go +++ b/internal/backoff/backoff.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/backoff/backoff_test.go b/internal/backoff/backoff_test.go index 4725748a49f..65993680b0a 100644 --- a/internal/backoff/backoff_test.go +++ b/internal/backoff/backoff_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/backoff/option.go b/internal/backoff/option.go index f4d5fbd26dc..206609d8590 100644 --- a/internal/backoff/option.go +++ b/internal/backoff/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/backoff/option_test.go b/internal/backoff/option_test.go index f259fb8ef2b..38f90891436 100644 --- a/internal/backoff/option_test.go +++ b/internal/backoff/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cache/cache.go b/internal/cache/cache.go index 41c9e4a345d..919e4db0eff 100644 --- a/internal/cache/cache.go +++ b/internal/cache/cache.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cache/cache_test.go b/internal/cache/cache_test.go index bc7056ef3c4..fc2aa93f8ea 100644 --- a/internal/cache/cache_test.go +++ b/internal/cache/cache_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cache/cacher/cacher.go b/internal/cache/cacher/cacher.go index f2e28683b1e..5bfaebb4f86 100644 --- a/internal/cache/cacher/cacher.go +++ b/internal/cache/cacher/cacher.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cache/cacher/cacher_test.go b/internal/cache/cacher/cacher_test.go index 26e491fb8fc..3c0daac777e 100644 --- a/internal/cache/cacher/cacher_test.go +++ b/internal/cache/cacher/cacher_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cache/gache/gache.go b/internal/cache/gache/gache.go index 28d2cf99219..760a6d63075 100644 --- a/internal/cache/gache/gache.go +++ b/internal/cache/gache/gache.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cache/gache/gache_test.go b/internal/cache/gache/gache_test.go index 4c47376e78d..ffaf2cf3f1b 100644 --- a/internal/cache/gache/gache_test.go +++ b/internal/cache/gache/gache_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cache/gache/option.go b/internal/cache/gache/option.go index 58461b5c2ff..f6707de0659 100644 --- a/internal/cache/gache/option.go +++ b/internal/cache/gache/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cache/gache/option_test.go b/internal/cache/gache/option_test.go index bddd7589398..04b8cbe3502 100644 --- a/internal/cache/gache/option_test.go +++ b/internal/cache/gache/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cache/option.go b/internal/cache/option.go index 2ac50dc94e1..07b5dfdb7af 100644 --- a/internal/cache/option.go +++ b/internal/cache/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cache/option_test.go b/internal/cache/option_test.go index fb9d22af1bd..1332cbe23c2 100644 --- a/internal/cache/option_test.go +++ b/internal/cache/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/agent/grpc/client.go b/internal/client/agent/grpc/client.go index 0b1adfce04c..1b5491b053f 100644 --- a/internal/client/agent/grpc/client.go +++ b/internal/client/agent/grpc/client.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/agent/grpc/client_test.go b/internal/client/agent/grpc/client_test.go index 858de55cddf..24229c594a1 100644 --- a/internal/client/agent/grpc/client_test.go +++ b/internal/client/agent/grpc/client_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/agent/grpc/option.go b/internal/client/agent/grpc/option.go index e8e9fab315a..ac7abccfb44 100644 --- a/internal/client/agent/grpc/option.go +++ b/internal/client/agent/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/agent/grpc/option_test.go b/internal/client/agent/grpc/option_test.go index 5b1be577f37..caefece3a7b 100644 --- a/internal/client/agent/grpc/option_test.go +++ b/internal/client/agent/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/agent/rest/client.go b/internal/client/agent/rest/client.go index d3454c524c4..b12a2e226b1 100644 --- a/internal/client/agent/rest/client.go +++ b/internal/client/agent/rest/client.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/agent/rest/client_test.go b/internal/client/agent/rest/client_test.go index 822806b6ff8..ff0a4ba53dd 100644 --- a/internal/client/agent/rest/client_test.go +++ b/internal/client/agent/rest/client_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/agent/rest/option.go b/internal/client/agent/rest/option.go index 86c13bf79ea..571ed47dde1 100644 --- a/internal/client/agent/rest/option.go +++ b/internal/client/agent/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/agent/rest/option_test.go b/internal/client/agent/rest/option_test.go index 3541380e5c9..79e0c4b73b9 100644 --- a/internal/client/agent/rest/option_test.go +++ b/internal/client/agent/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/client.go b/internal/client/client.go index 88fbc25d1de..7cb59857418 100644 --- a/internal/client/client.go +++ b/internal/client/client.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/compressor/client.go b/internal/client/compressor/client.go index 3ed97ec1d37..9ba39ecc868 100644 --- a/internal/client/compressor/client.go +++ b/internal/client/compressor/client.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/compressor/client_test.go b/internal/client/compressor/client_test.go index adfbca79b99..647142a1db0 100644 --- a/internal/client/compressor/client_test.go +++ b/internal/client/compressor/client_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/compressor/option.go b/internal/client/compressor/option.go index fda001bef83..0b15c513321 100644 --- a/internal/client/compressor/option.go +++ b/internal/client/compressor/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/compressor/option_test.go b/internal/client/compressor/option_test.go index 076a5f6c2e8..635ae52a9e0 100644 --- a/internal/client/compressor/option_test.go +++ b/internal/client/compressor/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/discoverer/discover.go b/internal/client/discoverer/discover.go index 7a9b0480f11..be029832028 100644 --- a/internal/client/discoverer/discover.go +++ b/internal/client/discoverer/discover.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/discoverer/discover_test.go b/internal/client/discoverer/discover_test.go index 2c270e29e4b..0130e57b335 100644 --- a/internal/client/discoverer/discover_test.go +++ b/internal/client/discoverer/discover_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/discoverer/option.go b/internal/client/discoverer/option.go index 38417ec8378..cfe7395405c 100644 --- a/internal/client/discoverer/option.go +++ b/internal/client/discoverer/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/discoverer/option_test.go b/internal/client/discoverer/option_test.go index 7c17e642612..4a8b0863271 100644 --- a/internal/client/discoverer/option_test.go +++ b/internal/client/discoverer/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/gateway/vald/grpc/client.go b/internal/client/gateway/vald/grpc/client.go index 94fdc9fd13b..18e91901ef9 100644 --- a/internal/client/gateway/vald/grpc/client.go +++ b/internal/client/gateway/vald/grpc/client.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/gateway/vald/grpc/client_test.go b/internal/client/gateway/vald/grpc/client_test.go index 5369ad364d9..fd0138b1ff8 100644 --- a/internal/client/gateway/vald/grpc/client_test.go +++ b/internal/client/gateway/vald/grpc/client_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/gateway/vald/grpc/option.go b/internal/client/gateway/vald/grpc/option.go index 2e746f5a431..3f69453f3a2 100644 --- a/internal/client/gateway/vald/grpc/option.go +++ b/internal/client/gateway/vald/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/gateway/vald/grpc/option_test.go b/internal/client/gateway/vald/grpc/option_test.go index 8efe0236caf..a84e6255711 100644 --- a/internal/client/gateway/vald/grpc/option_test.go +++ b/internal/client/gateway/vald/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/gateway/vald/rest/client.go b/internal/client/gateway/vald/rest/client.go index d5f2150c774..22cb3080e51 100644 --- a/internal/client/gateway/vald/rest/client.go +++ b/internal/client/gateway/vald/rest/client.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/gateway/vald/rest/client_test.go b/internal/client/gateway/vald/rest/client_test.go index b8097caecbf..0c1ff788112 100644 --- a/internal/client/gateway/vald/rest/client_test.go +++ b/internal/client/gateway/vald/rest/client_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/gateway/vald/rest/option.go b/internal/client/gateway/vald/rest/option.go index 676016a30c2..eff907f27fd 100644 --- a/internal/client/gateway/vald/rest/option.go +++ b/internal/client/gateway/vald/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/client/gateway/vald/rest/option_test.go b/internal/client/gateway/vald/rest/option_test.go index ce2b1f5250f..edc153e8e75 100644 --- a/internal/client/gateway/vald/rest/option_test.go +++ b/internal/client/gateway/vald/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/compress.go b/internal/compress/compress.go index 20e90b46c9c..fd71719c355 100644 --- a/internal/compress/compress.go +++ b/internal/compress/compress.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/gob.go b/internal/compress/gob.go index 63243d2bcd6..b27251e4950 100644 --- a/internal/compress/gob.go +++ b/internal/compress/gob.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/gob/gob.go b/internal/compress/gob/gob.go index 663dfb0867e..75a16949f41 100644 --- a/internal/compress/gob/gob.go +++ b/internal/compress/gob/gob.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/gob/gob_mock.go b/internal/compress/gob/gob_mock.go index 8ab8eee2958..87b3112f2b5 100644 --- a/internal/compress/gob/gob_mock.go +++ b/internal/compress/gob/gob_mock.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/gob_option.go b/internal/compress/gob_option.go index 6373139d02b..c00607ba279 100644 --- a/internal/compress/gob_option.go +++ b/internal/compress/gob_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/gob_test.go b/internal/compress/gob_test.go index 577bd3cec82..5253f28c00c 100644 --- a/internal/compress/gob_test.go +++ b/internal/compress/gob_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/gzip.go b/internal/compress/gzip.go index 416d434334f..3750faed124 100644 --- a/internal/compress/gzip.go +++ b/internal/compress/gzip.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/gzip/gzip.go b/internal/compress/gzip/gzip.go index 6338e8b541e..890447f59f3 100644 --- a/internal/compress/gzip/gzip.go +++ b/internal/compress/gzip/gzip.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/gzip/gzip_mock.go b/internal/compress/gzip/gzip_mock.go index 2a8ea64ab17..d0748e6f750 100644 --- a/internal/compress/gzip/gzip_mock.go +++ b/internal/compress/gzip/gzip_mock.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/gzip_option.go b/internal/compress/gzip_option.go index 5404e3d23fa..567c5d2eb21 100644 --- a/internal/compress/gzip_option.go +++ b/internal/compress/gzip_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/gzip_option_test.go b/internal/compress/gzip_option_test.go index 7d744bd4e26..f7d2a7a4cef 100644 --- a/internal/compress/gzip_option_test.go +++ b/internal/compress/gzip_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/gzip_test.go b/internal/compress/gzip_test.go index 232b6ec0dd1..7610f29e1d2 100644 --- a/internal/compress/gzip_test.go +++ b/internal/compress/gzip_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/lz4.go b/internal/compress/lz4.go index b1af494a5ff..b39b247ebc5 100644 --- a/internal/compress/lz4.go +++ b/internal/compress/lz4.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/lz4/lz4.go b/internal/compress/lz4/lz4.go index be5dae20163..3db5d8ceb8f 100644 --- a/internal/compress/lz4/lz4.go +++ b/internal/compress/lz4/lz4.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/lz4/lz4_mock.go b/internal/compress/lz4/lz4_mock.go index 6d5804f4416..854c64947b6 100644 --- a/internal/compress/lz4/lz4_mock.go +++ b/internal/compress/lz4/lz4_mock.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/lz4_option.go b/internal/compress/lz4_option.go index e6ace1c2a4d..f3433b147c9 100644 --- a/internal/compress/lz4_option.go +++ b/internal/compress/lz4_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/lz4_option_test.go b/internal/compress/lz4_option_test.go index 4821bdeba89..41a55ffb8d6 100644 --- a/internal/compress/lz4_option_test.go +++ b/internal/compress/lz4_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/lz4_test.go b/internal/compress/lz4_test.go index 34df6a7417b..57d056608c4 100644 --- a/internal/compress/lz4_test.go +++ b/internal/compress/lz4_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/mock.go b/internal/compress/mock.go index b2a36b6afa9..a4402559f33 100644 --- a/internal/compress/mock.go +++ b/internal/compress/mock.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/zstd.go b/internal/compress/zstd.go index f42d3876370..ac8071775b9 100644 --- a/internal/compress/zstd.go +++ b/internal/compress/zstd.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/zstd/option.go b/internal/compress/zstd/option.go index d9a7552e655..7d5d4a23164 100644 --- a/internal/compress/zstd/option.go +++ b/internal/compress/zstd/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/zstd/zstd.go b/internal/compress/zstd/zstd.go index 046d9e55da8..819deea1e3d 100644 --- a/internal/compress/zstd/zstd.go +++ b/internal/compress/zstd/zstd.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/zstd/zstd_mock.go b/internal/compress/zstd/zstd_mock.go index 005955e1436..8fc60380889 100644 --- a/internal/compress/zstd/zstd_mock.go +++ b/internal/compress/zstd/zstd_mock.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/zstd_option.go b/internal/compress/zstd_option.go index 2beb8358ab7..5accded31f9 100644 --- a/internal/compress/zstd_option.go +++ b/internal/compress/zstd_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/zstd_option_test.go b/internal/compress/zstd_option_test.go index b7fae7b8d30..1520e7fe032 100644 --- a/internal/compress/zstd_option_test.go +++ b/internal/compress/zstd_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/compress/zstd_test.go b/internal/compress/zstd_test.go index 7329e5cf7b4..363cc2e3620 100644 --- a/internal/compress/zstd_test.go +++ b/internal/compress/zstd_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/backoff.go b/internal/config/backoff.go index b7cf3c366aa..abda05a1363 100644 --- a/internal/config/backoff.go +++ b/internal/config/backoff.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/backoff_test.go b/internal/config/backoff_test.go index fea816fb07f..72b23015596 100644 --- a/internal/config/backoff_test.go +++ b/internal/config/backoff_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/backup.go b/internal/config/backup.go index 89ca17ab6ba..6e94ccbe691 100644 --- a/internal/config/backup.go +++ b/internal/config/backup.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/backup_test.go b/internal/config/backup_test.go index 7034abb313a..63181c12b7a 100644 --- a/internal/config/backup_test.go +++ b/internal/config/backup_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/blob.go b/internal/config/blob.go index c6c4138dd5b..9f90d302e87 100644 --- a/internal/config/blob.go +++ b/internal/config/blob.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/blob_test.go b/internal/config/blob_test.go index 15f8686212e..27b2f414c69 100644 --- a/internal/config/blob_test.go +++ b/internal/config/blob_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/cassandra.go b/internal/config/cassandra.go index f2df49b253f..207c0f48f2a 100644 --- a/internal/config/cassandra.go +++ b/internal/config/cassandra.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/cassandra_test.go b/internal/config/cassandra_test.go index 028a991f6ba..67df185bb1c 100644 --- a/internal/config/cassandra_test.go +++ b/internal/config/cassandra_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/client.go b/internal/config/client.go index 854d799a78a..12663bf8cde 100644 --- a/internal/config/client.go +++ b/internal/config/client.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/client_test.go b/internal/config/client_test.go index f65da05eedc..45dd1899ac7 100644 --- a/internal/config/client_test.go +++ b/internal/config/client_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/compress.go b/internal/config/compress.go index 1469b9035a6..87868c6767d 100644 --- a/internal/config/compress.go +++ b/internal/config/compress.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/compress_test.go b/internal/config/compress_test.go index 4b8cc6b1ff9..c66ab0ddbb7 100644 --- a/internal/config/compress_test.go +++ b/internal/config/compress_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/config.go b/internal/config/config.go index c2b9d187172..2c1846afaed 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/config_test.go b/internal/config/config_test.go index 5cc97be7702..792f95333f5 100644 --- a/internal/config/config_test.go +++ b/internal/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/debug.go b/internal/config/debug.go index 6c25fdbcdbb..e6a88df56bc 100644 --- a/internal/config/debug.go +++ b/internal/config/debug.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/debug_test.go b/internal/config/debug_test.go index 41361ea7681..4b943a1abc1 100644 --- a/internal/config/debug_test.go +++ b/internal/config/debug_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/discoverer.go b/internal/config/discoverer.go index 0812e7caa12..af466bf01ab 100644 --- a/internal/config/discoverer.go +++ b/internal/config/discoverer.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/discoverer_test.go b/internal/config/discoverer_test.go index 35f793d162f..0b9dd0aeb1a 100644 --- a/internal/config/discoverer_test.go +++ b/internal/config/discoverer_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/filter.go b/internal/config/filter.go index 5483a286c63..583e1280698 100644 --- a/internal/config/filter.go +++ b/internal/config/filter.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/filter_test.go b/internal/config/filter_test.go index d7ae2752754..580961cc98c 100644 --- a/internal/config/filter_test.go +++ b/internal/config/filter_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/gateway.go b/internal/config/gateway.go index 8941992852c..c2afca251f6 100644 --- a/internal/config/gateway.go +++ b/internal/config/gateway.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/gateway_test.go b/internal/config/gateway_test.go index efc4d1843d7..8c5c98b0ab1 100644 --- a/internal/config/gateway_test.go +++ b/internal/config/gateway_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/grpc.go b/internal/config/grpc.go index 694e07e13a9..bcc664d5703 100644 --- a/internal/config/grpc.go +++ b/internal/config/grpc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/grpc_test.go b/internal/config/grpc_test.go index fc15bfc4391..74607d2fcc8 100644 --- a/internal/config/grpc_test.go +++ b/internal/config/grpc_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/index.go b/internal/config/index.go index ccc501364a5..60e34a00489 100644 --- a/internal/config/index.go +++ b/internal/config/index.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/index_test.go b/internal/config/index_test.go index c0f72eacf40..187bdf6315d 100644 --- a/internal/config/index_test.go +++ b/internal/config/index_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/log.go b/internal/config/log.go index c120b91a368..fde8a876e47 100644 --- a/internal/config/log.go +++ b/internal/config/log.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/log_test.go b/internal/config/log_test.go index 06859ad4e24..427fd5f34b2 100644 --- a/internal/config/log_test.go +++ b/internal/config/log_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/meta.go b/internal/config/meta.go index 735d8dfff3c..726cc0e0fab 100644 --- a/internal/config/meta.go +++ b/internal/config/meta.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/meta_test.go b/internal/config/meta_test.go index 6f566a09e73..6817f4c7559 100644 --- a/internal/config/meta_test.go +++ b/internal/config/meta_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/mysql.go b/internal/config/mysql.go index e2c132095bf..6e751494521 100644 --- a/internal/config/mysql.go +++ b/internal/config/mysql.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/mysql_test.go b/internal/config/mysql_test.go index e7678692870..c5314f269bf 100644 --- a/internal/config/mysql_test.go +++ b/internal/config/mysql_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/ngt.go b/internal/config/ngt.go index 4368ad08ca9..f235390f3fb 100644 --- a/internal/config/ngt.go +++ b/internal/config/ngt.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/ngt_test.go b/internal/config/ngt_test.go index 328023e5607..79c8f534d7f 100644 --- a/internal/config/ngt_test.go +++ b/internal/config/ngt_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/observability.go b/internal/config/observability.go index 9b0671970dc..0e272b88258 100644 --- a/internal/config/observability.go +++ b/internal/config/observability.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/observability_test.go b/internal/config/observability_test.go index 155fb929cb7..1f64d2fb586 100644 --- a/internal/config/observability_test.go +++ b/internal/config/observability_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/redis.go b/internal/config/redis.go index 641bc8e4253..36be1df3359 100644 --- a/internal/config/redis.go +++ b/internal/config/redis.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/redis_test.go b/internal/config/redis_test.go index 55e9007468d..b4b4bf139af 100644 --- a/internal/config/redis_test.go +++ b/internal/config/redis_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/server.go b/internal/config/server.go index e48cbaa9921..173756a9525 100644 --- a/internal/config/server.go +++ b/internal/config/server.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/server_test.go b/internal/config/server_test.go index 7b33e4c70e0..a37720e8ed1 100644 --- a/internal/config/server_test.go +++ b/internal/config/server_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/sidecar.go b/internal/config/sidecar.go index 95ea5ecf583..66b1a7402bd 100644 --- a/internal/config/sidecar.go +++ b/internal/config/sidecar.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/sidecar_test.go b/internal/config/sidecar_test.go index 6145cd09183..4299516f687 100644 --- a/internal/config/sidecar_test.go +++ b/internal/config/sidecar_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/tcp.go b/internal/config/tcp.go index a3fbccbf248..c825f087d2b 100644 --- a/internal/config/tcp.go +++ b/internal/config/tcp.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/tcp_test.go b/internal/config/tcp_test.go index b39cdfdc21d..21bc8ef83c2 100644 --- a/internal/config/tcp_test.go +++ b/internal/config/tcp_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/tls.go b/internal/config/tls.go index 64c08d8c716..20531e23135 100644 --- a/internal/config/tls.go +++ b/internal/config/tls.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/tls_test.go b/internal/config/tls_test.go index 9a59e0c44df..bb8972ee4dd 100644 --- a/internal/config/tls_test.go +++ b/internal/config/tls_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/transport.go b/internal/config/transport.go index f47842db84a..23cfc094dea 100644 --- a/internal/config/transport.go +++ b/internal/config/transport.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/config/transport_test.go b/internal/config/transport_test.go index a69a60f24b8..99ed699ac42 100644 --- a/internal/config/transport_test.go +++ b/internal/config/transport_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/core/converter/tensorflow/option.go b/internal/core/converter/tensorflow/option.go index 70ed8e32ec5..9bc234d3c49 100644 --- a/internal/core/converter/tensorflow/option.go +++ b/internal/core/converter/tensorflow/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/core/converter/tensorflow/option_test.go b/internal/core/converter/tensorflow/option_test.go index 8a132da3351..de23f51769e 100644 --- a/internal/core/converter/tensorflow/option_test.go +++ b/internal/core/converter/tensorflow/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/core/converter/tensorflow/tensorflow.go b/internal/core/converter/tensorflow/tensorflow.go index a8ff5aa6661..be7f36f02c8 100644 --- a/internal/core/converter/tensorflow/tensorflow.go +++ b/internal/core/converter/tensorflow/tensorflow.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/core/converter/tensorflow/tensorflow_mock_test.go b/internal/core/converter/tensorflow/tensorflow_mock_test.go index b9b6e4bc854..4ead2bc8729 100644 --- a/internal/core/converter/tensorflow/tensorflow_mock_test.go +++ b/internal/core/converter/tensorflow/tensorflow_mock_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/core/converter/tensorflow/tensorflow_test.go b/internal/core/converter/tensorflow/tensorflow_test.go index b736c8855f1..8de440aa7f5 100644 --- a/internal/core/converter/tensorflow/tensorflow_test.go +++ b/internal/core/converter/tensorflow/tensorflow_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/core/ngt/Makefile b/internal/core/ngt/Makefile index f001d3637e7..b11f0516093 100644 --- a/internal/core/ngt/Makefile +++ b/internal/core/ngt/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/internal/core/ngt/model.go b/internal/core/ngt/model.go index f518f7a8b97..9223911dbe1 100644 --- a/internal/core/ngt/model.go +++ b/internal/core/ngt/model.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/core/ngt/ngt.go b/internal/core/ngt/ngt.go index b65ba455611..39086d0bf74 100644 --- a/internal/core/ngt/ngt.go +++ b/internal/core/ngt/ngt.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/core/ngt/option.go b/internal/core/ngt/option.go index 87e54b5d9b8..07c306a39fb 100644 --- a/internal/core/ngt/option.go +++ b/internal/core/ngt/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/core/ngt/util.go b/internal/core/ngt/util.go index 535f2c664ad..93fc68e33c7 100644 --- a/internal/core/ngt/util.go +++ b/internal/core/ngt/util.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/kvs/redis/delete.go b/internal/db/kvs/redis/delete.go index c6f533d987e..be680a781b7 100644 --- a/internal/db/kvs/redis/delete.go +++ b/internal/db/kvs/redis/delete.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/kvs/redis/get.go b/internal/db/kvs/redis/get.go index cb3e3883a8f..a2739cdf58e 100644 --- a/internal/db/kvs/redis/get.go +++ b/internal/db/kvs/redis/get.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/kvs/redis/hook.go b/internal/db/kvs/redis/hook.go index 1d88cfbd601..3ae4473f304 100644 --- a/internal/db/kvs/redis/hook.go +++ b/internal/db/kvs/redis/hook.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/kvs/redis/list.go b/internal/db/kvs/redis/list.go index e02703e4613..11b1c831003 100644 --- a/internal/db/kvs/redis/list.go +++ b/internal/db/kvs/redis/list.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/kvs/redis/option.go b/internal/db/kvs/redis/option.go index a62c123d08f..fbbcba9b346 100644 --- a/internal/db/kvs/redis/option.go +++ b/internal/db/kvs/redis/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/kvs/redis/option_test.go b/internal/db/kvs/redis/option_test.go index 193dfda9f29..09a835c1d8d 100644 --- a/internal/db/kvs/redis/option_test.go +++ b/internal/db/kvs/redis/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/kvs/redis/redis.go b/internal/db/kvs/redis/redis.go index b43de023023..4b5ed4b078b 100644 --- a/internal/db/kvs/redis/redis.go +++ b/internal/db/kvs/redis/redis.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/kvs/redis/redis_mock_test.go b/internal/db/kvs/redis/redis_mock_test.go index 2d699782cf8..d1a1171affb 100644 --- a/internal/db/kvs/redis/redis_mock_test.go +++ b/internal/db/kvs/redis/redis_mock_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/kvs/redis/redis_test.go b/internal/db/kvs/redis/redis_test.go index cb26287842c..2d7492287ea 100644 --- a/internal/db/kvs/redis/redis_test.go +++ b/internal/db/kvs/redis/redis_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/kvs/redis/set.go b/internal/db/kvs/redis/set.go index 09ed8ea987a..8a3ecf4f7ef 100644 --- a/internal/db/kvs/redis/set.go +++ b/internal/db/kvs/redis/set.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/nosql/cassandra/cassandra.go b/internal/db/nosql/cassandra/cassandra.go index 6a53e4912e5..d511dd52e18 100644 --- a/internal/db/nosql/cassandra/cassandra.go +++ b/internal/db/nosql/cassandra/cassandra.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/nosql/cassandra/cassandra_mock.go b/internal/db/nosql/cassandra/cassandra_mock.go index 4896ad6787e..220a5d6d5d3 100644 --- a/internal/db/nosql/cassandra/cassandra_mock.go +++ b/internal/db/nosql/cassandra/cassandra_mock.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/nosql/cassandra/cassandra_mock_test.go b/internal/db/nosql/cassandra/cassandra_mock_test.go index 939c9477667..8d9cb655896 100644 --- a/internal/db/nosql/cassandra/cassandra_mock_test.go +++ b/internal/db/nosql/cassandra/cassandra_mock_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/nosql/cassandra/cassandra_test.go b/internal/db/nosql/cassandra/cassandra_test.go index 90ca6e7622b..aa9302a8a3a 100644 --- a/internal/db/nosql/cassandra/cassandra_test.go +++ b/internal/db/nosql/cassandra/cassandra_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/nosql/cassandra/conviction.go b/internal/db/nosql/cassandra/conviction.go index 36106d7c9eb..1be112f44dd 100644 --- a/internal/db/nosql/cassandra/conviction.go +++ b/internal/db/nosql/cassandra/conviction.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/nosql/cassandra/conviction_test.go b/internal/db/nosql/cassandra/conviction_test.go index 773ad490490..330e2542b1e 100644 --- a/internal/db/nosql/cassandra/conviction_test.go +++ b/internal/db/nosql/cassandra/conviction_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/nosql/cassandra/delete.go b/internal/db/nosql/cassandra/delete.go index 2f09ad73a71..db8d4787ec7 100644 --- a/internal/db/nosql/cassandra/delete.go +++ b/internal/db/nosql/cassandra/delete.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/nosql/cassandra/observer.go b/internal/db/nosql/cassandra/observer.go index be7a8c0ec9a..36790fdbaa1 100644 --- a/internal/db/nosql/cassandra/observer.go +++ b/internal/db/nosql/cassandra/observer.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/nosql/cassandra/option.go b/internal/db/nosql/cassandra/option.go index fe8e15fae68..8cde1c562a0 100644 --- a/internal/db/nosql/cassandra/option.go +++ b/internal/db/nosql/cassandra/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/nosql/cassandra/option_test.go b/internal/db/nosql/cassandra/option_test.go index a0990266ea7..446108cb182 100644 --- a/internal/db/nosql/cassandra/option_test.go +++ b/internal/db/nosql/cassandra/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/dbr/connection.go b/internal/db/rdb/mysql/dbr/connection.go index a5d713a8407..412c16592c0 100644 --- a/internal/db/rdb/mysql/dbr/connection.go +++ b/internal/db/rdb/mysql/dbr/connection.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/dbr/dbr.go b/internal/db/rdb/mysql/dbr/dbr.go index 39aa79f5620..d006bb1898d 100644 --- a/internal/db/rdb/mysql/dbr/dbr.go +++ b/internal/db/rdb/mysql/dbr/dbr.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/dbr/dbr_mock.go b/internal/db/rdb/mysql/dbr/dbr_mock.go index 26fb1a1a854..730b961d3c1 100644 --- a/internal/db/rdb/mysql/dbr/dbr_mock.go +++ b/internal/db/rdb/mysql/dbr/dbr_mock.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/dbr/delete.go b/internal/db/rdb/mysql/dbr/delete.go index 1fcde02004a..449e65ae12a 100644 --- a/internal/db/rdb/mysql/dbr/delete.go +++ b/internal/db/rdb/mysql/dbr/delete.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/dbr/doc.go b/internal/db/rdb/mysql/dbr/doc.go index 7d415ceaa66..08198b9335f 100644 --- a/internal/db/rdb/mysql/dbr/doc.go +++ b/internal/db/rdb/mysql/dbr/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/dbr/insert.go b/internal/db/rdb/mysql/dbr/insert.go index e67c098fd89..2c58cf1ee42 100644 --- a/internal/db/rdb/mysql/dbr/insert.go +++ b/internal/db/rdb/mysql/dbr/insert.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/dbr/select.go b/internal/db/rdb/mysql/dbr/select.go index 3d14f6d5254..75aeee76a62 100644 --- a/internal/db/rdb/mysql/dbr/select.go +++ b/internal/db/rdb/mysql/dbr/select.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/dbr/session.go b/internal/db/rdb/mysql/dbr/session.go index 0b458e3d2d9..104b31aa026 100644 --- a/internal/db/rdb/mysql/dbr/session.go +++ b/internal/db/rdb/mysql/dbr/session.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/dbr/tx.go b/internal/db/rdb/mysql/dbr/tx.go index 58a5b3a6c57..78e0e1e701a 100644 --- a/internal/db/rdb/mysql/dbr/tx.go +++ b/internal/db/rdb/mysql/dbr/tx.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/doc.go b/internal/db/rdb/mysql/doc.go index 1783c09b27c..9b08d902fbf 100644 --- a/internal/db/rdb/mysql/doc.go +++ b/internal/db/rdb/mysql/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/get.go b/internal/db/rdb/mysql/get.go index ff708df520c..d37fce16c08 100644 --- a/internal/db/rdb/mysql/get.go +++ b/internal/db/rdb/mysql/get.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/model.go b/internal/db/rdb/mysql/model.go index 7e75065c32f..dbffefae125 100644 --- a/internal/db/rdb/mysql/model.go +++ b/internal/db/rdb/mysql/model.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/model_test.go b/internal/db/rdb/mysql/model_test.go index b90b298eff8..3648a169b4e 100644 --- a/internal/db/rdb/mysql/model_test.go +++ b/internal/db/rdb/mysql/model_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/mysql.go b/internal/db/rdb/mysql/mysql.go index a0f77b4954d..e72c14d6baa 100644 --- a/internal/db/rdb/mysql/mysql.go +++ b/internal/db/rdb/mysql/mysql.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/mysql_test.go b/internal/db/rdb/mysql/mysql_test.go index 233fff342b5..92a0a5feaf5 100644 --- a/internal/db/rdb/mysql/mysql_test.go +++ b/internal/db/rdb/mysql/mysql_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/option.go b/internal/db/rdb/mysql/option.go index dbe3921283d..bf91d742b85 100644 --- a/internal/db/rdb/mysql/option.go +++ b/internal/db/rdb/mysql/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/option_test.go b/internal/db/rdb/mysql/option_test.go index c1a3d0cc4a5..4bff2fb1e24 100644 --- a/internal/db/rdb/mysql/option_test.go +++ b/internal/db/rdb/mysql/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/receiver.go b/internal/db/rdb/mysql/receiver.go index e5137e24378..5c27c05f123 100644 --- a/internal/db/rdb/mysql/receiver.go +++ b/internal/db/rdb/mysql/receiver.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/rdb/mysql/set.go b/internal/db/rdb/mysql/set.go index 22a56dff982..12ca52326c3 100644 --- a/internal/db/rdb/mysql/set.go +++ b/internal/db/rdb/mysql/set.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/blob.go b/internal/db/storage/blob/blob.go index 4e11b63aaaf..85407d5e94d 100644 --- a/internal/db/storage/blob/blob.go +++ b/internal/db/storage/blob/blob.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/option.go b/internal/db/storage/blob/s3/option.go index 443ab8b06a8..ed75bc09873 100644 --- a/internal/db/storage/blob/s3/option.go +++ b/internal/db/storage/blob/s3/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/option_test.go b/internal/db/storage/blob/s3/option_test.go index b64f7a845ec..2745d0987eb 100644 --- a/internal/db/storage/blob/s3/option_test.go +++ b/internal/db/storage/blob/s3/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/reader/io/io.go b/internal/db/storage/blob/s3/reader/io/io.go index eea615a5b3f..945a4451063 100644 --- a/internal/db/storage/blob/s3/reader/io/io.go +++ b/internal/db/storage/blob/s3/reader/io/io.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/reader/option.go b/internal/db/storage/blob/s3/reader/option.go index 251057b9c30..7b1cc58ee90 100644 --- a/internal/db/storage/blob/s3/reader/option.go +++ b/internal/db/storage/blob/s3/reader/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/reader/option_test.go b/internal/db/storage/blob/s3/reader/option_test.go index a4c52db62ad..9b0de41a444 100644 --- a/internal/db/storage/blob/s3/reader/option_test.go +++ b/internal/db/storage/blob/s3/reader/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/reader/reader.go b/internal/db/storage/blob/s3/reader/reader.go index 23a54be3156..4d898f4ed80 100644 --- a/internal/db/storage/blob/s3/reader/reader.go +++ b/internal/db/storage/blob/s3/reader/reader.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/reader/reader_mock.go b/internal/db/storage/blob/s3/reader/reader_mock.go index 621c7af6bbe..e1f30cb79b8 100644 --- a/internal/db/storage/blob/s3/reader/reader_mock.go +++ b/internal/db/storage/blob/s3/reader/reader_mock.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/reader/reader_test.go b/internal/db/storage/blob/s3/reader/reader_test.go index 95a541a489a..958d6fadc4f 100644 --- a/internal/db/storage/blob/s3/reader/reader_test.go +++ b/internal/db/storage/blob/s3/reader/reader_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/s3.go b/internal/db/storage/blob/s3/s3.go index 63e4180fc88..00d1b664cd5 100644 --- a/internal/db/storage/blob/s3/s3.go +++ b/internal/db/storage/blob/s3/s3.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/s3_test.go b/internal/db/storage/blob/s3/s3_test.go index eff3ed5ebfa..0cebc04f588 100644 --- a/internal/db/storage/blob/s3/s3_test.go +++ b/internal/db/storage/blob/s3/s3_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/sdk/s3/s3.go b/internal/db/storage/blob/s3/sdk/s3/s3.go index c8ec3f47061..491f16f9a2d 100644 --- a/internal/db/storage/blob/s3/sdk/s3/s3.go +++ b/internal/db/storage/blob/s3/sdk/s3/s3.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/sdk/s3/s3iface/s3iface.go b/internal/db/storage/blob/s3/sdk/s3/s3iface/s3iface.go index 700fb5c5ba6..ddc398dad79 100644 --- a/internal/db/storage/blob/s3/sdk/s3/s3iface/s3iface.go +++ b/internal/db/storage/blob/s3/sdk/s3/s3iface/s3iface.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/sdk/s3/s3manager/s3manager.go b/internal/db/storage/blob/s3/sdk/s3/s3manager/s3manager.go index 34e80db9a92..4f37e1f15c0 100644 --- a/internal/db/storage/blob/s3/sdk/s3/s3manager/s3manager.go +++ b/internal/db/storage/blob/s3/sdk/s3/s3manager/s3manager.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/session/option.go b/internal/db/storage/blob/s3/session/option.go index d58a31aa5ad..0ad0ec8d6fb 100644 --- a/internal/db/storage/blob/s3/session/option.go +++ b/internal/db/storage/blob/s3/session/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/session/option_test.go b/internal/db/storage/blob/s3/session/option_test.go index 4d8c949ec15..0025d0eca2d 100644 --- a/internal/db/storage/blob/s3/session/option_test.go +++ b/internal/db/storage/blob/s3/session/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/session/session.go b/internal/db/storage/blob/s3/session/session.go index dafbe9f5624..f1c641b8e3e 100644 --- a/internal/db/storage/blob/s3/session/session.go +++ b/internal/db/storage/blob/s3/session/session.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/session/session_test.go b/internal/db/storage/blob/s3/session/session_test.go index f18c65649de..a266117b929 100644 --- a/internal/db/storage/blob/s3/session/session_test.go +++ b/internal/db/storage/blob/s3/session/session_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/writer/mock_test.go b/internal/db/storage/blob/s3/writer/mock_test.go index 9b357167ba3..9a79cce6d35 100644 --- a/internal/db/storage/blob/s3/writer/mock_test.go +++ b/internal/db/storage/blob/s3/writer/mock_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/writer/option.go b/internal/db/storage/blob/s3/writer/option.go index a512c0ffbba..072dd3c385c 100644 --- a/internal/db/storage/blob/s3/writer/option.go +++ b/internal/db/storage/blob/s3/writer/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/writer/option_test.go b/internal/db/storage/blob/s3/writer/option_test.go index 42f88b0f359..c9cb1c7d7ee 100644 --- a/internal/db/storage/blob/s3/writer/option_test.go +++ b/internal/db/storage/blob/s3/writer/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/writer/writer.go b/internal/db/storage/blob/s3/writer/writer.go index 215e0d60fad..f1652ce0005 100644 --- a/internal/db/storage/blob/s3/writer/writer.go +++ b/internal/db/storage/blob/s3/writer/writer.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/writer/writer_mock.go b/internal/db/storage/blob/s3/writer/writer_mock.go index cdf786ef6d6..7e2b4e4c241 100644 --- a/internal/db/storage/blob/s3/writer/writer_mock.go +++ b/internal/db/storage/blob/s3/writer/writer_mock.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/db/storage/blob/s3/writer/writer_test.go b/internal/db/storage/blob/s3/writer/writer_test.go index d02a8b57f69..64689f04af3 100644 --- a/internal/db/storage/blob/s3/writer/writer_test.go +++ b/internal/db/storage/blob/s3/writer/writer_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/encoding/json/json.go b/internal/encoding/json/json.go index 66d07c00693..7b715c92e32 100644 --- a/internal/encoding/json/json.go +++ b/internal/encoding/json/json.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/encoding/json/json_test.go b/internal/encoding/json/json_test.go index 8ec8345d66f..d345d7bc1a1 100644 --- a/internal/encoding/json/json_test.go +++ b/internal/encoding/json/json_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errgroup/group.go b/internal/errgroup/group.go index e491ab13a9d..31c1fe68a2a 100644 --- a/internal/errgroup/group.go +++ b/internal/errgroup/group.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errgroup/group_test.go b/internal/errgroup/group_test.go index 0e950f16a8b..7c4ab58c0fb 100644 --- a/internal/errgroup/group_test.go +++ b/internal/errgroup/group_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/backup.go b/internal/errors/backup.go index cca5391e8d4..72f3600ad60 100644 --- a/internal/errors/backup.go +++ b/internal/errors/backup.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/benchmark.go b/internal/errors/benchmark.go index afba087e2e8..95ee15c32f3 100644 --- a/internal/errors/benchmark.go +++ b/internal/errors/benchmark.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/blob.go b/internal/errors/blob.go index 5f1c7e02278..e08c67211e4 100644 --- a/internal/errors/blob.go +++ b/internal/errors/blob.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/blob_test.go b/internal/errors/blob_test.go index f7b0118009f..645454f3bc9 100644 --- a/internal/errors/blob_test.go +++ b/internal/errors/blob_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/cache.go b/internal/errors/cache.go index 5694f5209fc..daf392e27b0 100644 --- a/internal/errors/cache.go +++ b/internal/errors/cache.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/cassandra.go b/internal/errors/cassandra.go index c2f88bcdd50..f4f007d581d 100644 --- a/internal/errors/cassandra.go +++ b/internal/errors/cassandra.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/cassandra_test.go b/internal/errors/cassandra_test.go index 47ff71a932e..5eae8fd638d 100644 --- a/internal/errors/cassandra_test.go +++ b/internal/errors/cassandra_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/client.go b/internal/errors/client.go index a85fda37531..a57bc76f550 100644 --- a/internal/errors/client.go +++ b/internal/errors/client.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/compressor.go b/internal/errors/compressor.go index 4223939d176..c4125801d0b 100644 --- a/internal/errors/compressor.go +++ b/internal/errors/compressor.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/compressor_test.go b/internal/errors/compressor_test.go index 2542515956f..d89d004b4f1 100644 --- a/internal/errors/compressor_test.go +++ b/internal/errors/compressor_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/discoverer.go b/internal/errors/discoverer.go index c792e037be6..5d616ffd64f 100644 --- a/internal/errors/discoverer.go +++ b/internal/errors/discoverer.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/discoverer_test.go b/internal/errors/discoverer_test.go index de1ef37f86d..0e877af7b61 100644 --- a/internal/errors/discoverer_test.go +++ b/internal/errors/discoverer_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/errors.go b/internal/errors/errors.go index f0c469f9596..f4a9b586968 100644 --- a/internal/errors/errors.go +++ b/internal/errors/errors.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/file.go b/internal/errors/file.go index e5c6cc84eee..a309362e0eb 100644 --- a/internal/errors/file.go +++ b/internal/errors/file.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/file_test.go b/internal/errors/file_test.go index 80a4880aa61..1dffc70cd2b 100644 --- a/internal/errors/file_test.go +++ b/internal/errors/file_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/gongt.go b/internal/errors/gongt.go index f5d0d1bd9e8..88e31f70d54 100644 --- a/internal/errors/gongt.go +++ b/internal/errors/gongt.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/grpc.go b/internal/errors/grpc.go index ab7b3dfe730..ee48fa64a46 100644 --- a/internal/errors/grpc.go +++ b/internal/errors/grpc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/http.go b/internal/errors/http.go index a68560d69c3..2ff52632d9d 100644 --- a/internal/errors/http.go +++ b/internal/errors/http.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/io.go b/internal/errors/io.go index 5cc21cf9acb..4cc537b0548 100644 --- a/internal/errors/io.go +++ b/internal/errors/io.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/k8s.go b/internal/errors/k8s.go index e4cc9515058..3f96026eb68 100644 --- a/internal/errors/k8s.go +++ b/internal/errors/k8s.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/meta.go b/internal/errors/meta.go index ace1704723e..0492bc838d4 100644 --- a/internal/errors/meta.go +++ b/internal/errors/meta.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/mysql.go b/internal/errors/mysql.go index 20ac4d2d7ab..04294922c04 100644 --- a/internal/errors/mysql.go +++ b/internal/errors/mysql.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/mysql_test.go b/internal/errors/mysql_test.go index 18c010f6fdf..87f381c3c20 100644 --- a/internal/errors/mysql_test.go +++ b/internal/errors/mysql_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/net.go b/internal/errors/net.go index 433b10b2c4b..199000a2974 100644 --- a/internal/errors/net.go +++ b/internal/errors/net.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/ngt.go b/internal/errors/ngt.go index ca3002c85fb..e29039a9d50 100644 --- a/internal/errors/ngt.go +++ b/internal/errors/ngt.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/observability.go b/internal/errors/observability.go index b3616885664..53227f1c84c 100644 --- a/internal/errors/observability.go +++ b/internal/errors/observability.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/option.go b/internal/errors/option.go index cab7349b305..28cc4312bd8 100644 --- a/internal/errors/option.go +++ b/internal/errors/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/redis.go b/internal/errors/redis.go index ad2caf7e2e5..cdbf88706b3 100644 --- a/internal/errors/redis.go +++ b/internal/errors/redis.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/redis_test.go b/internal/errors/redis_test.go index 91a14511e17..e60550c0aac 100644 --- a/internal/errors/redis_test.go +++ b/internal/errors/redis_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/runner.go b/internal/errors/runner.go index 06a252f028e..d0ba35ea65d 100644 --- a/internal/errors/runner.go +++ b/internal/errors/runner.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/runtime.go b/internal/errors/runtime.go index de6eafe397e..be5cc34c25e 100644 --- a/internal/errors/runtime.go +++ b/internal/errors/runtime.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/storage.go b/internal/errors/storage.go index 6b988efe6ff..9ff1b0be2ad 100644 --- a/internal/errors/storage.go +++ b/internal/errors/storage.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/tensorflow.go b/internal/errors/tensorflow.go index f1df69f4936..262f362e894 100644 --- a/internal/errors/tensorflow.go +++ b/internal/errors/tensorflow.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/tls.go b/internal/errors/tls.go index 72bc5b0f695..db78afcb518 100644 --- a/internal/errors/tls.go +++ b/internal/errors/tls.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/unit.go b/internal/errors/unit.go index b621480e15c..2f8ad5ddebe 100644 --- a/internal/errors/unit.go +++ b/internal/errors/unit.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/vald.go b/internal/errors/vald.go index ff96984af04..1dc888930e2 100644 --- a/internal/errors/vald.go +++ b/internal/errors/vald.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/worker.go b/internal/errors/worker.go index f7bd77b71db..da191dcc9c1 100644 --- a/internal/errors/worker.go +++ b/internal/errors/worker.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/file/file.go b/internal/file/file.go index 21d0e849a6b..8845f77aea0 100644 --- a/internal/file/file.go +++ b/internal/file/file.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/file/file_test.go b/internal/file/file_test.go index bd7265467d0..09960d92c07 100644 --- a/internal/file/file_test.go +++ b/internal/file/file_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/file/watch/option.go b/internal/file/watch/option.go index 5f9ff9a5884..7bb56cb1d03 100644 --- a/internal/file/watch/option.go +++ b/internal/file/watch/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/file/watch/option_test.go b/internal/file/watch/option_test.go index 262b186a87a..d69273bd580 100644 --- a/internal/file/watch/option_test.go +++ b/internal/file/watch/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/file/watch/watch.go b/internal/file/watch/watch.go index 3fd355dbc0e..ed6d0c732d3 100644 --- a/internal/file/watch/watch.go +++ b/internal/file/watch/watch.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/file/watch/watch_test.go b/internal/file/watch/watch_test.go index 699de106fa7..fe082aa77cc 100644 --- a/internal/file/watch/watch_test.go +++ b/internal/file/watch/watch_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/info/info.go b/internal/info/info.go index 5cd3d18f520..ea02d2baad5 100644 --- a/internal/info/info.go +++ b/internal/info/info.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/info/info_test.go b/internal/info/info_test.go index 070a53d54d1..05a4ab94ffd 100644 --- a/internal/info/info_test.go +++ b/internal/info/info_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/io/io.go b/internal/io/io.go index ef320238381..32c89a7efd0 100644 --- a/internal/io/io.go +++ b/internal/io/io.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/metrics/node/node.go b/internal/k8s/metrics/node/node.go index 5502c5ce139..89a9be2f5ef 100644 --- a/internal/k8s/metrics/node/node.go +++ b/internal/k8s/metrics/node/node.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/metrics/node/node_test.go b/internal/k8s/metrics/node/node_test.go index 6e5d092bc80..a9c9c0d3cec 100644 --- a/internal/k8s/metrics/node/node_test.go +++ b/internal/k8s/metrics/node/node_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/metrics/node/option.go b/internal/k8s/metrics/node/option.go index 3db4578f2a4..b0f62a4c0f0 100644 --- a/internal/k8s/metrics/node/option.go +++ b/internal/k8s/metrics/node/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/metrics/node/option_test.go b/internal/k8s/metrics/node/option_test.go index 96b5f323834..848235b489a 100644 --- a/internal/k8s/metrics/node/option_test.go +++ b/internal/k8s/metrics/node/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/metrics/pod/option.go b/internal/k8s/metrics/pod/option.go index 8b88ddbddb2..696e79bb839 100644 --- a/internal/k8s/metrics/pod/option.go +++ b/internal/k8s/metrics/pod/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/metrics/pod/option_test.go b/internal/k8s/metrics/pod/option_test.go index 48657ef141b..68393285aa5 100644 --- a/internal/k8s/metrics/pod/option_test.go +++ b/internal/k8s/metrics/pod/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/metrics/pod/pod.go b/internal/k8s/metrics/pod/pod.go index 79937b315d8..df2e50fe497 100644 --- a/internal/k8s/metrics/pod/pod.go +++ b/internal/k8s/metrics/pod/pod.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/metrics/pod/pod_test.go b/internal/k8s/metrics/pod/pod_test.go index e535d9e5b55..23ed6542e2f 100644 --- a/internal/k8s/metrics/pod/pod_test.go +++ b/internal/k8s/metrics/pod/pod_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/node/node.go b/internal/k8s/node/node.go index f50022e5703..12869f3a87d 100644 --- a/internal/k8s/node/node.go +++ b/internal/k8s/node/node.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/node/node_test.go b/internal/k8s/node/node_test.go index c8b3c727b84..6f90f8f0740 100644 --- a/internal/k8s/node/node_test.go +++ b/internal/k8s/node/node_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/node/option.go b/internal/k8s/node/option.go index 8f44f18f0d6..88d04a7769c 100644 --- a/internal/k8s/node/option.go +++ b/internal/k8s/node/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/node/option_test.go b/internal/k8s/node/option_test.go index 840ce1dc55c..20b3adcc92e 100644 --- a/internal/k8s/node/option_test.go +++ b/internal/k8s/node/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/option.go b/internal/k8s/option.go index b47bcc4161c..c0e2866de6a 100644 --- a/internal/k8s/option.go +++ b/internal/k8s/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/option_test.go b/internal/k8s/option_test.go index cde60becb8c..5fcc1c766b7 100644 --- a/internal/k8s/option_test.go +++ b/internal/k8s/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/pod/option.go b/internal/k8s/pod/option.go index 227861936a9..d808214c93a 100644 --- a/internal/k8s/pod/option.go +++ b/internal/k8s/pod/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/pod/option_test.go b/internal/k8s/pod/option_test.go index b15b6e92f88..ea6b5c69d77 100644 --- a/internal/k8s/pod/option_test.go +++ b/internal/k8s/pod/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/pod/pod.go b/internal/k8s/pod/pod.go index 8fd962181d4..7cf5982cb48 100644 --- a/internal/k8s/pod/pod.go +++ b/internal/k8s/pod/pod.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/pod/pod_test.go b/internal/k8s/pod/pod_test.go index 798e8e38c8a..62a4b82da1e 100644 --- a/internal/k8s/pod/pod_test.go +++ b/internal/k8s/pod/pod_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/reconciler.go b/internal/k8s/reconciler.go index 000f5e7e60b..2499fc56d94 100644 --- a/internal/k8s/reconciler.go +++ b/internal/k8s/reconciler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/k8s/reconciler_test.go b/internal/k8s/reconciler_test.go index 4ef4df3c2fb..9ef02620c97 100644 --- a/internal/k8s/reconciler_test.go +++ b/internal/k8s/reconciler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/format/format.go b/internal/log/format/format.go index 9efd9ca34c8..5a1319106be 100644 --- a/internal/log/format/format.go +++ b/internal/log/format/format.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/format/format_test.go b/internal/log/format/format_test.go index 844aa2ea336..2cd0d2c633b 100644 --- a/internal/log/format/format_test.go +++ b/internal/log/format/format_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/glg/glg.go b/internal/log/glg/glg.go index 629e2c45fc8..b1f9975bcda 100644 --- a/internal/log/glg/glg.go +++ b/internal/log/glg/glg.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/glg/glg_test.go b/internal/log/glg/glg_test.go index 91220fdc715..061c31d3c9a 100644 --- a/internal/log/glg/glg_test.go +++ b/internal/log/glg/glg_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/glg/option.go b/internal/log/glg/option.go index 30efd2d3e44..2674670456a 100644 --- a/internal/log/glg/option.go +++ b/internal/log/glg/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/glg/option_test.go b/internal/log/glg/option_test.go index f713555ddaf..107d1ce9fee 100644 --- a/internal/log/glg/option_test.go +++ b/internal/log/glg/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/level/level.go b/internal/log/level/level.go index 4110ea1c695..4d0da80d35c 100644 --- a/internal/log/level/level.go +++ b/internal/log/level/level.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/level/level_test.go b/internal/log/level/level_test.go index 958a1cc899a..6a7befa9185 100644 --- a/internal/log/level/level_test.go +++ b/internal/log/level/level_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/log.go b/internal/log/log.go index b1fd13409c6..0f146685a7a 100644 --- a/internal/log/log.go +++ b/internal/log/log.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/log_test.go b/internal/log/log_test.go index 23ee3b39931..8e72218fd9a 100644 --- a/internal/log/log_test.go +++ b/internal/log/log_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/logger/type.go b/internal/log/logger/type.go index 1395a5ed0e6..70c245b7c44 100644 --- a/internal/log/logger/type.go +++ b/internal/log/logger/type.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/logger/type_test.go b/internal/log/logger/type_test.go index 1f35cb4a833..962dd367dac 100644 --- a/internal/log/logger/type_test.go +++ b/internal/log/logger/type_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/mock/logger.go b/internal/log/mock/logger.go index 1b2cdb1e69a..c0a91c51318 100644 --- a/internal/log/mock/logger.go +++ b/internal/log/mock/logger.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/mock/logger_test.go b/internal/log/mock/logger_test.go index 31958badec0..bf423f0a5d8 100644 --- a/internal/log/mock/logger_test.go +++ b/internal/log/mock/logger_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/mock/retry.go b/internal/log/mock/retry.go index 1db1c706204..c900184d7ea 100644 --- a/internal/log/mock/retry.go +++ b/internal/log/mock/retry.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/mock/retry_test.go b/internal/log/mock/retry_test.go index 0cadaeafc7f..fbe6ed06775 100644 --- a/internal/log/mock/retry_test.go +++ b/internal/log/mock/retry_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/option.go b/internal/log/option.go index b1889325e91..928d8f050e4 100644 --- a/internal/log/option.go +++ b/internal/log/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/option_test.go b/internal/log/option_test.go index f22046e831b..a9496db5b06 100644 --- a/internal/log/option_test.go +++ b/internal/log/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/retry/option.go b/internal/log/retry/option.go index ee47d3f8baa..89377146da9 100644 --- a/internal/log/retry/option.go +++ b/internal/log/retry/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/retry/option_test.go b/internal/log/retry/option_test.go index 31746531d4f..31f883762a7 100644 --- a/internal/log/retry/option_test.go +++ b/internal/log/retry/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/retry/retry.go b/internal/log/retry/retry.go index 4b668c1a2ae..9146bfa5059 100644 --- a/internal/log/retry/retry.go +++ b/internal/log/retry/retry.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/log/retry/retry_test.go b/internal/log/retry/retry_test.go index 05f761c0db5..881a8aed53c 100644 --- a/internal/log/retry/retry_test.go +++ b/internal/log/retry/retry_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/client.go b/internal/net/grpc/client.go index fe4da920aca..f5f0983a5bd 100644 --- a/internal/net/grpc/client.go +++ b/internal/net/grpc/client.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/client_test.go b/internal/net/grpc/client_test.go index 189d61f0493..699ee034036 100644 --- a/internal/net/grpc/client_test.go +++ b/internal/net/grpc/client_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/grpcconns.go b/internal/net/grpc/grpcconns.go index 67cbfa23166..e10b06628b1 100644 --- a/internal/net/grpc/grpcconns.go +++ b/internal/net/grpc/grpcconns.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/grpcconns_test.go b/internal/net/grpc/grpcconns_test.go index ce2f712fe83..71a22a07ea2 100644 --- a/internal/net/grpc/grpcconns_test.go +++ b/internal/net/grpc/grpcconns_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/handler.go b/internal/net/grpc/handler.go index 82b046f475f..f70cfb22b2b 100644 --- a/internal/net/grpc/handler.go +++ b/internal/net/grpc/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/interceptor.go b/internal/net/grpc/interceptor.go index ee34e00118c..ca5c836641d 100644 --- a/internal/net/grpc/interceptor.go +++ b/internal/net/grpc/interceptor.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/interceptor_test.go b/internal/net/grpc/interceptor_test.go index 83336677906..c12c29df029 100644 --- a/internal/net/grpc/interceptor_test.go +++ b/internal/net/grpc/interceptor_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/metric/client.go b/internal/net/grpc/metric/client.go index 495e371983b..231c949c0e0 100644 --- a/internal/net/grpc/metric/client.go +++ b/internal/net/grpc/metric/client.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/metric/client_option.go b/internal/net/grpc/metric/client_option.go index 4ab3f46075a..1845995fc59 100644 --- a/internal/net/grpc/metric/client_option.go +++ b/internal/net/grpc/metric/client_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/metric/client_test.go b/internal/net/grpc/metric/client_test.go index c3094c8b40c..fc46f5a96c1 100644 --- a/internal/net/grpc/metric/client_test.go +++ b/internal/net/grpc/metric/client_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/metric/server.go b/internal/net/grpc/metric/server.go index cce6d0cd725..adfafd8f3b5 100644 --- a/internal/net/grpc/metric/server.go +++ b/internal/net/grpc/metric/server.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/metric/server_option.go b/internal/net/grpc/metric/server_option.go index 77a30bcc50c..8d74bb34d74 100644 --- a/internal/net/grpc/metric/server_option.go +++ b/internal/net/grpc/metric/server_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/metric/server_test.go b/internal/net/grpc/metric/server_test.go index 6d8381706e2..84dbbd3bb97 100644 --- a/internal/net/grpc/metric/server_test.go +++ b/internal/net/grpc/metric/server_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/option.go b/internal/net/grpc/option.go index a4704933312..874f7e6077b 100644 --- a/internal/net/grpc/option.go +++ b/internal/net/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/option_test.go b/internal/net/grpc/option_test.go index 129af59244e..c5dcdc5d232 100644 --- a/internal/net/grpc/option_test.go +++ b/internal/net/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/pool/option.go b/internal/net/grpc/pool/option.go index 7220bae5742..10c0eb50fa6 100644 --- a/internal/net/grpc/pool/option.go +++ b/internal/net/grpc/pool/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/pool/option_test.go b/internal/net/grpc/pool/option_test.go index cfda3c1a3d6..9acb36b9af3 100644 --- a/internal/net/grpc/pool/option_test.go +++ b/internal/net/grpc/pool/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/pool/pool.go b/internal/net/grpc/pool/pool.go index ca149ce4f93..bd7c08288a6 100644 --- a/internal/net/grpc/pool/pool.go +++ b/internal/net/grpc/pool/pool.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/pool/pool_bench_test.go b/internal/net/grpc/pool/pool_bench_test.go index 625698030a1..67ffea644a7 100644 --- a/internal/net/grpc/pool/pool_bench_test.go +++ b/internal/net/grpc/pool/pool_bench_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/pool/pool_test.go b/internal/net/grpc/pool/pool_test.go index 8f845f7747f..2f870088132 100644 --- a/internal/net/grpc/pool/pool_test.go +++ b/internal/net/grpc/pool/pool_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/proto/proto.go b/internal/net/grpc/proto/proto.go index e9202187324..8b74429947d 100644 --- a/internal/net/grpc/proto/proto.go +++ b/internal/net/grpc/proto/proto.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/proto/proto_test.go b/internal/net/grpc/proto/proto_test.go index e45519babd0..668cb140524 100644 --- a/internal/net/grpc/proto/proto_test.go +++ b/internal/net/grpc/proto/proto_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/status/status.go b/internal/net/grpc/status/status.go index 7653e8347b2..cd1896525b1 100644 --- a/internal/net/grpc/status/status.go +++ b/internal/net/grpc/status/status.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/status/status_test.go b/internal/net/grpc/status/status_test.go index 7af60400d0e..12c5a88051a 100644 --- a/internal/net/grpc/status/status_test.go +++ b/internal/net/grpc/status/status_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/stream.go b/internal/net/grpc/stream.go index 2510cb8af88..6741f34ee27 100644 --- a/internal/net/grpc/stream.go +++ b/internal/net/grpc/stream.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/grpc/stream_test.go b/internal/net/grpc/stream_test.go index 5b8b7ecb7dd..282d355f5b8 100644 --- a/internal/net/grpc/stream_test.go +++ b/internal/net/grpc/stream_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/client/client.go b/internal/net/http/client/client.go index 0e76e2d76b8..623c3c0623d 100644 --- a/internal/net/http/client/client.go +++ b/internal/net/http/client/client.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/client/client_test.go b/internal/net/http/client/client_test.go index e3cdb9ca56c..186985fc9dc 100644 --- a/internal/net/http/client/client_test.go +++ b/internal/net/http/client/client_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/client/option.go b/internal/net/http/client/option.go index c9a3aabb03d..b164aaeeeeb 100644 --- a/internal/net/http/client/option.go +++ b/internal/net/http/client/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/client/option_test.go b/internal/net/http/client/option_test.go index 194608da2c1..799126bf11d 100644 --- a/internal/net/http/client/option_test.go +++ b/internal/net/http/client/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/dump/dump.go b/internal/net/http/dump/dump.go index e975b75a20c..a3a797e95a2 100644 --- a/internal/net/http/dump/dump.go +++ b/internal/net/http/dump/dump.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/dump/dump_test.go b/internal/net/http/dump/dump_test.go index 9caedf09c1e..d196168b07a 100644 --- a/internal/net/http/dump/dump_test.go +++ b/internal/net/http/dump/dump_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/json/json.go b/internal/net/http/json/json.go index 82fe589aed3..fe59c900433 100644 --- a/internal/net/http/json/json.go +++ b/internal/net/http/json/json.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/json/json_test.go b/internal/net/http/json/json_test.go index c2e9681871d..f7c398ef73b 100644 --- a/internal/net/http/json/json_test.go +++ b/internal/net/http/json/json_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/metrics/pprof.go b/internal/net/http/metrics/pprof.go index 9965b8bfcf6..876ee705b3c 100644 --- a/internal/net/http/metrics/pprof.go +++ b/internal/net/http/metrics/pprof.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/metrics/pprof_test.go b/internal/net/http/metrics/pprof_test.go index ef8c460a40d..e85359fb22f 100644 --- a/internal/net/http/metrics/pprof_test.go +++ b/internal/net/http/metrics/pprof_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/middleware/middleware.go b/internal/net/http/middleware/middleware.go index 5fa21257a4a..18a1686c163 100644 --- a/internal/net/http/middleware/middleware.go +++ b/internal/net/http/middleware/middleware.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/middleware/option.go b/internal/net/http/middleware/option.go index 1105297782a..c25edeb3b2f 100644 --- a/internal/net/http/middleware/option.go +++ b/internal/net/http/middleware/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/middleware/option_test.go b/internal/net/http/middleware/option_test.go index aaef604df54..f59f2580deb 100644 --- a/internal/net/http/middleware/option_test.go +++ b/internal/net/http/middleware/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/middleware/timeout.go b/internal/net/http/middleware/timeout.go index 42387c4258a..dde511ea34b 100644 --- a/internal/net/http/middleware/timeout.go +++ b/internal/net/http/middleware/timeout.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/middleware/timeout_test.go b/internal/net/http/middleware/timeout_test.go index f2418f66515..24282a260cd 100644 --- a/internal/net/http/middleware/timeout_test.go +++ b/internal/net/http/middleware/timeout_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/rest/rest.go b/internal/net/http/rest/rest.go index db1ccd66923..1b9b9fb18a3 100644 --- a/internal/net/http/rest/rest.go +++ b/internal/net/http/rest/rest.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/rest/rest_test.go b/internal/net/http/rest/rest_test.go index 462cf8e9e1f..8636b92765e 100644 --- a/internal/net/http/rest/rest_test.go +++ b/internal/net/http/rest/rest_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/routing/middleware_mock_test.go b/internal/net/http/routing/middleware_mock_test.go index 3e21a92a9d2..14f506e5753 100644 --- a/internal/net/http/routing/middleware_mock_test.go +++ b/internal/net/http/routing/middleware_mock_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/routing/option.go b/internal/net/http/routing/option.go index c10d9392ae0..1f17e261745 100644 --- a/internal/net/http/routing/option.go +++ b/internal/net/http/routing/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/routing/option_test.go b/internal/net/http/routing/option_test.go index d129bc23c2f..64a397e2b30 100644 --- a/internal/net/http/routing/option_test.go +++ b/internal/net/http/routing/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/routing/router.go b/internal/net/http/routing/router.go index f2247340d59..ef6204b219a 100644 --- a/internal/net/http/routing/router.go +++ b/internal/net/http/routing/router.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/routing/router_test.go b/internal/net/http/routing/router_test.go index 62b926053cf..144ad0469d2 100644 --- a/internal/net/http/routing/router_test.go +++ b/internal/net/http/routing/router_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/routing/routes.go b/internal/net/http/routing/routes.go index f5a8946f6a8..21fed286708 100644 --- a/internal/net/http/routing/routes.go +++ b/internal/net/http/routing/routes.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/transport/option.go b/internal/net/http/transport/option.go index 1433caef1c4..d2ac9650be8 100644 --- a/internal/net/http/transport/option.go +++ b/internal/net/http/transport/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/transport/option_test.go b/internal/net/http/transport/option_test.go index ae4f64d05df..44c37cd14f0 100644 --- a/internal/net/http/transport/option_test.go +++ b/internal/net/http/transport/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/transport/roundtrip.go b/internal/net/http/transport/roundtrip.go index 5f185c98e25..d35d90a20f0 100644 --- a/internal/net/http/transport/roundtrip.go +++ b/internal/net/http/transport/roundtrip.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/transport/roundtrip_mock_test.go b/internal/net/http/transport/roundtrip_mock_test.go index 788009ec33c..6742c564ce5 100644 --- a/internal/net/http/transport/roundtrip_mock_test.go +++ b/internal/net/http/transport/roundtrip_mock_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/http/transport/roundtrip_test.go b/internal/net/http/transport/roundtrip_test.go index 7a200a0ad64..3af41711f92 100644 --- a/internal/net/http/transport/roundtrip_test.go +++ b/internal/net/http/transport/roundtrip_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/net.go b/internal/net/net.go index d02ef63f38b..9d7e5869fa1 100644 --- a/internal/net/net.go +++ b/internal/net/net.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/net_test.go b/internal/net/net_test.go index fc6ed999709..28c07d2419d 100644 --- a/internal/net/net_test.go +++ b/internal/net/net_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/tcp/control_darwin.go b/internal/net/tcp/control_darwin.go index 4cd2170364f..dd40b89326f 100644 --- a/internal/net/tcp/control_darwin.go +++ b/internal/net/tcp/control_darwin.go @@ -1,7 +1,7 @@ // +build darwin,!linux,!windows,!wasm,!js // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/tcp/control_darwin_test.go b/internal/net/tcp/control_darwin_test.go index 4328d1a6cfd..74fd0d81684 100644 --- a/internal/net/tcp/control_darwin_test.go +++ b/internal/net/tcp/control_darwin_test.go @@ -1,7 +1,7 @@ // +build darwin,!linux,!windows,!wasm,!js // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/tcp/control_other.go b/internal/net/tcp/control_other.go index 6e92a7c08a4..7ff50c94bc4 100644 --- a/internal/net/tcp/control_other.go +++ b/internal/net/tcp/control_other.go @@ -1,7 +1,7 @@ // +build wasm,js,!windows,!linux,!darwin // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/tcp/control_other_test.go b/internal/net/tcp/control_other_test.go index 89ac0f8d654..2b9175862b1 100644 --- a/internal/net/tcp/control_other_test.go +++ b/internal/net/tcp/control_other_test.go @@ -1,7 +1,7 @@ // +build wasm,js,!windows,!linux,!darwin // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/tcp/control_unix.go b/internal/net/tcp/control_unix.go index dc45c50542e..e651f59df62 100644 --- a/internal/net/tcp/control_unix.go +++ b/internal/net/tcp/control_unix.go @@ -1,7 +1,7 @@ // +build linux,!windows,!wasm,!js,!darwin // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/tcp/control_unix_test.go b/internal/net/tcp/control_unix_test.go index 5c322721d42..147c6a3bc50 100644 --- a/internal/net/tcp/control_unix_test.go +++ b/internal/net/tcp/control_unix_test.go @@ -1,7 +1,7 @@ // +build linux,!windows,!wasm,!js,!darwin // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/tcp/control_windows.go b/internal/net/tcp/control_windows.go index 3e2c0693470..2f22011e9e1 100644 --- a/internal/net/tcp/control_windows.go +++ b/internal/net/tcp/control_windows.go @@ -1,7 +1,7 @@ // +build windows // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/tcp/control_windows_test.go b/internal/net/tcp/control_windows_test.go index 4a90c8fe831..5e1cba21ac1 100644 --- a/internal/net/tcp/control_windows_test.go +++ b/internal/net/tcp/control_windows_test.go @@ -1,7 +1,7 @@ // +build windows // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/tcp/dialer.go b/internal/net/tcp/dialer.go index ed877f62f58..aa44266cc7e 100644 --- a/internal/net/tcp/dialer.go +++ b/internal/net/tcp/dialer.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/tcp/dialer_test.go b/internal/net/tcp/dialer_test.go index 40ffde3cd81..539b9d8425b 100644 --- a/internal/net/tcp/dialer_test.go +++ b/internal/net/tcp/dialer_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/tcp/option.go b/internal/net/tcp/option.go index 06d866185f5..777550cdb95 100644 --- a/internal/net/tcp/option.go +++ b/internal/net/tcp/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/net/tcp/option_test.go b/internal/net/tcp/option_test.go index 1ade2ec4f27..f711cb6f80a 100644 --- a/internal/net/tcp/option_test.go +++ b/internal/net/tcp/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/client/google/option.go b/internal/observability/client/google/option.go index 4ec89161d47..ca408dd42c4 100644 --- a/internal/observability/client/google/option.go +++ b/internal/observability/client/google/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/client/google/option_test.go b/internal/observability/client/google/option_test.go index ce500b87de2..468cf56d81b 100644 --- a/internal/observability/client/google/option_test.go +++ b/internal/observability/client/google/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/collector/collector.go b/internal/observability/collector/collector.go index 398fdde1ba5..0419320372f 100644 --- a/internal/observability/collector/collector.go +++ b/internal/observability/collector/collector.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/collector/collector_option.go b/internal/observability/collector/collector_option.go index 9549b45fa88..6611d88f3be 100644 --- a/internal/observability/collector/collector_option.go +++ b/internal/observability/collector/collector_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/collector/collector_option_test.go b/internal/observability/collector/collector_option_test.go index 66d7848ccf1..15cc82322d5 100644 --- a/internal/observability/collector/collector_option_test.go +++ b/internal/observability/collector/collector_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/collector/collector_test.go b/internal/observability/collector/collector_test.go index f7f7d986a64..52cd5bbe9a9 100644 --- a/internal/observability/collector/collector_test.go +++ b/internal/observability/collector/collector_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/exporter/exporter.go b/internal/observability/exporter/exporter.go index 562223829d1..19978d08012 100644 --- a/internal/observability/exporter/exporter.go +++ b/internal/observability/exporter/exporter.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/exporter/jaeger/jaeger.go b/internal/observability/exporter/jaeger/jaeger.go index 7978cfaa54a..57767256ac6 100644 --- a/internal/observability/exporter/jaeger/jaeger.go +++ b/internal/observability/exporter/jaeger/jaeger.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/exporter/jaeger/jaeger_option.go b/internal/observability/exporter/jaeger/jaeger_option.go index 6a8d232383e..f24b3ce8c2c 100644 --- a/internal/observability/exporter/jaeger/jaeger_option.go +++ b/internal/observability/exporter/jaeger/jaeger_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/exporter/jaeger/jaeger_option_test.go b/internal/observability/exporter/jaeger/jaeger_option_test.go index 66e7d5b8d4d..3fd706aca9f 100644 --- a/internal/observability/exporter/jaeger/jaeger_option_test.go +++ b/internal/observability/exporter/jaeger/jaeger_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/exporter/jaeger/jaeger_test.go b/internal/observability/exporter/jaeger/jaeger_test.go index caf605a50b8..2f52b0401e3 100644 --- a/internal/observability/exporter/jaeger/jaeger_test.go +++ b/internal/observability/exporter/jaeger/jaeger_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/exporter/prometheus/prometheus.go b/internal/observability/exporter/prometheus/prometheus.go index 7e31f3a5837..aafaf8e4d3c 100644 --- a/internal/observability/exporter/prometheus/prometheus.go +++ b/internal/observability/exporter/prometheus/prometheus.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/exporter/prometheus/prometheus_option.go b/internal/observability/exporter/prometheus/prometheus_option.go index 014ce3d7c45..65c94388827 100644 --- a/internal/observability/exporter/prometheus/prometheus_option.go +++ b/internal/observability/exporter/prometheus/prometheus_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/exporter/prometheus/prometheus_option_test.go b/internal/observability/exporter/prometheus/prometheus_option_test.go index 40a48b45173..9dcd323ebcf 100644 --- a/internal/observability/exporter/prometheus/prometheus_option_test.go +++ b/internal/observability/exporter/prometheus/prometheus_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/exporter/prometheus/prometheus_test.go b/internal/observability/exporter/prometheus/prometheus_test.go index e84ee901400..62e167b82bf 100644 --- a/internal/observability/exporter/prometheus/prometheus_test.go +++ b/internal/observability/exporter/prometheus/prometheus_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/exporter/stackdriver/stackdriver.go b/internal/observability/exporter/stackdriver/stackdriver.go index a8610e51a80..3ec231abf03 100644 --- a/internal/observability/exporter/stackdriver/stackdriver.go +++ b/internal/observability/exporter/stackdriver/stackdriver.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/exporter/stackdriver/stackdriver_option.go b/internal/observability/exporter/stackdriver/stackdriver_option.go index 2c690587713..f0761b4d82b 100644 --- a/internal/observability/exporter/stackdriver/stackdriver_option.go +++ b/internal/observability/exporter/stackdriver/stackdriver_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/exporter/stackdriver/stackdriver_option_test.go b/internal/observability/exporter/stackdriver/stackdriver_option_test.go index 57ab27156fc..ecfe284ec1e 100644 --- a/internal/observability/exporter/stackdriver/stackdriver_option_test.go +++ b/internal/observability/exporter/stackdriver/stackdriver_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/exporter/stackdriver/stackdriver_test.go b/internal/observability/exporter/stackdriver/stackdriver_test.go index a14ef7e8e70..22f15591f22 100644 --- a/internal/observability/exporter/stackdriver/stackdriver_test.go +++ b/internal/observability/exporter/stackdriver/stackdriver_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/agent/core/ngt/ngt.go b/internal/observability/metrics/agent/core/ngt/ngt.go index 2215455aeff..b2fa67db388 100644 --- a/internal/observability/metrics/agent/core/ngt/ngt.go +++ b/internal/observability/metrics/agent/core/ngt/ngt.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/agent/core/ngt/ngt_test.go b/internal/observability/metrics/agent/core/ngt/ngt_test.go index 1236c23cc83..98d7d8d1737 100644 --- a/internal/observability/metrics/agent/core/ngt/ngt_test.go +++ b/internal/observability/metrics/agent/core/ngt/ngt_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/agent/sidecar/sidecar.go b/internal/observability/metrics/agent/sidecar/sidecar.go index d900d222453..5ea4d22740f 100644 --- a/internal/observability/metrics/agent/sidecar/sidecar.go +++ b/internal/observability/metrics/agent/sidecar/sidecar.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/agent/sidecar/sidecar_test.go b/internal/observability/metrics/agent/sidecar/sidecar_test.go index 30db37b31dd..1379e82c6f5 100644 --- a/internal/observability/metrics/agent/sidecar/sidecar_test.go +++ b/internal/observability/metrics/agent/sidecar/sidecar_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/db/kvs/redis/redis.go b/internal/observability/metrics/db/kvs/redis/redis.go index b78619ea29d..a01265f9744 100644 --- a/internal/observability/metrics/db/kvs/redis/redis.go +++ b/internal/observability/metrics/db/kvs/redis/redis.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/db/kvs/redis/redis_test.go b/internal/observability/metrics/db/kvs/redis/redis_test.go index 9c232cf8409..222bbc9a7b6 100644 --- a/internal/observability/metrics/db/kvs/redis/redis_test.go +++ b/internal/observability/metrics/db/kvs/redis/redis_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/db/nosql/cassandra/cassandra.go b/internal/observability/metrics/db/nosql/cassandra/cassandra.go index 55560c42061..60948796b88 100644 --- a/internal/observability/metrics/db/nosql/cassandra/cassandra.go +++ b/internal/observability/metrics/db/nosql/cassandra/cassandra.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/db/nosql/cassandra/cassandra_test.go b/internal/observability/metrics/db/nosql/cassandra/cassandra_test.go index 7ee0e507d4d..e5899e1ecbe 100644 --- a/internal/observability/metrics/db/nosql/cassandra/cassandra_test.go +++ b/internal/observability/metrics/db/nosql/cassandra/cassandra_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/db/rdb/mysql/mysql.go b/internal/observability/metrics/db/rdb/mysql/mysql.go index 378be0cfacf..4822da1fac4 100644 --- a/internal/observability/metrics/db/rdb/mysql/mysql.go +++ b/internal/observability/metrics/db/rdb/mysql/mysql.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/db/rdb/mysql/mysql_test.go b/internal/observability/metrics/db/rdb/mysql/mysql_test.go index 95e287b9187..013d9addaca 100644 --- a/internal/observability/metrics/db/rdb/mysql/mysql_test.go +++ b/internal/observability/metrics/db/rdb/mysql/mysql_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/grpc/grpc.go b/internal/observability/metrics/grpc/grpc.go index dddd7fcc9d5..48fff2c007c 100644 --- a/internal/observability/metrics/grpc/grpc.go +++ b/internal/observability/metrics/grpc/grpc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/manager/compressor/compressor.go b/internal/observability/metrics/manager/compressor/compressor.go index 48139bca4a8..73c202c9c93 100644 --- a/internal/observability/metrics/manager/compressor/compressor.go +++ b/internal/observability/metrics/manager/compressor/compressor.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/manager/compressor/compressor_test.go b/internal/observability/metrics/manager/compressor/compressor_test.go index 9adaa426c56..5330fd00bad 100644 --- a/internal/observability/metrics/manager/compressor/compressor_test.go +++ b/internal/observability/metrics/manager/compressor/compressor_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/manager/index/index.go b/internal/observability/metrics/manager/index/index.go index 38dae8589ff..3294ac7ed1b 100644 --- a/internal/observability/metrics/manager/index/index.go +++ b/internal/observability/metrics/manager/index/index.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/manager/index/index_test.go b/internal/observability/metrics/manager/index/index_test.go index 9d1629af169..dc2a13e37e3 100644 --- a/internal/observability/metrics/manager/index/index_test.go +++ b/internal/observability/metrics/manager/index/index_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/mem/mem.go b/internal/observability/metrics/mem/mem.go index 887d273f9f8..285ce8e9499 100644 --- a/internal/observability/metrics/mem/mem.go +++ b/internal/observability/metrics/mem/mem.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/mem/mem_test.go b/internal/observability/metrics/mem/mem_test.go index e2dc5fc97e1..2b81ffb6ed4 100644 --- a/internal/observability/metrics/mem/mem_test.go +++ b/internal/observability/metrics/mem/mem_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/metrics.go b/internal/observability/metrics/metrics.go index ba33f7fd482..4d2ad0c60be 100644 --- a/internal/observability/metrics/metrics.go +++ b/internal/observability/metrics/metrics.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/metrics_test.go b/internal/observability/metrics/metrics_test.go index a588a236843..7e399cf31ef 100644 --- a/internal/observability/metrics/metrics_test.go +++ b/internal/observability/metrics/metrics_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/runtime/cgo/cgo.go b/internal/observability/metrics/runtime/cgo/cgo.go index 29012f32266..50ab6031c33 100644 --- a/internal/observability/metrics/runtime/cgo/cgo.go +++ b/internal/observability/metrics/runtime/cgo/cgo.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/runtime/cgo/cgo_test.go b/internal/observability/metrics/runtime/cgo/cgo_test.go index 781b1ad2d73..10456bfabaf 100644 --- a/internal/observability/metrics/runtime/cgo/cgo_test.go +++ b/internal/observability/metrics/runtime/cgo/cgo_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/runtime/goroutine/goroutine.go b/internal/observability/metrics/runtime/goroutine/goroutine.go index 61f8850a32b..d3083323772 100644 --- a/internal/observability/metrics/runtime/goroutine/goroutine.go +++ b/internal/observability/metrics/runtime/goroutine/goroutine.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/runtime/goroutine/goroutine_test.go b/internal/observability/metrics/runtime/goroutine/goroutine_test.go index 5bbba043eb2..ca2f4ed924c 100644 --- a/internal/observability/metrics/runtime/goroutine/goroutine_test.go +++ b/internal/observability/metrics/runtime/goroutine/goroutine_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/version/version.go b/internal/observability/metrics/version/version.go index e850f43d5ff..9f39705975c 100644 --- a/internal/observability/metrics/version/version.go +++ b/internal/observability/metrics/version/version.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/metrics/version/version_test.go b/internal/observability/metrics/version/version_test.go index 9378dc6b899..ee8bd08bb39 100644 --- a/internal/observability/metrics/version/version_test.go +++ b/internal/observability/metrics/version/version_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/observability.go b/internal/observability/observability.go index c6e3ed7468f..bddc51dce15 100644 --- a/internal/observability/observability.go +++ b/internal/observability/observability.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/observability_option.go b/internal/observability/observability_option.go index 41d219e168e..762eb6a0449 100644 --- a/internal/observability/observability_option.go +++ b/internal/observability/observability_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/observability_option_test.go b/internal/observability/observability_option_test.go index 7998e970153..fe71711a96c 100644 --- a/internal/observability/observability_option_test.go +++ b/internal/observability/observability_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/observability_test.go b/internal/observability/observability_test.go index f8acb655c58..134e9e40c5a 100644 --- a/internal/observability/observability_test.go +++ b/internal/observability/observability_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/profiler/profiler.go b/internal/observability/profiler/profiler.go index 7d4abf1998f..b6ac14f2b40 100644 --- a/internal/observability/profiler/profiler.go +++ b/internal/observability/profiler/profiler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/profiler/stackdriver/stackdriver.go b/internal/observability/profiler/stackdriver/stackdriver.go index 454b511c02b..6240e6b8978 100644 --- a/internal/observability/profiler/stackdriver/stackdriver.go +++ b/internal/observability/profiler/stackdriver/stackdriver.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/profiler/stackdriver/stackdriver_option.go b/internal/observability/profiler/stackdriver/stackdriver_option.go index 734cc60004e..68316b79c97 100644 --- a/internal/observability/profiler/stackdriver/stackdriver_option.go +++ b/internal/observability/profiler/stackdriver/stackdriver_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/profiler/stackdriver/stackdriver_option_test.go b/internal/observability/profiler/stackdriver/stackdriver_option_test.go index 22da407e87a..97f664ec1dd 100644 --- a/internal/observability/profiler/stackdriver/stackdriver_option_test.go +++ b/internal/observability/profiler/stackdriver/stackdriver_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/profiler/stackdriver/stackdriver_test.go b/internal/observability/profiler/stackdriver/stackdriver_test.go index aad80e1fa9d..82e5841dc0e 100644 --- a/internal/observability/profiler/stackdriver/stackdriver_test.go +++ b/internal/observability/profiler/stackdriver/stackdriver_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/trace/status.go b/internal/observability/trace/status.go index 0606eb94cf8..c08a508a317 100644 --- a/internal/observability/trace/status.go +++ b/internal/observability/trace/status.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/trace/status_test.go b/internal/observability/trace/status_test.go index 3edc3492219..5d002a9cd22 100644 --- a/internal/observability/trace/status_test.go +++ b/internal/observability/trace/status_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/trace/trace.go b/internal/observability/trace/trace.go index 11fad7947b4..86b4187cb6f 100644 --- a/internal/observability/trace/trace.go +++ b/internal/observability/trace/trace.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/trace/trace_option.go b/internal/observability/trace/trace_option.go index ae7f8b0ad5c..bbde0c4eb1c 100644 --- a/internal/observability/trace/trace_option.go +++ b/internal/observability/trace/trace_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/trace/trace_option_test.go b/internal/observability/trace/trace_option_test.go index 065b5e634e8..7dc9affb83d 100644 --- a/internal/observability/trace/trace_option_test.go +++ b/internal/observability/trace/trace_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/observability/trace/trace_test.go b/internal/observability/trace/trace_test.go index 37dcd229e73..3609589b11d 100644 --- a/internal/observability/trace/trace_test.go +++ b/internal/observability/trace/trace_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/params/option.go b/internal/params/option.go index c3bd8a97871..3e0925cc057 100644 --- a/internal/params/option.go +++ b/internal/params/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/params/option_test.go b/internal/params/option_test.go index 2ad834698b9..5179c56160f 100644 --- a/internal/params/option_test.go +++ b/internal/params/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/params/params.go b/internal/params/params.go index d58776c227e..a78f7b5f2f8 100644 --- a/internal/params/params.go +++ b/internal/params/params.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/params/params_test.go b/internal/params/params_test.go index 65f12ab25b5..36ad23ad4b6 100644 --- a/internal/params/params_test.go +++ b/internal/params/params_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/rand/rand.go b/internal/rand/rand.go index c89cc062c26..61d6ffc62ee 100644 --- a/internal/rand/rand.go +++ b/internal/rand/rand.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/rand/rand_test.go b/internal/rand/rand_test.go index 4d26f1bbd43..98b1254d81d 100644 --- a/internal/rand/rand_test.go +++ b/internal/rand/rand_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/runner/option.go b/internal/runner/option.go index f176fb28d30..2af86a44430 100644 --- a/internal/runner/option.go +++ b/internal/runner/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/runner/option_test.go b/internal/runner/option_test.go index b8239b73de4..fd1abcf75c7 100644 --- a/internal/runner/option_test.go +++ b/internal/runner/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/runner/runner.go b/internal/runner/runner.go index 6ef7f70c5aa..d77edfe4975 100644 --- a/internal/runner/runner.go +++ b/internal/runner/runner.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/runner/runner_mock_test.go b/internal/runner/runner_mock_test.go index 7669b637a8d..a65b16af8b6 100644 --- a/internal/runner/runner_mock_test.go +++ b/internal/runner/runner_mock_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/runner/runner_test.go b/internal/runner/runner_test.go index 1a6b0a745b6..b154c1b1725 100644 --- a/internal/runner/runner_test.go +++ b/internal/runner/runner_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/safety/safety.go b/internal/safety/safety.go index 16f3a44a159..04fc6c6195d 100644 --- a/internal/safety/safety.go +++ b/internal/safety/safety.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/safety/safety_test.go b/internal/safety/safety_test.go index 6010e3c9d77..aa2381ae997 100644 --- a/internal/safety/safety_test.go +++ b/internal/safety/safety_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/servers/option.go b/internal/servers/option.go index 0933af33a01..a69eb4ade33 100644 --- a/internal/servers/option.go +++ b/internal/servers/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/servers/option_test.go b/internal/servers/option_test.go index 9a2ef68a5e4..447d3bc6d2c 100644 --- a/internal/servers/option_test.go +++ b/internal/servers/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/servers/server/option.go b/internal/servers/server/option.go index a24384118f5..f52b9e5fb04 100644 --- a/internal/servers/server/option.go +++ b/internal/servers/server/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/servers/server/option_test.go b/internal/servers/server/option_test.go index 0fa906df447..6454305636b 100644 --- a/internal/servers/server/option_test.go +++ b/internal/servers/server/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/servers/server/server.go b/internal/servers/server/server.go index ae71a41878c..b1671b11fdd 100644 --- a/internal/servers/server/server.go +++ b/internal/servers/server/server.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/servers/server/server_test.go b/internal/servers/server/server_test.go index bf623f62d2a..73674d2f7e2 100644 --- a/internal/servers/server/server_test.go +++ b/internal/servers/server/server_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/servers/servers.go b/internal/servers/servers.go index 3304af4c2d6..ee29c15dcc6 100644 --- a/internal/servers/servers.go +++ b/internal/servers/servers.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/servers/servers_mock_test.go b/internal/servers/servers_mock_test.go index eb7c534c301..efadfcc8298 100644 --- a/internal/servers/servers_mock_test.go +++ b/internal/servers/servers_mock_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/servers/servers_test.go b/internal/servers/servers_test.go index c8c6eec0cd1..90e080cb339 100644 --- a/internal/servers/servers_test.go +++ b/internal/servers/servers_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/servers/starter/option.go b/internal/servers/starter/option.go index b68cc480e3c..cc7957b49bb 100644 --- a/internal/servers/starter/option.go +++ b/internal/servers/starter/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/servers/starter/option_test.go b/internal/servers/starter/option_test.go index 5ee40df4410..b46501e394f 100644 --- a/internal/servers/starter/option_test.go +++ b/internal/servers/starter/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/servers/starter/starter.go b/internal/servers/starter/starter.go index a95d45a263f..fe2ef989eec 100644 --- a/internal/servers/starter/starter.go +++ b/internal/servers/starter/starter.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/servers/starter/starter_test.go b/internal/servers/starter/starter_test.go index c7a5592571e..d75f26681a5 100644 --- a/internal/servers/starter/starter_test.go +++ b/internal/servers/starter/starter_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/singleflight/singleflight.go b/internal/singleflight/singleflight.go index c884f155b0f..2d20a2ee520 100644 --- a/internal/singleflight/singleflight.go +++ b/internal/singleflight/singleflight.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/singleflight/singleflight_test.go b/internal/singleflight/singleflight_test.go index 8126a1c6b12..303ef1568bb 100644 --- a/internal/singleflight/singleflight_test.go +++ b/internal/singleflight/singleflight_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/test/comparator/standard.go b/internal/test/comparator/standard.go index a0fa3c041d2..1d0cca002cf 100644 --- a/internal/test/comparator/standard.go +++ b/internal/test/comparator/standard.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/test/doc.go b/internal/test/doc.go index 247e41983cb..caefbc1f476 100644 --- a/internal/test/doc.go +++ b/internal/test/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/test/testdata.go b/internal/test/testdata.go index 8997b749fdc..c0aff24475f 100644 --- a/internal/test/testdata.go +++ b/internal/test/testdata.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/test/testdata_test.go b/internal/test/testdata_test.go index 52db76b0a30..ba6f9311804 100644 --- a/internal/test/testdata_test.go +++ b/internal/test/testdata_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/timeutil/location/loc.go b/internal/timeutil/location/loc.go index 3d4fe81aa83..9cccebc74c9 100644 --- a/internal/timeutil/location/loc.go +++ b/internal/timeutil/location/loc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/timeutil/location/loc_test.go b/internal/timeutil/location/loc_test.go index 5f01ec79bb2..5f68294b090 100644 --- a/internal/timeutil/location/loc_test.go +++ b/internal/timeutil/location/loc_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/timeutil/time.go b/internal/timeutil/time.go index ce7f4cf9597..27b46aa6543 100644 --- a/internal/timeutil/time.go +++ b/internal/timeutil/time.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/timeutil/time_test.go b/internal/timeutil/time_test.go index b43aa5b6826..546e7d1694e 100644 --- a/internal/timeutil/time_test.go +++ b/internal/timeutil/time_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/tls/option.go b/internal/tls/option.go index 4f7bf8e6560..b55b7f194d7 100644 --- a/internal/tls/option.go +++ b/internal/tls/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/tls/option_test.go b/internal/tls/option_test.go index 2b5d549bea6..8b3df905db9 100644 --- a/internal/tls/option_test.go +++ b/internal/tls/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/tls/tls.go b/internal/tls/tls.go index a2254332b5e..a68de273f37 100644 --- a/internal/tls/tls.go +++ b/internal/tls/tls.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/tls/tls_test.go b/internal/tls/tls_test.go index bf25cb4e113..c8a6a9bbe8e 100644 --- a/internal/tls/tls_test.go +++ b/internal/tls/tls_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/unit/unit.go b/internal/unit/unit.go index f0739522825..e15be18d396 100644 --- a/internal/unit/unit.go +++ b/internal/unit/unit.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/unit/unit_test.go b/internal/unit/unit_test.go index 7b6f360619b..cc4b657c807 100644 --- a/internal/unit/unit_test.go +++ b/internal/unit/unit_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/version/version.go b/internal/version/version.go index 776a8abc824..7bd0136871f 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/version/version_test.go b/internal/version/version_test.go index 7c4255a9833..90f38e016c7 100644 --- a/internal/version/version_test.go +++ b/internal/version/version_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/worker/queue.go b/internal/worker/queue.go index 4ab607fd585..a440644df25 100644 --- a/internal/worker/queue.go +++ b/internal/worker/queue.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/worker/queue_mock_test.go b/internal/worker/queue_mock_test.go index f013aa79143..09780e21eb1 100644 --- a/internal/worker/queue_mock_test.go +++ b/internal/worker/queue_mock_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/worker/queue_option.go b/internal/worker/queue_option.go index 78ea4c353ad..fa84872c161 100644 --- a/internal/worker/queue_option.go +++ b/internal/worker/queue_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/worker/queue_option_test.go b/internal/worker/queue_option_test.go index 937be810285..c7e3a6cbb7d 100644 --- a/internal/worker/queue_option_test.go +++ b/internal/worker/queue_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/worker/queue_test.go b/internal/worker/queue_test.go index 92863f98a76..f2e78d3ff75 100644 --- a/internal/worker/queue_test.go +++ b/internal/worker/queue_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/worker/worker.go b/internal/worker/worker.go index 0acbd5d03b1..3274b2a9724 100644 --- a/internal/worker/worker.go +++ b/internal/worker/worker.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/worker/worker_option.go b/internal/worker/worker_option.go index 4c5d9a3865c..bc81efd15fc 100644 --- a/internal/worker/worker_option.go +++ b/internal/worker/worker_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/worker/worker_option_test.go b/internal/worker/worker_option_test.go index 6dfd96aa3c4..920082d9f54 100644 --- a/internal/worker/worker_option_test.go +++ b/internal/worker/worker_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/worker/worker_test.go b/internal/worker/worker_test.go index ea1fa55937b..5f41b863a7a 100644 --- a/internal/worker/worker_test.go +++ b/internal/worker/worker_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/k8s/agent/configmap.yaml b/k8s/agent/configmap.yaml index 678903eba0a..a715cc8cc11 100644 --- a/k8s/agent/configmap.yaml +++ b/k8s/agent/configmap.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/agent/pdb.yaml b/k8s/agent/pdb.yaml index 8a7f8a79a1c..bd422011d4b 100644 --- a/k8s/agent/pdb.yaml +++ b/k8s/agent/pdb.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/agent/priorityclass.yaml b/k8s/agent/priorityclass.yaml index 9be0dc491a9..dc5aac4e69b 100644 --- a/k8s/agent/priorityclass.yaml +++ b/k8s/agent/priorityclass.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/agent/statefulset.yaml b/k8s/agent/statefulset.yaml index a8446a42dac..bc2131e7eb3 100644 --- a/k8s/agent/statefulset.yaml +++ b/k8s/agent/statefulset.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/agent/svc.yaml b/k8s/agent/svc.yaml index 64b573db360..932072a5e85 100644 --- a/k8s/agent/svc.yaml +++ b/k8s/agent/svc.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/debug/kind/config.yaml b/k8s/debug/kind/config.yaml index 9b7364754f0..2c09d98e988 100644 --- a/k8s/debug/kind/config.yaml +++ b/k8s/debug/kind/config.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/discoverer/clusterrole.yaml b/k8s/discoverer/clusterrole.yaml index 740ddde15ca..baefb8872fa 100644 --- a/k8s/discoverer/clusterrole.yaml +++ b/k8s/discoverer/clusterrole.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/discoverer/clusterrolebinding.yaml b/k8s/discoverer/clusterrolebinding.yaml index 8e8de98eab1..cb8d54ac855 100644 --- a/k8s/discoverer/clusterrolebinding.yaml +++ b/k8s/discoverer/clusterrolebinding.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/discoverer/configmap.yaml b/k8s/discoverer/configmap.yaml index 51a4f78e976..8c6e3af6c14 100644 --- a/k8s/discoverer/configmap.yaml +++ b/k8s/discoverer/configmap.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/discoverer/deployment.yaml b/k8s/discoverer/deployment.yaml index a52ed031da4..ce0e267c7ff 100644 --- a/k8s/discoverer/deployment.yaml +++ b/k8s/discoverer/deployment.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/discoverer/pdb.yaml b/k8s/discoverer/pdb.yaml index 25710c56838..92b1df1db07 100644 --- a/k8s/discoverer/pdb.yaml +++ b/k8s/discoverer/pdb.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/discoverer/priorityclass.yaml b/k8s/discoverer/priorityclass.yaml index af443f33a10..60b5d8b93cf 100644 --- a/k8s/discoverer/priorityclass.yaml +++ b/k8s/discoverer/priorityclass.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/discoverer/serviceaccount.yaml b/k8s/discoverer/serviceaccount.yaml index 563c2f99b89..2ba442f38b1 100644 --- a/k8s/discoverer/serviceaccount.yaml +++ b/k8s/discoverer/serviceaccount.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/discoverer/svc.yaml b/k8s/discoverer/svc.yaml index 37fcaa78028..cd0b9880ade 100644 --- a/k8s/discoverer/svc.yaml +++ b/k8s/discoverer/svc.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/external/cassandra/statefulset.yaml b/k8s/external/cassandra/statefulset.yaml index 064837219c0..76cbd925703 100644 --- a/k8s/external/cassandra/statefulset.yaml +++ b/k8s/external/cassandra/statefulset.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/external/cassandra/svc.yaml b/k8s/external/cassandra/svc.yaml index cb6e18649c1..fc130fcca6b 100644 --- a/k8s/external/cassandra/svc.yaml +++ b/k8s/external/cassandra/svc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/external/mysql/deployment.yaml b/k8s/external/mysql/deployment.yaml index f5d79ba2e18..a3db0ce3517 100644 --- a/k8s/external/mysql/deployment.yaml +++ b/k8s/external/mysql/deployment.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/external/mysql/pv.yaml b/k8s/external/mysql/pv.yaml index 5fecf782560..46fd7cf0a48 100644 --- a/k8s/external/mysql/pv.yaml +++ b/k8s/external/mysql/pv.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/external/mysql/pvc.yaml b/k8s/external/mysql/pvc.yaml index 5148a9d9d0c..7b80c1191f2 100644 --- a/k8s/external/mysql/pvc.yaml +++ b/k8s/external/mysql/pvc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/external/mysql/secret.yaml b/k8s/external/mysql/secret.yaml index d660024cb3d..e1ff933ee76 100644 --- a/k8s/external/mysql/secret.yaml +++ b/k8s/external/mysql/secret.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/external/mysql/svc.yaml b/k8s/external/mysql/svc.yaml index d4befec2fbf..a012290ba43 100644 --- a/k8s/external/mysql/svc.yaml +++ b/k8s/external/mysql/svc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/external/redis/deployment.yaml b/k8s/external/redis/deployment.yaml index 830754404d4..a4a4739eabf 100644 --- a/k8s/external/redis/deployment.yaml +++ b/k8s/external/redis/deployment.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/external/redis/secret.yaml b/k8s/external/redis/secret.yaml index 882e8b2cf11..14ea2d3d13d 100644 --- a/k8s/external/redis/secret.yaml +++ b/k8s/external/redis/secret.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/external/redis/svc.yaml b/k8s/external/redis/svc.yaml index 7e062df7735..2af620824d1 100644 --- a/k8s/external/redis/svc.yaml +++ b/k8s/external/redis/svc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/external/scylla/statefulset.yaml b/k8s/external/scylla/statefulset.yaml index 6b5023f687b..e7248e474d8 100644 --- a/k8s/external/scylla/statefulset.yaml +++ b/k8s/external/scylla/statefulset.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/external/scylla/svc.yaml b/k8s/external/scylla/svc.yaml index 137dc13df8f..472a3c9b8be 100644 --- a/k8s/external/scylla/svc.yaml +++ b/k8s/external/scylla/svc.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/gateway/vald/configmap.yaml b/k8s/gateway/vald/configmap.yaml index 681076ec76a..65f1e2c6f58 100644 --- a/k8s/gateway/vald/configmap.yaml +++ b/k8s/gateway/vald/configmap.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/gateway/vald/deployment.yaml b/k8s/gateway/vald/deployment.yaml index acf0658ddaa..089e81a48b7 100644 --- a/k8s/gateway/vald/deployment.yaml +++ b/k8s/gateway/vald/deployment.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/gateway/vald/hpa.yaml b/k8s/gateway/vald/hpa.yaml index 1ec5138e26b..e2f9d5b97de 100644 --- a/k8s/gateway/vald/hpa.yaml +++ b/k8s/gateway/vald/hpa.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/gateway/vald/ing.yaml b/k8s/gateway/vald/ing.yaml index 4221f56450a..9b0f56386ae 100644 --- a/k8s/gateway/vald/ing.yaml +++ b/k8s/gateway/vald/ing.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/gateway/vald/pdb.yaml b/k8s/gateway/vald/pdb.yaml index 565a1660798..5b30ae9d9f8 100644 --- a/k8s/gateway/vald/pdb.yaml +++ b/k8s/gateway/vald/pdb.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/gateway/vald/priorityclass.yaml b/k8s/gateway/vald/priorityclass.yaml index b0b18f800a3..5be9107e5dc 100644 --- a/k8s/gateway/vald/priorityclass.yaml +++ b/k8s/gateway/vald/priorityclass.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/gateway/vald/svc.yaml b/k8s/gateway/vald/svc.yaml index 485e7ca4c58..72870a43f21 100644 --- a/k8s/gateway/vald/svc.yaml +++ b/k8s/gateway/vald/svc.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/jobs/db/initialize/cassandra/configmap.yaml b/k8s/jobs/db/initialize/cassandra/configmap.yaml index a192f847aca..062c1dfbde6 100644 --- a/k8s/jobs/db/initialize/cassandra/configmap.yaml +++ b/k8s/jobs/db/initialize/cassandra/configmap.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/jobs/db/initialize/cassandra/job.yaml b/k8s/jobs/db/initialize/cassandra/job.yaml index 520f458b3af..46882f3be58 100644 --- a/k8s/jobs/db/initialize/cassandra/job.yaml +++ b/k8s/jobs/db/initialize/cassandra/job.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/jobs/db/initialize/cassandra/secret.yaml b/k8s/jobs/db/initialize/cassandra/secret.yaml index fdc0946ef2c..a929a819924 100644 --- a/k8s/jobs/db/initialize/cassandra/secret.yaml +++ b/k8s/jobs/db/initialize/cassandra/secret.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/jobs/db/initialize/mysql/configmap.yaml b/k8s/jobs/db/initialize/mysql/configmap.yaml index ad50e7c47af..eb6f1279e2d 100644 --- a/k8s/jobs/db/initialize/mysql/configmap.yaml +++ b/k8s/jobs/db/initialize/mysql/configmap.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/jobs/db/initialize/mysql/job.yaml b/k8s/jobs/db/initialize/mysql/job.yaml index edc83bab9f1..0776b5bcf79 100644 --- a/k8s/jobs/db/initialize/mysql/job.yaml +++ b/k8s/jobs/db/initialize/mysql/job.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/jobs/db/initialize/mysql/secret.yaml b/k8s/jobs/db/initialize/mysql/secret.yaml index 4370037eb14..892d31e54a5 100644 --- a/k8s/jobs/db/initialize/mysql/secret.yaml +++ b/k8s/jobs/db/initialize/mysql/secret.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/jobs/db/initialize/redis/job.yaml b/k8s/jobs/db/initialize/redis/job.yaml index 9069bdf6c12..e86e5e7f6a7 100644 --- a/k8s/jobs/db/initialize/redis/job.yaml +++ b/k8s/jobs/db/initialize/redis/job.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/jobs/db/initialize/redis/secret.yaml b/k8s/jobs/db/initialize/redis/secret.yaml index 9c4539c7d51..a7b192f7cd3 100644 --- a/k8s/jobs/db/initialize/redis/secret.yaml +++ b/k8s/jobs/db/initialize/redis/secret.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/backup/configmap.yaml b/k8s/manager/backup/configmap.yaml index 6887ea4555a..568ca86b5f5 100644 --- a/k8s/manager/backup/configmap.yaml +++ b/k8s/manager/backup/configmap.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/backup/deployment.yaml b/k8s/manager/backup/deployment.yaml index b2b8d2ad635..749c726a9aa 100644 --- a/k8s/manager/backup/deployment.yaml +++ b/k8s/manager/backup/deployment.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/backup/hpa.yaml b/k8s/manager/backup/hpa.yaml index 2a0317061da..1ec95c34e82 100644 --- a/k8s/manager/backup/hpa.yaml +++ b/k8s/manager/backup/hpa.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/backup/pdb.yaml b/k8s/manager/backup/pdb.yaml index 7a899df3a33..89c7fb92744 100644 --- a/k8s/manager/backup/pdb.yaml +++ b/k8s/manager/backup/pdb.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/backup/priorityclass.yaml b/k8s/manager/backup/priorityclass.yaml index 4deffc6a5a8..c0d06e8a42f 100644 --- a/k8s/manager/backup/priorityclass.yaml +++ b/k8s/manager/backup/priorityclass.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/backup/svc.yaml b/k8s/manager/backup/svc.yaml index b2a7eb876bb..11bbc10274b 100644 --- a/k8s/manager/backup/svc.yaml +++ b/k8s/manager/backup/svc.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/compressor/configmap.yaml b/k8s/manager/compressor/configmap.yaml index 3981ff8c7e5..2902c88fba0 100644 --- a/k8s/manager/compressor/configmap.yaml +++ b/k8s/manager/compressor/configmap.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/compressor/deployment.yaml b/k8s/manager/compressor/deployment.yaml index 433464ea139..ccfdc79b56d 100644 --- a/k8s/manager/compressor/deployment.yaml +++ b/k8s/manager/compressor/deployment.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/compressor/hpa.yaml b/k8s/manager/compressor/hpa.yaml index e08b8ec1254..4e5785dcb42 100644 --- a/k8s/manager/compressor/hpa.yaml +++ b/k8s/manager/compressor/hpa.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/compressor/pdb.yaml b/k8s/manager/compressor/pdb.yaml index fc210a7deac..f249b60dec2 100644 --- a/k8s/manager/compressor/pdb.yaml +++ b/k8s/manager/compressor/pdb.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/compressor/priorityclass.yaml b/k8s/manager/compressor/priorityclass.yaml index a0294776500..ad549e65754 100644 --- a/k8s/manager/compressor/priorityclass.yaml +++ b/k8s/manager/compressor/priorityclass.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/compressor/svc.yaml b/k8s/manager/compressor/svc.yaml index 0a0fd6328ca..1311e91a7dc 100644 --- a/k8s/manager/compressor/svc.yaml +++ b/k8s/manager/compressor/svc.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/index/configmap.yaml b/k8s/manager/index/configmap.yaml index 8bd7fc09599..910dd6c1cb4 100644 --- a/k8s/manager/index/configmap.yaml +++ b/k8s/manager/index/configmap.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/index/deployment.yaml b/k8s/manager/index/deployment.yaml index fb0faca7a7c..861e422e5e0 100644 --- a/k8s/manager/index/deployment.yaml +++ b/k8s/manager/index/deployment.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/index/pdb.yaml b/k8s/manager/index/pdb.yaml index 4b5e9e7bc79..101f0413df0 100644 --- a/k8s/manager/index/pdb.yaml +++ b/k8s/manager/index/pdb.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/index/priorityclass.yaml b/k8s/manager/index/priorityclass.yaml index fa8bef5854f..013bec72878 100644 --- a/k8s/manager/index/priorityclass.yaml +++ b/k8s/manager/index/priorityclass.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/manager/index/svc.yaml b/k8s/manager/index/svc.yaml index d7fcf91b184..955e35d29ae 100644 --- a/k8s/manager/index/svc.yaml +++ b/k8s/manager/index/svc.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/meta/configmap.yaml b/k8s/meta/configmap.yaml index 7f192dbe8a5..287d0732a4c 100644 --- a/k8s/meta/configmap.yaml +++ b/k8s/meta/configmap.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/meta/deployment.yaml b/k8s/meta/deployment.yaml index 9b71f5cf7f9..fe98914dc9f 100644 --- a/k8s/meta/deployment.yaml +++ b/k8s/meta/deployment.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/meta/hpa.yaml b/k8s/meta/hpa.yaml index 4a74da3b5ba..e09f1322b62 100644 --- a/k8s/meta/hpa.yaml +++ b/k8s/meta/hpa.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/meta/pdb.yaml b/k8s/meta/pdb.yaml index c3b53aa476f..576b4ea7cbe 100644 --- a/k8s/meta/pdb.yaml +++ b/k8s/meta/pdb.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/meta/priorityclass.yaml b/k8s/meta/priorityclass.yaml index 6b98d2581ca..4d3df7486b4 100644 --- a/k8s/meta/priorityclass.yaml +++ b/k8s/meta/priorityclass.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/meta/svc.yaml b/k8s/meta/svc.yaml index 5621f703406..a6e15e472d8 100644 --- a/k8s/meta/svc.yaml +++ b/k8s/meta/svc.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/grafana/configmap.yaml b/k8s/metrics/grafana/configmap.yaml index 452d1ad44e4..47151b56d15 100644 --- a/k8s/metrics/grafana/configmap.yaml +++ b/k8s/metrics/grafana/configmap.yaml @@ -1,7 +1,7 @@ --- --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/grafana/deployment.yaml b/k8s/metrics/grafana/deployment.yaml index 27d5df894d7..f601b137ff3 100644 --- a/k8s/metrics/grafana/deployment.yaml +++ b/k8s/metrics/grafana/deployment.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/grafana/svc.yaml b/k8s/metrics/grafana/svc.yaml index dc68d9717b1..3592c439737 100644 --- a/k8s/metrics/grafana/svc.yaml +++ b/k8s/metrics/grafana/svc.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/jaeger/deployment.yaml b/k8s/metrics/jaeger/deployment.yaml index 94b48985f2b..ca3ba03267e 100644 --- a/k8s/metrics/jaeger/deployment.yaml +++ b/k8s/metrics/jaeger/deployment.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/jaeger/svc.yaml b/k8s/metrics/jaeger/svc.yaml index 9c8782fbbbc..ff382f0128d 100644 --- a/k8s/metrics/jaeger/svc.yaml +++ b/k8s/metrics/jaeger/svc.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/metrics-server/aggregated-metrics-reader.yaml b/k8s/metrics/metrics-server/aggregated-metrics-reader.yaml index 76652f70630..1d79fc0eb78 100644 --- a/k8s/metrics/metrics-server/aggregated-metrics-reader.yaml +++ b/k8s/metrics/metrics-server/aggregated-metrics-reader.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/metrics-server/auth-delegator.yaml b/k8s/metrics/metrics-server/auth-delegator.yaml index 05e67b38f7e..cd9b990df36 100644 --- a/k8s/metrics/metrics-server/auth-delegator.yaml +++ b/k8s/metrics/metrics-server/auth-delegator.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/metrics-server/auth-reader.yaml b/k8s/metrics/metrics-server/auth-reader.yaml index 70f4ad2b026..e981c6cd16d 100644 --- a/k8s/metrics/metrics-server/auth-reader.yaml +++ b/k8s/metrics/metrics-server/auth-reader.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/metrics-server/metrics-apiservice.yaml b/k8s/metrics/metrics-server/metrics-apiservice.yaml index 3c6c6d350bc..675b7535604 100644 --- a/k8s/metrics/metrics-server/metrics-apiservice.yaml +++ b/k8s/metrics/metrics-server/metrics-apiservice.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/metrics-server/metrics-server-deployment.yaml b/k8s/metrics/metrics-server/metrics-server-deployment.yaml index f19f12c9212..9e9f325005b 100644 --- a/k8s/metrics/metrics-server/metrics-server-deployment.yaml +++ b/k8s/metrics/metrics-server/metrics-server-deployment.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/metrics-server/metrics-server-service.yaml b/k8s/metrics/metrics-server/metrics-server-service.yaml index 3d957899a52..e52e80f80eb 100644 --- a/k8s/metrics/metrics-server/metrics-server-service.yaml +++ b/k8s/metrics/metrics-server/metrics-server-service.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/metrics-server/resource-reader.yaml b/k8s/metrics/metrics-server/resource-reader.yaml index bf84e0bdb28..91c216c3db9 100644 --- a/k8s/metrics/metrics-server/resource-reader.yaml +++ b/k8s/metrics/metrics-server/resource-reader.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/profefe/clusterrole.yaml b/k8s/metrics/profefe/clusterrole.yaml index 90786135601..f8d028e3748 100644 --- a/k8s/metrics/profefe/clusterrole.yaml +++ b/k8s/metrics/profefe/clusterrole.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/profefe/clusterrolebinding.yaml b/k8s/metrics/profefe/clusterrolebinding.yaml index b077983781b..252782617b3 100644 --- a/k8s/metrics/profefe/clusterrolebinding.yaml +++ b/k8s/metrics/profefe/clusterrolebinding.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/profefe/cronjob.yaml b/k8s/metrics/profefe/cronjob.yaml index 88a44b2c4e4..4ab7e65c2b2 100644 --- a/k8s/metrics/profefe/cronjob.yaml +++ b/k8s/metrics/profefe/cronjob.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/profefe/deployment.yaml b/k8s/metrics/profefe/deployment.yaml index 04e5ba93345..101a5f7a4c6 100644 --- a/k8s/metrics/profefe/deployment.yaml +++ b/k8s/metrics/profefe/deployment.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/profefe/serviceaccount.yaml b/k8s/metrics/profefe/serviceaccount.yaml index 1c2f391c932..9903d963ca5 100644 --- a/k8s/metrics/profefe/serviceaccount.yaml +++ b/k8s/metrics/profefe/serviceaccount.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/profefe/svc.yaml b/k8s/metrics/profefe/svc.yaml index 63078672539..92fb2358818 100644 --- a/k8s/metrics/profefe/svc.yaml +++ b/k8s/metrics/profefe/svc.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/prometheus/clusterrole.yaml b/k8s/metrics/prometheus/clusterrole.yaml index 8ab1825e1e5..55dcf1b3ede 100644 --- a/k8s/metrics/prometheus/clusterrole.yaml +++ b/k8s/metrics/prometheus/clusterrole.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/prometheus/clusterrolebinding.yaml b/k8s/metrics/prometheus/clusterrolebinding.yaml index 7fa36c46aee..0b2fa69baff 100644 --- a/k8s/metrics/prometheus/clusterrolebinding.yaml +++ b/k8s/metrics/prometheus/clusterrolebinding.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/prometheus/configmap.yaml b/k8s/metrics/prometheus/configmap.yaml index 1994bcab9ad..248acd50e72 100644 --- a/k8s/metrics/prometheus/configmap.yaml +++ b/k8s/metrics/prometheus/configmap.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/prometheus/deployment.yaml b/k8s/metrics/prometheus/deployment.yaml index 113df86c7a3..935bc788af8 100644 --- a/k8s/metrics/prometheus/deployment.yaml +++ b/k8s/metrics/prometheus/deployment.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/prometheus/serviceaccount.yaml b/k8s/metrics/prometheus/serviceaccount.yaml index 5618530f181..e33748747fe 100644 --- a/k8s/metrics/prometheus/serviceaccount.yaml +++ b/k8s/metrics/prometheus/serviceaccount.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/metrics/prometheus/svc.yaml b/k8s/metrics/prometheus/svc.yaml index 932bc040c5c..e2989d3997d 100644 --- a/k8s/metrics/prometheus/svc.yaml +++ b/k8s/metrics/prometheus/svc.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/operator/helm/clusterrole.yaml b/k8s/operator/helm/clusterrole.yaml index f129aab1b2a..b972351b40e 100644 --- a/k8s/operator/helm/clusterrole.yaml +++ b/k8s/operator/helm/clusterrole.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/operator/helm/clusterrolebinding.yaml b/k8s/operator/helm/clusterrolebinding.yaml index ee21784fa68..c47cf827b03 100644 --- a/k8s/operator/helm/clusterrolebinding.yaml +++ b/k8s/operator/helm/clusterrolebinding.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/operator/helm/crds/valdhelmoperatorrelease.yaml b/k8s/operator/helm/crds/valdhelmoperatorrelease.yaml index 8d4e57a7c47..fad871faf54 100644 --- a/k8s/operator/helm/crds/valdhelmoperatorrelease.yaml +++ b/k8s/operator/helm/crds/valdhelmoperatorrelease.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/operator/helm/crds/valdrelease.yaml b/k8s/operator/helm/crds/valdrelease.yaml index 4b925afe347..c6e8aff0a6f 100644 --- a/k8s/operator/helm/crds/valdrelease.yaml +++ b/k8s/operator/helm/crds/valdrelease.yaml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/operator/helm/operator.yaml b/k8s/operator/helm/operator.yaml index 8eb9fdb37a9..5e1acf34c3c 100644 --- a/k8s/operator/helm/operator.yaml +++ b/k8s/operator/helm/operator.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/operator/helm/serviceaccount.yaml b/k8s/operator/helm/serviceaccount.yaml index 0b664cd69a5..1813e0be061 100644 --- a/k8s/operator/helm/serviceaccount.yaml +++ b/k8s/operator/helm/serviceaccount.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/operator/helm/svc.yaml b/k8s/operator/helm/svc.yaml index 78b26a9b5ae..40b519a77e1 100644 --- a/k8s/operator/helm/svc.yaml +++ b/k8s/operator/helm/svc.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/tools/cli/loadtest/configmap.yaml b/k8s/tools/cli/loadtest/configmap.yaml index 379d37a6aec..39980330ef0 100644 --- a/k8s/tools/cli/loadtest/configmap.yaml +++ b/k8s/tools/cli/loadtest/configmap.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/tools/cli/loadtest/cronjob.yaml b/k8s/tools/cli/loadtest/cronjob.yaml index e0a7d7ab5d5..6f048aeadf7 100644 --- a/k8s/tools/cli/loadtest/cronjob.yaml +++ b/k8s/tools/cli/loadtest/cronjob.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/k8s/tools/cli/loadtest/job.yaml b/k8s/tools/cli/loadtest/job.yaml index 8077049f7fa..4fde0657e4e 100644 --- a/k8s/tools/cli/loadtest/job.yaml +++ b/k8s/tools/cli/loadtest/job.yaml @@ -1,6 +1,6 @@ --- # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/config/config.go b/pkg/agent/core/ngt/config/config.go index 90333ddea43..501d3aca067 100644 --- a/pkg/agent/core/ngt/config/config.go +++ b/pkg/agent/core/ngt/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/config/config_test.go b/pkg/agent/core/ngt/config/config_test.go index 4b07b576205..cb916bf94c6 100644 --- a/pkg/agent/core/ngt/config/config_test.go +++ b/pkg/agent/core/ngt/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/handler/doc.go b/pkg/agent/core/ngt/handler/doc.go index 86b6d1869df..ccfec04658f 100644 --- a/pkg/agent/core/ngt/handler/doc.go +++ b/pkg/agent/core/ngt/handler/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/handler/grpc/handler.go b/pkg/agent/core/ngt/handler/grpc/handler.go index dc2895e26b8..7c6774416ac 100644 --- a/pkg/agent/core/ngt/handler/grpc/handler.go +++ b/pkg/agent/core/ngt/handler/grpc/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/handler/grpc/handler_test.go b/pkg/agent/core/ngt/handler/grpc/handler_test.go index 05f77f00a27..96c728abd45 100644 --- a/pkg/agent/core/ngt/handler/grpc/handler_test.go +++ b/pkg/agent/core/ngt/handler/grpc/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/handler/grpc/option.go b/pkg/agent/core/ngt/handler/grpc/option.go index 3d8c270c9f4..5a2c31754e8 100644 --- a/pkg/agent/core/ngt/handler/grpc/option.go +++ b/pkg/agent/core/ngt/handler/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/handler/grpc/option_test.go b/pkg/agent/core/ngt/handler/grpc/option_test.go index dbdb548d34c..927a77579ca 100644 --- a/pkg/agent/core/ngt/handler/grpc/option_test.go +++ b/pkg/agent/core/ngt/handler/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/handler/rest/handler.go b/pkg/agent/core/ngt/handler/rest/handler.go index 25bb1c4a2b3..2f4d0ec6da3 100644 --- a/pkg/agent/core/ngt/handler/rest/handler.go +++ b/pkg/agent/core/ngt/handler/rest/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/handler/rest/handler_test.go b/pkg/agent/core/ngt/handler/rest/handler_test.go index 9659e184e36..757e469b3a9 100644 --- a/pkg/agent/core/ngt/handler/rest/handler_test.go +++ b/pkg/agent/core/ngt/handler/rest/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/handler/rest/option.go b/pkg/agent/core/ngt/handler/rest/option.go index c7cfd0fd665..10fdd040bac 100644 --- a/pkg/agent/core/ngt/handler/rest/option.go +++ b/pkg/agent/core/ngt/handler/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/handler/rest/option_test.go b/pkg/agent/core/ngt/handler/rest/option_test.go index 93e0f39712e..2d961ac51db 100644 --- a/pkg/agent/core/ngt/handler/rest/option_test.go +++ b/pkg/agent/core/ngt/handler/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/model/ngt.go b/pkg/agent/core/ngt/model/ngt.go index a51d793f5f8..36dd2b5cfcd 100644 --- a/pkg/agent/core/ngt/model/ngt.go +++ b/pkg/agent/core/ngt/model/ngt.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/router/option.go b/pkg/agent/core/ngt/router/option.go index 0b2567351ef..85a46689601 100644 --- a/pkg/agent/core/ngt/router/option.go +++ b/pkg/agent/core/ngt/router/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/router/option_test.go b/pkg/agent/core/ngt/router/option_test.go index 6ec1ab28de0..a7d965dfc38 100644 --- a/pkg/agent/core/ngt/router/option_test.go +++ b/pkg/agent/core/ngt/router/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/router/router.go b/pkg/agent/core/ngt/router/router.go index e3325b7622e..b338ee46961 100644 --- a/pkg/agent/core/ngt/router/router.go +++ b/pkg/agent/core/ngt/router/router.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/router/router_test.go b/pkg/agent/core/ngt/router/router_test.go index e02106ae0e7..40861a12422 100644 --- a/pkg/agent/core/ngt/router/router_test.go +++ b/pkg/agent/core/ngt/router/router_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/service/doc.go b/pkg/agent/core/ngt/service/doc.go index c13956cbbe3..be28c3a7ef0 100644 --- a/pkg/agent/core/ngt/service/doc.go +++ b/pkg/agent/core/ngt/service/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/service/kvs/kvs.go b/pkg/agent/core/ngt/service/kvs/kvs.go index 95823feccb8..b0fc20d635a 100644 --- a/pkg/agent/core/ngt/service/kvs/kvs.go +++ b/pkg/agent/core/ngt/service/kvs/kvs.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/service/kvs/kvs_test.go b/pkg/agent/core/ngt/service/kvs/kvs_test.go index 8c5262baad1..f8b5e8a080f 100644 --- a/pkg/agent/core/ngt/service/kvs/kvs_test.go +++ b/pkg/agent/core/ngt/service/kvs/kvs_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/service/kvs/ou.go b/pkg/agent/core/ngt/service/kvs/ou.go index c98b398bab6..03a7151eb08 100644 --- a/pkg/agent/core/ngt/service/kvs/ou.go +++ b/pkg/agent/core/ngt/service/kvs/ou.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/service/kvs/ou_test.go b/pkg/agent/core/ngt/service/kvs/ou_test.go index 62413f54b64..1412ba6e39c 100644 --- a/pkg/agent/core/ngt/service/kvs/ou_test.go +++ b/pkg/agent/core/ngt/service/kvs/ou_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/service/kvs/uo.go b/pkg/agent/core/ngt/service/kvs/uo.go index 1dbf35655c9..3f86c82b28e 100644 --- a/pkg/agent/core/ngt/service/kvs/uo.go +++ b/pkg/agent/core/ngt/service/kvs/uo.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/service/kvs/uo_test.go b/pkg/agent/core/ngt/service/kvs/uo_test.go index c0528020c2f..5b1af84e897 100644 --- a/pkg/agent/core/ngt/service/kvs/uo_test.go +++ b/pkg/agent/core/ngt/service/kvs/uo_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/service/ngt.go b/pkg/agent/core/ngt/service/ngt.go index b7a7e08398d..b236d8b1991 100644 --- a/pkg/agent/core/ngt/service/ngt.go +++ b/pkg/agent/core/ngt/service/ngt.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/service/ngt_test.go b/pkg/agent/core/ngt/service/ngt_test.go index 6a74d8e418e..0edbb83c8e6 100644 --- a/pkg/agent/core/ngt/service/ngt_test.go +++ b/pkg/agent/core/ngt/service/ngt_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/service/option.go b/pkg/agent/core/ngt/service/option.go index 9d8c7a79836..b1b80dafdf3 100644 --- a/pkg/agent/core/ngt/service/option.go +++ b/pkg/agent/core/ngt/service/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/service/option_test.go b/pkg/agent/core/ngt/service/option_test.go index fe2561e1aa3..289a8ec5b41 100644 --- a/pkg/agent/core/ngt/service/option_test.go +++ b/pkg/agent/core/ngt/service/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/service/vcaches.go b/pkg/agent/core/ngt/service/vcaches.go index 7842b0c1156..bbeb77fa7ae 100644 --- a/pkg/agent/core/ngt/service/vcaches.go +++ b/pkg/agent/core/ngt/service/vcaches.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/service/vcaches_test.go b/pkg/agent/core/ngt/service/vcaches_test.go index e8b4b4a3b50..63ace6c3710 100644 --- a/pkg/agent/core/ngt/service/vcaches_test.go +++ b/pkg/agent/core/ngt/service/vcaches_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/usecase/agentd.go b/pkg/agent/core/ngt/usecase/agentd.go index dbd939453dd..54fe54e2f1d 100644 --- a/pkg/agent/core/ngt/usecase/agentd.go +++ b/pkg/agent/core/ngt/usecase/agentd.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/core/ngt/usecase/agentd_test.go b/pkg/agent/core/ngt/usecase/agentd_test.go index 12ec0d5eb34..e36566538b9 100644 --- a/pkg/agent/core/ngt/usecase/agentd_test.go +++ b/pkg/agent/core/ngt/usecase/agentd_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/internal/metadata/metadata.go b/pkg/agent/internal/metadata/metadata.go index 623b48f6aef..37cd3d7f665 100644 --- a/pkg/agent/internal/metadata/metadata.go +++ b/pkg/agent/internal/metadata/metadata.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/config/config.go b/pkg/agent/sidecar/config/config.go index 3f7429be27a..aa206fae994 100644 --- a/pkg/agent/sidecar/config/config.go +++ b/pkg/agent/sidecar/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/config/config_test.go b/pkg/agent/sidecar/config/config_test.go index f38b1e493bf..02c73373375 100644 --- a/pkg/agent/sidecar/config/config_test.go +++ b/pkg/agent/sidecar/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/handler/doc.go b/pkg/agent/sidecar/handler/doc.go index 86b6d1869df..ccfec04658f 100644 --- a/pkg/agent/sidecar/handler/doc.go +++ b/pkg/agent/sidecar/handler/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/handler/grpc/handler.go b/pkg/agent/sidecar/handler/grpc/handler.go index d990a019653..eb7c2f93d0d 100644 --- a/pkg/agent/sidecar/handler/grpc/handler.go +++ b/pkg/agent/sidecar/handler/grpc/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/handler/grpc/handler_test.go b/pkg/agent/sidecar/handler/grpc/handler_test.go index 66fbc841de3..44d52577114 100644 --- a/pkg/agent/sidecar/handler/grpc/handler_test.go +++ b/pkg/agent/sidecar/handler/grpc/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/handler/grpc/option.go b/pkg/agent/sidecar/handler/grpc/option.go index 99c4510a558..9957522830b 100644 --- a/pkg/agent/sidecar/handler/grpc/option.go +++ b/pkg/agent/sidecar/handler/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/handler/grpc/option_test.go b/pkg/agent/sidecar/handler/grpc/option_test.go index d53940b4d38..f8fb93a7a93 100644 --- a/pkg/agent/sidecar/handler/grpc/option_test.go +++ b/pkg/agent/sidecar/handler/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/handler/rest/handler.go b/pkg/agent/sidecar/handler/rest/handler.go index 5fb6c20df2c..ae0061a5891 100644 --- a/pkg/agent/sidecar/handler/rest/handler.go +++ b/pkg/agent/sidecar/handler/rest/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/handler/rest/handler_test.go b/pkg/agent/sidecar/handler/rest/handler_test.go index 732f20161b7..904fd4a1bd0 100644 --- a/pkg/agent/sidecar/handler/rest/handler_test.go +++ b/pkg/agent/sidecar/handler/rest/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/handler/rest/option.go b/pkg/agent/sidecar/handler/rest/option.go index 00d34db91e2..ab5a31561d9 100644 --- a/pkg/agent/sidecar/handler/rest/option.go +++ b/pkg/agent/sidecar/handler/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/handler/rest/option_test.go b/pkg/agent/sidecar/handler/rest/option_test.go index 214ec26cc5d..be496aa6bf7 100644 --- a/pkg/agent/sidecar/handler/rest/option_test.go +++ b/pkg/agent/sidecar/handler/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/router/option.go b/pkg/agent/sidecar/router/option.go index 2ca5928d0ce..896a9c4b705 100644 --- a/pkg/agent/sidecar/router/option.go +++ b/pkg/agent/sidecar/router/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/router/option_test.go b/pkg/agent/sidecar/router/option_test.go index 83f2dfae78a..672caaa3140 100644 --- a/pkg/agent/sidecar/router/option_test.go +++ b/pkg/agent/sidecar/router/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/router/router.go b/pkg/agent/sidecar/router/router.go index a0a876b5751..1e7fa930b8d 100644 --- a/pkg/agent/sidecar/router/router.go +++ b/pkg/agent/sidecar/router/router.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/router/router_test.go b/pkg/agent/sidecar/router/router_test.go index 25eaec0bef4..b8082a9dd63 100644 --- a/pkg/agent/sidecar/router/router_test.go +++ b/pkg/agent/sidecar/router/router_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/doc.go b/pkg/agent/sidecar/service/doc.go index c13956cbbe3..be28c3a7ef0 100644 --- a/pkg/agent/sidecar/service/doc.go +++ b/pkg/agent/sidecar/service/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/observer/hook.go b/pkg/agent/sidecar/service/observer/hook.go index bf897ee5a81..e9de777edcd 100644 --- a/pkg/agent/sidecar/service/observer/hook.go +++ b/pkg/agent/sidecar/service/observer/hook.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/observer/observer.go b/pkg/agent/sidecar/service/observer/observer.go index a3609c41915..0766c64a90f 100644 --- a/pkg/agent/sidecar/service/observer/observer.go +++ b/pkg/agent/sidecar/service/observer/observer.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/observer/observer_test.go b/pkg/agent/sidecar/service/observer/observer_test.go index 75d10965fa2..b775aeab85f 100644 --- a/pkg/agent/sidecar/service/observer/observer_test.go +++ b/pkg/agent/sidecar/service/observer/observer_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/observer/option.go b/pkg/agent/sidecar/service/observer/option.go index 3e27f803aaa..4b1d6c33ced 100644 --- a/pkg/agent/sidecar/service/observer/option.go +++ b/pkg/agent/sidecar/service/observer/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/observer/option_test.go b/pkg/agent/sidecar/service/observer/option_test.go index fa4497140d3..b93f17a5e31 100644 --- a/pkg/agent/sidecar/service/observer/option_test.go +++ b/pkg/agent/sidecar/service/observer/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/restorer/option.go b/pkg/agent/sidecar/service/restorer/option.go index 5e62baa443c..dc8f748b4dd 100644 --- a/pkg/agent/sidecar/service/restorer/option.go +++ b/pkg/agent/sidecar/service/restorer/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/restorer/option_test.go b/pkg/agent/sidecar/service/restorer/option_test.go index 9b5b24619e1..f0fa10095b9 100644 --- a/pkg/agent/sidecar/service/restorer/option_test.go +++ b/pkg/agent/sidecar/service/restorer/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/restorer/restorer.go b/pkg/agent/sidecar/service/restorer/restorer.go index 7f84ee43268..b814ec927a0 100644 --- a/pkg/agent/sidecar/service/restorer/restorer.go +++ b/pkg/agent/sidecar/service/restorer/restorer.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/restorer/restorer_test.go b/pkg/agent/sidecar/service/restorer/restorer_test.go index e5fea233739..0b83e5c7dbe 100644 --- a/pkg/agent/sidecar/service/restorer/restorer_test.go +++ b/pkg/agent/sidecar/service/restorer/restorer_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/storage/info.go b/pkg/agent/sidecar/service/storage/info.go index 3aff909db55..c60f00ca5fe 100644 --- a/pkg/agent/sidecar/service/storage/info.go +++ b/pkg/agent/sidecar/service/storage/info.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/storage/option.go b/pkg/agent/sidecar/service/storage/option.go index 63a0fb77987..53a3cb1b137 100644 --- a/pkg/agent/sidecar/service/storage/option.go +++ b/pkg/agent/sidecar/service/storage/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/storage/option_test.go b/pkg/agent/sidecar/service/storage/option_test.go index b97f2eded6a..80ac82c4fac 100644 --- a/pkg/agent/sidecar/service/storage/option_test.go +++ b/pkg/agent/sidecar/service/storage/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/storage/storage.go b/pkg/agent/sidecar/service/storage/storage.go index d704a3c0963..0dfef2504ad 100644 --- a/pkg/agent/sidecar/service/storage/storage.go +++ b/pkg/agent/sidecar/service/storage/storage.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/service/storage/storage_test.go b/pkg/agent/sidecar/service/storage/storage_test.go index 29eb1ef4b56..8556b5332c0 100644 --- a/pkg/agent/sidecar/service/storage/storage_test.go +++ b/pkg/agent/sidecar/service/storage/storage_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/usecase/initcontainer/initcontainer.go b/pkg/agent/sidecar/usecase/initcontainer/initcontainer.go index 4a23985a07c..f7e7f1b60d0 100644 --- a/pkg/agent/sidecar/usecase/initcontainer/initcontainer.go +++ b/pkg/agent/sidecar/usecase/initcontainer/initcontainer.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/usecase/initcontainer/initcontainer_test.go b/pkg/agent/sidecar/usecase/initcontainer/initcontainer_test.go index 33e40615425..719796b3b60 100644 --- a/pkg/agent/sidecar/usecase/initcontainer/initcontainer_test.go +++ b/pkg/agent/sidecar/usecase/initcontainer/initcontainer_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/usecase/sidecar/sidecar.go b/pkg/agent/sidecar/usecase/sidecar/sidecar.go index c8a9c9c1bf7..d576882bdcd 100644 --- a/pkg/agent/sidecar/usecase/sidecar/sidecar.go +++ b/pkg/agent/sidecar/usecase/sidecar/sidecar.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/usecase/sidecar/sidecar_test.go b/pkg/agent/sidecar/usecase/sidecar/sidecar_test.go index 919ab8c90a4..fae753b0073 100644 --- a/pkg/agent/sidecar/usecase/sidecar/sidecar_test.go +++ b/pkg/agent/sidecar/usecase/sidecar/sidecar_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/usecase/sidecard.go b/pkg/agent/sidecar/usecase/sidecard.go index 2f24abbe628..bc001581029 100644 --- a/pkg/agent/sidecar/usecase/sidecard.go +++ b/pkg/agent/sidecar/usecase/sidecard.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/agent/sidecar/usecase/sidecard_test.go b/pkg/agent/sidecar/usecase/sidecard_test.go index 034bbe9b25c..e48fd8c419e 100644 --- a/pkg/agent/sidecar/usecase/sidecard_test.go +++ b/pkg/agent/sidecar/usecase/sidecard_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/config/config.go b/pkg/discoverer/k8s/config/config.go index 211812327db..ddffc1f63e7 100644 --- a/pkg/discoverer/k8s/config/config.go +++ b/pkg/discoverer/k8s/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/config/config_test.go b/pkg/discoverer/k8s/config/config_test.go index eba18af56a7..85ba8393c93 100644 --- a/pkg/discoverer/k8s/config/config_test.go +++ b/pkg/discoverer/k8s/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/handler/doc.go b/pkg/discoverer/k8s/handler/doc.go index 86b6d1869df..ccfec04658f 100644 --- a/pkg/discoverer/k8s/handler/doc.go +++ b/pkg/discoverer/k8s/handler/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/handler/grpc/handler.go b/pkg/discoverer/k8s/handler/grpc/handler.go index 4e1838047c2..3d56205d61b 100644 --- a/pkg/discoverer/k8s/handler/grpc/handler.go +++ b/pkg/discoverer/k8s/handler/grpc/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/handler/grpc/handler_test.go b/pkg/discoverer/k8s/handler/grpc/handler_test.go index fd674da4f8b..3a44a835462 100644 --- a/pkg/discoverer/k8s/handler/grpc/handler_test.go +++ b/pkg/discoverer/k8s/handler/grpc/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/handler/grpc/option.go b/pkg/discoverer/k8s/handler/grpc/option.go index 4a4607671ba..1d3f11e1fbd 100644 --- a/pkg/discoverer/k8s/handler/grpc/option.go +++ b/pkg/discoverer/k8s/handler/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/handler/grpc/option_test.go b/pkg/discoverer/k8s/handler/grpc/option_test.go index 073a0fc147e..1d377d651dd 100644 --- a/pkg/discoverer/k8s/handler/grpc/option_test.go +++ b/pkg/discoverer/k8s/handler/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/handler/rest/handler.go b/pkg/discoverer/k8s/handler/rest/handler.go index 4d39d497081..201c85dd094 100644 --- a/pkg/discoverer/k8s/handler/rest/handler.go +++ b/pkg/discoverer/k8s/handler/rest/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/handler/rest/handler_test.go b/pkg/discoverer/k8s/handler/rest/handler_test.go index ddc4e95f90b..2b402effcf8 100644 --- a/pkg/discoverer/k8s/handler/rest/handler_test.go +++ b/pkg/discoverer/k8s/handler/rest/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/handler/rest/option.go b/pkg/discoverer/k8s/handler/rest/option.go index 87f2bdc710a..b653c2cd2b5 100644 --- a/pkg/discoverer/k8s/handler/rest/option.go +++ b/pkg/discoverer/k8s/handler/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/handler/rest/option_test.go b/pkg/discoverer/k8s/handler/rest/option_test.go index 2053297512c..98c26d0fb43 100644 --- a/pkg/discoverer/k8s/handler/rest/option_test.go +++ b/pkg/discoverer/k8s/handler/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/router/option.go b/pkg/discoverer/k8s/router/option.go index c287e04deec..a58cc678e8d 100644 --- a/pkg/discoverer/k8s/router/option.go +++ b/pkg/discoverer/k8s/router/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/router/option_test.go b/pkg/discoverer/k8s/router/option_test.go index 54bd6622717..a933a9cd9a9 100644 --- a/pkg/discoverer/k8s/router/option_test.go +++ b/pkg/discoverer/k8s/router/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/router/router.go b/pkg/discoverer/k8s/router/router.go index 10affe1b2a3..56b04d1ba79 100644 --- a/pkg/discoverer/k8s/router/router.go +++ b/pkg/discoverer/k8s/router/router.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/router/router_test.go b/pkg/discoverer/k8s/router/router_test.go index 25eaec0bef4..b8082a9dd63 100644 --- a/pkg/discoverer/k8s/router/router_test.go +++ b/pkg/discoverer/k8s/router/router_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/service/discover.go b/pkg/discoverer/k8s/service/discover.go index 38840a61d3a..d19b38a95e7 100644 --- a/pkg/discoverer/k8s/service/discover.go +++ b/pkg/discoverer/k8s/service/discover.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/service/discover_test.go b/pkg/discoverer/k8s/service/discover_test.go index dc3d3e81778..3886adfa104 100644 --- a/pkg/discoverer/k8s/service/discover_test.go +++ b/pkg/discoverer/k8s/service/discover_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/service/doc.go b/pkg/discoverer/k8s/service/doc.go index c13956cbbe3..be28c3a7ef0 100644 --- a/pkg/discoverer/k8s/service/doc.go +++ b/pkg/discoverer/k8s/service/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/service/nodemap.go b/pkg/discoverer/k8s/service/nodemap.go index bed32039317..6a29d6218bd 100644 --- a/pkg/discoverer/k8s/service/nodemap.go +++ b/pkg/discoverer/k8s/service/nodemap.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/service/nodemap_test.go b/pkg/discoverer/k8s/service/nodemap_test.go index fc8a00c48c3..e039faabada 100644 --- a/pkg/discoverer/k8s/service/nodemap_test.go +++ b/pkg/discoverer/k8s/service/nodemap_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/service/nodemetricsmap.go b/pkg/discoverer/k8s/service/nodemetricsmap.go index e6f6e49620f..c1760dd7c96 100644 --- a/pkg/discoverer/k8s/service/nodemetricsmap.go +++ b/pkg/discoverer/k8s/service/nodemetricsmap.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/service/nodemetricsmap_test.go b/pkg/discoverer/k8s/service/nodemetricsmap_test.go index 1cc6ae0368e..2f89f8ef42c 100644 --- a/pkg/discoverer/k8s/service/nodemetricsmap_test.go +++ b/pkg/discoverer/k8s/service/nodemetricsmap_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/service/option.go b/pkg/discoverer/k8s/service/option.go index 5cd1cf7959e..5e87146862d 100644 --- a/pkg/discoverer/k8s/service/option.go +++ b/pkg/discoverer/k8s/service/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/service/option_test.go b/pkg/discoverer/k8s/service/option_test.go index b8490991624..dd80acdbab3 100644 --- a/pkg/discoverer/k8s/service/option_test.go +++ b/pkg/discoverer/k8s/service/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/service/podmetricsmap.go b/pkg/discoverer/k8s/service/podmetricsmap.go index 97bb9e46165..60863f1ac77 100644 --- a/pkg/discoverer/k8s/service/podmetricsmap.go +++ b/pkg/discoverer/k8s/service/podmetricsmap.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/service/podmetricsmap_test.go b/pkg/discoverer/k8s/service/podmetricsmap_test.go index 3c224e71cae..0bb29796083 100644 --- a/pkg/discoverer/k8s/service/podmetricsmap_test.go +++ b/pkg/discoverer/k8s/service/podmetricsmap_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/service/podsmap.go b/pkg/discoverer/k8s/service/podsmap.go index 1f40a68dc8c..7645547a624 100644 --- a/pkg/discoverer/k8s/service/podsmap.go +++ b/pkg/discoverer/k8s/service/podsmap.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/service/podsmap_test.go b/pkg/discoverer/k8s/service/podsmap_test.go index deeb4e75546..e34266817ed 100644 --- a/pkg/discoverer/k8s/service/podsmap_test.go +++ b/pkg/discoverer/k8s/service/podsmap_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/usecase/discovered.go b/pkg/discoverer/k8s/usecase/discovered.go index 3da3591904a..aec44ef1acd 100644 --- a/pkg/discoverer/k8s/usecase/discovered.go +++ b/pkg/discoverer/k8s/usecase/discovered.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/discoverer/k8s/usecase/discovered_test.go b/pkg/discoverer/k8s/usecase/discovered_test.go index 999866b2c1a..450197493ce 100644 --- a/pkg/discoverer/k8s/usecase/discovered_test.go +++ b/pkg/discoverer/k8s/usecase/discovered_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/config/config.go b/pkg/gateway/vald/config/config.go index 6e4109fdabd..6c34720344f 100644 --- a/pkg/gateway/vald/config/config.go +++ b/pkg/gateway/vald/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/config/config_test.go b/pkg/gateway/vald/config/config_test.go index eba18af56a7..85ba8393c93 100644 --- a/pkg/gateway/vald/config/config_test.go +++ b/pkg/gateway/vald/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/handler/doc.go b/pkg/gateway/vald/handler/doc.go index 86b6d1869df..ccfec04658f 100644 --- a/pkg/gateway/vald/handler/doc.go +++ b/pkg/gateway/vald/handler/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/handler/grpc/checklist.go b/pkg/gateway/vald/handler/grpc/checklist.go index 1d3cdc4b476..0669d4cf7cb 100644 --- a/pkg/gateway/vald/handler/grpc/checklist.go +++ b/pkg/gateway/vald/handler/grpc/checklist.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/handler/grpc/checklist_test.go b/pkg/gateway/vald/handler/grpc/checklist_test.go index f1b47982370..251ed9610f0 100644 --- a/pkg/gateway/vald/handler/grpc/checklist_test.go +++ b/pkg/gateway/vald/handler/grpc/checklist_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/handler/grpc/handler.go b/pkg/gateway/vald/handler/grpc/handler.go index 8629acf6850..ec8c8f7e29e 100644 --- a/pkg/gateway/vald/handler/grpc/handler.go +++ b/pkg/gateway/vald/handler/grpc/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/handler/grpc/handler_test.go b/pkg/gateway/vald/handler/grpc/handler_test.go index 6728b93ffca..2707c0daffd 100644 --- a/pkg/gateway/vald/handler/grpc/handler_test.go +++ b/pkg/gateway/vald/handler/grpc/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/handler/grpc/option.go b/pkg/gateway/vald/handler/grpc/option.go index e1c8ce30ad0..a0efe356eb6 100644 --- a/pkg/gateway/vald/handler/grpc/option.go +++ b/pkg/gateway/vald/handler/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/handler/grpc/option_test.go b/pkg/gateway/vald/handler/grpc/option_test.go index 5483e75afe0..b61b185f7fe 100644 --- a/pkg/gateway/vald/handler/grpc/option_test.go +++ b/pkg/gateway/vald/handler/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/handler/rest/handler.go b/pkg/gateway/vald/handler/rest/handler.go index c9b9b962660..39dab58a004 100644 --- a/pkg/gateway/vald/handler/rest/handler.go +++ b/pkg/gateway/vald/handler/rest/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/handler/rest/handler_test.go b/pkg/gateway/vald/handler/rest/handler_test.go index ffa160b438f..77d4c100ec3 100644 --- a/pkg/gateway/vald/handler/rest/handler_test.go +++ b/pkg/gateway/vald/handler/rest/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/handler/rest/option.go b/pkg/gateway/vald/handler/rest/option.go index c684ad7ec83..b87b4543c22 100644 --- a/pkg/gateway/vald/handler/rest/option.go +++ b/pkg/gateway/vald/handler/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/handler/rest/option_test.go b/pkg/gateway/vald/handler/rest/option_test.go index 133b88509fd..ae25ba6b021 100644 --- a/pkg/gateway/vald/handler/rest/option_test.go +++ b/pkg/gateway/vald/handler/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/router/option.go b/pkg/gateway/vald/router/option.go index 76abf879ef6..33e23694f7b 100644 --- a/pkg/gateway/vald/router/option.go +++ b/pkg/gateway/vald/router/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/router/option_test.go b/pkg/gateway/vald/router/option_test.go index ca2fc747269..7223079c86c 100644 --- a/pkg/gateway/vald/router/option_test.go +++ b/pkg/gateway/vald/router/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/router/router.go b/pkg/gateway/vald/router/router.go index cfb944a433e..8e09fcb6b4d 100644 --- a/pkg/gateway/vald/router/router.go +++ b/pkg/gateway/vald/router/router.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/router/router_test.go b/pkg/gateway/vald/router/router_test.go index 25eaec0bef4..b8082a9dd63 100644 --- a/pkg/gateway/vald/router/router_test.go +++ b/pkg/gateway/vald/router/router_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/backup.go b/pkg/gateway/vald/service/backup.go index bc50e649047..aacac7d248f 100644 --- a/pkg/gateway/vald/service/backup.go +++ b/pkg/gateway/vald/service/backup.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/backup_option.go b/pkg/gateway/vald/service/backup_option.go index 3647333b074..c2af18484d8 100644 --- a/pkg/gateway/vald/service/backup_option.go +++ b/pkg/gateway/vald/service/backup_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/backup_option_test.go b/pkg/gateway/vald/service/backup_option_test.go index f4ae7108541..7085c5cddde 100644 --- a/pkg/gateway/vald/service/backup_option_test.go +++ b/pkg/gateway/vald/service/backup_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/backup_test.go b/pkg/gateway/vald/service/backup_test.go index 96198d011b8..cb2289beb59 100644 --- a/pkg/gateway/vald/service/backup_test.go +++ b/pkg/gateway/vald/service/backup_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/doc.go b/pkg/gateway/vald/service/doc.go index c13956cbbe3..be28c3a7ef0 100644 --- a/pkg/gateway/vald/service/doc.go +++ b/pkg/gateway/vald/service/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/filter.go b/pkg/gateway/vald/service/filter.go index 819ee59431a..6abfcbcecfb 100644 --- a/pkg/gateway/vald/service/filter.go +++ b/pkg/gateway/vald/service/filter.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/filter_option.go b/pkg/gateway/vald/service/filter_option.go index de11d286d22..5c90b71cb46 100644 --- a/pkg/gateway/vald/service/filter_option.go +++ b/pkg/gateway/vald/service/filter_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/filter_option_test.go b/pkg/gateway/vald/service/filter_option_test.go index 960d3a36e41..90d27bfd847 100644 --- a/pkg/gateway/vald/service/filter_option_test.go +++ b/pkg/gateway/vald/service/filter_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/filter_test.go b/pkg/gateway/vald/service/filter_test.go index 7105056704b..843bec0e592 100644 --- a/pkg/gateway/vald/service/filter_test.go +++ b/pkg/gateway/vald/service/filter_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/gateway.go b/pkg/gateway/vald/service/gateway.go index 6653b4593ed..af5b04cac9d 100644 --- a/pkg/gateway/vald/service/gateway.go +++ b/pkg/gateway/vald/service/gateway.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/gateway_option.go b/pkg/gateway/vald/service/gateway_option.go index b385031d804..8d2efcac834 100644 --- a/pkg/gateway/vald/service/gateway_option.go +++ b/pkg/gateway/vald/service/gateway_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/gateway_option_test.go b/pkg/gateway/vald/service/gateway_option_test.go index 03d9ac77b8c..6c822772381 100644 --- a/pkg/gateway/vald/service/gateway_option_test.go +++ b/pkg/gateway/vald/service/gateway_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/gateway_test.go b/pkg/gateway/vald/service/gateway_test.go index 05a58a2cc71..88ce3b823f3 100644 --- a/pkg/gateway/vald/service/gateway_test.go +++ b/pkg/gateway/vald/service/gateway_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/meta.go b/pkg/gateway/vald/service/meta.go index 1ca8f43ffb6..54ee1f28dcc 100644 --- a/pkg/gateway/vald/service/meta.go +++ b/pkg/gateway/vald/service/meta.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/meta_option.go b/pkg/gateway/vald/service/meta_option.go index a5014a18687..c08f8331a2f 100644 --- a/pkg/gateway/vald/service/meta_option.go +++ b/pkg/gateway/vald/service/meta_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/meta_option_test.go b/pkg/gateway/vald/service/meta_option_test.go index a7e7ec7e0ca..e3537558d7a 100644 --- a/pkg/gateway/vald/service/meta_option_test.go +++ b/pkg/gateway/vald/service/meta_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/service/meta_test.go b/pkg/gateway/vald/service/meta_test.go index 6df043828b3..f20cee7d722 100644 --- a/pkg/gateway/vald/service/meta_test.go +++ b/pkg/gateway/vald/service/meta_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/usecase/vald.go b/pkg/gateway/vald/usecase/vald.go index 7c8cf7f1eea..f0a44d3188d 100644 --- a/pkg/gateway/vald/usecase/vald.go +++ b/pkg/gateway/vald/usecase/vald.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/gateway/vald/usecase/vald_test.go b/pkg/gateway/vald/usecase/vald_test.go index 4a68faa6570..c70850b6f73 100644 --- a/pkg/gateway/vald/usecase/vald_test.go +++ b/pkg/gateway/vald/usecase/vald_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/config/config.go b/pkg/manager/backup/cassandra/config/config.go index 20d7bbf4a7d..1962e0390a8 100644 --- a/pkg/manager/backup/cassandra/config/config.go +++ b/pkg/manager/backup/cassandra/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/config/config_test.go b/pkg/manager/backup/cassandra/config/config_test.go index eba18af56a7..85ba8393c93 100644 --- a/pkg/manager/backup/cassandra/config/config_test.go +++ b/pkg/manager/backup/cassandra/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/handler/doc.go b/pkg/manager/backup/cassandra/handler/doc.go index 86b6d1869df..ccfec04658f 100644 --- a/pkg/manager/backup/cassandra/handler/doc.go +++ b/pkg/manager/backup/cassandra/handler/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/handler/grpc/handler.go b/pkg/manager/backup/cassandra/handler/grpc/handler.go index eba8f398aa5..67ce59ed896 100644 --- a/pkg/manager/backup/cassandra/handler/grpc/handler.go +++ b/pkg/manager/backup/cassandra/handler/grpc/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/handler/grpc/handler_test.go b/pkg/manager/backup/cassandra/handler/grpc/handler_test.go index 99690054719..e62718b5dcb 100644 --- a/pkg/manager/backup/cassandra/handler/grpc/handler_test.go +++ b/pkg/manager/backup/cassandra/handler/grpc/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/handler/grpc/option.go b/pkg/manager/backup/cassandra/handler/grpc/option.go index 08ab0680aeb..3727d0fe3c4 100644 --- a/pkg/manager/backup/cassandra/handler/grpc/option.go +++ b/pkg/manager/backup/cassandra/handler/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/handler/grpc/option_test.go b/pkg/manager/backup/cassandra/handler/grpc/option_test.go index 057c4ad9659..98b7113e5bb 100644 --- a/pkg/manager/backup/cassandra/handler/grpc/option_test.go +++ b/pkg/manager/backup/cassandra/handler/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/handler/rest/handler.go b/pkg/manager/backup/cassandra/handler/rest/handler.go index c1ba0ecfe2d..2f1fa6847b9 100644 --- a/pkg/manager/backup/cassandra/handler/rest/handler.go +++ b/pkg/manager/backup/cassandra/handler/rest/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/handler/rest/handler_test.go b/pkg/manager/backup/cassandra/handler/rest/handler_test.go index 37d902b2650..1851e51e6cb 100644 --- a/pkg/manager/backup/cassandra/handler/rest/handler_test.go +++ b/pkg/manager/backup/cassandra/handler/rest/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/handler/rest/option.go b/pkg/manager/backup/cassandra/handler/rest/option.go index 7aff12c1996..b0dbe06ff94 100644 --- a/pkg/manager/backup/cassandra/handler/rest/option.go +++ b/pkg/manager/backup/cassandra/handler/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/handler/rest/option_test.go b/pkg/manager/backup/cassandra/handler/rest/option_test.go index 9535622a92f..33362932c7f 100644 --- a/pkg/manager/backup/cassandra/handler/rest/option_test.go +++ b/pkg/manager/backup/cassandra/handler/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/model/model.go b/pkg/manager/backup/cassandra/model/model.go index fd5fdf6fcbe..79290743786 100644 --- a/pkg/manager/backup/cassandra/model/model.go +++ b/pkg/manager/backup/cassandra/model/model.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/router/option.go b/pkg/manager/backup/cassandra/router/option.go index cbdce18a3ea..823ea317c6e 100644 --- a/pkg/manager/backup/cassandra/router/option.go +++ b/pkg/manager/backup/cassandra/router/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/router/option_test.go b/pkg/manager/backup/cassandra/router/option_test.go index 5bab19cb39c..c30a4ee851d 100644 --- a/pkg/manager/backup/cassandra/router/option_test.go +++ b/pkg/manager/backup/cassandra/router/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/router/router.go b/pkg/manager/backup/cassandra/router/router.go index 5e7bc0a0c96..1a8f6ba118b 100644 --- a/pkg/manager/backup/cassandra/router/router.go +++ b/pkg/manager/backup/cassandra/router/router.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/router/router_test.go b/pkg/manager/backup/cassandra/router/router_test.go index 25eaec0bef4..b8082a9dd63 100644 --- a/pkg/manager/backup/cassandra/router/router_test.go +++ b/pkg/manager/backup/cassandra/router/router_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/service/cassandra.go b/pkg/manager/backup/cassandra/service/cassandra.go index 5ff5c000c08..9323b123f46 100644 --- a/pkg/manager/backup/cassandra/service/cassandra.go +++ b/pkg/manager/backup/cassandra/service/cassandra.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/service/cassandra_test.go b/pkg/manager/backup/cassandra/service/cassandra_test.go index 92f68046918..3599146fd2b 100644 --- a/pkg/manager/backup/cassandra/service/cassandra_test.go +++ b/pkg/manager/backup/cassandra/service/cassandra_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/service/doc.go b/pkg/manager/backup/cassandra/service/doc.go index c13956cbbe3..be28c3a7ef0 100644 --- a/pkg/manager/backup/cassandra/service/doc.go +++ b/pkg/manager/backup/cassandra/service/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/service/option.go b/pkg/manager/backup/cassandra/service/option.go index 59a8763dec3..8eeaf9d025f 100644 --- a/pkg/manager/backup/cassandra/service/option.go +++ b/pkg/manager/backup/cassandra/service/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/usecase/backupd.go b/pkg/manager/backup/cassandra/usecase/backupd.go index b1788f9adaa..029a5ccfe73 100644 --- a/pkg/manager/backup/cassandra/usecase/backupd.go +++ b/pkg/manager/backup/cassandra/usecase/backupd.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/cassandra/usecase/backupd_test.go b/pkg/manager/backup/cassandra/usecase/backupd_test.go index 6c368521b0b..74e3a5ab175 100644 --- a/pkg/manager/backup/cassandra/usecase/backupd_test.go +++ b/pkg/manager/backup/cassandra/usecase/backupd_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/config/config.go b/pkg/manager/backup/mysql/config/config.go index f0bbed30139..a769e250ac3 100644 --- a/pkg/manager/backup/mysql/config/config.go +++ b/pkg/manager/backup/mysql/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/config/config_test.go b/pkg/manager/backup/mysql/config/config_test.go index eba18af56a7..85ba8393c93 100644 --- a/pkg/manager/backup/mysql/config/config_test.go +++ b/pkg/manager/backup/mysql/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/handler/doc.go b/pkg/manager/backup/mysql/handler/doc.go index 86b6d1869df..ccfec04658f 100644 --- a/pkg/manager/backup/mysql/handler/doc.go +++ b/pkg/manager/backup/mysql/handler/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/handler/grpc/handler.go b/pkg/manager/backup/mysql/handler/grpc/handler.go index e60df634b15..107366a9e2c 100644 --- a/pkg/manager/backup/mysql/handler/grpc/handler.go +++ b/pkg/manager/backup/mysql/handler/grpc/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/handler/grpc/handler_test.go b/pkg/manager/backup/mysql/handler/grpc/handler_test.go index d8e1fb9284f..927cf75b681 100644 --- a/pkg/manager/backup/mysql/handler/grpc/handler_test.go +++ b/pkg/manager/backup/mysql/handler/grpc/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/handler/grpc/option.go b/pkg/manager/backup/mysql/handler/grpc/option.go index 3e448635557..3c90d2fe3e0 100644 --- a/pkg/manager/backup/mysql/handler/grpc/option.go +++ b/pkg/manager/backup/mysql/handler/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/handler/grpc/option_test.go b/pkg/manager/backup/mysql/handler/grpc/option_test.go index b312e0e7c44..bbce6dafb66 100644 --- a/pkg/manager/backup/mysql/handler/grpc/option_test.go +++ b/pkg/manager/backup/mysql/handler/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/handler/rest/handler.go b/pkg/manager/backup/mysql/handler/rest/handler.go index c1ba0ecfe2d..2f1fa6847b9 100644 --- a/pkg/manager/backup/mysql/handler/rest/handler.go +++ b/pkg/manager/backup/mysql/handler/rest/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/handler/rest/handler_test.go b/pkg/manager/backup/mysql/handler/rest/handler_test.go index 37d902b2650..1851e51e6cb 100644 --- a/pkg/manager/backup/mysql/handler/rest/handler_test.go +++ b/pkg/manager/backup/mysql/handler/rest/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/handler/rest/option.go b/pkg/manager/backup/mysql/handler/rest/option.go index 7aff12c1996..b0dbe06ff94 100644 --- a/pkg/manager/backup/mysql/handler/rest/option.go +++ b/pkg/manager/backup/mysql/handler/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/handler/rest/option_test.go b/pkg/manager/backup/mysql/handler/rest/option_test.go index 9535622a92f..33362932c7f 100644 --- a/pkg/manager/backup/mysql/handler/rest/option_test.go +++ b/pkg/manager/backup/mysql/handler/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/model/model.go b/pkg/manager/backup/mysql/model/model.go index 95268950216..a087ec1fb28 100644 --- a/pkg/manager/backup/mysql/model/model.go +++ b/pkg/manager/backup/mysql/model/model.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/model/model_test.go b/pkg/manager/backup/mysql/model/model_test.go index c710f3362ab..f42819c29ba 100644 --- a/pkg/manager/backup/mysql/model/model_test.go +++ b/pkg/manager/backup/mysql/model/model_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/router/option.go b/pkg/manager/backup/mysql/router/option.go index b6780cf1f78..4c41352db8a 100644 --- a/pkg/manager/backup/mysql/router/option.go +++ b/pkg/manager/backup/mysql/router/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/router/option_test.go b/pkg/manager/backup/mysql/router/option_test.go index a03aad88fc3..773036c0759 100644 --- a/pkg/manager/backup/mysql/router/option_test.go +++ b/pkg/manager/backup/mysql/router/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/router/router.go b/pkg/manager/backup/mysql/router/router.go index c7a06986358..85d97a98c4a 100644 --- a/pkg/manager/backup/mysql/router/router.go +++ b/pkg/manager/backup/mysql/router/router.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/router/router_test.go b/pkg/manager/backup/mysql/router/router_test.go index 25eaec0bef4..b8082a9dd63 100644 --- a/pkg/manager/backup/mysql/router/router_test.go +++ b/pkg/manager/backup/mysql/router/router_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/service/doc.go b/pkg/manager/backup/mysql/service/doc.go index c13956cbbe3..be28c3a7ef0 100644 --- a/pkg/manager/backup/mysql/service/doc.go +++ b/pkg/manager/backup/mysql/service/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/service/mysql.go b/pkg/manager/backup/mysql/service/mysql.go index 7df54b3b038..01c05782df6 100644 --- a/pkg/manager/backup/mysql/service/mysql.go +++ b/pkg/manager/backup/mysql/service/mysql.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/service/mysql_test.go b/pkg/manager/backup/mysql/service/mysql_test.go index 7aff23e687e..e45a37b7baa 100644 --- a/pkg/manager/backup/mysql/service/mysql_test.go +++ b/pkg/manager/backup/mysql/service/mysql_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/service/option.go b/pkg/manager/backup/mysql/service/option.go index e87c9df9ecc..1e4ed28388e 100644 --- a/pkg/manager/backup/mysql/service/option.go +++ b/pkg/manager/backup/mysql/service/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/usecase/backupd.go b/pkg/manager/backup/mysql/usecase/backupd.go index f6a10fb1d7b..e1cda7fdcf9 100644 --- a/pkg/manager/backup/mysql/usecase/backupd.go +++ b/pkg/manager/backup/mysql/usecase/backupd.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/backup/mysql/usecase/backupd_test.go b/pkg/manager/backup/mysql/usecase/backupd_test.go index a27434769bb..bf6fd2e8d8a 100644 --- a/pkg/manager/backup/mysql/usecase/backupd_test.go +++ b/pkg/manager/backup/mysql/usecase/backupd_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/config/config.go b/pkg/manager/compressor/config/config.go index d9910bb8ff6..10cb78eeb01 100644 --- a/pkg/manager/compressor/config/config.go +++ b/pkg/manager/compressor/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/config/config_test.go b/pkg/manager/compressor/config/config_test.go index eba18af56a7..85ba8393c93 100644 --- a/pkg/manager/compressor/config/config_test.go +++ b/pkg/manager/compressor/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/handler/doc.go b/pkg/manager/compressor/handler/doc.go index 86b6d1869df..ccfec04658f 100644 --- a/pkg/manager/compressor/handler/doc.go +++ b/pkg/manager/compressor/handler/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/handler/grpc/handler.go b/pkg/manager/compressor/handler/grpc/handler.go index afff701d3bc..81454b2b3dc 100644 --- a/pkg/manager/compressor/handler/grpc/handler.go +++ b/pkg/manager/compressor/handler/grpc/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/handler/grpc/handler_test.go b/pkg/manager/compressor/handler/grpc/handler_test.go index e33785e2fe2..3296b26c408 100644 --- a/pkg/manager/compressor/handler/grpc/handler_test.go +++ b/pkg/manager/compressor/handler/grpc/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/handler/grpc/option.go b/pkg/manager/compressor/handler/grpc/option.go index 6f0f471d36a..d0621a6d3d9 100644 --- a/pkg/manager/compressor/handler/grpc/option.go +++ b/pkg/manager/compressor/handler/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/handler/grpc/option_test.go b/pkg/manager/compressor/handler/grpc/option_test.go index 94fafa6d68d..6945030ebc6 100644 --- a/pkg/manager/compressor/handler/grpc/option_test.go +++ b/pkg/manager/compressor/handler/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/handler/rest/handler.go b/pkg/manager/compressor/handler/rest/handler.go index 09422f7ecfe..21101bab97c 100644 --- a/pkg/manager/compressor/handler/rest/handler.go +++ b/pkg/manager/compressor/handler/rest/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/handler/rest/handler_test.go b/pkg/manager/compressor/handler/rest/handler_test.go index 728d524800f..ba71124bca0 100644 --- a/pkg/manager/compressor/handler/rest/handler_test.go +++ b/pkg/manager/compressor/handler/rest/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/handler/rest/option.go b/pkg/manager/compressor/handler/rest/option.go index 5b9907ec31f..a9d55805d99 100644 --- a/pkg/manager/compressor/handler/rest/option.go +++ b/pkg/manager/compressor/handler/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/handler/rest/option_test.go b/pkg/manager/compressor/handler/rest/option_test.go index 5a68acefcc8..57694485bc9 100644 --- a/pkg/manager/compressor/handler/rest/option_test.go +++ b/pkg/manager/compressor/handler/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/model/model.go b/pkg/manager/compressor/model/model.go index 65c925be7d9..8a00e9c4610 100644 --- a/pkg/manager/compressor/model/model.go +++ b/pkg/manager/compressor/model/model.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/router/option.go b/pkg/manager/compressor/router/option.go index 9a4af7b6d68..6fa76263516 100644 --- a/pkg/manager/compressor/router/option.go +++ b/pkg/manager/compressor/router/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/router/option_test.go b/pkg/manager/compressor/router/option_test.go index e77d54ce421..198a472d9bc 100644 --- a/pkg/manager/compressor/router/option_test.go +++ b/pkg/manager/compressor/router/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/router/router.go b/pkg/manager/compressor/router/router.go index 0f1eefbd20f..c32dc0ddfa4 100644 --- a/pkg/manager/compressor/router/router.go +++ b/pkg/manager/compressor/router/router.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/router/router_test.go b/pkg/manager/compressor/router/router_test.go index 25eaec0bef4..b8082a9dd63 100644 --- a/pkg/manager/compressor/router/router_test.go +++ b/pkg/manager/compressor/router/router_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/service/backup.go b/pkg/manager/compressor/service/backup.go index ea757e63098..a0d6c9cadb4 100644 --- a/pkg/manager/compressor/service/backup.go +++ b/pkg/manager/compressor/service/backup.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/service/backup_option.go b/pkg/manager/compressor/service/backup_option.go index 3647333b074..c2af18484d8 100644 --- a/pkg/manager/compressor/service/backup_option.go +++ b/pkg/manager/compressor/service/backup_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/service/backup_option_test.go b/pkg/manager/compressor/service/backup_option_test.go index f4ae7108541..7085c5cddde 100644 --- a/pkg/manager/compressor/service/backup_option_test.go +++ b/pkg/manager/compressor/service/backup_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/service/backup_test.go b/pkg/manager/compressor/service/backup_test.go index 8363798d423..eb071e54c1d 100644 --- a/pkg/manager/compressor/service/backup_test.go +++ b/pkg/manager/compressor/service/backup_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/service/compress.go b/pkg/manager/compressor/service/compress.go index 24ade2fb53d..0bee0aad6d2 100644 --- a/pkg/manager/compressor/service/compress.go +++ b/pkg/manager/compressor/service/compress.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/service/compress_option.go b/pkg/manager/compressor/service/compress_option.go index d1b706e60ae..29154f34716 100644 --- a/pkg/manager/compressor/service/compress_option.go +++ b/pkg/manager/compressor/service/compress_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/service/compress_option_test.go b/pkg/manager/compressor/service/compress_option_test.go index 697609a6916..dabd5fac8e3 100644 --- a/pkg/manager/compressor/service/compress_option_test.go +++ b/pkg/manager/compressor/service/compress_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/service/compress_test.go b/pkg/manager/compressor/service/compress_test.go index aad9875de39..e94167d0c3e 100644 --- a/pkg/manager/compressor/service/compress_test.go +++ b/pkg/manager/compressor/service/compress_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/service/doc.go b/pkg/manager/compressor/service/doc.go index c13956cbbe3..be28c3a7ef0 100644 --- a/pkg/manager/compressor/service/doc.go +++ b/pkg/manager/compressor/service/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/service/registerer.go b/pkg/manager/compressor/service/registerer.go index 5bcdfc14fb8..11b3420dbb0 100644 --- a/pkg/manager/compressor/service/registerer.go +++ b/pkg/manager/compressor/service/registerer.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/service/registerer_option.go b/pkg/manager/compressor/service/registerer_option.go index df3c546604a..c22f4895548 100644 --- a/pkg/manager/compressor/service/registerer_option.go +++ b/pkg/manager/compressor/service/registerer_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/service/registerer_option_test.go b/pkg/manager/compressor/service/registerer_option_test.go index c1a8141592d..ea18d8e8009 100644 --- a/pkg/manager/compressor/service/registerer_option_test.go +++ b/pkg/manager/compressor/service/registerer_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/service/registerer_test.go b/pkg/manager/compressor/service/registerer_test.go index 4b949235169..dcd2f4c9542 100644 --- a/pkg/manager/compressor/service/registerer_test.go +++ b/pkg/manager/compressor/service/registerer_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/usecase/compressord.go b/pkg/manager/compressor/usecase/compressord.go index 2879f20b9bd..f7f5f617f03 100644 --- a/pkg/manager/compressor/usecase/compressord.go +++ b/pkg/manager/compressor/usecase/compressord.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/compressor/usecase/compressord_test.go b/pkg/manager/compressor/usecase/compressord_test.go index 289af330519..520dda80ea0 100644 --- a/pkg/manager/compressor/usecase/compressord_test.go +++ b/pkg/manager/compressor/usecase/compressord_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/config/config.go b/pkg/manager/index/config/config.go index c46cfa923d9..d9a9cba163d 100644 --- a/pkg/manager/index/config/config.go +++ b/pkg/manager/index/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/config/config_test.go b/pkg/manager/index/config/config_test.go index eba18af56a7..85ba8393c93 100644 --- a/pkg/manager/index/config/config_test.go +++ b/pkg/manager/index/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/handler/doc.go b/pkg/manager/index/handler/doc.go index 86b6d1869df..ccfec04658f 100644 --- a/pkg/manager/index/handler/doc.go +++ b/pkg/manager/index/handler/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/handler/grpc/checklist.go b/pkg/manager/index/handler/grpc/checklist.go index 1d3cdc4b476..0669d4cf7cb 100644 --- a/pkg/manager/index/handler/grpc/checklist.go +++ b/pkg/manager/index/handler/grpc/checklist.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/handler/grpc/checklist_test.go b/pkg/manager/index/handler/grpc/checklist_test.go index f1b47982370..251ed9610f0 100644 --- a/pkg/manager/index/handler/grpc/checklist_test.go +++ b/pkg/manager/index/handler/grpc/checklist_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/handler/grpc/handler.go b/pkg/manager/index/handler/grpc/handler.go index 9c60ad42831..c3f81d3373f 100644 --- a/pkg/manager/index/handler/grpc/handler.go +++ b/pkg/manager/index/handler/grpc/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/handler/grpc/handler_test.go b/pkg/manager/index/handler/grpc/handler_test.go index 661d81e0438..45579a26c6e 100644 --- a/pkg/manager/index/handler/grpc/handler_test.go +++ b/pkg/manager/index/handler/grpc/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/handler/grpc/option.go b/pkg/manager/index/handler/grpc/option.go index 24179149c94..c26aba06556 100644 --- a/pkg/manager/index/handler/grpc/option.go +++ b/pkg/manager/index/handler/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/handler/grpc/option_test.go b/pkg/manager/index/handler/grpc/option_test.go index 02f22229880..d3ea8f91836 100644 --- a/pkg/manager/index/handler/grpc/option_test.go +++ b/pkg/manager/index/handler/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/handler/rest/handler.go b/pkg/manager/index/handler/rest/handler.go index ac4c5d2b641..dc5674946c0 100644 --- a/pkg/manager/index/handler/rest/handler.go +++ b/pkg/manager/index/handler/rest/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/handler/rest/handler_test.go b/pkg/manager/index/handler/rest/handler_test.go index 57916bdcb2f..b430cb7b2c0 100644 --- a/pkg/manager/index/handler/rest/handler_test.go +++ b/pkg/manager/index/handler/rest/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/handler/rest/option.go b/pkg/manager/index/handler/rest/option.go index 1ad42b4913b..41bd2698698 100644 --- a/pkg/manager/index/handler/rest/option.go +++ b/pkg/manager/index/handler/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/handler/rest/option_test.go b/pkg/manager/index/handler/rest/option_test.go index 03adc6bdc2b..0a178050c47 100644 --- a/pkg/manager/index/handler/rest/option_test.go +++ b/pkg/manager/index/handler/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/router/option.go b/pkg/manager/index/router/option.go index d202453309e..495c7c11210 100644 --- a/pkg/manager/index/router/option.go +++ b/pkg/manager/index/router/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/router/option_test.go b/pkg/manager/index/router/option_test.go index 6fbccbab73e..c85aa7752da 100644 --- a/pkg/manager/index/router/option_test.go +++ b/pkg/manager/index/router/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/router/router.go b/pkg/manager/index/router/router.go index d050d464ece..61de5e54097 100644 --- a/pkg/manager/index/router/router.go +++ b/pkg/manager/index/router/router.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/router/router_test.go b/pkg/manager/index/router/router_test.go index 25eaec0bef4..b8082a9dd63 100644 --- a/pkg/manager/index/router/router_test.go +++ b/pkg/manager/index/router/router_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/service/doc.go b/pkg/manager/index/service/doc.go index c13956cbbe3..be28c3a7ef0 100644 --- a/pkg/manager/index/service/doc.go +++ b/pkg/manager/index/service/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/service/indexer.go b/pkg/manager/index/service/indexer.go index 7071d38c837..24a4a71f4fa 100644 --- a/pkg/manager/index/service/indexer.go +++ b/pkg/manager/index/service/indexer.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/service/indexer_test.go b/pkg/manager/index/service/indexer_test.go index 888b5800604..db527a2b2cd 100644 --- a/pkg/manager/index/service/indexer_test.go +++ b/pkg/manager/index/service/indexer_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/service/indexinfos.go b/pkg/manager/index/service/indexinfos.go index 8066e7a07a4..1c0b4d12e7e 100644 --- a/pkg/manager/index/service/indexinfos.go +++ b/pkg/manager/index/service/indexinfos.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/service/indexinfos_test.go b/pkg/manager/index/service/indexinfos_test.go index f36e4edf5e6..60767b87490 100644 --- a/pkg/manager/index/service/indexinfos_test.go +++ b/pkg/manager/index/service/indexinfos_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/service/option.go b/pkg/manager/index/service/option.go index 88dcd74d37d..44dc0c2771a 100644 --- a/pkg/manager/index/service/option.go +++ b/pkg/manager/index/service/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/service/option_test.go b/pkg/manager/index/service/option_test.go index d75395c55a2..abeaf5e4bb4 100644 --- a/pkg/manager/index/service/option_test.go +++ b/pkg/manager/index/service/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/usecase/indexer.go b/pkg/manager/index/usecase/indexer.go index 2a05c197a0a..31ac84e69f4 100644 --- a/pkg/manager/index/usecase/indexer.go +++ b/pkg/manager/index/usecase/indexer.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/index/usecase/indexer_test.go b/pkg/manager/index/usecase/indexer_test.go index 5666a13627d..38e90e847a1 100644 --- a/pkg/manager/index/usecase/indexer_test.go +++ b/pkg/manager/index/usecase/indexer_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/config/config.go b/pkg/manager/replication/agent/config/config.go index 20d7bbf4a7d..1962e0390a8 100644 --- a/pkg/manager/replication/agent/config/config.go +++ b/pkg/manager/replication/agent/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/config/config_test.go b/pkg/manager/replication/agent/config/config_test.go index eba18af56a7..85ba8393c93 100644 --- a/pkg/manager/replication/agent/config/config_test.go +++ b/pkg/manager/replication/agent/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/handler/doc.go b/pkg/manager/replication/agent/handler/doc.go index 86b6d1869df..ccfec04658f 100644 --- a/pkg/manager/replication/agent/handler/doc.go +++ b/pkg/manager/replication/agent/handler/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/handler/grpc/handler.go b/pkg/manager/replication/agent/handler/grpc/handler.go index ae2c6eadb0c..bfc24ab7411 100644 --- a/pkg/manager/replication/agent/handler/grpc/handler.go +++ b/pkg/manager/replication/agent/handler/grpc/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/handler/grpc/handler_test.go b/pkg/manager/replication/agent/handler/grpc/handler_test.go index 8555e0c9f52..dd1d78dcaef 100644 --- a/pkg/manager/replication/agent/handler/grpc/handler_test.go +++ b/pkg/manager/replication/agent/handler/grpc/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/handler/grpc/option.go b/pkg/manager/replication/agent/handler/grpc/option.go index b221c098abe..ca6b8a32658 100644 --- a/pkg/manager/replication/agent/handler/grpc/option.go +++ b/pkg/manager/replication/agent/handler/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/handler/grpc/option_test.go b/pkg/manager/replication/agent/handler/grpc/option_test.go index 121c7d3b6eb..a2d214189d0 100644 --- a/pkg/manager/replication/agent/handler/grpc/option_test.go +++ b/pkg/manager/replication/agent/handler/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/handler/rest/handler.go b/pkg/manager/replication/agent/handler/rest/handler.go index a398937395e..a8a88b8b9be 100644 --- a/pkg/manager/replication/agent/handler/rest/handler.go +++ b/pkg/manager/replication/agent/handler/rest/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/handler/rest/handler_test.go b/pkg/manager/replication/agent/handler/rest/handler_test.go index f7e42952a6b..ca403f5c9b9 100644 --- a/pkg/manager/replication/agent/handler/rest/handler_test.go +++ b/pkg/manager/replication/agent/handler/rest/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/handler/rest/option.go b/pkg/manager/replication/agent/handler/rest/option.go index 69b8b72c3a0..d6337577881 100644 --- a/pkg/manager/replication/agent/handler/rest/option.go +++ b/pkg/manager/replication/agent/handler/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/handler/rest/option_test.go b/pkg/manager/replication/agent/handler/rest/option_test.go index 5ac6fc4b504..5de43610ec9 100644 --- a/pkg/manager/replication/agent/handler/rest/option_test.go +++ b/pkg/manager/replication/agent/handler/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/model/model.go b/pkg/manager/replication/agent/model/model.go index fd5fdf6fcbe..79290743786 100644 --- a/pkg/manager/replication/agent/model/model.go +++ b/pkg/manager/replication/agent/model/model.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/router/option.go b/pkg/manager/replication/agent/router/option.go index 47384792dcc..dfc2292923f 100644 --- a/pkg/manager/replication/agent/router/option.go +++ b/pkg/manager/replication/agent/router/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/router/option_test.go b/pkg/manager/replication/agent/router/option_test.go index 650e33f7b40..7205516ca79 100644 --- a/pkg/manager/replication/agent/router/option_test.go +++ b/pkg/manager/replication/agent/router/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/router/router.go b/pkg/manager/replication/agent/router/router.go index 6a867967a66..f6d7163e368 100644 --- a/pkg/manager/replication/agent/router/router.go +++ b/pkg/manager/replication/agent/router/router.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/router/router_test.go b/pkg/manager/replication/agent/router/router_test.go index 25eaec0bef4..b8082a9dd63 100644 --- a/pkg/manager/replication/agent/router/router_test.go +++ b/pkg/manager/replication/agent/router/router_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/service/agent.go b/pkg/manager/replication/agent/service/agent.go index 9ea4a593e98..0f98924ae90 100644 --- a/pkg/manager/replication/agent/service/agent.go +++ b/pkg/manager/replication/agent/service/agent.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/service/agent_test.go b/pkg/manager/replication/agent/service/agent_test.go index f4fa4e65f35..4c3bf2c1c55 100644 --- a/pkg/manager/replication/agent/service/agent_test.go +++ b/pkg/manager/replication/agent/service/agent_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/service/doc.go b/pkg/manager/replication/agent/service/doc.go index c13956cbbe3..be28c3a7ef0 100644 --- a/pkg/manager/replication/agent/service/doc.go +++ b/pkg/manager/replication/agent/service/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/usecase/backupd.go b/pkg/manager/replication/agent/usecase/backupd.go index 9abf62e3aee..49ec704b91d 100644 --- a/pkg/manager/replication/agent/usecase/backupd.go +++ b/pkg/manager/replication/agent/usecase/backupd.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/agent/usecase/backupd_test.go b/pkg/manager/replication/agent/usecase/backupd_test.go index 0c3b396622b..2e1a54077f1 100644 --- a/pkg/manager/replication/agent/usecase/backupd_test.go +++ b/pkg/manager/replication/agent/usecase/backupd_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/config/config.go b/pkg/manager/replication/controller/config/config.go index 211812327db..ddffc1f63e7 100644 --- a/pkg/manager/replication/controller/config/config.go +++ b/pkg/manager/replication/controller/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/config/config_test.go b/pkg/manager/replication/controller/config/config_test.go index eba18af56a7..85ba8393c93 100644 --- a/pkg/manager/replication/controller/config/config_test.go +++ b/pkg/manager/replication/controller/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/handler/doc.go b/pkg/manager/replication/controller/handler/doc.go index 86b6d1869df..ccfec04658f 100644 --- a/pkg/manager/replication/controller/handler/doc.go +++ b/pkg/manager/replication/controller/handler/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/handler/grpc/handler.go b/pkg/manager/replication/controller/handler/grpc/handler.go index 5cbd4a8ac1b..d9c7b7c5e50 100644 --- a/pkg/manager/replication/controller/handler/grpc/handler.go +++ b/pkg/manager/replication/controller/handler/grpc/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/handler/grpc/handler_test.go b/pkg/manager/replication/controller/handler/grpc/handler_test.go index 30e5dbe4c0d..c4a35fa8ab5 100644 --- a/pkg/manager/replication/controller/handler/grpc/handler_test.go +++ b/pkg/manager/replication/controller/handler/grpc/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/handler/grpc/option.go b/pkg/manager/replication/controller/handler/grpc/option.go index 4d9af19fb4b..55bb1f78c9f 100644 --- a/pkg/manager/replication/controller/handler/grpc/option.go +++ b/pkg/manager/replication/controller/handler/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/handler/grpc/option_test.go b/pkg/manager/replication/controller/handler/grpc/option_test.go index 3087b396663..9ddf4e0a88f 100644 --- a/pkg/manager/replication/controller/handler/grpc/option_test.go +++ b/pkg/manager/replication/controller/handler/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/handler/rest/handler.go b/pkg/manager/replication/controller/handler/rest/handler.go index fb1abf481ea..b7ee1195885 100644 --- a/pkg/manager/replication/controller/handler/rest/handler.go +++ b/pkg/manager/replication/controller/handler/rest/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/handler/rest/handler_test.go b/pkg/manager/replication/controller/handler/rest/handler_test.go index ca173ba6b48..e0edc5a04b8 100644 --- a/pkg/manager/replication/controller/handler/rest/handler_test.go +++ b/pkg/manager/replication/controller/handler/rest/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/handler/rest/option.go b/pkg/manager/replication/controller/handler/rest/option.go index c1996d13e32..4654f234fb5 100644 --- a/pkg/manager/replication/controller/handler/rest/option.go +++ b/pkg/manager/replication/controller/handler/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/handler/rest/option_test.go b/pkg/manager/replication/controller/handler/rest/option_test.go index 1af654f20b0..f4793dfb5e0 100644 --- a/pkg/manager/replication/controller/handler/rest/option_test.go +++ b/pkg/manager/replication/controller/handler/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/router/option.go b/pkg/manager/replication/controller/router/option.go index 022776655c4..1c8ca0382e5 100644 --- a/pkg/manager/replication/controller/router/option.go +++ b/pkg/manager/replication/controller/router/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/router/option_test.go b/pkg/manager/replication/controller/router/option_test.go index 41e46786936..3f89ba634b2 100644 --- a/pkg/manager/replication/controller/router/option_test.go +++ b/pkg/manager/replication/controller/router/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/router/router.go b/pkg/manager/replication/controller/router/router.go index 3aaa95735d4..b0715a7e4c2 100644 --- a/pkg/manager/replication/controller/router/router.go +++ b/pkg/manager/replication/controller/router/router.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/router/router_test.go b/pkg/manager/replication/controller/router/router_test.go index 25eaec0bef4..b8082a9dd63 100644 --- a/pkg/manager/replication/controller/router/router_test.go +++ b/pkg/manager/replication/controller/router/router_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/service/discover.go b/pkg/manager/replication/controller/service/discover.go index 55ee8e2c857..d1f5dab789b 100644 --- a/pkg/manager/replication/controller/service/discover.go +++ b/pkg/manager/replication/controller/service/discover.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/service/discover_test.go b/pkg/manager/replication/controller/service/discover_test.go index 814185abc34..4cd98af26d8 100644 --- a/pkg/manager/replication/controller/service/discover_test.go +++ b/pkg/manager/replication/controller/service/discover_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/service/doc.go b/pkg/manager/replication/controller/service/doc.go index c13956cbbe3..be28c3a7ef0 100644 --- a/pkg/manager/replication/controller/service/doc.go +++ b/pkg/manager/replication/controller/service/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/service/nodemap.go b/pkg/manager/replication/controller/service/nodemap.go index bed32039317..6a29d6218bd 100644 --- a/pkg/manager/replication/controller/service/nodemap.go +++ b/pkg/manager/replication/controller/service/nodemap.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/service/nodemap_test.go b/pkg/manager/replication/controller/service/nodemap_test.go index fc8a00c48c3..e039faabada 100644 --- a/pkg/manager/replication/controller/service/nodemap_test.go +++ b/pkg/manager/replication/controller/service/nodemap_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/service/nodemetricsmap.go b/pkg/manager/replication/controller/service/nodemetricsmap.go index e6f6e49620f..c1760dd7c96 100644 --- a/pkg/manager/replication/controller/service/nodemetricsmap.go +++ b/pkg/manager/replication/controller/service/nodemetricsmap.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/service/nodemetricsmap_test.go b/pkg/manager/replication/controller/service/nodemetricsmap_test.go index 1cc6ae0368e..2f89f8ef42c 100644 --- a/pkg/manager/replication/controller/service/nodemetricsmap_test.go +++ b/pkg/manager/replication/controller/service/nodemetricsmap_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/service/option.go b/pkg/manager/replication/controller/service/option.go index 4604930960e..d4e8f00d1cf 100644 --- a/pkg/manager/replication/controller/service/option.go +++ b/pkg/manager/replication/controller/service/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/service/option_test.go b/pkg/manager/replication/controller/service/option_test.go index 9398080f522..9c8163c65b2 100644 --- a/pkg/manager/replication/controller/service/option_test.go +++ b/pkg/manager/replication/controller/service/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/service/podmetricsmap.go b/pkg/manager/replication/controller/service/podmetricsmap.go index 97bb9e46165..60863f1ac77 100644 --- a/pkg/manager/replication/controller/service/podmetricsmap.go +++ b/pkg/manager/replication/controller/service/podmetricsmap.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/service/podmetricsmap_test.go b/pkg/manager/replication/controller/service/podmetricsmap_test.go index 3c224e71cae..0bb29796083 100644 --- a/pkg/manager/replication/controller/service/podmetricsmap_test.go +++ b/pkg/manager/replication/controller/service/podmetricsmap_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/service/podsmap.go b/pkg/manager/replication/controller/service/podsmap.go index 1f40a68dc8c..7645547a624 100644 --- a/pkg/manager/replication/controller/service/podsmap.go +++ b/pkg/manager/replication/controller/service/podsmap.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/service/podsmap_test.go b/pkg/manager/replication/controller/service/podsmap_test.go index deeb4e75546..e34266817ed 100644 --- a/pkg/manager/replication/controller/service/podsmap_test.go +++ b/pkg/manager/replication/controller/service/podsmap_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/usecase/discovered.go b/pkg/manager/replication/controller/usecase/discovered.go index 93e29d1c321..4e7925872df 100644 --- a/pkg/manager/replication/controller/usecase/discovered.go +++ b/pkg/manager/replication/controller/usecase/discovered.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/manager/replication/controller/usecase/discovered_test.go b/pkg/manager/replication/controller/usecase/discovered_test.go index 1d78025bc5a..99e2f3e1e43 100644 --- a/pkg/manager/replication/controller/usecase/discovered_test.go +++ b/pkg/manager/replication/controller/usecase/discovered_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/config/config.go b/pkg/meta/cassandra/config/config.go index 3649936fab0..976895fbceb 100644 --- a/pkg/meta/cassandra/config/config.go +++ b/pkg/meta/cassandra/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/config/config_test.go b/pkg/meta/cassandra/config/config_test.go index eba18af56a7..85ba8393c93 100644 --- a/pkg/meta/cassandra/config/config_test.go +++ b/pkg/meta/cassandra/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/handler/doc.go b/pkg/meta/cassandra/handler/doc.go index 86b6d1869df..ccfec04658f 100644 --- a/pkg/meta/cassandra/handler/doc.go +++ b/pkg/meta/cassandra/handler/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/handler/grpc/handler.go b/pkg/meta/cassandra/handler/grpc/handler.go index 0ee13aef299..a71d5bddd94 100644 --- a/pkg/meta/cassandra/handler/grpc/handler.go +++ b/pkg/meta/cassandra/handler/grpc/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/handler/grpc/handler_test.go b/pkg/meta/cassandra/handler/grpc/handler_test.go index dea536dec18..970a5c82822 100644 --- a/pkg/meta/cassandra/handler/grpc/handler_test.go +++ b/pkg/meta/cassandra/handler/grpc/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/handler/grpc/option.go b/pkg/meta/cassandra/handler/grpc/option.go index 6ba2ff9c699..6506a73d877 100644 --- a/pkg/meta/cassandra/handler/grpc/option.go +++ b/pkg/meta/cassandra/handler/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/handler/grpc/option_test.go b/pkg/meta/cassandra/handler/grpc/option_test.go index 95dad3edf0c..bd3e6a28c79 100644 --- a/pkg/meta/cassandra/handler/grpc/option_test.go +++ b/pkg/meta/cassandra/handler/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/handler/rest/handler.go b/pkg/meta/cassandra/handler/rest/handler.go index d41944d9f3e..34da832c3a0 100644 --- a/pkg/meta/cassandra/handler/rest/handler.go +++ b/pkg/meta/cassandra/handler/rest/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/handler/rest/handler_test.go b/pkg/meta/cassandra/handler/rest/handler_test.go index 466171b77b5..13e772956d4 100644 --- a/pkg/meta/cassandra/handler/rest/handler_test.go +++ b/pkg/meta/cassandra/handler/rest/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/handler/rest/option.go b/pkg/meta/cassandra/handler/rest/option.go index b5a1aa28368..faf14249ea6 100644 --- a/pkg/meta/cassandra/handler/rest/option.go +++ b/pkg/meta/cassandra/handler/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/handler/rest/option_test.go b/pkg/meta/cassandra/handler/rest/option_test.go index 75f1e2b964d..65f2247d5ee 100644 --- a/pkg/meta/cassandra/handler/rest/option_test.go +++ b/pkg/meta/cassandra/handler/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/router/option.go b/pkg/meta/cassandra/router/option.go index a57f87966f7..700a4e58994 100644 --- a/pkg/meta/cassandra/router/option.go +++ b/pkg/meta/cassandra/router/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/router/option_test.go b/pkg/meta/cassandra/router/option_test.go index 63539f268fe..fde885318ca 100644 --- a/pkg/meta/cassandra/router/option_test.go +++ b/pkg/meta/cassandra/router/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/router/router.go b/pkg/meta/cassandra/router/router.go index a35e6ebc20d..91d53826b89 100644 --- a/pkg/meta/cassandra/router/router.go +++ b/pkg/meta/cassandra/router/router.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/router/router_test.go b/pkg/meta/cassandra/router/router_test.go index 25eaec0bef4..b8082a9dd63 100644 --- a/pkg/meta/cassandra/router/router_test.go +++ b/pkg/meta/cassandra/router/router_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/service/cassandra.go b/pkg/meta/cassandra/service/cassandra.go index ea28a27799c..b6c997e0aae 100644 --- a/pkg/meta/cassandra/service/cassandra.go +++ b/pkg/meta/cassandra/service/cassandra.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/service/cassandra_test.go b/pkg/meta/cassandra/service/cassandra_test.go index 80685dceb8e..007f219c096 100644 --- a/pkg/meta/cassandra/service/cassandra_test.go +++ b/pkg/meta/cassandra/service/cassandra_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/service/doc.go b/pkg/meta/cassandra/service/doc.go index c13956cbbe3..be28c3a7ef0 100644 --- a/pkg/meta/cassandra/service/doc.go +++ b/pkg/meta/cassandra/service/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/service/option.go b/pkg/meta/cassandra/service/option.go index c417635483c..56626046479 100644 --- a/pkg/meta/cassandra/service/option.go +++ b/pkg/meta/cassandra/service/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/usecase/meta.go b/pkg/meta/cassandra/usecase/meta.go index 202b50a0af7..6336b97d635 100644 --- a/pkg/meta/cassandra/usecase/meta.go +++ b/pkg/meta/cassandra/usecase/meta.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/cassandra/usecase/meta_test.go b/pkg/meta/cassandra/usecase/meta_test.go index bc847f82f26..e29cba6f620 100644 --- a/pkg/meta/cassandra/usecase/meta_test.go +++ b/pkg/meta/cassandra/usecase/meta_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/config/config.go b/pkg/meta/redis/config/config.go index 2dc1848d28d..de5e843361e 100644 --- a/pkg/meta/redis/config/config.go +++ b/pkg/meta/redis/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/config/config_test.go b/pkg/meta/redis/config/config_test.go index eba18af56a7..85ba8393c93 100644 --- a/pkg/meta/redis/config/config_test.go +++ b/pkg/meta/redis/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/handler/doc.go b/pkg/meta/redis/handler/doc.go index 86b6d1869df..ccfec04658f 100644 --- a/pkg/meta/redis/handler/doc.go +++ b/pkg/meta/redis/handler/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/handler/grpc/handler.go b/pkg/meta/redis/handler/grpc/handler.go index 5279fbae404..40961ef0c7f 100644 --- a/pkg/meta/redis/handler/grpc/handler.go +++ b/pkg/meta/redis/handler/grpc/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/handler/grpc/handler_test.go b/pkg/meta/redis/handler/grpc/handler_test.go index cd747c05782..1d6c2dc24be 100644 --- a/pkg/meta/redis/handler/grpc/handler_test.go +++ b/pkg/meta/redis/handler/grpc/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/handler/grpc/option.go b/pkg/meta/redis/handler/grpc/option.go index eef3beae1f2..3e128f81df8 100644 --- a/pkg/meta/redis/handler/grpc/option.go +++ b/pkg/meta/redis/handler/grpc/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/handler/grpc/option_test.go b/pkg/meta/redis/handler/grpc/option_test.go index bf86be8d11a..e1141ed6237 100644 --- a/pkg/meta/redis/handler/grpc/option_test.go +++ b/pkg/meta/redis/handler/grpc/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/handler/rest/handler.go b/pkg/meta/redis/handler/rest/handler.go index d41944d9f3e..34da832c3a0 100644 --- a/pkg/meta/redis/handler/rest/handler.go +++ b/pkg/meta/redis/handler/rest/handler.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/handler/rest/handler_test.go b/pkg/meta/redis/handler/rest/handler_test.go index 466171b77b5..13e772956d4 100644 --- a/pkg/meta/redis/handler/rest/handler_test.go +++ b/pkg/meta/redis/handler/rest/handler_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/handler/rest/option.go b/pkg/meta/redis/handler/rest/option.go index b5a1aa28368..faf14249ea6 100644 --- a/pkg/meta/redis/handler/rest/option.go +++ b/pkg/meta/redis/handler/rest/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/handler/rest/option_test.go b/pkg/meta/redis/handler/rest/option_test.go index 75f1e2b964d..65f2247d5ee 100644 --- a/pkg/meta/redis/handler/rest/option_test.go +++ b/pkg/meta/redis/handler/rest/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/router/option.go b/pkg/meta/redis/router/option.go index 6f19fe917f7..1e763319e2d 100644 --- a/pkg/meta/redis/router/option.go +++ b/pkg/meta/redis/router/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/router/option_test.go b/pkg/meta/redis/router/option_test.go index 5cd9ec71b2b..c01c15faa7f 100644 --- a/pkg/meta/redis/router/option_test.go +++ b/pkg/meta/redis/router/option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/router/router.go b/pkg/meta/redis/router/router.go index aaffe75c611..b81f92cb733 100644 --- a/pkg/meta/redis/router/router.go +++ b/pkg/meta/redis/router/router.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/router/router_test.go b/pkg/meta/redis/router/router_test.go index 25eaec0bef4..b8082a9dd63 100644 --- a/pkg/meta/redis/router/router_test.go +++ b/pkg/meta/redis/router/router_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/service/doc.go b/pkg/meta/redis/service/doc.go index c13956cbbe3..be28c3a7ef0 100644 --- a/pkg/meta/redis/service/doc.go +++ b/pkg/meta/redis/service/doc.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/service/option.go b/pkg/meta/redis/service/option.go index c457544412f..b6bbf1bce31 100644 --- a/pkg/meta/redis/service/option.go +++ b/pkg/meta/redis/service/option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/service/redis.go b/pkg/meta/redis/service/redis.go index 10bda41c0c4..6d9e33235e4 100644 --- a/pkg/meta/redis/service/redis.go +++ b/pkg/meta/redis/service/redis.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/service/redis_test.go b/pkg/meta/redis/service/redis_test.go index c0237735e51..d17d79bc893 100644 --- a/pkg/meta/redis/service/redis_test.go +++ b/pkg/meta/redis/service/redis_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/usecase/meta.go b/pkg/meta/redis/usecase/meta.go index b80a833b78b..6868031dc2e 100644 --- a/pkg/meta/redis/usecase/meta.go +++ b/pkg/meta/redis/usecase/meta.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/meta/redis/usecase/meta_test.go b/pkg/meta/redis/usecase/meta_test.go index aa73ddd3da0..fe31903da36 100644 --- a/pkg/meta/redis/usecase/meta_test.go +++ b/pkg/meta/redis/usecase/meta_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/assets/dataset.go b/pkg/tools/cli/loadtest/assets/dataset.go index a5e71a61619..0591ac83890 100644 --- a/pkg/tools/cli/loadtest/assets/dataset.go +++ b/pkg/tools/cli/loadtest/assets/dataset.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/assets/dataset_test.go b/pkg/tools/cli/loadtest/assets/dataset_test.go index ef7c6aab940..c8867b58789 100644 --- a/pkg/tools/cli/loadtest/assets/dataset_test.go +++ b/pkg/tools/cli/loadtest/assets/dataset_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/assets/hdf5_loader.go b/pkg/tools/cli/loadtest/assets/hdf5_loader.go index cd758b608d5..e8357a7a9a3 100644 --- a/pkg/tools/cli/loadtest/assets/hdf5_loader.go +++ b/pkg/tools/cli/loadtest/assets/hdf5_loader.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/assets/hdf5_loader_test.go b/pkg/tools/cli/loadtest/assets/hdf5_loader_test.go index 55ed91fcbfe..b8199fbf995 100644 --- a/pkg/tools/cli/loadtest/assets/hdf5_loader_test.go +++ b/pkg/tools/cli/loadtest/assets/hdf5_loader_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/assets/large_dataset.go b/pkg/tools/cli/loadtest/assets/large_dataset.go index 7776dbf10c7..1086baeffb4 100644 --- a/pkg/tools/cli/loadtest/assets/large_dataset.go +++ b/pkg/tools/cli/loadtest/assets/large_dataset.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/assets/large_dataset_test.go b/pkg/tools/cli/loadtest/assets/large_dataset_test.go index 9ac09a21047..67beef12efa 100644 --- a/pkg/tools/cli/loadtest/assets/large_dataset_test.go +++ b/pkg/tools/cli/loadtest/assets/large_dataset_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/assets/small_dataset.go b/pkg/tools/cli/loadtest/assets/small_dataset.go index 0c43642bdc4..1c47e6e93ba 100644 --- a/pkg/tools/cli/loadtest/assets/small_dataset.go +++ b/pkg/tools/cli/loadtest/assets/small_dataset.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/assets/small_dataset_test.go b/pkg/tools/cli/loadtest/assets/small_dataset_test.go index 4bae3775da3..3e9dd38b061 100644 --- a/pkg/tools/cli/loadtest/assets/small_dataset_test.go +++ b/pkg/tools/cli/loadtest/assets/small_dataset_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/config/config.go b/pkg/tools/cli/loadtest/config/config.go index 6b81a124a88..6b8630a58bc 100644 --- a/pkg/tools/cli/loadtest/config/config.go +++ b/pkg/tools/cli/loadtest/config/config.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/config/config_test.go b/pkg/tools/cli/loadtest/config/config_test.go index 60016a5c18d..6ce059ad9ea 100644 --- a/pkg/tools/cli/loadtest/config/config_test.go +++ b/pkg/tools/cli/loadtest/config/config_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/service/insert.go b/pkg/tools/cli/loadtest/service/insert.go index 9bf24d2b1bb..e0da359934f 100644 --- a/pkg/tools/cli/loadtest/service/insert.go +++ b/pkg/tools/cli/loadtest/service/insert.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/service/insert_test.go b/pkg/tools/cli/loadtest/service/insert_test.go index 62471bc4af9..65fa43ec937 100644 --- a/pkg/tools/cli/loadtest/service/insert_test.go +++ b/pkg/tools/cli/loadtest/service/insert_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/service/loader.go b/pkg/tools/cli/loadtest/service/loader.go index 1aef2e63567..e34662f7d4d 100644 --- a/pkg/tools/cli/loadtest/service/loader.go +++ b/pkg/tools/cli/loadtest/service/loader.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/service/loader_option.go b/pkg/tools/cli/loadtest/service/loader_option.go index 731c45ebb6a..5e5833684cc 100644 --- a/pkg/tools/cli/loadtest/service/loader_option.go +++ b/pkg/tools/cli/loadtest/service/loader_option.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/service/loader_option_test.go b/pkg/tools/cli/loadtest/service/loader_option_test.go index 7a8741de064..1787599803c 100644 --- a/pkg/tools/cli/loadtest/service/loader_option_test.go +++ b/pkg/tools/cli/loadtest/service/loader_option_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/service/loader_test.go b/pkg/tools/cli/loadtest/service/loader_test.go index c601c1942d9..fdac08a0863 100644 --- a/pkg/tools/cli/loadtest/service/loader_test.go +++ b/pkg/tools/cli/loadtest/service/loader_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/service/search.go b/pkg/tools/cli/loadtest/service/search.go index a51e0728dbb..c583cf14081 100644 --- a/pkg/tools/cli/loadtest/service/search.go +++ b/pkg/tools/cli/loadtest/service/search.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/service/search_test.go b/pkg/tools/cli/loadtest/service/search_test.go index 343c1c653f5..045100b1210 100644 --- a/pkg/tools/cli/loadtest/service/search_test.go +++ b/pkg/tools/cli/loadtest/service/search_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/usecase/load.go b/pkg/tools/cli/loadtest/usecase/load.go index 83b5ad4037f..e6b1ddb40f5 100644 --- a/pkg/tools/cli/loadtest/usecase/load.go +++ b/pkg/tools/cli/loadtest/usecase/load.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/pkg/tools/cli/loadtest/usecase/load_test.go b/pkg/tools/cli/loadtest/usecase/load_test.go index 7066148df74..4aff592f9aa 100644 --- a/pkg/tools/cli/loadtest/usecase/load_test.go +++ b/pkg/tools/cli/loadtest/usecase/load_test.go @@ -1,5 +1,5 @@ // -// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +// Copyright (C) 2019-2021 vdaas.org vald team // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. From 1bce8543ae15c1de52d343cc36c8b388bd27b6f9 Mon Sep 17 00:00:00 2001 From: vdaas-ci Date: Fri, 1 Jan 2021 11:31:57 +0000 Subject: [PATCH 3/8] :bookmark: :robot: Release v0.0.65 Signed-off-by: vdaas-ci --- CHANGELOG.md | 99 +++++++++++++++++++++++++++ charts/vald-helm-operator/Chart.yaml | 2 +- charts/vald-helm-operator/README.md | 4 +- charts/vald-helm-operator/values.yaml | 2 +- charts/vald/Chart.yaml | 2 +- charts/vald/README.md | 4 +- charts/vald/values.yaml | 2 +- versions/VALD_VERSION | 2 +- 8 files changed, 108 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 004d6dbb087..60c6729c867 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,104 @@ # CHANGELOG +## v0.0.65 + +### Docker images + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
componentDocker pull
Agent NGT + docker pull vdaas/vald-agent-ngt:v0.0.65
+ docker pull ghcr.io/vdaas/vald/vald-agent-ngt:v0.0.65 +
Agent sidecar + docker pull vdaas/vald-agent-sidecar:v0.0.65
+ docker pull ghcr.io/vdaas/vald/vald-agent-sidecar:v0.0.65 +
Discoverer k8s + docker pull vdaas/vald-discoverer-k8s:v0.0.65
+ docker pull ghcr.io/vdaas/vald/vald-discoverer-k8s:v0.0.65 +
Gateway + docker pull vdaas/vald-gateway:v0.0.65
+ docker pull ghcr.io/vdaas/vald/vald-gateway:v0.0.65 +
Backup manager MySQL + docker pull vdaas/vald-manager-backup-mysql:v0.0.65
+ docker pull ghcr.io/vdaas/vald/vald-manager-backup-mysql:v0.0.65 +
Backup manager Cassandra + docker pull vdaas/vald-manager-backup-cassandra:v0.0.65
+ docker pull ghcr.io/vdaas/vald/vald-manager-backup-cassandra:v0.0.65 +
Compressor + docker pull vdaas/vald-manager-compressor:v0.0.65
+ docker pull ghcr.io/vdaas/vald/vald-manager-compressor:v0.0.65 +
Meta Redis + docker pull vdaas/vald-meta-redis:v0.0.65
+ docker pull ghcr.io/vdaas/vald/vald-meta-redis:v0.0.65 +
Meta Cassandra + docker pull vdaas/vald-meta-cassandra:v0.0.65
+ docker pull ghcr.io/vdaas/vald/vald-meta-cassandra:v0.0.65 +
Index Manager + docker pull vdaas/vald-manager-index:v0.0.65
+ docker pull ghcr.io/vdaas/vald/vald-manager-index:v0.0.65 +
Helm Operator + docker pull vdaas/vald-helm-operator:v0.0.65
+ docker pull ghcr.io/vdaas/vald/vald-helm-operator:v0.0.65 +
+ +### Documents +- [GoDoc](https://pkg.go.dev/github.com/vdaas/vald@v0.0.65) +- [Helm Chart Reference](https://github.com/vdaas/vald/blob/v0.0.65/charts/vald/README.md) +- [Helm Operator Chart Reference](https://github.com/vdaas/vald/blob/v0.0.65/charts/vald-helm-operator/README.md) + +### Changes +- Happy new year ([#905](https://github.com/vdaas/vald/pull/905)) +- :white_check_mark: Add test case for internal/errors/file.go ([#893](https://github.com/vdaas/vald/pull/893)) +- :robot: Automatically update k8s manifests ([#902](https://github.com/vdaas/vald/pull/902)) + + ## v0.0.64 ### Docker images diff --git a/charts/vald-helm-operator/Chart.yaml b/charts/vald-helm-operator/Chart.yaml index 14b0d5ba95f..e23db17a49b 100644 --- a/charts/vald-helm-operator/Chart.yaml +++ b/charts/vald-helm-operator/Chart.yaml @@ -16,7 +16,7 @@ apiVersion: v2 name: vald-helm-operator -version: v0.0.64 +version: v0.0.65 description: A Helm chart for vald-helm-operator type: application keywords: diff --git a/charts/vald-helm-operator/README.md b/charts/vald-helm-operator/README.md index dd0e1d89022..a35146adf66 100644 --- a/charts/vald-helm-operator/README.md +++ b/charts/vald-helm-operator/README.md @@ -3,7 +3,7 @@ vald-helm-operator This is a Helm chart to install vald-helm-operator. -Current chart version is `v0.0.64` +Current chart version is `v0.0.65` Table of Contents --- @@ -69,7 +69,7 @@ Configuration | enableMetrics | bool | `true` | enable metrics endpoint | | image.pullPolicy | string | `"Always"` | image pull policy | | image.repository | string | `"vdaas/vald-helm-operator"` | image repository | -| image.tag | string | `"v0.0.64"` | image tag | +| image.tag | string | `"v0.0.65"` | image tag | | leaderElectionID | string | `"vald-helm-operator"` | name of the configmap that is used for holding the leader lock. | | logging.format | string | `"console"` | logging format of operator (console or json) | | logging.level | string | `"info"` | logging level of operator (debug, info, or error) | diff --git a/charts/vald-helm-operator/values.yaml b/charts/vald-helm-operator/values.yaml index cfa19abb644..9350efb82a0 100644 --- a/charts/vald-helm-operator/values.yaml +++ b/charts/vald-helm-operator/values.yaml @@ -29,7 +29,7 @@ image: repository: vdaas/vald-helm-operator # @schema {"name": "image.tag", "type": "string"} # image.tag -- image tag - tag: v0.0.64 + tag: v0.0.65 # @schema {"name": "image.pullPolicy", "type": "string", "enum": ["Always", "Never", "IfNotPresent"]} # image.pullPolicy -- image pull policy pullPolicy: Always diff --git a/charts/vald/Chart.yaml b/charts/vald/Chart.yaml index 77dc7914499..6177865f593 100644 --- a/charts/vald/Chart.yaml +++ b/charts/vald/Chart.yaml @@ -16,7 +16,7 @@ apiVersion: v2 name: vald -version: v0.0.64 +version: v0.0.65 description: A distributed high scalable & high-speed approximate nearest neighbor search engine type: application keywords: diff --git a/charts/vald/README.md b/charts/vald/README.md index 191c8a2e6b7..d68cba3e81b 100644 --- a/charts/vald/README.md +++ b/charts/vald/README.md @@ -3,7 +3,7 @@ Vald This is a Helm chart to install Vald components. -Current chart version is `v0.0.64` +Current chart version is `v0.0.65` Table of Contents --- @@ -425,7 +425,7 @@ Configuration | defaults.grpc.client.tls.cert | string | `"/path/to/cert"` | gRPC client TLS cert path | | defaults.grpc.client.tls.enabled | bool | `false` | gRPC client TLS enabled | | defaults.grpc.client.tls.key | string | `"/path/to/key"` | gRPC client TLS key path | -| defaults.image.tag | string | `"v0.0.64"` | docker image tag | +| defaults.image.tag | string | `"v0.0.65"` | docker image tag | | defaults.logging.format | string | `"raw"` | logging format. logging format must be `raw` or `json` | | defaults.logging.level | string | `"debug"` | logging level. logging level must be `debug`, `info`, `warn`, `error` or `fatal`. | | defaults.logging.logger | string | `"glg"` | logger name. currently logger must be `glg`. | diff --git a/charts/vald/values.yaml b/charts/vald/values.yaml index e3ad210f5e1..64942324542 100644 --- a/charts/vald/values.yaml +++ b/charts/vald/values.yaml @@ -38,7 +38,7 @@ defaults: image: # @schema {"name": "defaults.image.tag", "type": "string"} # defaults.image.tag -- docker image tag - tag: v0.0.64 + tag: v0.0.65 # @schema {"name": "defaults.server_config", "type": "object", "anchor": "server_config"} server_config: # @schema {"name": "defaults.server_config.servers", "type": "object"} diff --git a/versions/VALD_VERSION b/versions/VALD_VERSION index 35877c7ad4e..e08095bb2ad 100644 --- a/versions/VALD_VERSION +++ b/versions/VALD_VERSION @@ -1 +1 @@ -v0.0.64 +v0.0.65 From fd20606fb451796c50371a0bc566a68923531109 Mon Sep 17 00:00:00 2001 From: vdaas-ci <57942646+vdaas-ci@users.noreply.github.com> Date: Sat, 2 Jan 2021 14:33:19 +0900 Subject: [PATCH 4/8] :robot: Automatically update k8s manifests (#906) Signed-off-by: vdaas-ci --- k8s/agent/configmap.yaml | 4 ++-- k8s/agent/pdb.yaml | 4 ++-- k8s/agent/priorityclass.yaml | 4 ++-- k8s/agent/statefulset.yaml | 6 +++--- k8s/agent/svc.yaml | 4 ++-- k8s/discoverer/clusterrole.yaml | 4 ++-- k8s/discoverer/clusterrolebinding.yaml | 4 ++-- k8s/discoverer/configmap.yaml | 4 ++-- k8s/discoverer/deployment.yaml | 6 +++--- k8s/discoverer/pdb.yaml | 4 ++-- k8s/discoverer/priorityclass.yaml | 4 ++-- k8s/discoverer/serviceaccount.yaml | 4 ++-- k8s/discoverer/svc.yaml | 4 ++-- k8s/gateway/vald/configmap.yaml | 4 ++-- k8s/gateway/vald/deployment.yaml | 6 +++--- k8s/gateway/vald/hpa.yaml | 4 ++-- k8s/gateway/vald/ing.yaml | 4 ++-- k8s/gateway/vald/pdb.yaml | 4 ++-- k8s/gateway/vald/priorityclass.yaml | 4 ++-- k8s/gateway/vald/svc.yaml | 4 ++-- k8s/manager/backup/configmap.yaml | 4 ++-- k8s/manager/backup/deployment.yaml | 6 +++--- k8s/manager/backup/hpa.yaml | 4 ++-- k8s/manager/backup/pdb.yaml | 4 ++-- k8s/manager/backup/priorityclass.yaml | 4 ++-- k8s/manager/backup/svc.yaml | 4 ++-- k8s/manager/compressor/configmap.yaml | 4 ++-- k8s/manager/compressor/deployment.yaml | 6 +++--- k8s/manager/compressor/hpa.yaml | 4 ++-- k8s/manager/compressor/pdb.yaml | 4 ++-- k8s/manager/compressor/priorityclass.yaml | 4 ++-- k8s/manager/compressor/svc.yaml | 4 ++-- k8s/manager/index/configmap.yaml | 4 ++-- k8s/manager/index/deployment.yaml | 6 +++--- k8s/manager/index/pdb.yaml | 4 ++-- k8s/manager/index/priorityclass.yaml | 4 ++-- k8s/manager/index/svc.yaml | 4 ++-- k8s/meta/configmap.yaml | 4 ++-- k8s/meta/deployment.yaml | 6 +++--- k8s/meta/hpa.yaml | 4 ++-- k8s/meta/pdb.yaml | 4 ++-- k8s/meta/priorityclass.yaml | 4 ++-- k8s/meta/svc.yaml | 4 ++-- k8s/operator/helm/operator.yaml | 6 +++--- k8s/operator/helm/svc.yaml | 4 ++-- 45 files changed, 98 insertions(+), 98 deletions(-) diff --git a/k8s/agent/configmap.yaml b/k8s/agent/configmap.yaml index a715cc8cc11..3e59f035aca 100644 --- a/k8s/agent/configmap.yaml +++ b/k8s/agent/configmap.yaml @@ -20,10 +20,10 @@ metadata: name: vald-agent-ngt-config labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: agent data: config.yaml: | diff --git a/k8s/agent/pdb.yaml b/k8s/agent/pdb.yaml index bd422011d4b..7c6d7253aee 100644 --- a/k8s/agent/pdb.yaml +++ b/k8s/agent/pdb.yaml @@ -20,10 +20,10 @@ metadata: name: vald-agent-ngt labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: agent spec: maxUnavailable: 1 diff --git a/k8s/agent/priorityclass.yaml b/k8s/agent/priorityclass.yaml index dc5aac4e69b..221629f6f87 100644 --- a/k8s/agent/priorityclass.yaml +++ b/k8s/agent/priorityclass.yaml @@ -20,10 +20,10 @@ metadata: name: default-vald-agent-ngt-priority labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: agent value: 1e+09 preemptionPolicy: Never diff --git a/k8s/agent/statefulset.yaml b/k8s/agent/statefulset.yaml index bc2131e7eb3..b9729c48518 100644 --- a/k8s/agent/statefulset.yaml +++ b/k8s/agent/statefulset.yaml @@ -21,10 +21,10 @@ metadata: labels: app: vald-agent-ngt app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: agent spec: serviceName: vald-agent-ngt @@ -51,7 +51,7 @@ spec: profefe.com/port: "6060" profefe.com/service: vald-agent-ngt # annotations: - # checksum/configmap: f0c5b9fab04487f517b69a9de4a3a15553384b19916d64496afced4de2cf7fad + # checksum/configmap: 86d3f29d247a88a7a6e3759870c1d15c3f17577f4bfc5a62c6ff5040f140c6f4 spec: affinity: nodeAffinity: diff --git a/k8s/agent/svc.yaml b/k8s/agent/svc.yaml index 932072a5e85..e0cf06a67ea 100644 --- a/k8s/agent/svc.yaml +++ b/k8s/agent/svc.yaml @@ -20,10 +20,10 @@ metadata: name: vald-agent-ngt labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: agent spec: ports: diff --git a/k8s/discoverer/clusterrole.yaml b/k8s/discoverer/clusterrole.yaml index baefb8872fa..1cb7e380cd0 100644 --- a/k8s/discoverer/clusterrole.yaml +++ b/k8s/discoverer/clusterrole.yaml @@ -20,10 +20,10 @@ metadata: name: discoverer labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: discoverer rules: - apiGroups: diff --git a/k8s/discoverer/clusterrolebinding.yaml b/k8s/discoverer/clusterrolebinding.yaml index cb8d54ac855..a69739f0e53 100644 --- a/k8s/discoverer/clusterrolebinding.yaml +++ b/k8s/discoverer/clusterrolebinding.yaml @@ -20,10 +20,10 @@ metadata: name: discoverer labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: discoverer roleRef: apiGroup: rbac.authorization.k8s.io diff --git a/k8s/discoverer/configmap.yaml b/k8s/discoverer/configmap.yaml index 8c6e3af6c14..484ce55129e 100644 --- a/k8s/discoverer/configmap.yaml +++ b/k8s/discoverer/configmap.yaml @@ -20,10 +20,10 @@ metadata: name: vald-discoverer-config labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: discoverer data: config.yaml: | diff --git a/k8s/discoverer/deployment.yaml b/k8s/discoverer/deployment.yaml index ce0e267c7ff..b9b0ca833df 100644 --- a/k8s/discoverer/deployment.yaml +++ b/k8s/discoverer/deployment.yaml @@ -21,10 +21,10 @@ metadata: labels: app: vald-discoverer app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: discoverer spec: progressDeadlineSeconds: 600 @@ -47,7 +47,7 @@ spec: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/component: discoverer annotations: - checksum/configmap: 31a1503c81b5a456c3b48dc3ffd4746a2d65828bf14fc06fb61c561937a6e8c7 + checksum/configmap: eb0504d9c35accb452d9b3932e7be9fee55ecd09c82d8ead898eb1190fd5896b profefe.com/enable: "true" profefe.com/port: "6060" profefe.com/service: vald-discoverer diff --git a/k8s/discoverer/pdb.yaml b/k8s/discoverer/pdb.yaml index 92b1df1db07..c5578047d43 100644 --- a/k8s/discoverer/pdb.yaml +++ b/k8s/discoverer/pdb.yaml @@ -20,10 +20,10 @@ metadata: name: vald-discoverer labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: discoverer spec: maxUnavailable: 50% diff --git a/k8s/discoverer/priorityclass.yaml b/k8s/discoverer/priorityclass.yaml index 60b5d8b93cf..6ba99856318 100644 --- a/k8s/discoverer/priorityclass.yaml +++ b/k8s/discoverer/priorityclass.yaml @@ -20,10 +20,10 @@ metadata: name: default-vald-discoverer-priority labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: discoverer value: 1e+06 globalDefault: false diff --git a/k8s/discoverer/serviceaccount.yaml b/k8s/discoverer/serviceaccount.yaml index 2ba442f38b1..fc9038eb7bb 100644 --- a/k8s/discoverer/serviceaccount.yaml +++ b/k8s/discoverer/serviceaccount.yaml @@ -20,8 +20,8 @@ metadata: name: vald labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: discoverer diff --git a/k8s/discoverer/svc.yaml b/k8s/discoverer/svc.yaml index cd0b9880ade..9c03c87437c 100644 --- a/k8s/discoverer/svc.yaml +++ b/k8s/discoverer/svc.yaml @@ -20,10 +20,10 @@ metadata: name: vald-discoverer labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: discoverer spec: ports: diff --git a/k8s/gateway/vald/configmap.yaml b/k8s/gateway/vald/configmap.yaml index 65f1e2c6f58..9ebe2c25fcd 100644 --- a/k8s/gateway/vald/configmap.yaml +++ b/k8s/gateway/vald/configmap.yaml @@ -20,10 +20,10 @@ metadata: name: vald-gateway-config labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: gateway data: config.yaml: | diff --git a/k8s/gateway/vald/deployment.yaml b/k8s/gateway/vald/deployment.yaml index 089e81a48b7..5735dce4e7e 100644 --- a/k8s/gateway/vald/deployment.yaml +++ b/k8s/gateway/vald/deployment.yaml @@ -21,10 +21,10 @@ metadata: labels: app: vald-gateway app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: gateway spec: progressDeadlineSeconds: 600 @@ -46,7 +46,7 @@ spec: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/component: gateway annotations: - checksum/configmap: 791b5e6836a2ae1322f1ff12265eca497f7b713a85252f717be5ef2c00dbf102 + checksum/configmap: e2853455800e2d6b9d3c3efd2c7ead3aeacd212ce8d30d6d775a9819ab652c63 profefe.com/enable: "true" profefe.com/port: "6060" profefe.com/service: vald-gateway diff --git a/k8s/gateway/vald/hpa.yaml b/k8s/gateway/vald/hpa.yaml index e2f9d5b97de..a472b42a172 100644 --- a/k8s/gateway/vald/hpa.yaml +++ b/k8s/gateway/vald/hpa.yaml @@ -20,10 +20,10 @@ metadata: name: vald-gateway labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: gateway spec: maxReplicas: 9 diff --git a/k8s/gateway/vald/ing.yaml b/k8s/gateway/vald/ing.yaml index 9b0f56386ae..11c0e7265c9 100644 --- a/k8s/gateway/vald/ing.yaml +++ b/k8s/gateway/vald/ing.yaml @@ -24,10 +24,10 @@ metadata: name: vald-gateway-ingress app: vald-gateway-ingress app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: gateway name: vald-gateway-ingress spec: diff --git a/k8s/gateway/vald/pdb.yaml b/k8s/gateway/vald/pdb.yaml index 5b30ae9d9f8..76827c94689 100644 --- a/k8s/gateway/vald/pdb.yaml +++ b/k8s/gateway/vald/pdb.yaml @@ -20,10 +20,10 @@ metadata: name: vald-gateway labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: gateway spec: maxUnavailable: 50% diff --git a/k8s/gateway/vald/priorityclass.yaml b/k8s/gateway/vald/priorityclass.yaml index 5be9107e5dc..a74b44c087c 100644 --- a/k8s/gateway/vald/priorityclass.yaml +++ b/k8s/gateway/vald/priorityclass.yaml @@ -20,10 +20,10 @@ metadata: name: default-vald-gateway-priority labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: gateway value: 1e+06 globalDefault: false diff --git a/k8s/gateway/vald/svc.yaml b/k8s/gateway/vald/svc.yaml index 72870a43f21..4ad477541ef 100644 --- a/k8s/gateway/vald/svc.yaml +++ b/k8s/gateway/vald/svc.yaml @@ -20,10 +20,10 @@ metadata: name: vald-gateway labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: gateway spec: ports: diff --git a/k8s/manager/backup/configmap.yaml b/k8s/manager/backup/configmap.yaml index 568ca86b5f5..413d24bb8bd 100644 --- a/k8s/manager/backup/configmap.yaml +++ b/k8s/manager/backup/configmap.yaml @@ -20,10 +20,10 @@ metadata: name: vald-manager-backup-config labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-backup data: config.yaml: | diff --git a/k8s/manager/backup/deployment.yaml b/k8s/manager/backup/deployment.yaml index 749c726a9aa..d041faa251e 100644 --- a/k8s/manager/backup/deployment.yaml +++ b/k8s/manager/backup/deployment.yaml @@ -21,10 +21,10 @@ metadata: labels: app: vald-manager-backup app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-backup spec: progressDeadlineSeconds: 600 @@ -46,7 +46,7 @@ spec: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/component: manager-backup annotations: - checksum/configmap: d8a952e12d80eed07f4a85d061638ecd6e1cf74b04f8694a4a7789b1b2751e3e + checksum/configmap: 395b0ffb8c4b3555f7ac1d42236ca2cf680516190cc7bf6180d7907cfe76a52a profefe.com/enable: "true" profefe.com/port: "6060" profefe.com/service: vald-manager-backup diff --git a/k8s/manager/backup/hpa.yaml b/k8s/manager/backup/hpa.yaml index 1ec95c34e82..a73596700d7 100644 --- a/k8s/manager/backup/hpa.yaml +++ b/k8s/manager/backup/hpa.yaml @@ -20,10 +20,10 @@ metadata: name: vald-manager-backup labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-backup spec: maxReplicas: 15 diff --git a/k8s/manager/backup/pdb.yaml b/k8s/manager/backup/pdb.yaml index 89c7fb92744..f3715ee4735 100644 --- a/k8s/manager/backup/pdb.yaml +++ b/k8s/manager/backup/pdb.yaml @@ -20,10 +20,10 @@ metadata: name: vald-manager-backup labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-backup spec: maxUnavailable: 50% diff --git a/k8s/manager/backup/priorityclass.yaml b/k8s/manager/backup/priorityclass.yaml index c0d06e8a42f..9076b3f8154 100644 --- a/k8s/manager/backup/priorityclass.yaml +++ b/k8s/manager/backup/priorityclass.yaml @@ -20,10 +20,10 @@ metadata: name: default-vald-manager-backup-priority labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-backup value: 1e+06 globalDefault: false diff --git a/k8s/manager/backup/svc.yaml b/k8s/manager/backup/svc.yaml index 11bbc10274b..e1446394712 100644 --- a/k8s/manager/backup/svc.yaml +++ b/k8s/manager/backup/svc.yaml @@ -20,10 +20,10 @@ metadata: name: vald-manager-backup labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-backup spec: ports: diff --git a/k8s/manager/compressor/configmap.yaml b/k8s/manager/compressor/configmap.yaml index 2902c88fba0..3c7306368f0 100644 --- a/k8s/manager/compressor/configmap.yaml +++ b/k8s/manager/compressor/configmap.yaml @@ -20,10 +20,10 @@ metadata: name: vald-manager-compressor-config labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-compressor data: config.yaml: | diff --git a/k8s/manager/compressor/deployment.yaml b/k8s/manager/compressor/deployment.yaml index ccfdc79b56d..01cfed633e9 100644 --- a/k8s/manager/compressor/deployment.yaml +++ b/k8s/manager/compressor/deployment.yaml @@ -21,10 +21,10 @@ metadata: labels: app: vald-manager-compressor app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-compressor spec: progressDeadlineSeconds: 600 @@ -46,7 +46,7 @@ spec: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/component: manager-compressor annotations: - checksum/configmap: 6244fa227dc1baa15a88748ce56e1cbb056e12ead21ba40f8e5e4aa3bd2be1d4 + checksum/configmap: 53c92fbf72f2fd61c216f931da0d14789bf5015ca78064b549078ac9dfce8204 profefe.com/enable: "true" profefe.com/port: "6060" profefe.com/service: vald-manager-compressor diff --git a/k8s/manager/compressor/hpa.yaml b/k8s/manager/compressor/hpa.yaml index 4e5785dcb42..509cf247cfd 100644 --- a/k8s/manager/compressor/hpa.yaml +++ b/k8s/manager/compressor/hpa.yaml @@ -20,10 +20,10 @@ metadata: name: vald-manager-compressor labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-compressor spec: maxReplicas: 15 diff --git a/k8s/manager/compressor/pdb.yaml b/k8s/manager/compressor/pdb.yaml index f249b60dec2..f5e0625a83c 100644 --- a/k8s/manager/compressor/pdb.yaml +++ b/k8s/manager/compressor/pdb.yaml @@ -20,10 +20,10 @@ metadata: name: vald-manager-compressor labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-compressor spec: maxUnavailable: 1 diff --git a/k8s/manager/compressor/priorityclass.yaml b/k8s/manager/compressor/priorityclass.yaml index ad549e65754..770fc67c103 100644 --- a/k8s/manager/compressor/priorityclass.yaml +++ b/k8s/manager/compressor/priorityclass.yaml @@ -20,10 +20,10 @@ metadata: name: default-vald-manager-compressor-priority labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-compressor value: 1e+08 preemptionPolicy: Never diff --git a/k8s/manager/compressor/svc.yaml b/k8s/manager/compressor/svc.yaml index 1311e91a7dc..0ddd19b01f2 100644 --- a/k8s/manager/compressor/svc.yaml +++ b/k8s/manager/compressor/svc.yaml @@ -20,10 +20,10 @@ metadata: name: vald-manager-compressor labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-compressor spec: ports: diff --git a/k8s/manager/index/configmap.yaml b/k8s/manager/index/configmap.yaml index 910dd6c1cb4..0b0a290ec54 100644 --- a/k8s/manager/index/configmap.yaml +++ b/k8s/manager/index/configmap.yaml @@ -20,10 +20,10 @@ metadata: name: vald-manager-index-config labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-index data: config.yaml: | diff --git a/k8s/manager/index/deployment.yaml b/k8s/manager/index/deployment.yaml index 861e422e5e0..d1770ca03ea 100644 --- a/k8s/manager/index/deployment.yaml +++ b/k8s/manager/index/deployment.yaml @@ -21,10 +21,10 @@ metadata: labels: app: vald-manager-index app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-index spec: progressDeadlineSeconds: 600 @@ -47,7 +47,7 @@ spec: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/component: manager-index annotations: - checksum/configmap: fa752f63ae856f43be175131f143ca41afa96c5e239a97bbef5e578090e21e83 + checksum/configmap: ca2e4ea9e911ca81de37b79388a6b8137595ce85a221c7a112d7f700cf64822e profefe.com/enable: "true" profefe.com/port: "6060" profefe.com/service: vald-manager-index diff --git a/k8s/manager/index/pdb.yaml b/k8s/manager/index/pdb.yaml index 101f0413df0..14264ae8475 100644 --- a/k8s/manager/index/pdb.yaml +++ b/k8s/manager/index/pdb.yaml @@ -20,10 +20,10 @@ metadata: name: vald-manager-index labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-index spec: maxUnavailable: 50% diff --git a/k8s/manager/index/priorityclass.yaml b/k8s/manager/index/priorityclass.yaml index 013bec72878..1020d084e30 100644 --- a/k8s/manager/index/priorityclass.yaml +++ b/k8s/manager/index/priorityclass.yaml @@ -20,10 +20,10 @@ metadata: name: default-vald-manager-index-priority labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-index value: 1e+06 globalDefault: false diff --git a/k8s/manager/index/svc.yaml b/k8s/manager/index/svc.yaml index 955e35d29ae..cf412ac072a 100644 --- a/k8s/manager/index/svc.yaml +++ b/k8s/manager/index/svc.yaml @@ -20,10 +20,10 @@ metadata: name: vald-manager-index labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: manager-index spec: ports: diff --git a/k8s/meta/configmap.yaml b/k8s/meta/configmap.yaml index 287d0732a4c..2ad02f9e32b 100644 --- a/k8s/meta/configmap.yaml +++ b/k8s/meta/configmap.yaml @@ -20,10 +20,10 @@ metadata: name: vald-meta-config labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: meta data: config.yaml: | diff --git a/k8s/meta/deployment.yaml b/k8s/meta/deployment.yaml index fe98914dc9f..28881635296 100644 --- a/k8s/meta/deployment.yaml +++ b/k8s/meta/deployment.yaml @@ -21,10 +21,10 @@ metadata: labels: app: vald-meta app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: meta spec: progressDeadlineSeconds: 600 @@ -46,7 +46,7 @@ spec: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/component: meta annotations: - checksum/configmap: f8dd22f6b617eb9ff7b053179ada58e73187f8bdb47ffdd86a9b58036454f176 + checksum/configmap: 5e5ae55704934f03e7abb73313e7c6a4d10f79fc11f213a378b543bdd11fbe19 profefe.com/enable: "true" profefe.com/port: "6060" profefe.com/service: vald-meta diff --git a/k8s/meta/hpa.yaml b/k8s/meta/hpa.yaml index e09f1322b62..aa8a0a5f107 100644 --- a/k8s/meta/hpa.yaml +++ b/k8s/meta/hpa.yaml @@ -20,10 +20,10 @@ metadata: name: vald-meta labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: meta spec: maxReplicas: 10 diff --git a/k8s/meta/pdb.yaml b/k8s/meta/pdb.yaml index 576b4ea7cbe..e55b50e19d9 100644 --- a/k8s/meta/pdb.yaml +++ b/k8s/meta/pdb.yaml @@ -20,10 +20,10 @@ metadata: name: vald-meta labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: meta spec: maxUnavailable: 50% diff --git a/k8s/meta/priorityclass.yaml b/k8s/meta/priorityclass.yaml index 4d3df7486b4..ffa13e24d3c 100644 --- a/k8s/meta/priorityclass.yaml +++ b/k8s/meta/priorityclass.yaml @@ -20,10 +20,10 @@ metadata: name: default-vald-meta-priority labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: meta value: 1e+06 globalDefault: false diff --git a/k8s/meta/svc.yaml b/k8s/meta/svc.yaml index a6e15e472d8..53b2dc58a4a 100644 --- a/k8s/meta/svc.yaml +++ b/k8s/meta/svc.yaml @@ -20,10 +20,10 @@ metadata: name: vald-meta labels: app.kubernetes.io/name: vald - helm.sh/chart: vald-v0.0.64 + helm.sh/chart: vald-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: meta spec: ports: diff --git a/k8s/operator/helm/operator.yaml b/k8s/operator/helm/operator.yaml index 5e1acf34c3c..54df7198a12 100644 --- a/k8s/operator/helm/operator.yaml +++ b/k8s/operator/helm/operator.yaml @@ -22,10 +22,10 @@ metadata: labels: app: vald-helm-operator app.kubernetes.io/name: vald-helm-operator - helm.sh/chart: vald-helm-operator-v0.0.64 + helm.sh/chart: vald-helm-operator-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: helm-operator spec: replicas: 2 @@ -43,7 +43,7 @@ spec: serviceAccountName: vald-helm-operator containers: - name: vald-helm-operator - image: "vdaas/vald-helm-operator:v0.0.64" + image: "vdaas/vald-helm-operator:v0.0.65" imagePullPolicy: Always args: - "run" diff --git a/k8s/operator/helm/svc.yaml b/k8s/operator/helm/svc.yaml index 40b519a77e1..c3fada6506f 100644 --- a/k8s/operator/helm/svc.yaml +++ b/k8s/operator/helm/svc.yaml @@ -20,10 +20,10 @@ metadata: name: vald-helm-operator labels: app.kubernetes.io/name: vald-helm-operator - helm.sh/chart: vald-helm-operator-v0.0.64 + helm.sh/chart: vald-helm-operator-v0.0.65 app.kubernetes.io/managed-by: Helm app.kubernetes.io/instance: RELEASE-NAME - app.kubernetes.io/version: v0.0.64 + app.kubernetes.io/version: v0.0.65 app.kubernetes.io/component: helm-operator spec: ports: From 0e93f6b64aa1821f8879e72cb3248e2a761546bf Mon Sep 17 00:00:00 2001 From: Hiroto Funakoshi Date: Fri, 8 Jan 2021 11:00:48 +0900 Subject: [PATCH 5/8] Add test case for internal/errors/grpc.go (#903) * fix: test case name for grpc error Signed-off-by: hlts2 * fix: add comment & test case name more clearly Signed-off-by: hlts2 * fix: add comment & test case for ErrInvalidGRPCPort method Signed-off-by: hlts2 * fix: apply suggestion Signed-off-by: hlts2 * Update internal/errors/grpc.go * Update internal/errors/grpc.go * Apply suggestions from code review Co-authored-by: Kiichiro YUKAWA * fix: apply suggestion about boundary value Signed-off-by: hlts2 * :robot: Update license headers / Format go codes and yaml files Signed-off-by: vdaas-ci Co-authored-by: Kiichiro YUKAWA Co-authored-by: vdaas-ci --- hack/license/gen/main.go | 13 +- internal/errors/grpc.go | 12 +- internal/errors/grpc_test.go | 592 +++++++++++++++++++++++++++++++++++ 3 files changed, 608 insertions(+), 9 deletions(-) create mode 100644 internal/errors/grpc_test.go diff --git a/hack/license/gen/main.go b/hack/license/gen/main.go index 72c349e860b..0c35ec2bdd0 100644 --- a/hack/license/gen/main.go +++ b/hack/license/gen/main.go @@ -54,15 +54,16 @@ var ( ) type Data struct { - Escape string + Escape string Maintainer string - Year int + Year int } const ( - defaultMaintainer = "vdaas.org vald team " - maintainerKey = "MAINTAINER" + defaultMaintainer = "vdaas.org vald team " + maintainerKey = "MAINTAINER" ) + func main() { if len(os.Args) < 2 { log.Fatal(errors.New("invalid argument")) @@ -171,8 +172,8 @@ func readAndRewrite(path string) error { } d := Data{ Maintainer: maintainer, - Year: time.Now().Year(), - Escape: sharpEscape, + Year: time.Now().Year(), + Escape: sharpEscape, } if fi.Name() == "LICENSE" { err = license.Execute(buf, d) diff --git a/internal/errors/grpc.go b/internal/errors/grpc.go index ee48fa64a46..5d29cd627f2 100644 --- a/internal/errors/grpc.go +++ b/internal/errors/grpc.go @@ -19,33 +19,39 @@ package errors var ( - // gRPC - - ErrgRPCClientConnectionClose = func(name string, err error) error { + // ErrGRPCClientConnectionClose represents a function to generate an error that the gRPC connection couldn't close. + ErrGRPCClientConnectionClose = func(name string, err error) error { return Wrapf(err, "%s's gRPC connection close error", name) } + // ErrInvalidGRPCPort represents a function to generate an error that the gRPC port is invalid. ErrInvalidGRPCPort = func(addr, host string, port uint16) error { return Errorf("invalid gRPC client connection port to addr: %s,\thost: %s\t port: %d", addr, host, port) } + // ErrInvalidGRPCClientConn represents a function to generate an error that the vald internal gRPC connection is invalid. ErrInvalidGRPCClientConn = func(addr string) error { return Errorf("invalid gRPC client connection to %s", addr) } + // ErrGRPCLookupIPAddrNotFound represents a function to generate an error that the vald internal gRPC client couldn't find IP address. ErrGRPCLookupIPAddrNotFound = func(host string) error { return Errorf("vald internal gRPC client could not find ip addrs for %s", host) } + // ErrGRPCClientNotFound represents an error that the vald internal gRPC client couldn't find. ErrGRPCClientNotFound = New("vald internal gRPC client not found") + // ErrGRPCClientConnNotFound represents a function to generate an error that the gRPC client connection couldn't find. ErrGRPCClientConnNotFound = func(addr string) error { return Errorf("gRPC client connection not found in %s", addr) } + // ErrRPCCallFailed represents a function to generate an error that the RPC call failed. ErrRPCCallFailed = func(addr string, err error) error { return Wrapf(err, "addr: %s", addr) } + // ErrGRPCTargetAddrNotFound represents an error that the gRPC target address couldn't find. ErrGRPCTargetAddrNotFound = New("grpc connection target not found") ) diff --git a/internal/errors/grpc_test.go b/internal/errors/grpc_test.go new file mode 100644 index 00000000000..9427bb43dfa --- /dev/null +++ b/internal/errors/grpc_test.go @@ -0,0 +1,592 @@ +// +// Copyright (C) 2019-2021 vdaas.org vald team +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +package errors + +import ( + "math" + "testing" +) + +func TestErrGRPCClientConnectionClose(t *testing.T) { + type args struct { + name string + err error + } + type want struct { + want error + } + type test struct { + name string + args args + want want + checkFunc func(want, error) error + beforeFunc func(args) + afterFunc func(args) + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return wrapped ErrGRPCClientConnectionClose error when err is server error and name is 'gateway'", + args: args{ + err: New("server error"), + name: "gateway", + }, + want: want{ + want: New("gateway's gRPC connection close error: server error"), + }, + }, + { + name: "return wrapped ErrGRPCClientConnectionClose error when err is server error and name is empty", + args: args{ + err: New("server error"), + name: "", + }, + want: want{ + want: New("'s gRPC connection close error: server error"), + }, + }, + { + name: "return ErrGRPCClientConnectionClose error when err is nil and name is 'gateway'", + args: args{ + err: nil, + name: "gateway", + }, + want: want{ + want: New("gateway's gRPC connection close error"), + }, + }, + { + name: "return ErrGRPCClientConnectionClose error when err is nil and addr is empty", + args: args{ + err: nil, + name: "", + }, + want: want{ + want: New("'s gRPC connection close error"), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc(test.args) + } + if test.afterFunc != nil { + defer test.afterFunc(test.args) + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := ErrGRPCClientConnectionClose(test.args.name, test.args.err) + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} + +func TestErrInvalidGRPCPort(t *testing.T) { + type args struct { + addr string + host string + port uint16 + } + type want struct { + want error + } + type test struct { + name string + args args + want want + checkFunc func(want, error) error + beforeFunc func(args) + afterFunc func(args) + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return ErrInvalidGRPCPort error when addr is '127.0.0.1' and host is 'gateway.default.svc.cluster.local' and port is '8080'", + args: args{ + addr: "127.0.0.1", + host: "gateway.default.svc.cluster.local", + port: 8080, + }, + want: want{ + want: New("invalid gRPC client connection port to addr: 127.0.0.1,\thost: gateway.default.svc.cluster.local\t port: 8080"), + }, + }, + { + name: "return ErrInvalidGRPCPort error when addr is empty and host is 'gateway.default.svc.cluster.local' and port is '8080'", + args: args{ + addr: "", + host: "gateway.default.svc.cluster.local", + port: 8080, + }, + want: want{ + want: New("invalid gRPC client connection port to addr: ,\thost: gateway.default.svc.cluster.local\t port: 8080"), + }, + }, + { + name: "return ErrInvalidGRPCPort error when addr is '127.0.0.1' and host is empty and port is '8080'", + args: args{ + addr: "127.0.0.1", + host: "", + port: 8080, + }, + want: want{ + want: New("invalid gRPC client connection port to addr: 127.0.0.1,\thost: \t port: 8080"), + }, + }, + { + name: "return ErrInvalidGRPCPort error when addr is '127.0.0.1' and host is 'gateway.default.svc.cluster.local' and port is '0'", + args: args{ + addr: "127.0.0.1", + host: "gateway.default.svc.cluster.local", + port: 0, + }, + want: want{ + want: New("invalid gRPC client connection port to addr: 127.0.0.1,\thost: gateway.default.svc.cluster.local\t port: 0"), + }, + }, + { + name: "return ErrInvalidGRPCPort error when addr is '127.0.0.1' and host is 'gateway.default.svc.cluster.local' and port is '1'", + args: args{ + addr: "127.0.0.1", + host: "gateway.default.svc.cluster.local", + port: 1, + }, + want: want{ + want: New("invalid gRPC client connection port to addr: 127.0.0.1,\thost: gateway.default.svc.cluster.local\t port: 1"), + }, + }, + { + name: "return ErrInvalidGRPCPort error when addr is '127.0.0.1' and host is 'gateway.default.svc.cluster.local' and port is maximum value of uint16", + args: args{ + addr: "127.0.0.1", + host: "gateway.default.svc.cluster.local", + port: math.MaxUint16, + }, + want: want{ + want: Errorf("invalid gRPC client connection port to addr: 127.0.0.1,\thost: gateway.default.svc.cluster.local\t port: %d", math.MaxUint16), + }, + }, + { + name: "return ErrInvalidGRPCPort error when addr is '127.0.0.1' and host is 'gateway.default.svc.cluster.local' and port is 'MaxUint16-1'", + args: args{ + addr: "127.0.0.1", + host: "gateway.default.svc.cluster.local", + port: math.MaxUint16 - 1, + }, + want: want{ + want: Errorf("invalid gRPC client connection port to addr: 127.0.0.1,\thost: gateway.default.svc.cluster.local\t port: %d", math.MaxUint16-1), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc(test.args) + } + if test.afterFunc != nil { + defer test.afterFunc(test.args) + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := ErrInvalidGRPCPort(test.args.addr, test.args.host, test.args.port) + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} + +func TestErrInvalidGRPCClientConn(t *testing.T) { + type args struct { + addr string + } + type want struct { + want error + } + type test struct { + name string + args args + want want + checkFunc func(want, error) error + beforeFunc func(args) + afterFunc func(args) + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return ErrInvalidGRPCClientConn error when addr is '127.0.0.1'", + args: args{ + addr: "127.0.0.1", + }, + want: want{ + want: New("invalid gRPC client connection to 127.0.0.1"), + }, + }, + { + name: "return ErrInvalidGRPCClientConn error when addr is empty", + args: args{ + addr: "", + }, + want: want{ + want: New("invalid gRPC client connection to "), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc(test.args) + } + if test.afterFunc != nil { + defer test.afterFunc(test.args) + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := ErrInvalidGRPCClientConn(test.args.addr) + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} + +func TestErrGRPCLookupIPAddrNotFound(t *testing.T) { + type args struct { + host string + } + type want struct { + want error + } + type test struct { + name string + args args + want want + checkFunc func(want, error) error + beforeFunc func(args) + afterFunc func(args) + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return ErrGRPCLookupIPAddrNotFound error when host is 'gateway.vald.svc.cluster.local'", + args: args{ + host: "gateway.vald.svc.cluster.local", + }, + want: want{ + want: New("vald internal gRPC client could not find ip addrs for gateway.vald.svc.cluster.local"), + }, + }, + { + name: "return ErrGRPCLookupIPAddrNotFound error when host is empty", + args: args{ + host: "", + }, + want: want{ + want: New("vald internal gRPC client could not find ip addrs for "), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc(test.args) + } + if test.afterFunc != nil { + defer test.afterFunc(test.args) + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := ErrGRPCLookupIPAddrNotFound(test.args.host) + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} + +func TestErrGRPCClientNotFound(t *testing.T) { + type want struct { + want error + } + type test struct { + name string + want want + checkFunc func(want, error) error + beforeFunc func() + afterFunc func() + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return ErrGRPCLookupIPAddrNotFound error", + want: want{ + want: New("vald internal gRPC client not found"), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc() + } + if test.afterFunc != nil { + defer test.afterFunc() + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := ErrGRPCClientNotFound + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} + +func TestErrGRPCClientConnNotFound(t *testing.T) { + type args struct { + addr string + } + type want struct { + want error + } + type test struct { + name string + args args + want want + checkFunc func(want, error) error + beforeFunc func(args) + afterFunc func(args) + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return ErrGRPCClientConnNotFound error when addr is '127.0.0.1'", + args: args{ + addr: "127.0.0.1", + }, + want: want{ + want: New("gRPC client connection not found in 127.0.0.1"), + }, + }, + { + name: "return ErrGRPCClientConnNotFound error when addr is empty", + args: args{ + addr: "", + }, + want: want{ + want: New("gRPC client connection not found in "), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc(test.args) + } + if test.afterFunc != nil { + defer test.afterFunc(test.args) + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := ErrGRPCClientConnNotFound(test.args.addr) + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} + +func TestErrRPCCallFailed(t *testing.T) { + type args struct { + addr string + err error + } + type want struct { + want error + } + type test struct { + name string + args args + want want + checkFunc func(want, error) error + beforeFunc func(args) + afterFunc func(args) + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return wrapped ErrRPCCallFailed error when err is server error and addr is '127.0.0.1'", + args: args{ + err: New("server error"), + addr: "127.0.0.1", + }, + want: want{ + want: New("addr: 127.0.0.1: server error"), + }, + }, + { + name: "return wrapped ErrRPCCallFailed error when err is server error and addr is empty", + args: args{ + err: New("server error"), + addr: "", + }, + want: want{ + want: New("addr: : server error"), + }, + }, + { + name: "return ErrRPCCallFailed error when err is nil error and addr is '127.0.0.1'", + args: args{ + err: nil, + addr: "127.0.0.1", + }, + want: want{ + want: New("addr: 127.0.0.1"), + }, + }, + { + name: "return ErrRPCCallFailed error when err is nil error and addr is empty", + args: args{ + err: nil, + addr: "", + }, + want: want{ + want: New("addr: "), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc(test.args) + } + if test.afterFunc != nil { + defer test.afterFunc(test.args) + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := ErrRPCCallFailed(test.args.addr, test.args.err) + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} + +func TestErrGRPCTargetAddrNotFound(t *testing.T) { + type want struct { + want error + } + type test struct { + name string + want want + checkFunc func(want, error) error + beforeFunc func() + afterFunc func() + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return ErrGRPCTargetAddrNotFound error", + want: want{ + want: New("grpc connection target not found"), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc() + } + if test.afterFunc != nil { + defer test.afterFunc() + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := ErrGRPCTargetAddrNotFound + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} From c4df6eff44da28ba8be4abcf812d78d965077764 Mon Sep 17 00:00:00 2001 From: Hiroto Funakoshi Date: Fri, 8 Jan 2021 12:12:11 +0900 Subject: [PATCH 6/8] Add test case for internal/errors/io.go (#910) * feat: Add test case and godoc comment Signed-off-by: hlts2 * :robot: Update license headers / Format go codes and yaml files Signed-off-by: vdaas-ci Co-authored-by: vdaas-ci --- internal/errors/io.go | 4 +- internal/errors/io_test.go | 156 +++++++++++++++++++++++++++++++++++++ 2 files changed, 159 insertions(+), 1 deletion(-) create mode 100644 internal/errors/io_test.go diff --git a/internal/errors/io.go b/internal/errors/io.go index 4cc537b0548..266663ae757 100644 --- a/internal/errors/io.go +++ b/internal/errors/io.go @@ -18,15 +18,17 @@ package errors var ( - // io + // NewErrContextNotProvided represents a function to generate an error that the context is not provided. NewErrContextNotProvided = func() error { return New("context not provided") } + // NewErrReaderNotProvided represents a function to generate an error that the io.Reader is not provided. NewErrReaderNotProvided = func() error { return New("io.Reader not provided") } + // NewErrWriterNotProvided represents a function to generate an error that the io.Writer is not provided. NewErrWriterNotProvided = func() error { return New("io.Writer not provided") } diff --git a/internal/errors/io_test.go b/internal/errors/io_test.go new file mode 100644 index 00000000000..ec07b023a64 --- /dev/null +++ b/internal/errors/io_test.go @@ -0,0 +1,156 @@ +// +// Copyright (C) 2019-2021 vdaas.org vald team +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +package errors + +import "testing" + +func TestNewErrContextNotProvided(t *testing.T) { + type want struct { + want error + } + type test struct { + name string + want want + checkFunc func(want, error) error + beforeFunc func() + afterFunc func() + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return ErrContextNotProvided error", + want: want{ + want: New("context not provided"), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc() + } + if test.afterFunc != nil { + defer test.afterFunc() + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := NewErrContextNotProvided() + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} + +func TestNewErrReaderNotProvided(t *testing.T) { + type want struct { + want error + } + type test struct { + name string + want want + checkFunc func(want, error) error + beforeFunc func() + afterFunc func() + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return ErrReaderNotProvided error", + want: want{ + want: New("io.Reader not provided"), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc() + } + if test.afterFunc != nil { + defer test.afterFunc() + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := NewErrReaderNotProvided() + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} + +func TestNewErrWriterNotProvided(t *testing.T) { + type want struct { + want error + } + type test struct { + name string + want want + checkFunc func(want, error) error + beforeFunc func() + afterFunc func() + } + defaultCheckFunc := func(w want, got error) error { + if !Is(got, w.want) { + return Errorf("got: \"%#v\",\n\t\t\t\twant: \"%#v\"", got, w.want) + } + return nil + } + tests := []test{ + { + name: "return ErrWriterNotProvided error", + want: want{ + want: New("io.Writer not provided"), + }, + }, + } + + for _, test := range tests { + t.Run(test.name, func(tt *testing.T) { + if test.beforeFunc != nil { + test.beforeFunc() + } + if test.afterFunc != nil { + defer test.afterFunc() + } + if test.checkFunc == nil { + test.checkFunc = defaultCheckFunc + } + + got := NewErrWriterNotProvided() + if err := test.checkFunc(test.want, got); err != nil { + tt.Errorf("error = %v", err) + } + }) + } +} From b8911ac30563ba28fa1f938a1a655161b8aedb1d Mon Sep 17 00:00:00 2001 From: Rintaro Okamura Date: Mon, 11 Jan 2021 15:14:00 +0900 Subject: [PATCH 7/8] :page_facing_up: Update license headers for .github yamls (#907) Signed-off-by: Rintaro Okamura Co-authored-by: Yusuke Kato --- .github/chatops_permissions.yaml | 15 +++++++++++++++ .github/codeql/codeql-config.yaml | 15 +++++++++++++++ .github/conflint.yaml | 15 +++++++++++++++ .github/issue_label_bot.yaml | 15 +++++++++++++++ .github/kubelinter.yaml | 15 +++++++++++++++ .github/labeler.yml | 15 +++++++++++++++ .github/workflows/build-binaries.yml | 15 +++++++++++++++ .github/workflows/build-protobuf.yml | 15 +++++++++++++++ .github/workflows/chatops-help.yml | 15 +++++++++++++++ .github/workflows/chatops.yml | 15 +++++++++++++++ .github/workflows/codeql-analysis.yml | 15 +++++++++++++++ .github/workflows/coverage.yml | 15 +++++++++++++++ .../workflows/detect-internal-config-changes.yml | 15 +++++++++++++++ .github/workflows/dockers-agent-ngt-image.yml | 15 +++++++++++++++ .github/workflows/dockers-agent-sidecar-image.yml | 15 +++++++++++++++ .../dockers-backup-manager-cassandra-image.yml | 15 +++++++++++++++ .../dockers-backup-manager-mysql-image.yml | 15 +++++++++++++++ .github/workflows/dockers-base-image.yml | 15 +++++++++++++++ .github/workflows/dockers-ci-container-image.yml | 15 +++++++++++++++ .github/workflows/dockers-dev-container-image.yml | 15 +++++++++++++++ .../workflows/dockers-discoverer-k8s-image.yml | 15 +++++++++++++++ .github/workflows/dockers-gateway-vald-image.yml | 15 +++++++++++++++ .github/workflows/dockers-helm-operator-image.yml | 15 +++++++++++++++ .github/workflows/dockers-image-scan.yml | 15 +++++++++++++++ .github/workflows/dockers-loadtest-image.yml | 15 +++++++++++++++ .../dockers-manager-compressor-image.yml | 15 +++++++++++++++ .github/workflows/dockers-manager-index-image.yml | 15 +++++++++++++++ .../workflows/dockers-meta-cassandra-image.yml | 15 +++++++++++++++ .github/workflows/dockers-meta-redis-image.yml | 15 +++++++++++++++ .github/workflows/e2e-bench-agent.yml | 15 +++++++++++++++ .github/workflows/e2e-deploy.yml | 15 +++++++++++++++ .github/workflows/fossa.yml | 15 +++++++++++++++ .github/workflows/helm-lint.yml | 15 +++++++++++++++ .github/workflows/helm.yml | 15 +++++++++++++++ .github/workflows/labeler.yml | 15 +++++++++++++++ .github/workflows/reviewdog-hadolint.yml | 2 +- .github/workflows/reviewdog-k8s.yml | 2 +- .github/workflows/reviewdog-markdown.yml | 2 +- .github/workflows/reviewdog.yml | 2 +- .github/workflows/semver.yml | 15 +++++++++++++++ .github/workflows/test.yml | 15 +++++++++++++++ .github/workflows/update-protobuf.yml | 15 +++++++++++++++ .../update_pull_request_and_issue_template.yml | 15 +++++++++++++++ Makefile | 1 + 44 files changed, 590 insertions(+), 4 deletions(-) mode change 100755 => 100644 .github/workflows/build-protobuf.yml mode change 100755 => 100644 .github/workflows/dockers-agent-ngt-image.yml mode change 100755 => 100644 .github/workflows/dockers-base-image.yml mode change 100755 => 100644 .github/workflows/dockers-discoverer-k8s-image.yml mode change 100755 => 100644 .github/workflows/dockers-gateway-vald-image.yml mode change 100755 => 100644 .github/workflows/dockers-helm-operator-image.yml mode change 100755 => 100644 .github/workflows/dockers-loadtest-image.yml mode change 100755 => 100644 .github/workflows/dockers-meta-redis-image.yml mode change 100755 => 100644 .github/workflows/reviewdog.yml diff --git a/.github/chatops_permissions.yaml b/.github/chatops_permissions.yaml index edbd47ef36d..649658d619f 100644 --- a/.github/chatops_permissions.yaml +++ b/.github/chatops_permissions.yaml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# roles: admin: policies: diff --git a/.github/codeql/codeql-config.yaml b/.github/codeql/codeql-config.yaml index f529b33120c..449213eb0a1 100644 --- a/.github/codeql/codeql-config.yaml +++ b/.github/codeql/codeql-config.yaml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Go CodeQL config" queries: - uses: security-and-quality diff --git a/.github/conflint.yaml b/.github/conflint.yaml index f4c2068f829..1d3f94b55e8 100644 --- a/.github/conflint.yaml +++ b/.github/conflint.yaml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# kubeval: - files: - k8s/**/*.yaml diff --git a/.github/issue_label_bot.yaml b/.github/issue_label_bot.yaml index 3cc007b7b4e..1dbe479d851 100644 --- a/.github/issue_label_bot.yaml +++ b/.github/issue_label_bot.yaml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# label-alias: bug: "type/bug" feature_request: "type/feature" diff --git a/.github/kubelinter.yaml b/.github/kubelinter.yaml index 0afaa412bda..6fe58bf7f1b 100644 --- a/.github/kubelinter.yaml +++ b/.github/kubelinter.yaml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# checks: addAllBuildIn: true exclude: diff --git a/.github/labeler.yml b/.github/labeler.yml index d94f9641d90..e63b4691a00 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# area/agent/core: - apis/proto/agent/core/**/* - apis/grpc/agent/core/**/* diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index ec4a14731c8..81e634f6fdf 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Upload artifacts to release" on: release: diff --git a/.github/workflows/build-protobuf.yml b/.github/workflows/build-protobuf.yml old mode 100755 new mode 100644 index 414465abc0f..29e78da80ff --- a/.github/workflows/build-protobuf.yml +++ b/.github/workflows/build-protobuf.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: build protobuf on: push: diff --git a/.github/workflows/chatops-help.yml b/.github/workflows/chatops-help.yml index 6ed7e02d49c..c7fd1fa1dfe 100644 --- a/.github/workflows/chatops-help.yml +++ b/.github/workflows/chatops-help.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "ChatOps help" on: pull_request: diff --git a/.github/workflows/chatops.yml b/.github/workflows/chatops.yml index e003bf2ae58..7a54545b491 100644 --- a/.github/workflows/chatops.yml +++ b/.github/workflows/chatops.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# on: issue_comment: types: [created] diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 1140e8e5aac..198eee80636 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Code scanning - action" on: diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 098047d80e2..c258aa3bbcc 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Coverage" on: push: diff --git a/.github/workflows/detect-internal-config-changes.yml b/.github/workflows/detect-internal-config-changes.yml index 1aa7fea3030..097f0547d98 100644 --- a/.github/workflows/detect-internal-config-changes.yml +++ b/.github/workflows/detect-internal-config-changes.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Detect internal config changes" on: pull_request: diff --git a/.github/workflows/dockers-agent-ngt-image.yml b/.github/workflows/dockers-agent-ngt-image.yml old mode 100755 new mode 100644 index a1645930b51..7f8fb05490d --- a/.github/workflows/dockers-agent-ngt-image.yml +++ b/.github/workflows/dockers-agent-ngt-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: agent-ngt" on: push: diff --git a/.github/workflows/dockers-agent-sidecar-image.yml b/.github/workflows/dockers-agent-sidecar-image.yml index e52525c4e7c..0895114b79a 100644 --- a/.github/workflows/dockers-agent-sidecar-image.yml +++ b/.github/workflows/dockers-agent-sidecar-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: agent-sidecar" on: push: diff --git a/.github/workflows/dockers-backup-manager-cassandra-image.yml b/.github/workflows/dockers-backup-manager-cassandra-image.yml index c81cf718576..d5c3f31db7a 100644 --- a/.github/workflows/dockers-backup-manager-cassandra-image.yml +++ b/.github/workflows/dockers-backup-manager-cassandra-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: backup-manager-cassandra" on: push: diff --git a/.github/workflows/dockers-backup-manager-mysql-image.yml b/.github/workflows/dockers-backup-manager-mysql-image.yml index 15adb0c23eb..396030ecc84 100644 --- a/.github/workflows/dockers-backup-manager-mysql-image.yml +++ b/.github/workflows/dockers-backup-manager-mysql-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: backup-manager-mysql" on: push: diff --git a/.github/workflows/dockers-base-image.yml b/.github/workflows/dockers-base-image.yml old mode 100755 new mode 100644 index 180baf9a0ea..4dce3b50811 --- a/.github/workflows/dockers-base-image.yml +++ b/.github/workflows/dockers-base-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: base" on: push: diff --git a/.github/workflows/dockers-ci-container-image.yml b/.github/workflows/dockers-ci-container-image.yml index f1a9f367d79..4cd9e02aba6 100644 --- a/.github/workflows/dockers-ci-container-image.yml +++ b/.github/workflows/dockers-ci-container-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: ci-container" on: push: diff --git a/.github/workflows/dockers-dev-container-image.yml b/.github/workflows/dockers-dev-container-image.yml index 3d7b82c6adb..3e12b296d58 100644 --- a/.github/workflows/dockers-dev-container-image.yml +++ b/.github/workflows/dockers-dev-container-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: dev-container" on: push: diff --git a/.github/workflows/dockers-discoverer-k8s-image.yml b/.github/workflows/dockers-discoverer-k8s-image.yml old mode 100755 new mode 100644 index ea730201156..c5cd37806dd --- a/.github/workflows/dockers-discoverer-k8s-image.yml +++ b/.github/workflows/dockers-discoverer-k8s-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: discoverer-k8s" on: push: diff --git a/.github/workflows/dockers-gateway-vald-image.yml b/.github/workflows/dockers-gateway-vald-image.yml old mode 100755 new mode 100644 index 9ec71a7cd3b..7921f1b3945 --- a/.github/workflows/dockers-gateway-vald-image.yml +++ b/.github/workflows/dockers-gateway-vald-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: gateway-vald" on: push: diff --git a/.github/workflows/dockers-helm-operator-image.yml b/.github/workflows/dockers-helm-operator-image.yml old mode 100755 new mode 100644 index 16c8976044e..af090046b52 --- a/.github/workflows/dockers-helm-operator-image.yml +++ b/.github/workflows/dockers-helm-operator-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: helm-operator" on: push: diff --git a/.github/workflows/dockers-image-scan.yml b/.github/workflows/dockers-image-scan.yml index 31b3974138f..baee4428bc0 100644 --- a/.github/workflows/dockers-image-scan.yml +++ b/.github/workflows/dockers-image-scan.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Docker image scanning" on: schedule: diff --git a/.github/workflows/dockers-loadtest-image.yml b/.github/workflows/dockers-loadtest-image.yml old mode 100755 new mode 100644 index ac32e2685bb..587638360d0 --- a/.github/workflows/dockers-loadtest-image.yml +++ b/.github/workflows/dockers-loadtest-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: loadtest" on: push: diff --git a/.github/workflows/dockers-manager-compressor-image.yml b/.github/workflows/dockers-manager-compressor-image.yml index 8796e040ee6..e87e8f57a53 100644 --- a/.github/workflows/dockers-manager-compressor-image.yml +++ b/.github/workflows/dockers-manager-compressor-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: manager-compressor" on: push: diff --git a/.github/workflows/dockers-manager-index-image.yml b/.github/workflows/dockers-manager-index-image.yml index 28724bc0f28..44311f8e335 100644 --- a/.github/workflows/dockers-manager-index-image.yml +++ b/.github/workflows/dockers-manager-index-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: manager-index" on: push: diff --git a/.github/workflows/dockers-meta-cassandra-image.yml b/.github/workflows/dockers-meta-cassandra-image.yml index a16dcb66ac4..f82e1e133e5 100644 --- a/.github/workflows/dockers-meta-cassandra-image.yml +++ b/.github/workflows/dockers-meta-cassandra-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: meta-cassandra" on: push: diff --git a/.github/workflows/dockers-meta-redis-image.yml b/.github/workflows/dockers-meta-redis-image.yml old mode 100755 new mode 100644 index 5fbf3d3a84a..3f63ccd55b1 --- a/.github/workflows/dockers-meta-redis-image.yml +++ b/.github/workflows/dockers-meta-redis-image.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Build docker image: meta-redis" on: push: diff --git a/.github/workflows/e2e-bench-agent.yml b/.github/workflows/e2e-bench-agent.yml index a844444dedd..e999feacb50 100644 --- a/.github/workflows/e2e-bench-agent.yml +++ b/.github/workflows/e2e-bench-agent.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Run e2e bench: bench-agent" on: push: diff --git a/.github/workflows/e2e-deploy.yml b/.github/workflows/e2e-deploy.yml index 4cc5362f786..ec7ea0a9a68 100644 --- a/.github/workflows/e2e-deploy.yml +++ b/.github/workflows/e2e-deploy.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Run e2e deploy test" on: push: diff --git a/.github/workflows/fossa.yml b/.github/workflows/fossa.yml index fa2782b8289..80df80e24b6 100644 --- a/.github/workflows/fossa.yml +++ b/.github/workflows/fossa.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Run FOSSA scan" on: push: diff --git a/.github/workflows/helm-lint.yml b/.github/workflows/helm-lint.yml index 6762f70d6f5..c8dd62299f1 100644 --- a/.github/workflows/helm-lint.yml +++ b/.github/workflows/helm-lint.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Run Helm lint" on: pull_request: diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml index 63f324a2c83..7d1ac50bea9 100644 --- a/.github/workflows/helm.yml +++ b/.github/workflows/helm.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Update Helm charts" on: push: diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index a658b2f8320..3195ba40933 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Pull Request Labeler" on: - pull_request diff --git a/.github/workflows/reviewdog-hadolint.yml b/.github/workflows/reviewdog-hadolint.yml index c422b629f2f..95fe64560d9 100644 --- a/.github/workflows/reviewdog-hadolint.yml +++ b/.github/workflows/reviewdog-hadolint.yml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.github/workflows/reviewdog-k8s.yml b/.github/workflows/reviewdog-k8s.yml index e18482a914f..d414b071bac 100644 --- a/.github/workflows/reviewdog-k8s.yml +++ b/.github/workflows/reviewdog-k8s.yml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.github/workflows/reviewdog-markdown.yml b/.github/workflows/reviewdog-markdown.yml index a640d4c8605..136ce09d6e7 100644 --- a/.github/workflows/reviewdog-markdown.yml +++ b/.github/workflows/reviewdog-markdown.yml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml old mode 100755 new mode 100644 index 7ade709840e..862beeadf8c --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -1,5 +1,5 @@ # -# Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt ) +# Copyright (C) 2019-2021 vdaas.org vald team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.github/workflows/semver.yml b/.github/workflows/semver.yml index 70faeddcb47..ff36564af3a 100644 --- a/.github/workflows/semver.yml +++ b/.github/workflows/semver.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: Run semver on: push: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 60afe7ab013..1de70eee691 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Run tests" on: push: diff --git a/.github/workflows/update-protobuf.yml b/.github/workflows/update-protobuf.yml index bec91fe3296..cafc745e9d3 100644 --- a/.github/workflows/update-protobuf.yml +++ b/.github/workflows/update-protobuf.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: update protobuf on: push: diff --git a/.github/workflows/update_pull_request_and_issue_template.yml b/.github/workflows/update_pull_request_and_issue_template.yml index 36899d35d1b..2b7ae5b308b 100644 --- a/.github/workflows/update_pull_request_and_issue_template.yml +++ b/.github/workflows/update_pull_request_and_issue_template.yml @@ -1,3 +1,18 @@ +# +# Copyright (C) 2019-2021 vdaas.org vald team +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# name: "Update PULL_REQUEST_TEMPLATE and ISSUE_TEMPLATE" on: push: diff --git a/Makefile b/Makefile index 73b50ca0179..b8e475d9c05 100644 --- a/Makefile +++ b/Makefile @@ -260,6 +260,7 @@ clean: license: MAINTAINER=$(MAINTAINER) \ go run hack/license/gen/main.go ./ + go run hack/license/gen/main.go .github .PHONY: init ## initialize development environment From d427061a2148c82882021cc2529668062934c5b2 Mon Sep 17 00:00:00 2001 From: Rintaro Okamura Date: Mon, 11 Jan 2021 15:19:14 +0900 Subject: [PATCH 8/8] :green_heart: Add formatter for master branch (#911) Signed-off-by: Rintaro Okamura Co-authored-by: Yusuke Kato --- .github/workflows/format.yml | 60 ++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 .github/workflows/format.yml diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml new file mode 100644 index 00000000000..ca0a23d3a7b --- /dev/null +++ b/.github/workflows/format.yml @@ -0,0 +1,60 @@ +name: Run formatter +on: + push: + branches: + - master + +jobs: + format: + name: Run formatter + runs-on: ubuntu-latest + container: + image: vdaas/vald-ci-container:nightly + steps: + - name: Check out code. + uses: actions/checkout@v2 + with: + fetch-depth: 0 + token: ${{ secrets.DISPATCH_TOKEN }} + - name: switch new branch + id: switch_to_new_branch + run: | + TIMESTAMP=$(date +%Y%m%d_%H%M%S_%3N) + BRANCH_NAME="formatter/go_and_yaml/format_at_${TIMESTAMP}" + git checkout master + git checkout -b ${BRANCH_NAME} + echo "::set-output name=BRANCH_NAME::${BRANCH_NAME}" + - name: Run formatter and license.go + run: | + make update/goimports + make format/yaml + make license + git checkout go.mod go.sum + - name: Check and Push to master + continue-on-error: true + run: | + if git diff --quiet --exit-code; then + echo "Nothing updated" + else + git config --global user.name "vdaas-ci" + git config --global user.email "ci@vdaas.org" + + git add . + git commit --signoff -m ":robot: Update license headers / Format Go codes and YAML files" + + git remote set-url origin "https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" + git push -u origin ${BRANCH_NAME} + + curl --include --verbose --fail \ + -H "Accept: application/json" \ + -H "Content-Type:application/json" \ + -H "Authorization: token ${GITHUB_TOKEN}" \ + --request POST \ + --data "{\"title\": \"Update license headers / Format codes\", \"head\": \"${BRANCH_NAME}\", \"base\": \"master\", \"body\": \"Update license headers / Format Go codes and YAML files.\", \"maintainer_can_modify\": true}" \ + $API_URL + fi + env: + GITHUB_USER: ${{ secrets.DISPATCH_USER }} + GITHUB_TOKEN: ${{ secrets.DISPATCH_TOKEN }} + API_URL: https://api.github.com/repos/vdaas/vald/pulls + BRANCH_NAME: ${{ steps.switch_to_new_branch.outputs.BRANCH_NAME }}