Git Product home page Git Product logo

kubernetes-resource's Introduction

kubernetes-resource

Build Status

A Concourse resource for controlling the Kubernetes cluster.

This resource supports AWS EKS. (kubernetes-sigs/[email protected])

Versions

The version of this resource corresponds to the version of kubectl. We recommend using different version depending on the kubernetes version of the cluster.

Source Configuration

kubeconfig

  • kubeconfig: Optional. A kubeconfig file.
    kubeconfig: |
      apiVersion: v1
      clusters:
      - cluster:
        ...
  • context: Optional. The context to use when specifying a kubeconfig or kubeconfig_file

cluster configs

  • server: Optional. The address and port of the API server.
  • token: Optional. Bearer token for authentication to the API server.
  • namespace: Optional. The namespace scope. Defaults to default. If set along with kubeconfig, namespace will override the namespace in the current-context
  • certificate_authority: Optional. A certificate for the certificate authority.
    certificate_authority: |
        -----BEGIN CERTIFICATE-----
        ...
        -----END CERTIFICATE-----
  • certificate_authority_file: Optional. A file to read the certificate from. Only takes effect when certificate_authority_file is not set.
    certificate_authority_file: ca_certs.crt
  • insecure_skip_tls_verify: Optional. If true, the API server's certificate will not be checked for validity. This will make your HTTPS connections insecure. Defaults to false.
  • use_aws_iam_authenticator: Optional. If true, the aws_iam_authenticator, required for connecting with EKS, is used. Requires aws_eks_cluster_name. Defaults to false.
  • aws_eks_cluster_name: Optional. the AWS EKS cluster name, required when use_aws_iam_authenticator is true.
  • aws_eks_assume_role: Optional. the AWS IAM role ARN to assume.
  • aws_access_key_id: Optional. AWS access key to use for iam authenticator.
  • aws_secret_access_key: Optional. AWS secret key to use for iam authenticator.
  • aws_session_token: Optional. AWS session token (assumed role) to use for iam authenticator.

Behavior

check: Do nothing.

in: Do nothing.

out: Control the Kubernetes cluster.

Control the Kubernetes cluster like kubectl apply, kubectl delete, kubectl label and so on.

Parameters

  • kubectl: Required. Specify the operation that you want to perform on one or more resources, for example apply, delete, label.
  • context: Optional. The context to use when specifying a kubeconfig or kubeconfig_file
  • wait_until_ready: Optional. The number of seconds that waits until all pods are ready. 0 means don't wait. Defaults to 30.
  • wait_until_ready_interval: Optional. The interval (sec) on which to check whether all pods are ready. Defaults to 3.
  • wait_until_ready_selector: Optional. A label selector to identify a set of pods which to check whether those are ready. Defaults to every pods in the namespace.
  • kubeconfig_file: Optional. The path of kubeconfig file. This param has priority over the kubeconfig of source configuration.
  • namespace: Optional. The namespace scope. It will override the namespace in other params and source configuration.

Example

resource_types:
- name: kubernetes
  type: docker-image
  source:
    repository: zlabjp/kubernetes-resource
    tag: "1.17"

resources:
- name: kubernetes-production
  type: kubernetes
  source:
    server: https://192.168.99.100:8443
    namespace: production
    token: {{kubernetes-production-token}}
    certificate_authority: {{kubernetes-production-cert}}
- name: my-app
  type: git
  source:
    ...

jobs:
- name: kubernetes-deploy-production
  plan:
  - get: my-app
    trigger: true
  - put: kubernetes-production
    params:
      kubectl: apply -f my-app/k8s -f my-app/k8s/production
      wait_until_ready_selector: app=myapp

Force update deployment

jobs:
- name: force-update-deployment
  serial: true
  plan:
  - put: mycluster
    params:
      kubectl: |
        patch deploy nginx -p '{"spec":{"template":{"metadata":{"labels":{"updated_at":"'$(date +%s)'"}}}}}'
      wait_until_ready_selector: run=nginx

Use a remote kubeconfig file fetched by s3-resource

resources:
- name: k8s-prod
  type: kubernetes

- name: kubeconfig-file
  type: s3
  source:
    bucket: mybucket
    versioned_file: config
    access_key_id: ((s3-access-key))
    secret_access_key: ((s3-secret))

- name: my-app
  type: git
  source:
    ...

jobs:
- name: k8s-deploy-prod
  plan:
  - aggregate:
    - get: my-app
      trigger: true
    - get: kubeconfig-file
  - put: k8s-prod
    params:
      kubectl: apply -f my-app/k8s -f my-app/k8s/production
      wait_until_ready_selector: app=myapp
      kubeconfig_file: kubeconfig-file/config

License

This software is released under the MIT License.

kubernetes-resource's People

Contributors

anneschuth avatar jens-solarisbank avatar jensendw avatar lmdehaas avatar plumenator avatar shinji62 avatar stijndehaes avatar superbrothers avatar takuhiro avatar wernerb avatar yuanying avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

kubernetes-resource's Issues

Wait until ready returns success immediately

Is this a BUG REPORT or FEATURE REQUEST?:

  • bug

What happened:
The put step with a wait_until_ready_selector is returning success immediately. It's almost too fast for its own good!

What you expected to happen:
I expect the wait step to wait until the deployment update is complete.

How to reproduce it (as minimally and precisely as possible):
Have a kubernetes deployment with a normal RollingUpdate strategy. Use this kubernetes-resource to put changes to the deployment like so:

- put: prod-kube
  params:
    kubectl: apply -f ymls/my-app-deployment.yml
    wait_until_ready: 60
    wait_until_ready_selector: app=my-app

When this step runs I see this in the output:

+ kubectl apply -f ymls/my-app-deployment.yml
deployment.extensions/my-app configured
Waiting for pods to be ready for 60s (interval: 3s, selector: app=my-app)
Waiting for pods to be ready... (0/0)

This returns true immediately despite the fact that the new pod/replicaset hasn't actually spun up yet. It seems like resource is checking the ready status before the new pod is even created. Likely some kind of race condition with Kubernetes.

Environment:

  • Concourse CI version: 5.7.0
  • kubernetes-resource image version: 1.15

ERROR: You must specify "server" and "token", if not specify "kubeconfig"

  • bug

What happened:
When using docker tag 1.12 or latest, I see the following code in common.sh

# cat common.sh | grep echoerr
      echoerr "kubeconfig file '$kubeconfig_file' does not exist"
      echoerr 'You must specify "server" and "token", if not specify "kubeconfig".'
        echoerr 'You must specify aws_eks_cluster_name when using aws_iam_authenticator.'

This results in the following output when using the use_aws_iam_authenticator: true with server set

ERROR: You must specify "server" and "token", if not specify "kubeconfig"

What you expected to happen:
When using aws_iam_authenticator you typically don't use a token.... I would expect it to run without this error having only specified server.

How to reproduce it (as minimally and precisely as possible):

resource:
- name: kubernetes-eks
  type: kubernetes
  source:
    server: https://fjkdsajkldasjla.yl4.us-west-2.eks.amazonaws.com
    use_aws_iam_authenticator: true
    aws_eks_cluster_name: abc123

The pipeline will tell you:

ERROR: You must specify "server" and "token", if not specify "kubeconfig".

Anything else we need to know?:
It looks to me like you reverted this check in the latest release https://github.com/zlabjp/kubernetes-resource/releases/tag/v1.4.1

It almost looks as if you didn't rebuild the docker containers for tag 1.12 and latest after you did this.

I would have created a PR but the code in master doesn't reflect whats in 1.12 or latest in docker.

Environment:

  • Concourse CI version: (use fly --version): 3.13.0
  • kubernetes-resource image version: 1.12,latest,edge
  • Others:

Failed to build the container image

Is this a BUG REPORT or FEATURE REQUEST?:

  • bug

What happened:

go get -u -v github.com/kubernetes-sigs/aws-iam-authenticator/cmd/aws-iam-authenticator
github.com/kubernetes-sigs/aws-iam-authenticator (download)
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/config?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/config?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/config": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/config?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/config": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator?go-get=1 (status code 200)
sigs.k8s.io/aws-iam-authenticator (download)
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/sirupsen/logrus?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/sirupsen/logrus?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/sirupsen/logrus": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/sirupsen/logrus?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/sirupsen/logrus": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/crypto/ssh/terminal?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/crypto/ssh/terminal?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/crypto/ssh/terminal": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/crypto/ssh/terminal?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/crypto/ssh/terminal": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/sys/unix?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/sys/unix?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/sys/unix": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/sys/unix?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/sys/unix": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/spf13/pflag?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/spf13/pflag?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/spf13/pflag": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/spf13/pflag?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/spf13/pflag": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/klog?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/klog?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/klog": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/klog?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/klog": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/controller?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/controller?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/controller": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/controller?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/controller": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/core/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/core/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/core/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/core/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/core/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gogo/protobuf/proto?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gogo/protobuf/proto?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gogo/protobuf/proto": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gogo/protobuf/proto?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gogo/protobuf/proto": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gogo/protobuf/sortkeys?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gogo/protobuf/sortkeys?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gogo/protobuf/sortkeys": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gogo/protobuf/sortkeys?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gogo/protobuf/sortkeys": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/resource?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/resource?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/resource": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/resource?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/resource": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/gopkg.in/inf.v0?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/gopkg.in/inf.v0?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/gopkg.in/inf.v0": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/gopkg.in/inf.v0?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/gopkg.in/inf.v0": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/google/gofuzz?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/google/gofuzz?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/google/gofuzz": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/google/gofuzz?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/google/gofuzz": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/reflect?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/reflect?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/reflect": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/reflect?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/reflect": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/fields?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/fields?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/fields": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/fields?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/fields": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/selection?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/selection?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/selection": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/selection?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/selection": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/labels?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/labels?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/labels": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/labels?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/labels": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/sets?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/sets?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/sets": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/sets?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/sets": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation/field?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation/field?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation/field": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation/field?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation/field": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/errors?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/errors?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/errors": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/errors?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/errors": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion/queryparams?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion/queryparams?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion/queryparams": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion/queryparams?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion/queryparams": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/schema?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/schema?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/schema": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/schema?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/schema": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/json?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/json?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/json": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/json?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/json": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/naming?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/naming?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/naming": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/naming?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/naming": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/runtime?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/runtime?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/runtime": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/runtime?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/runtime": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/types?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/types?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/types": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/types?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/types": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/intstr?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/intstr?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/intstr": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/intstr?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/intstr": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/watch?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/watch?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/watch": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/watch?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/watch": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/net?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/net?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/net": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/net?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/net": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http2?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http2?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http2": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http2?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http2": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http/httpguts?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http/httpguts?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http/httpguts": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http/httpguts?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http/httpguts": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/idna?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/idna?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/idna": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/idna?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/idna": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/secure/bidirule?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/secure/bidirule?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/secure/bidirule": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/secure/bidirule?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/secure/bidirule": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/transform?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/transform?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/transform": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/transform?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/transform": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/unicode/bidi?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/unicode/bidi?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/unicode/bidi": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/unicode/bidi?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/unicode/bidi": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/unicode/norm?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/unicode/norm?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/unicode/norm": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/unicode/norm?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/unicode/norm": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http2/hpack?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http2/hpack?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http2/hpack": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http2/hpack?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http2/hpack": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/errors?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/errors?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/errors": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/errors?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/errors": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/wait?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/wait?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/wait": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/wait?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/wait": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/discovery?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/discovery?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/discovery": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/discovery?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/discovery": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/proto?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/proto?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/proto": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/proto?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/proto": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/OpenAPIv2?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/OpenAPIv2?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/OpenAPIv2": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/OpenAPIv2?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/OpenAPIv2": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/any?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/any?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/any": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/any?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/any": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/compiler?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/compiler?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/compiler": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/compiler?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/compiler": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/extensions?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/extensions?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/extensions": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/extensions?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/extensions": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/duration?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/duration?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/duration": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/duration?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/duration": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/timestamp?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/timestamp?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/timestamp": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/timestamp?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/timestamp": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/gopkg.in/yaml.v2?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/gopkg.in/yaml.v2?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/gopkg.in/yaml.v2": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/gopkg.in/yaml.v2?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/gopkg.in/yaml.v2": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/json-iterator/go?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/json-iterator/go?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/json-iterator/go": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/json-iterator/go?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/json-iterator/go": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/modern-go/concurrent?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/modern-go/concurrent?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/modern-go/concurrent": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/modern-go/concurrent?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/modern-go/concurrent": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/modern-go/reflect2?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/modern-go/reflect2?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/modern-go/reflect2": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/modern-go/reflect2?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/modern-go/reflect2": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/recognizer?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/recognizer?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/recognizer": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/recognizer?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/recognizer": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/framer?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/framer?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/framer": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/framer?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/framer": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/yaml?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/yaml?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/yaml": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/yaml?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/yaml": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/sigs.k8s.io/yaml?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/sigs.k8s.io/yaml?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/sigs.k8s.io/yaml": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/sigs.k8s.io/yaml?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/sigs.k8s.io/yaml": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/protobuf?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/protobuf?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/protobuf": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/protobuf?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/protobuf": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/version?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/version?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/version": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/version?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/version": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/scheme?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/scheme?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/scheme": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/scheme?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/scheme": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/admissionregistration/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/admissionregistration/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/admissionregistration/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/admissionregistration/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/admissionregistration/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta2?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta2?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta2": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta2?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta2": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/auditregistration/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/auditregistration/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/auditregistration/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/auditregistration/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/auditregistration/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta2?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta2?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta2": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta2?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta2": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v2alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v2alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v2alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v2alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v2alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/certificates/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/certificates/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/certificates/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/certificates/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/certificates/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/events/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/events/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/events/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/events/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/events/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/extensions/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/extensions/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/extensions/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/extensions/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/extensions/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/networking/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/networking/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/networking/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/networking/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/networking/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/networking/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/networking/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/networking/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/networking/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/networking/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/node/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/node/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/node/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/node/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/node/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/node/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/node/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/node/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/node/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/node/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/policy/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/policy/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/policy/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/policy/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/policy/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/settings/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/settings/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/settings/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/settings/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/settings/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/rest?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/rest?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/rest": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/rest?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/rest": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/streaming?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/streaming?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/streaming": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/streaming?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/streaming": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/version?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/version?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/version": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/version?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/version": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/plugin/pkg/client/auth/exec?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/plugin/pkg/client/auth/exec?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/plugin/pkg/client/auth/exec": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/plugin/pkg/client/auth/exec?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/plugin/pkg/client/auth/exec": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/davecgh/go-spew/spew?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/davecgh/go-spew/spew?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/davecgh/go-spew/spew": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/davecgh/go-spew/spew?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/davecgh/go-spew/spew": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/clientcmd/api?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/clientcmd/api?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/clientcmd/api": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/clientcmd/api?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/clientcmd/api": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/transport?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/transport?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/transport": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/transport?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/transport": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/oauth2?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/oauth2?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/oauth2": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/oauth2?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/oauth2": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/oauth2/internal?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/oauth2/internal?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/oauth2/internal": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/oauth2/internal?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/oauth2/internal": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/context/ctxhttp?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/context/ctxhttp?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/context/ctxhttp": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/context/ctxhttp?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/context/ctxhttp": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/connrotation?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/connrotation?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/connrotation": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/connrotation?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/connrotation": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/rest/watch?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/rest/watch?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/rest/watch": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/rest/watch?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/rest/watch": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/metrics?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/metrics?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/metrics": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/metrics?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/metrics": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/cert?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/cert?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/cert": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/cert?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/cert": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/keyutil?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/keyutil?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/keyutil": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/keyutil?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/keyutil": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/flowcontrol?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/flowcontrol?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/flowcontrol": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/flowcontrol?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/flowcontrol": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/time/rate?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/time/rate?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/time/rate": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/time/rate?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/time/rate": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/context?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/context?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/context": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/context?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/context": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/clock?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/clock?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/clock": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/clock?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/clock": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/integer?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/integer?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/integer": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/integer?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/integer": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta2?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta2?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta2": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta2?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta2": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/auditregistration/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/auditregistration/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/auditregistration/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/auditregistration/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/auditregistration/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v2alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v2alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v2alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v2alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v2alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/core/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/core/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/core/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/core/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/core/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/reference?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/reference?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/reference": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/reference?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/reference": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/meta?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/meta?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/meta": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/meta?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/meta": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/events/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/events/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/events/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/events/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/events/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/extensions/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/extensions/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/extensions/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/extensions/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/extensions/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/policy/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/policy/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/policy/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/policy/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/policy/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/settings/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/settings/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/settings/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/settings/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/settings/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/cache?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/cache?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/cache": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/cache?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/cache": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/cache?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/cache?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/cache": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/cache?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/cache": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/hashicorp/golang-lru?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/hashicorp/golang-lru?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/hashicorp/golang-lru": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/hashicorp/golang-lru?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/hashicorp/golang-lru": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/hashicorp/golang-lru/simplelru?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/hashicorp/golang-lru/simplelru?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/hashicorp/golang-lru/simplelru": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/hashicorp/golang-lru/simplelru?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/hashicorp/golang-lru/simplelru": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/diff?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/diff?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/diff": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/diff?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/diff": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/pager?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/pager?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/pager": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/pager?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/pager": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/internalversion?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/internalversion?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/internalversion": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/internalversion?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/internalversion": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/retry?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/retry?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/retry": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/retry?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/retry": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/buffer?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/buffer?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/buffer": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/buffer?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/buffer": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/trace?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/trace?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/trace": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/trace?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/trace": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/record?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/record?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/record": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/record?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/record": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/groupcache/lru?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/groupcache/lru?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/groupcache/lru": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/groupcache/lru?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/groupcache/lru": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/strategicpatch?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/strategicpatch?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/strategicpatch": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/strategicpatch?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/strategicpatch": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/mergepatch?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/mergepatch?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/mergepatch": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/mergepatch?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/mergepatch": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/json?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/json?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/json": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/json?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/json": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/kube-openapi/pkg/util/proto?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/kube-openapi/pkg/util/proto?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/kube-openapi/pkg/util/proto": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/kube-openapi/pkg/util/proto?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/kube-openapi/pkg/util/proto": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/record/util?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/record/util?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/record/util": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/record/util?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/record/util": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/workqueue?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/workqueue?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/workqueue": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/workqueue?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/workqueue": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/apis/iamauthenticator/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/apis/iamauthenticator/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/apis/iamauthenticator/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/apis/iamauthenticator/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/apis/iamauthenticator/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/apis/iamauthenticator?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/apis/iamauthenticator?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/apis/iamauthenticator": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/apis/iamauthenticator?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/apis/iamauthenticator": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/arn?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/arn?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/arn": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/arn?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/arn": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/arn?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/arn?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/arn": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/arn?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/arn": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/endpoints?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/endpoints?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/endpoints": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/endpoints?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/endpoints": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/awserr?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/awserr?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/awserr": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/awserr?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/awserr": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/typed/iamauthenticator/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/typed/iamauthenticator/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/typed/iamauthenticator/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/typed/iamauthenticator/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/typed/iamauthenticator/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/scheme?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/scheme?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/scheme": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/scheme?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/scheme": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/iamauthenticator/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/iamauthenticator/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/iamauthenticator/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/iamauthenticator/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/iamauthenticator/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/internalinterfaces?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/internalinterfaces?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/internalinterfaces": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/internalinterfaces?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/internalinterfaces": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/listers/iamauthenticator/v1alpha1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/listers/iamauthenticator/v1alpha1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/listers/iamauthenticator/v1alpha1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/listers/iamauthenticator/v1alpha1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/listers/iamauthenticator/v1alpha1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/fake?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/fake?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/fake": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/fake?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/fake": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/discovery/fake?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/discovery/fake?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/discovery/fake": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/discovery/fake?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/discovery/fake": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/testing?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/testing?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/testing": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/testing?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/testing": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/evanphx/json-patch?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/evanphx/json-patch?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/evanphx/json-patch": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/evanphx/json-patch?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/evanphx/json-patch": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/typed/iamauthenticator/v1alpha1/fake?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/typed/iamauthenticator/v1alpha1/fake?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/typed/iamauthenticator/v1alpha1/fake": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/typed/iamauthenticator/v1alpha1/fake?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/typed/iamauthenticator/v1alpha1/fake": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/iamauthenticator?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/iamauthenticator?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/iamauthenticator": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/iamauthenticator?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/iamauthenticator": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/server?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/server?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/server": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/server?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/server": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/ini?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/ini?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/ini": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/ini?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/ini": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkio?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkio?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkio": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkio?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkio": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/client?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/client?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/client": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/client?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/client": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/client/metadata?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/client/metadata?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/client/metadata": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/client/metadata?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/client/metadata": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/request?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/request?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/request": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/request?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/request": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/awsutil?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/awsutil?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/awsutil": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/awsutil?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/awsutil": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/jmespath/go-jmespath?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/jmespath/go-jmespath?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/jmespath/go-jmespath": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/jmespath/go-jmespath?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/jmespath/go-jmespath": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkrand?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkrand?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkrand": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkrand?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkrand": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/sts?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/sts?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/sts": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/sts?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/sts": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/signer/v4?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/signer/v4?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/signer/v4": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/signer/v4?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/signer/v4": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/rest?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/rest?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/rest": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/rest?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/rest": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/query?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/query?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/query": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/query?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/query": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/corehandlers?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/corehandlers?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/corehandlers": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/corehandlers?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/corehandlers": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkuri?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkuri?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkuri": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkuri?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkuri": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/session?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/session?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/session": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/session?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/session": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/processcreds?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/processcreds?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/processcreds": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/processcreds?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/processcreds": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/csm?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/csm?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/csm": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/csm?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/csm": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/defaults?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/defaults?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/defaults": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/defaults?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/defaults": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/ec2?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/ec2?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/ec2": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/ec2?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/ec2": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/ec2/ec2iface?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/ec2/ec2iface?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/ec2/ec2iface": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/ec2/ec2iface?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/ec2/ec2iface": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/beorn7/perks/quantile?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/beorn7/perks/quantile?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/beorn7/perks/quantile": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/beorn7/perks/quantile?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/beorn7/perks/quantile": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus/internal?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus/internal?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus/internal": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus/internal?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus/internal": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_model/go?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_model/go?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_model/go": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_model/go?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_model/go": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/expfmt?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/expfmt?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/expfmt": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/expfmt?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/expfmt": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/model?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/model?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/model": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/model?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/model": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/nfs?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/nfs?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/nfs": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/nfs?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/nfs": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/internal/util?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/internal/util?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/internal/util": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/internal/util?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/internal/util": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/xfs?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/xfs?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/xfs": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/xfs?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/xfs": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus/promhttp?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus/promhttp?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus/promhttp": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus/promhttp?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus/promhttp": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/pointer?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/pointer?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/pointer": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/pointer?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/pointer": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/scheme?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/scheme?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/scheme": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/scheme?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/scheme": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/pkg/token?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/pkg/token?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/pkg/token": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/pkg/token?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/pkg/token": verifying non-authoritative meta tag
Fetching https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gofrs/flock?go-get=1
Parsing meta tags from https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gofrs/flock?go-get=1 (status code 200)
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gofrs/flock": found meta tag get.metaImport{Prefix:"sigs.k8s.io/aws-iam-authenticator", VCS:"git", RepoRoot:"https://github.com/kubernetes-sigs/aws-iam-authenticator"} at https://sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gofrs/flock?go-get=1
get "sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gofrs/flock": verifying non-authoritative meta tag
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/hashicorp/hcl/hcl/strconv
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/selection
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/utils/integer
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/selection
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/christopherhein/go-version
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/hashicorp/hcl/hcl/token
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/sys/unix
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/spf13/pflag
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/hashicorp/hcl/hcl/ast
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/hashicorp/hcl/hcl/scanner
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/hashicorp/hcl/json/token
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/hashicorp/hcl/hcl/parser
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/hashicorp/hcl/json/scanner
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/magiconair/properties
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/hashicorp/hcl/json/parser
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/hashicorp/hcl
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/spf13/cobra
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/mitchellh/mapstructure
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/crypto/ssh/terminal
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/fsnotify/fsnotify
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/sirupsen/logrus
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/pelletier/go-toml
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/spf13/afero/mem
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/text/transform
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/text/unicode/norm
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/spf13/cast
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/spf13/jwalterweatherman
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/gopkg.in/yaml.v2
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/gogo/protobuf/proto
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/reflect
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/spf13/afero
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion/queryparams
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/sets
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/json
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/naming
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/klog
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/errors
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/spf13/viper
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/golang/protobuf/proto
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/schema
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/runtime
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/gogo/protobuf/sortkeys
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/google/gofuzz
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/gopkg.in/inf.v0
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/fields
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/resource
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation/field
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/types
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/labels
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/intstr
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/text/unicode/bidi
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/net/http2/hpack
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/modern-go/concurrent
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/text/secure/bidirule
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/modern-go/reflect2
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/recognizer
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/any
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/duration
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/timestamp
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/net/idna
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/framer
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/sigs.k8s.io/yaml
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/extensions
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/compiler
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/net/http/httpguts
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/yaml
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/net/http2
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/version
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/OpenAPIv2
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/streaming
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/version
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/davecgh/go-spew/spew
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/json-iterator/go
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/tools/clientcmd/api
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/net/context/ctxhttp
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/oauth2/internal
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/oauth2
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/util/connrotation
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/tools/metrics
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/util/keyutil
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/net
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/util/cert
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/watch
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/transport
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/net/context
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/golang.org/x/time/rate
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/clock
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/evanphx/json-patch
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/util/flowcontrol
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/mergepatch
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/json
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/kube-openapi/pkg/util/proto
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/github.com/imdario/mergo
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/tools/clientcmd/api/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/util/homedir
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/sample-controller/pkg/signals
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/sys/unix
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/spf13/pflag
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/klog
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gogo/protobuf/proto
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/crypto/ssh/terminal
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gogo/protobuf/sortkeys
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/sirupsen/logrus
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/errors
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/protobuf
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/admissionregistration/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/core/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/auditregistration/v1alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/certificates/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/node/v1alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/node/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/storage/v1alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/rest/watch
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/strategicpatch
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/meta
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/plugin/pkg/client/auth/exec
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/tools/clientcmd/api/latest
sigs.k8s.io/aws-iam-authenticator/pkg/config
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/rest
sigs.k8s.io/aws-iam-authenticator/vendor/gopkg.in/inf.v0
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/google/gofuzz
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/resource
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/reflect
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/fields
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/testing
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/tools/auth
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/sets
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/tools/clientcmd
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/errors
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation/field
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/discovery/fake
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/validation
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/labels
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/conversion/queryparams
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/schema
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/json
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/naming
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/runtime
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/types
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/intstr
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/transform
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/unicode/bidi
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/unicode/norm
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/text/secure/bidirule
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http2/hpack
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/apps/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta2
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta2
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/batch/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/events/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/batch/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/batch/v2alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/extensions/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/networking/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/networking/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/policy/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/settings/v1alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/storage/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/api/storage/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/tools/reference
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/idna
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/wait
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/proto
sigs.k8s.io/aws-iam-authenticator/vendor/gopkg.in/yaml.v2
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http/httpguts
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/http2
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/scheme
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/modern-go/concurrent
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/modern-go/reflect2
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/discovery
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta2
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/auditregistration/v1alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v2alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/core/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/events/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/extensions/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/policy/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/settings/v1alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1alpha1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1beta1
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta2/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/auditregistration/v1alpha1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v2alpha1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/core/v1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/events/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/extensions/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1alpha1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/policy/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1alpha1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1beta1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/settings/v1alpha1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1alpha1/fake
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1beta1/fake
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/net
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/any
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/duration
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes/timestamp
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/json-iterator/go
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/protobuf/ptypes
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/watch
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/extensions
github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/fake
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/compiler
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/googleapis/gnostic/OpenAPIv2
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/recognizer
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/framer
sigs.k8s.io/aws-iam-authenticator/vendor/sigs.k8s.io/yaml
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/yaml
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/core/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/errors
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/protobuf
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/version
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/admissionregistration/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/auditregistration/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authentication/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/authorization/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/certificates/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/coordination/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/node/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/node/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/rbac/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/scheduling/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime/serializer/streaming
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/version
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/davecgh/go-spew/spew
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/clientcmd/api
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/pkg/apis/clientauthentication/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/context/ctxhttp
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/connrotation
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/oauth2/internal
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/rest/watch
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/metrics
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/keyutil
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/net/context
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/time/rate
sigs.k8s.io/aws-iam-authenticator/vendor/golang.org/x/oauth2
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/cert
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/clock
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/transport
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/integer
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/flowcontrol
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/hashicorp/golang-lru/simplelru
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/hashicorp/golang-lru
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/plugin/pkg/client/auth/exec
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/api/meta
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/cache
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/diff
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/rest
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/apis/meta/internalversion
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/retry
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/buffer
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/pager
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/apps/v1beta2
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/autoscaling/v2beta2
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/events/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/extensions/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/networking/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/networking/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/batch/v2alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/policy/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/settings/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/api/storage/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/reference
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/trace
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/golang/groupcache/lru
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/mergepatch
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/cache
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/third_party/forked/golang/json
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/kube-openapi/pkg/util/proto
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/scheme
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/record/util
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/util/strategicpatch
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/util/workqueue
sigs.k8s.io/aws-iam-authenticator/pkg/apis/iamauthenticator
sigs.k8s.io/aws-iam-authenticator/pkg/apis/iamauthenticator/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/tools/record
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/arn
sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/scheme
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/awserr
sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/typed/iamauthenticator/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/endpoints
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/discovery
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/apps/v1beta2
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/auditregistration/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authentication/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/authorization/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/batch/v2alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/coordination/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/core/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/events/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/extensions/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/networking/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/node/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/policy/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/rbac/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/scheduling/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/settings/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/storage/v1beta1
sigs.k8s.io/aws-iam-authenticator/pkg/arn
sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned
sigs.k8s.io/aws-iam-authenticator/pkg/generated/listers/iamauthenticator/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/evanphx/json-patch
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/ini
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes
sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/internalinterfaces
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/testing
sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/iamauthenticator/v1alpha1
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkio
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws
sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions/iamauthenticator
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/discovery/fake
sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/typed/iamauthenticator/v1alpha1/fake
sigs.k8s.io/aws-iam-authenticator/pkg/generated/informers/externalversions
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/client/metadata
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/jmespath/go-jmespath
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkrand
sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/fake
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/internal/sdkuri
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/processcreds
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/beorn7/perks/quantile
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_model/go
sigs.k8s.io/aws-iam-authenticator/pkg/controller
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/awsutil
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus/internal
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/model
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/request
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/internal/util
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/nfs
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs/xfs
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/common/expfmt
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/procfs
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/client
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/corehandlers
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/csm
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/rest
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/signer/v4
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/query
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/defaults
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/sts
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/ec2
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/utils/pointer
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/prometheus/client_golang/prometheus/promhttp
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/aws/session
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/gofrs/flock
sigs.k8s.io/aws-iam-authenticator/pkg/token
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/scheme
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1
sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset
sigs.k8s.io/aws-iam-authenticator/vendor/github.com/aws/aws-sdk-go/service/ec2/ec2iface
sigs.k8s.io/aws-iam-authenticator/pkg/server
github.com/kubernetes-sigs/aws-iam-authenticator/cmd/aws-iam-authenticator
# github.com/kubernetes-sigs/aws-iam-authenticator/cmd/aws-iam-authenticator
src/github.com/kubernetes-sigs/aws-iam-authenticator/cmd/aws-iam-authenticator/root.go:68:18: cannot use config.DefaultFeatureGates (type map["sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate".Feature]"sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate".FeatureSpec) as type map["github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate".Feature]"github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate".FeatureSpec in argument to featureGates.Add
src/github.com/kubernetes-sigs/aws-iam-authenticator/cmd/aws-iam-authenticator/root.go:96:15: cannot use featureGates (type *"github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate".featureGate) as type "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate".MutableFeatureGate in field value:
	*"github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate".featureGate does not implement "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate".MutableFeatureGate (wrong type for Add method)
		have Add(map["github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate".Feature]"github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate".FeatureSpec) error
		want Add(map["sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate".Feature]"sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/component-base/featuregate".FeatureSpec) error
src/github.com/kubernetes-sigs/aws-iam-authenticator/cmd/aws-iam-authenticator/server.go:82:43: cannot use k8sconfig (type *"github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/rest".Config) as type *"sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/rest".Config in argument to versioned.NewForConfig
src/github.com/kubernetes-sigs/aws-iam-authenticator/cmd/aws-iam-authenticator/server.go:89:26: cannot use kubeClient (type "github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes".Interface) as type "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes".Interface in argument to controller.New:
	"github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes".Interface does not implement "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes".Interface (wrong type for AdmissionregistrationV1beta1 method)
		have AdmissionregistrationV1beta1() "github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1".AdmissionregistrationV1beta1Interface
		want AdmissionregistrationV1beta1() "sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1".AdmissionregistrationV1beta1Interface
src/github.com/kubernetes-sigs/aws-iam-authenticator/cmd/aws-iam-authenticator/server.go:102:56: cannot use []"github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime".Object literal (type []"github.com/kubernetes-sigs/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime".Object) as type []"sigs.k8s.io/aws-iam-authenticator/vendor/k8s.io/apimachinery/pkg/runtime".Object in argument to "sigs.k8s.io/aws-iam-authenticator/pkg/generated/clientset/versioned/fake".NewSimpleClientset
The command '/bin/sh -c set -x &&     go get -u -v github.com/kubernetes-sigs/aws-iam-authenticator/cmd/aws-iam-authenticator' returned a non-zero code: 2

What you expected to happen:

How to reproduce it (as minimally and precisely as possible):

Anything else we need to know?:

Environment:

  • Concourse CI version: (use fly --version):
  • kubernetes-resource image version:
  • Others:

Support 1.14

1.14 is out. Could the CI be triggerd and a tag be pushed to the docker hub?

Can I put multiple kubectl commands? Or inject other shell scripts?

Is this a BUG REPORT or FEATURE REQUEST?:

  • feature

What happened:

It looks like when I try to apply multiple kubectl actions with &&, the command after && is ignored by Concourse.

First of all, is it a bug?

If not, is there a way I can apply multiple kubectl actions within ONE job?

resource_types:
- name: kubernetes
  type: docker-image
  source:
    repository: zlabjp/kubernetes-resource
    tag: "1.15"

resource:
- name: my-kubernetes-resource
  type: kubernetes
  source:
    server: https://my-server
    namespace: my-namespace
    token: my-token    

job:
- name: my-concourse-job
  plan:
  - get: source-code
    resource: source-code
    trigger: true
  - put: kubernetes-stg
    params:
      kubectl: apply -k source-code/kustomize && set image deployment/my-deployment image=alpine:3.6

Also, am I allowed to inject shell scripts within this resource? Something may be like

job:
- name: my-concourse-job
  plan:
  - get: source-code
    resource: source-code
    trigger: true
  - put: kubernetes-stg
    params:
      kubectl: apply -k source-code/kustomize
    args:
    - -exc
    - | 
       uname -a

Environment:

  • Concourse CI version: (use fly --version): 5.6.0
  • kubernetes-resource image version: 1.15.0

Quotes used for params kubectl disappear

Is this a BUG REPORT or FEATURE REQUEST?:

  • bug

What happened:
Quotes used for a json patch disappear and kubectl fails because unparseable command.
kubectl patch --namespace <namespace> statefulset <namespace> --type=json -p=[{op: replace, path: /spec/template/spec/containers/0/image, value:<image>}]

error: unable to parse "[{op:": yaml: line 1: did not find expected node content

What you expected to happen:
They'd be preserved in order for kubectl to work

How to reproduce it (as minimally and precisely as possible):
Use a kubectl params like:
patch --namespace <namespace> statefulset <statefulset> --type=json -p='[{"op": "replace", "path": "/spec/template/spec/containers/0/image", "value":"<image>"}]'

Anything else we need to know?:
Tested multiple ways of escaping the line without success

Environment:

  • Concourse CI version: (use fly --version): 3.14.1
  • kubernetes-resource image version: 1.12
  • Others:

Configure container environment

Is there a way to configure the container environment? I would like to pass secrets (e.g. database uri) to the container.

chars \ " make parse issue

kubectl: patch deployment bugsystem -p "{\"spec\":{\"template\":{\"metadata\":{\"labels\":{\"updated_at\":\"date +'%s'\"}}}}}"

To further debug and diagnose cluster problems, use 'kubectl cluster-info dump'.
+ kubectl patch deployment bugsystem -p '"{\"spec\":{\"template\":{\"metadata\":{\"labels\":{\"updated_at\":\"`date' '+'\''%s'\''`\"}}}}}"'
error: unable to parse "\"{\\\"spec\\\":{\\\"template\\\":{\\\"metadata\\\":{\\\"labels\\\":{\\\"updated_at\\\":\\\"`date": yaml: found unexpected end of stream

Look at '. This char wrap "{...}" for some reason and probably this make an issue.

Not really sure it is bug on concourse level or resource level and how to fix it.

Not able to connect to kubernetes cluster

  • kubectl config set-credentials auth --token=**********
    User "auth" set.
  • kubectl config set-cluster cluster --server=https:/com --certificate-authority=/kubernetes-resource-ca_file.3Wd9PD
    Cluster "cluster" set.
  • kubectl config set-context kubernetes-resource --user=auth --cluster=cluster --namespace=default
    Context "kubernetes-resource" created.
  • kubectl config use-context kubernetes-resource
    Switched to context "kubernetes-resource".
  • kubectl version
    Client Version: version.Info{Major:"1", Minor:"9", GitVersion:"v1.9.9", GitCommit:"57729ea3d9a1b75f3fc7bbbadc597ba707d47c8a", GitTreeState:"clean", BuildDate:"2018-06-29T01:14:35Z", GoVersion:"go1.9.3", Compiler:"gc", Platform:"linux/amd64"}
    Unable to connect to the server: x509: certificate signed by unknown authority
    ERROR: Failed with error code 1

semver and kubectl param

Hey. I can't figure out how to add the semver value to the kubectl param. My kubectl param right now is: kubectl: set image deployment hello hello=hello-world:version/version --record. I need to somehow put in the semver value to the image tag, but how?

Unable to connect with Google Kubernetes engine

Is this a BUG REPORT or FEATURE REQUEST?:

  • bug

What happened:
I am trying to deploy my application to GKE, from concourse pipeline, and after configuring the kubeconfig file and during execution it's giving below error:

+ kubectl version
Client Version: version.Info{Major:"1", Minor:"12", GitVersion:"v1.12.2", GitCommit:"17c77c7898218073f14c8d573582e8d2313dc740", GitTreeState:"clean", BuildDate:"2018-10-24T06:54:59Z", GoVersion:"go1.10.4", Compiler:"gc", Platform:"linux/amd64"}
The connection to the server localhost:8080 was refused - did you specify the right host or port?

Not sure why it is trying to connect with localhost instead of cluster IP address.

Environment:

  • Concourse CI version: (use fly --version):v3.14.1
  • kubernetes-resource image version:1.12

Below is the snippet from pipeline.yaml file:

- name: kubernetes
  type: docker-image
  source:
    repository: zlabjp/kubernetes-resource
    tag: "1.12"

resources:


- name: k8s
  type: kubernetes
  source:
    kubeconfig: |
      apiVersion: v1
      clusters:
      - cluster:
          certificate-authority-data: ((cert_auth-data))
      server: https://xx.xx.xx.xx:8080
      name: ((name))
      contexts:
      - context:
          cluster: ((name))
          user: ((name))
        name: ((name))
      current-context: ((name))
      kind: Config
      preferences: {}
      users:
      - name: ((name))
        user:
          client-certificate-data: ((client-certificate-data))
          client-key-data: ((client-key-data))

Support for writing stdin to a parameter.

Is this a BUG REPORT or FEATURE REQUEST?:

  • feature

What happened: Having a hard time specifying JSON on the command line. And I don't wish to read from a file in git/etc in every case. Need a clean way to code stdin for kubectl into the job.

What you expected to happen: A stdin param would make this easy.

How to reproduce it (as minimally and precisely as possible): Try bash here docs or bash here strings with apply operations that idempotently create namespaces. Quoting and carriage returns make these hacks untenable.

Anything else we need to know?: I generate my pipelines from jsonnet. It renders to json/yaml all the same.

Environment: docker-compose file from main repo.

Here's a concept sketch of what I'm looking for. Perhaps there is already something like this that I missed.

jobs:
- name: kubectl.create_namespace(docker-for-desktop, common)
  plan:
  - params:
      kubectl: apply -f -
      stdin: |
        apiVersion: v1
        kind: Namespace
        metadata:
          labels:
            name: common
          name: common
    put: kubectl.profile(docker-for-desktop)

Does not work with GCP Kubernetes clusters

Following your advice from #17, I set up a bot serviceaccount and rolebinding like so:

kubectl create serviceaccount --namespace kube-system bot
kubectl create rolebinding bot-cluster-role --clusterrole=cluster-admin --serviceaccount=kube-system:bot

Next, I used kubernetes-scripts to generate a kubeconfig and save it to a Kubernetes secret:

git clone https://github.com/zlabjp/kubernetes-scripts.git
cd kubernetes-scripts
./create-kubeconfig bot --namespace kube-system > kubeconfig.yaml
kubectl create secret generic kubeconfig-bot --namespace concourse-main --from-file=value=kubeconfig.yaml

All gravy.

I set up the resource:

resources:
- name: kubernetes-secret
  type: kubernetes
  source:
    kubeconfig: ((kubeconfig-bot))

jobs:
- name: refresh-github-auth-every-55m
  ...
  - put: kubernetes-secret
    params:
      kubectl: get services

The kubeconfig must be working, because the output shows that we're connected to the cluster:
image

The kubectl version and kubectl cluster-info appear to work, as if the authorization of the bot user worked. But no other kubectl commands, like kubectl get services work. Therefore, I am not able to apply the secret that I wish to apply in this pipeline.

The insidious error:

User "system:serviceaccount:kube-system:bot" cannot list nodes at the cluster scope: Unknown user "system:serviceaccount:kube-system:bot"

I have tried every possible combination of roles and role bindings, so this doesn't appear to be related to RBAC at all. But I'm not sure...

Any help is greatly appreciated!

Wait for pods to be ready status returns none for pods with Pending status

Version:
repository: zlabjp/kubernetes-resource
tag: "1.10"

Using above concourse resource "Waiting for pods to be ready" status check using following template returns nothing for pod with status pending.

template="$(cat <<EOL
{{- range .items -}}
{{- if and (not .metadata.deletionTimestamp) (ne .status.phase "Failed") (ne .status.phase "Succeeded") -}}
{{.metadata.name}}{{range .status.conditions}}{{if eq .type "Ready"}} {{.status}}{{end}}{{end}}{{"\n"}}
{{- end -}}
{{- end -}}
EOL
)"

Below is output from running with this template in my k8s environment:

[root@k8s-master1 system-assets-service]# kubectl get pods -n ngci -o wide --show-labels
NAME READY STATUS RESTARTS AGE IP NODE LABELS
system-assets-service-55f7856f5-sfw22 0/3 Pending 0 12m app=system-assets-service,pod-template-hash=119341291,version=0.0.1-dev.4

[root@k8s-master1 system-assets-service]# echo $template
{{- range .items -}} {{- if and (not .metadata.deletionTimestamp) (ne .status.phase "Failed") (ne .status.phase "Succeeded") -}} {{.metadata.name}}{{range .status.conditions}}{{if eq .type "Ready"}} {{.status}}{{end}}{{end}}{{"\n"}} {{- end -}} {{- end -}}

[root@k8s-master1 system-assets-service]# kubectl get pods -o template --template="$template" -n ngci
system-assets-service-55f7856f5-sfw22

Job definition in Concourse:

  • name: job-k8s-deployment
    public: true
    serial: true
    plan:
    • get: service-repo
      passed: [job-build-((service-name))]
      trigger: true
    • put: k8s
      params:
      kubectl: apply -f service-repo/deployment.yml
      namespace: ngci
      wait_until_ready: 60
      wait_until_ready_interval: 5
      wait_until_ready_selector: app=((service-name))
    • put: k8s
      params:
      kubectl: get pods -o wide --show-labels
      namespace: ngci
      wait_until_ready: 60
      wait_until_ready_interval: 5
      wait_until_ready_selector: app=((service-name))
      on_failure:
      put: k8s
      params:
      namespace: ngci
      kubectl: delete -f service-repo/deployment.yml

Return Status Concourse:

  • kubectl get pods -o wide --show-labels
    NAME READY STATUS RESTARTS AGE IP NODE LABELS
    system-assets-service-55f7856f5-k979t 0/3 Pending 0 1m app=system-assets-service,pod-template-hash=119341291,version=0.0.1-dev.4
    Waiting for pods to be ready for 60s (interval: 5s, selector: app=system-assets-service)
    Waiting for pods to be ready... (0/0)

Request:
Return value for pods with pending status so concourse does not continue when pods are in pending status.

Possibilty to get a resource from kubernetes

Is this a BUG REPORT or FEATURE REQUEST?:

  • feature

Would you be open to a PR expanding the in to do a kubectl get command to get something out of kubernetes. We would like some info residing in kubernetes to continue our build. For now we will not use it as a trigger.

Error loading config file: did not find expected key

We've been using this resource for a while without any issues, until we suddenly seem to hit a bug today. We're using an image with tag 1.11, which to our surprise seems to be updated 13 hours ago.

Since then, we have this issue:

kubectl config set-credentials auth --token=**********
error: Error loading config file "/kubernetes-resource-kubeconfig.9YMQIe": yaml: line 15: did not find expected key

The error seems to come from this line (which was recently changed):
https://github.com/zlabjp/kubernetes-resource/blob/master/assets/common.sh#L108

Any idea what may have happened and how we can fix this?

All commands fail when CronJobs exists in the k8s cluster

Hi,

I'm facing an issue that is caused maybe from the miscount of pods.

When I run the following pipeline.

resource_types:
  - name: kubernetes
    type: docker-image
    source:
      repository: zlabjp/kubernetes-resource
      tag: "1.9"
resources:
  - name: kubernetes-development-aws
    type: kubernetes
    source:
      server: https://kubernetes01.web.ryoma0923.work:6443
      namespace: default
      token: --------- # deleted because this is secret.
      insecure_skip_tls_verify: true
jobs:
  - name: job-get-all
    plan:
      - put: kubernetes-development-aws
        params:
          kubectl: get all

I got the log like below.

+ kubectl config set-credentials auth --token=**********
User "auth" set.
+ kubectl config set-cluster cluster --server=https://kubernetes01.web.ryoma0923.work:6443 --insecure-skip-tls-verify
Cluster "cluster" set.
+ kubectl config set-context kubernetes-resource --user=auth --cluster=cluster --namespace=default
Context "kubernetes-resource" created.
+ kubectl config use-context kubernetes-resource
Switched to context "kubernetes-resource".
+ kubectl version
Client Version: version.Info{Major:"1", Minor:"9", GitVersion:"v1.9.6", GitCommit:"9f8ebd171479bec0ada837d7ee641dec2f8c6dd1", GitTreeState:"clean", BuildDate:"2018-03-21T15:21:50Z", GoVersion:"go1.9.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"9+", GitVersion:"v1.9.5-rancher1", GitCommit:"f11c6299ce2b927c3e34ea2afdf57cd08596802f", GitTreeState:"clean", BuildDate:"2018-03-20T16:40:55Z", GoVersion:"go1.9.3", Compiler:"gc", Platform:"linux/amd64"}
+ kubectl cluster-info
Kubernetes master is running at https://kubernetes01.web.ryoma0923.work:6443

To further debug and diagnose cluster problems, use 'kubectl cluster-info dump'.
+ kubectl get all
NAME                         DESIRED   SUCCESSFUL   AGE
jobs/batch-test-1523807100   1         1            3m
jobs/batch-test-1523807160   1         1            2m
jobs/batch-test-1523807220   1         1            1m
jobs/batch-test-1523807280   1         0            0s

NAME                  SCHEDULE      SUSPEND   ACTIVE    LAST SCHEDULE   AGE
cronjobs/batch-test   */1 * * * *   False     1         9s              20m

NAME                             READY     STATUS              RESTARTS   AGE
po/batch-test-1523807280-qbstg   0/1       ContainerCreating   0          0s

NAME             TYPE        CLUSTER-IP   EXTERNAL-IP   PORT(S)   AGE
svc/kubernetes   ClusterIP   10.43.0.1    <none>        443/TCP   2h
Waiting for pods to be ready for 30s (interval: 3s, selector: '')
Waiting for pods to be ready... (0/4)
Waiting for pods to be ready... (0/4)
Waiting for pods to be ready... (0/4)
Waiting for pods to be ready... (0/3)
Waiting for pods to be ready... (0/3)
Waiting for pods to be ready... (0/3)
Waiting for pods to be ready... (0/3)
Waiting for pods to be ready... (0/3)
Waiting for pods to be ready... (0/3)
Waiting for pods to be ready... (0/3)
Waited for 30s, but the following pods are not ready yet.
- batch-test-1523807160-hb8w4
- batch-test-1523807220-cj5tf
- batch-test-1523807280-qbstg

ERROR: Failed with error code 1

This seems to count the completed pods of CronJob,
so are there any workarounds?

FYI, I'm using hte following environment.

OS: Ubuntu 16.04
Docker version: 17.03-ce
Kubernetes version: 1.9.5

If there's the shortage of information, please let me know.

Regards,

How to run docker container?

In docker container:

#kubectl get pod

It returns:

The connection to the server localhost:8080 was refused - did you specify the right host or port?

How to handle this?

Allow certificate_authority to be a base64 single line string (from Hashicorp Vault)

Is this a BUG REPORT or FEATURE REQUEST?:

  • feature

What happened:
Tried setting certificate_authority: ((k8s-ca-cert)) to a variable stored in Vault which is base64 encoded (since Vault doesn't appear to like our multiline PEMs.

What you expected to happen:
It would be nice if the resource could detect a one-line string provided for certificate_authority, and base64 decode it (revealing the multi-line base64 encoded PEM).

How to reproduce it (as minimally and precisely as possible):

- name: k8s-cluster
  type: kubernetes
  source:
    server: ((kubernetes_server_url))
    certificate_authority: ((kubernetes_ca_cert))
    namespace: ((kubernetes_namespace))
    token: ((kubernetes_token))
    # We have to fall back to insecure, or run a task to pull in the b64 string as an environment 
    # variable and decode it, and locate the file in the following steps.
    #insecure_skip_tls_verify: true

Anything else we need to know?:
No

Environment:

  • Concourse CI version: (use fly --version): 3.14.1
  • kubernetes-resource image version: 1.8
  • Others:

You must specify "server" and "token"

Hey I'm testing concourse on k8s, installed from the stable chart.

I have set rbac.workerServiceAccountName to a service account that has access to modify deployments on this cluster.

I get this error:

ERROR: You must specify "server" and "token", if not specify "kubeconfig".

Do I really need to specify these when the whole thing is already running on k8s? i.e. the token and endpoint to access the k8s API should all be available. Or I still need to set these?

Pull configuration from a blobstore

I'm currently building a pipeline that first creates a cluster, then performs operations on it. Because of that, the kubeconfig is not available at set-pipeline-time. I would like to be able to specify a remote location for the kubeconfig, similar to how the terraform-resource supports storage.* configuration.

My personal use-case is to pull from S3.

Support token when passing in kubeconfig

Our situation is that we give out kubeconfigs without secrets so that users can put them in their git repositories. We then provision the token as a separate secret to be fetched with vault or something else.

The current common.sh however, does not allow the token to be passed in if you pass in a kubeconfig or kubeconfig_file.

I have made a PR to fix this which is backwards compatible and just moves the existing logic.

We really love this resource and especially the wait until ready logic and hope the PR could be added or in some other form our case be supported. Thanks!

Wishlist: Wait Until Kubernetes Job/Pod Complete

There is a lot of power/utility in this resource by adding native support for waiting for jobs or pods to be complete.

Concourse could be used to kickoff asynchronous kubernetes tasks and the concourse build could fail on kubernetes job failure.

I only have short-lived jobs in mind, more care might be needed to support long-lived jobs.

UPDATE: I realized that for many use cases concourse tasks are equivalent to kubernetes jobs. So I think this is only useful if you want the job to run within the target kubernetes cluster and not from concourse.

How to pass the build versions dynamically in kubectl command

Hi,

I am pushing the docker images to ECR with version number which is stored in S3 and i am not able to use those version number in kubectl command dynamically

eg:

  • put: k8s
    params:
    kubectl: set image deployment/nginx0-deployment nginx=1.amazonaws.com/test
    tag: version/number
    wait_until_ready: 300

tag: version/number : this value not taking in kubectl argument dynamically

minikube certificate

Is this a BUG REPORT or FEATURE REQUEST?:

  • bug

What happened:
I tried to use the custom resource to deploy on minikube

What you expected to happen:
I just wanted to execute a simple kubectl get pod to see if i can execute kubectl comands

How to reproduce it (as minimally and precisely as possible):
i tried to pass the ca.cert file (and almost any other .cert .pem and .key file) from .minikube to the parameter certificate_authority but it did not work.
I also added a token to the token field which i got from kubeadm

this did not work so i copied my entire kubeconf file into source



resource_types:
- name: kubernetes
  type: docker-image
  source:
    repository: zlabjp/kubernetes-resource
    tag: "1.13"

resources:
- name: prod
  type: kubernetes
  source:
    kubeconfig: ((kubeconfig))
    # certificate-authority: ((ca-cert))
    # server: https://<minikubeIP>:8443
    # token: <tokken i got got ftom kubeadm >


jobs:
- name: prod-deploy
  plan:
  - put: prod
    params:
      kubectl: get pods

my variable file:

`kubeconfig:
apiVersion: v1
clusters:

  • cluster:
    certificate-authority: /home/atm/.minikube/ca.crt
    server: https://:8443
    name: minikube
    contexts:
  • context:
    cluster: minikube
    user: minikube
    name: minikube
    current-context: minikube
    kind: Config
    preferences: {}
    users:
  • name: minikube
    user:
    client-certificate: /home/atm/.minikube/client.crt
    client-key: /home/atm/.minikube/client.key
    `

Anything else we need to know?:

I also tried to insert ca.crt client.crt and client.key directly into the file but it still did not work

I have no idea what to try anymore. Pls help :(

Environment:

  • Concourse CI version: (use fly --version): 4.2.1
  • kubernetes-resource image version: minikube version: v0.32.0
  • Others:
    i run concourse inside a docker container
    already tried to mount a persistent volume and put all the certs in int

Allow parameters like namespace to be passed from a file

  • feature

I think it would be a good idea to allow certain parameters (e.g., namespace, context) to be specified dynamically via an input file. Propose adding optional parameters like namespace_file that, if provided, would set the namespace variable to the contents of that file.

This would allow for environments where namespaces aren't fixed and are more dynamic. For example, deploying a branch or PR to its own namespace for testing.

EKS cluster name being ignored

When specifying EKS, the resource seems to ignore the configuration.

 - name: eks-deploy
    type: kubernetes
    source:
      use_aws_iam_authenticator: true
      aws_eks_cluster_name: <MY-CLUSTER-NAME>
      aws_access_key_id: ((aws-access-key-id-dev))
      aws_secret_access_key: ((aws-secret-access-key-dev))
+ kubectl config set-cluster cluster --server=
20:43:15
Cluster "cluster" set.
20:43:15
+ kubectl config set-context kubernetes-resource --cluster=cluster --user auth
20:43:15
Context "kubernetes-resource" created.
20:43:15
+ kubectl config use-context kubernetes-resource
20:43:15
Switched to context "kubernetes-resource".
20:43:15
+ kubectl version
20:43:15
Client Version: version.Info{Major:"1", Minor:"17", GitVersion:"v1.17.4", GitCommit:"8d8aa39598534325ad77120c120a22b3a990b5ea", GitTreeState:"clean", BuildDate:"2020-03-12T21:03:42Z", GoVersion:"go1.13.8", Compiler:"gc", Platform:"linux/amd64"}
20:43:15
The connection to the server localhost:8080 was refused - did you specify the right host or port?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.