diff --git a/hack/.packages b/hack/.packages index 5a057c98cd..7f5367ee6f 100644 --- a/hack/.packages +++ b/hack/.packages @@ -108,6 +108,7 @@ k8s.io/kops/pkg/model/gcemodel k8s.io/kops/pkg/model/iam k8s.io/kops/pkg/model/openstackmodel k8s.io/kops/pkg/model/resources +k8s.io/kops/pkg/model/spotinstmodel k8s.io/kops/pkg/model/vspheremodel k8s.io/kops/pkg/openapi k8s.io/kops/pkg/pki @@ -120,6 +121,7 @@ k8s.io/kops/pkg/resources/digitalocean/dns k8s.io/kops/pkg/resources/gce k8s.io/kops/pkg/resources/openstack k8s.io/kops/pkg/resources/ops +k8s.io/kops/pkg/resources/spotinst k8s.io/kops/pkg/sshcredentials k8s.io/kops/pkg/systemd k8s.io/kops/pkg/templates @@ -163,6 +165,7 @@ k8s.io/kops/upup/pkg/fi/cloudup/gce k8s.io/kops/upup/pkg/fi/cloudup/gcetasks k8s.io/kops/upup/pkg/fi/cloudup/openstack k8s.io/kops/upup/pkg/fi/cloudup/openstacktasks +k8s.io/kops/upup/pkg/fi/cloudup/spotinsttasks k8s.io/kops/upup/pkg/fi/cloudup/terraform k8s.io/kops/upup/pkg/fi/cloudup/vsphere k8s.io/kops/upup/pkg/fi/cloudup/vspheretasks diff --git a/pkg/resources/spotinst/aws.go b/pkg/resources/spotinst/aws.go index cc75d65779..7824397d36 100644 --- a/pkg/resources/spotinst/aws.go +++ b/pkg/resources/spotinst/aws.go @@ -1,3 +1,19 @@ +/* +Copyright 2018 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package spotinst import ( diff --git a/pkg/resources/spotinst/interfaces.go b/pkg/resources/spotinst/interfaces.go index 549f46bed8..d8ec3d0179 100644 --- a/pkg/resources/spotinst/interfaces.go +++ b/pkg/resources/spotinst/interfaces.go @@ -1,3 +1,19 @@ +/* +Copyright 2018 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package spotinst import (