From 4392c28a5e37c591d7760d91b91785f92d372081 Mon Sep 17 00:00:00 2001 From: Fu Wei Date: Wed, 30 Oct 2024 09:36:39 -0700 Subject: [PATCH] *: add license header (#136) Signed-off-by: Wei Fu --- api/types/http.go | 3 +++ api/types/load_traffic.go | 3 +++ api/types/load_traffic_test.go | 3 +++ api/types/metric.go | 3 +++ api/types/runner_group.go | 3 +++ cmd/kperf/commands/root.go | 3 +++ cmd/kperf/commands/runner/runner.go | 3 +++ cmd/kperf/commands/runnergroup/delete.go | 3 +++ cmd/kperf/commands/runnergroup/result.go | 3 +++ cmd/kperf/commands/runnergroup/root.go | 3 +++ cmd/kperf/commands/runnergroup/run.go | 3 +++ cmd/kperf/commands/runnergroup/server.go | 3 +++ cmd/kperf/commands/runnergroup/status.go | 3 +++ cmd/kperf/commands/utils/helper.go | 3 +++ cmd/kperf/commands/virtualcluster/nodepool.go | 3 +++ cmd/kperf/commands/virtualcluster/vc.go | 3 +++ cmd/kperf/main.go | 3 +++ contrib/cmd/runkperf/commands/bench/node100_job1_pod3k.go | 3 +++ contrib/cmd/runkperf/commands/bench/node100_pod10k.go | 3 +++ contrib/cmd/runkperf/commands/bench/node10_job1_pod100.go | 3 +++ contrib/cmd/runkperf/commands/bench/root.go | 3 +++ contrib/cmd/runkperf/commands/bench/utils.go | 3 +++ contrib/cmd/runkperf/commands/ekswarmup/command.go | 3 +++ contrib/cmd/runkperf/commands/root.go | 3 +++ contrib/cmd/runkperf/main.go | 3 +++ contrib/internal/manifests/helm.go | 3 +++ contrib/internal/manifests/manifest.go | 3 +++ contrib/internal/mountns/ns.go | 3 +++ contrib/internal/types/report.go | 3 +++ contrib/internal/utils/kperf_cmd.go | 3 +++ contrib/internal/utils/kubectl_cmd.go | 3 +++ contrib/internal/utils/utils.go | 3 +++ helmcli/delete.go | 3 +++ helmcli/get.go | 3 +++ helmcli/list.go | 3 +++ helmcli/release.go | 3 +++ helmcli/release_test.go | 3 +++ manifests/helm.go | 3 +++ manifests/mainfest.go | 3 +++ metrics/request.go | 3 +++ metrics/request_test.go | 3 +++ metrics/utils.go | 3 +++ metrics/utils_test.go | 3 +++ portforward/portforward.go | 3 +++ request/client.go | 3 +++ request/client_test.go | 3 +++ request/random.go | 3 +++ request/schedule.go | 3 +++ runner/group/handler.go | 3 +++ runner/group/parse.go | 3 +++ runner/localstore/reader.go | 3 +++ runner/localstore/store.go | 3 +++ runner/localstore/writer.go | 3 +++ runner/runnergroup_common.go | 3 +++ runner/runnergroup_delete.go | 3 +++ runner/runnergroup_list.go | 3 +++ runner/runnergroup_result.go | 3 +++ runner/runnergroup_run.go | 3 +++ runner/server.go | 3 +++ runner/server_runnergroup.go | 3 +++ runner/utils.go | 3 +++ scripts/run_runner.sh | 3 +++ virtualcluster/nodes_common.go | 3 +++ virtualcluster/nodes_create.go | 3 +++ virtualcluster/nodes_delete.go | 3 +++ virtualcluster/nodes_list.go | 3 +++ 66 files changed, 198 insertions(+) diff --git a/api/types/http.go b/api/types/http.go index 4850fa3..2ab74de 100644 --- a/api/types/http.go +++ b/api/types/http.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package types // HTTPError is used to render response for error. diff --git a/api/types/load_traffic.go b/api/types/load_traffic.go index 52f583f..a29844a 100644 --- a/api/types/load_traffic.go +++ b/api/types/load_traffic.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package types import "fmt" diff --git a/api/types/load_traffic_test.go b/api/types/load_traffic_test.go index e4a5ae1..449ec8d 100644 --- a/api/types/load_traffic_test.go +++ b/api/types/load_traffic_test.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package types import ( diff --git a/api/types/metric.go b/api/types/metric.go index ea3de3b..6cf0fe4 100644 --- a/api/types/metric.go +++ b/api/types/metric.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package types // HTTP2ErrorStats is the report about http2 error during testing. diff --git a/api/types/runner_group.go b/api/types/runner_group.go index 5fa839a..750d727 100644 --- a/api/types/runner_group.go +++ b/api/types/runner_group.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package types import metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" diff --git a/cmd/kperf/commands/root.go b/cmd/kperf/commands/root.go index ff2af0e..719358e 100644 --- a/cmd/kperf/commands/root.go +++ b/cmd/kperf/commands/root.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package commands import ( diff --git a/cmd/kperf/commands/runner/runner.go b/cmd/kperf/commands/runner/runner.go index eafaece..edf3c1f 100644 --- a/cmd/kperf/commands/runner/runner.go +++ b/cmd/kperf/commands/runner/runner.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runner import ( diff --git a/cmd/kperf/commands/runnergroup/delete.go b/cmd/kperf/commands/runnergroup/delete.go index 9f198d7..1c2f06a 100644 --- a/cmd/kperf/commands/runnergroup/delete.go +++ b/cmd/kperf/commands/runnergroup/delete.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runnergroup import ( diff --git a/cmd/kperf/commands/runnergroup/result.go b/cmd/kperf/commands/runnergroup/result.go index 557ab25..6581e33 100644 --- a/cmd/kperf/commands/runnergroup/result.go +++ b/cmd/kperf/commands/runnergroup/result.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runnergroup import ( diff --git a/cmd/kperf/commands/runnergroup/root.go b/cmd/kperf/commands/runnergroup/root.go index ec164b4..83426d6 100644 --- a/cmd/kperf/commands/runnergroup/root.go +++ b/cmd/kperf/commands/runnergroup/root.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runnergroup import ( diff --git a/cmd/kperf/commands/runnergroup/run.go b/cmd/kperf/commands/runnergroup/run.go index cab682b..f5af9a8 100644 --- a/cmd/kperf/commands/runnergroup/run.go +++ b/cmd/kperf/commands/runnergroup/run.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runnergroup import ( diff --git a/cmd/kperf/commands/runnergroup/server.go b/cmd/kperf/commands/runnergroup/server.go index 8ab5e07..4542466 100644 --- a/cmd/kperf/commands/runnergroup/server.go +++ b/cmd/kperf/commands/runnergroup/server.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runnergroup import ( diff --git a/cmd/kperf/commands/runnergroup/status.go b/cmd/kperf/commands/runnergroup/status.go index 8931fc4..e7d6f97 100644 --- a/cmd/kperf/commands/runnergroup/status.go +++ b/cmd/kperf/commands/runnergroup/status.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runnergroup import ( diff --git a/cmd/kperf/commands/utils/helper.go b/cmd/kperf/commands/utils/helper.go index 0abbb97..bcc3044 100644 --- a/cmd/kperf/commands/utils/helper.go +++ b/cmd/kperf/commands/utils/helper.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package utils import ( diff --git a/cmd/kperf/commands/virtualcluster/nodepool.go b/cmd/kperf/commands/virtualcluster/nodepool.go index aad8234..d7af8f6 100644 --- a/cmd/kperf/commands/virtualcluster/nodepool.go +++ b/cmd/kperf/commands/virtualcluster/nodepool.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package virtualcluster import ( diff --git a/cmd/kperf/commands/virtualcluster/vc.go b/cmd/kperf/commands/virtualcluster/vc.go index f869f82..21a14f0 100644 --- a/cmd/kperf/commands/virtualcluster/vc.go +++ b/cmd/kperf/commands/virtualcluster/vc.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package virtualcluster import "github.com/urfave/cli" diff --git a/cmd/kperf/main.go b/cmd/kperf/main.go index 5ffb318..13155e1 100644 --- a/cmd/kperf/main.go +++ b/cmd/kperf/main.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package main import ( diff --git a/contrib/cmd/runkperf/commands/bench/node100_job1_pod3k.go b/contrib/cmd/runkperf/commands/bench/node100_job1_pod3k.go index 7fb73af..1d8e7a8 100644 --- a/contrib/cmd/runkperf/commands/bench/node100_job1_pod3k.go +++ b/contrib/cmd/runkperf/commands/bench/node100_job1_pod3k.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package bench import ( diff --git a/contrib/cmd/runkperf/commands/bench/node100_pod10k.go b/contrib/cmd/runkperf/commands/bench/node100_pod10k.go index 006aafa..0fcf0e0 100644 --- a/contrib/cmd/runkperf/commands/bench/node100_pod10k.go +++ b/contrib/cmd/runkperf/commands/bench/node100_pod10k.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package bench import ( diff --git a/contrib/cmd/runkperf/commands/bench/node10_job1_pod100.go b/contrib/cmd/runkperf/commands/bench/node10_job1_pod100.go index 4702a12..1a92643 100644 --- a/contrib/cmd/runkperf/commands/bench/node10_job1_pod100.go +++ b/contrib/cmd/runkperf/commands/bench/node10_job1_pod100.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package bench import ( diff --git a/contrib/cmd/runkperf/commands/bench/root.go b/contrib/cmd/runkperf/commands/bench/root.go index 6065487..291c9c7 100644 --- a/contrib/cmd/runkperf/commands/bench/root.go +++ b/contrib/cmd/runkperf/commands/bench/root.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package bench import ( diff --git a/contrib/cmd/runkperf/commands/bench/utils.go b/contrib/cmd/runkperf/commands/bench/utils.go index d0eefbd..d217e7f 100644 --- a/contrib/cmd/runkperf/commands/bench/utils.go +++ b/contrib/cmd/runkperf/commands/bench/utils.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package bench import ( diff --git a/contrib/cmd/runkperf/commands/ekswarmup/command.go b/contrib/cmd/runkperf/commands/ekswarmup/command.go index 5968b0b..bdc1ba4 100644 --- a/contrib/cmd/runkperf/commands/ekswarmup/command.go +++ b/contrib/cmd/runkperf/commands/ekswarmup/command.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package ekswarmup import ( diff --git a/contrib/cmd/runkperf/commands/root.go b/contrib/cmd/runkperf/commands/root.go index 6b1f17e..a30f495 100644 --- a/contrib/cmd/runkperf/commands/root.go +++ b/contrib/cmd/runkperf/commands/root.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package commands import ( diff --git a/contrib/cmd/runkperf/main.go b/contrib/cmd/runkperf/main.go index d41462f..fd4c7fd 100644 --- a/contrib/cmd/runkperf/main.go +++ b/contrib/cmd/runkperf/main.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package main import ( diff --git a/contrib/internal/manifests/helm.go b/contrib/internal/manifests/helm.go index e6649ad..f1bed2f 100644 --- a/contrib/internal/manifests/helm.go +++ b/contrib/internal/manifests/helm.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package manifests import ( diff --git a/contrib/internal/manifests/manifest.go b/contrib/internal/manifests/manifest.go index f3006b9..f347678 100644 --- a/contrib/internal/manifests/manifest.go +++ b/contrib/internal/manifests/manifest.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package manifests import "embed" diff --git a/contrib/internal/mountns/ns.go b/contrib/internal/mountns/ns.go index 85a629a..0f2311e 100644 --- a/contrib/internal/mountns/ns.go +++ b/contrib/internal/mountns/ns.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package mountns import ( diff --git a/contrib/internal/types/report.go b/contrib/internal/types/report.go index b636bc1..a505a37 100644 --- a/contrib/internal/types/report.go +++ b/contrib/internal/types/report.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package types import apitypes "github.com/Azure/kperf/api/types" diff --git a/contrib/internal/utils/kperf_cmd.go b/contrib/internal/utils/kperf_cmd.go index 39d56d8..13860fb 100644 --- a/contrib/internal/utils/kperf_cmd.go +++ b/contrib/internal/utils/kperf_cmd.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package utils import ( diff --git a/contrib/internal/utils/kubectl_cmd.go b/contrib/internal/utils/kubectl_cmd.go index ec15b95..bc5b534 100644 --- a/contrib/internal/utils/kubectl_cmd.go +++ b/contrib/internal/utils/kubectl_cmd.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package utils import ( diff --git a/contrib/internal/utils/utils.go b/contrib/internal/utils/utils.go index 553cfd4..e4c0f62 100644 --- a/contrib/internal/utils/utils.go +++ b/contrib/internal/utils/utils.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package utils import ( diff --git a/helmcli/delete.go b/helmcli/delete.go index f27b05f..c53a5aa 100644 --- a/helmcli/delete.go +++ b/helmcli/delete.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package helmcli import ( diff --git a/helmcli/get.go b/helmcli/get.go index ed377c2..6ed4a52 100644 --- a/helmcli/get.go +++ b/helmcli/get.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package helmcli import ( diff --git a/helmcli/list.go b/helmcli/list.go index 03b940c..b24c84d 100644 --- a/helmcli/list.go +++ b/helmcli/list.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package helmcli import ( diff --git a/helmcli/release.go b/helmcli/release.go index b90d212..bab4766 100644 --- a/helmcli/release.go +++ b/helmcli/release.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package helmcli import ( diff --git a/helmcli/release_test.go b/helmcli/release_test.go index cbc46bd..3bbf3d7 100644 --- a/helmcli/release_test.go +++ b/helmcli/release_test.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package helmcli import ( diff --git a/manifests/helm.go b/manifests/helm.go index 708e239..5102fe9 100644 --- a/manifests/helm.go +++ b/manifests/helm.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package manifests import ( diff --git a/manifests/mainfest.go b/manifests/mainfest.go index 39d766b..9b16fca 100644 --- a/manifests/mainfest.go +++ b/manifests/mainfest.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package manifests import "embed" diff --git a/metrics/request.go b/metrics/request.go index 08c6afc..571c4fd 100644 --- a/metrics/request.go +++ b/metrics/request.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package metrics import ( diff --git a/metrics/request_test.go b/metrics/request_test.go index 5a38c55..c22ca57 100644 --- a/metrics/request_test.go +++ b/metrics/request_test.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package metrics import ( diff --git a/metrics/utils.go b/metrics/utils.go index 7e8a52e..f0c4f3f 100644 --- a/metrics/utils.go +++ b/metrics/utils.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package metrics import ( diff --git a/metrics/utils_test.go b/metrics/utils_test.go index 62c6b73..9eecebc 100644 --- a/metrics/utils_test.go +++ b/metrics/utils_test.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package metrics import ( diff --git a/portforward/portforward.go b/portforward/portforward.go index 67e2786..0e46222 100644 --- a/portforward/portforward.go +++ b/portforward/portforward.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package portforward import ( diff --git a/request/client.go b/request/client.go index 6aed87c..bc699d5 100644 --- a/request/client.go +++ b/request/client.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package request import ( diff --git a/request/client_test.go b/request/client_test.go index 059e07c..8cdc2a7 100644 --- a/request/client_test.go +++ b/request/client_test.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package request import ( diff --git a/request/random.go b/request/random.go index 04397b2..97758c7 100644 --- a/request/random.go +++ b/request/random.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package request import ( diff --git a/request/schedule.go b/request/schedule.go index f2cbc60..a180331 100644 --- a/request/schedule.go +++ b/request/schedule.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package request import ( diff --git a/runner/group/handler.go b/runner/group/handler.go index 2191330..b21e9fe 100644 --- a/runner/group/handler.go +++ b/runner/group/handler.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package group import ( diff --git a/runner/group/parse.go b/runner/group/parse.go index 7dc1c76..8040588 100644 --- a/runner/group/parse.go +++ b/runner/group/parse.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package group import ( diff --git a/runner/localstore/reader.go b/runner/localstore/reader.go index 6359b90..1cf1c08 100644 --- a/runner/localstore/reader.go +++ b/runner/localstore/reader.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package localstore import "os" diff --git a/runner/localstore/store.go b/runner/localstore/store.go index 64d8594..6e2a189 100644 --- a/runner/localstore/store.go +++ b/runner/localstore/store.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package localstore import ( diff --git a/runner/localstore/writer.go b/runner/localstore/writer.go index 1224ec7..0780b4e 100644 --- a/runner/localstore/writer.go +++ b/runner/localstore/writer.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package localstore import ( diff --git a/runner/runnergroup_common.go b/runner/runnergroup_common.go index cc0446e..672179c 100644 --- a/runner/runnergroup_common.go +++ b/runner/runnergroup_common.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runner import ( diff --git a/runner/runnergroup_delete.go b/runner/runnergroup_delete.go index 2b836f6..922bc24 100644 --- a/runner/runnergroup_delete.go +++ b/runner/runnergroup_delete.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runner import ( diff --git a/runner/runnergroup_list.go b/runner/runnergroup_list.go index cd60957..54b4c13 100644 --- a/runner/runnergroup_list.go +++ b/runner/runnergroup_list.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runner import ( diff --git a/runner/runnergroup_result.go b/runner/runnergroup_result.go index 9496704..4cb4ffd 100644 --- a/runner/runnergroup_result.go +++ b/runner/runnergroup_result.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runner import ( diff --git a/runner/runnergroup_run.go b/runner/runnergroup_run.go index b3e6cec..e249d73 100644 --- a/runner/runnergroup_run.go +++ b/runner/runnergroup_run.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runner import ( diff --git a/runner/server.go b/runner/server.go index 4d1380e..51cc696 100644 --- a/runner/server.go +++ b/runner/server.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runner import ( diff --git a/runner/server_runnergroup.go b/runner/server_runnergroup.go index b0b4d7c..52c7f5a 100644 --- a/runner/server_runnergroup.go +++ b/runner/server_runnergroup.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runner import ( diff --git a/runner/utils.go b/runner/utils.go index 2eb4a78..18ef5df 100644 --- a/runner/utils.go +++ b/runner/utils.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package runner import ( diff --git a/scripts/run_runner.sh b/scripts/run_runner.sh index 930fe04..fe26924 100755 --- a/scripts/run_runner.sh +++ b/scripts/run_runner.sh @@ -1,4 +1,7 @@ #!/usr/bin/env bash +# +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. set -euo pipefail diff --git a/virtualcluster/nodes_common.go b/virtualcluster/nodes_common.go index 095c569..8ba103d 100644 --- a/virtualcluster/nodes_common.go +++ b/virtualcluster/nodes_common.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package virtualcluster import ( diff --git a/virtualcluster/nodes_create.go b/virtualcluster/nodes_create.go index c271d1f..acbd652 100644 --- a/virtualcluster/nodes_create.go +++ b/virtualcluster/nodes_create.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package virtualcluster import ( diff --git a/virtualcluster/nodes_delete.go b/virtualcluster/nodes_delete.go index 5ac727b..d9afe44 100644 --- a/virtualcluster/nodes_delete.go +++ b/virtualcluster/nodes_delete.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package virtualcluster import ( diff --git a/virtualcluster/nodes_list.go b/virtualcluster/nodes_list.go index 7ad3a92..979e43a 100644 --- a/virtualcluster/nodes_list.go +++ b/virtualcluster/nodes_list.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + package virtualcluster import (