├── .ci-operator.yaml ├── .gitignore ├── CONTRIBUTION.md ├── Dockerfile.tools ├── LICENSE ├── Makefile ├── OWNERS ├── cmd └── bootstrapper │ ├── initialize_kubelet.go │ ├── main.go │ └── uninstall_kubelet.go ├── docs └── README.md ├── go.mod ├── go.sum ├── hack ├── run-wmcb-ci-e2e-test.sh ├── verify-gofmt.sh └── verify-vendor.sh ├── images └── PR-workflow.png ├── internal ├── internal.go └── test │ ├── clusterinfo │ └── openshift.go │ ├── credentials │ └── credentials.go │ ├── framework │ ├── framework.go │ └── windowsvm.go │ ├── go.mod │ ├── go.sum │ ├── providers │ ├── aws │ │ └── aws.go │ └── cloudprovider.go │ ├── test.go │ ├── vendor │ ├── github.com │ │ ├── aws │ │ │ └── aws-sdk-go │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── NOTICE.txt │ │ │ │ ├── aws │ │ │ │ ├── awserr │ │ │ │ │ ├── error.go │ │ │ │ │ └── types.go │ │ │ │ ├── awsutil │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── path_value.go │ │ │ │ │ ├── prettify.go │ │ │ │ │ └── string_value.go │ │ │ │ ├── client │ │ │ │ │ ├── client.go │ │ │ │ │ ├── default_retryer.go │ │ │ │ │ ├── logger.go │ │ │ │ │ └── metadata │ │ │ │ │ │ └── client_info.go │ │ │ │ ├── config.go │ │ │ │ ├── context_1_5.go │ │ │ │ ├── context_1_9.go │ │ │ │ ├── context_background_1_5.go │ │ │ │ ├── context_background_1_7.go │ │ │ │ ├── context_sleep.go │ │ │ │ ├── convert_types.go │ │ │ │ ├── corehandlers │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── param_validator.go │ │ │ │ │ └── user_agent.go │ │ │ │ ├── credentials │ │ │ │ │ ├── chain_provider.go │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── ec2rolecreds │ │ │ │ │ │ └── ec2_role_provider.go │ │ │ │ │ ├── endpointcreds │ │ │ │ │ │ └── provider.go │ │ │ │ │ ├── env_provider.go │ │ │ │ │ ├── example.ini │ │ │ │ │ ├── processcreds │ │ │ │ │ │ └── provider.go │ │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ │ ├── static_provider.go │ │ │ │ │ └── stscreds │ │ │ │ │ │ ├── assume_role_provider.go │ │ │ │ │ │ └── web_identity_provider.go │ │ │ │ ├── csm │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── enable.go │ │ │ │ │ ├── metric.go │ │ │ │ │ ├── metric_chan.go │ │ │ │ │ ├── metric_exception.go │ │ │ │ │ └── reporter.go │ │ │ │ ├── defaults │ │ │ │ │ ├── defaults.go │ │ │ │ │ └── shared_config.go │ │ │ │ ├── doc.go │ │ │ │ ├── ec2metadata │ │ │ │ │ ├── api.go │ │ │ │ │ └── service.go │ │ │ │ ├── endpoints │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── dep_service_ids.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── v3model.go │ │ │ │ │ └── v3model_codegen.go │ │ │ │ ├── errors.go │ │ │ │ ├── jsonvalue.go │ │ │ │ ├── logger.go │ │ │ │ ├── request │ │ │ │ │ ├── connection_reset_error.go │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── http_request.go │ │ │ │ │ ├── offset_reader.go │ │ │ │ │ ├── request.go │ │ │ │ │ ├── request_1_7.go │ │ │ │ │ ├── request_1_8.go │ │ │ │ │ ├── request_context.go │ │ │ │ │ ├── request_context_1_6.go │ │ │ │ │ ├── request_pagination.go │ │ │ │ │ ├── retryer.go │ │ │ │ │ ├── timeout_read_closer.go │ │ │ │ │ ├── validation.go │ │ │ │ │ └── waiter.go │ │ │ │ ├── session │ │ │ │ │ ├── cabundle_transport.go │ │ │ │ │ ├── cabundle_transport_1_5.go │ │ │ │ │ ├── cabundle_transport_1_6.go │ │ │ │ │ ├── credentials.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── env_config.go │ │ │ │ │ ├── session.go │ │ │ │ │ └── shared_config.go │ │ │ │ ├── signer │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ ├── uri_path.go │ │ │ │ │ │ └── v4.go │ │ │ │ ├── types.go │ │ │ │ ├── url.go │ │ │ │ ├── url_1_7.go │ │ │ │ └── version.go │ │ │ │ ├── internal │ │ │ │ ├── ini │ │ │ │ │ ├── ast.go │ │ │ │ │ ├── comma_token.go │ │ │ │ │ ├── comment_token.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── empty_token.go │ │ │ │ │ ├── expression.go │ │ │ │ │ ├── fuzz.go │ │ │ │ │ ├── ini.go │ │ │ │ │ ├── ini_lexer.go │ │ │ │ │ ├── ini_parser.go │ │ │ │ │ ├── literal_tokens.go │ │ │ │ │ ├── newline_token.go │ │ │ │ │ ├── number_helper.go │ │ │ │ │ ├── op_tokens.go │ │ │ │ │ ├── parse_error.go │ │ │ │ │ ├── parse_stack.go │ │ │ │ │ ├── sep_tokens.go │ │ │ │ │ ├── skipper.go │ │ │ │ │ ├── statement.go │ │ │ │ │ ├── value_util.go │ │ │ │ │ ├── visitor.go │ │ │ │ │ ├── walker.go │ │ │ │ │ └── ws_token.go │ │ │ │ ├── sdkio │ │ │ │ │ ├── io_go1.6.go │ │ │ │ │ └── io_go1.7.go │ │ │ │ ├── sdkrand │ │ │ │ │ └── locked_source.go │ │ │ │ ├── sdkuri │ │ │ │ │ └── path.go │ │ │ │ └── shareddefaults │ │ │ │ │ ├── ecs_container.go │ │ │ │ │ └── shared_config.go │ │ │ │ ├── private │ │ │ │ └── protocol │ │ │ │ │ ├── ec2query │ │ │ │ │ ├── build.go │ │ │ │ │ └── unmarshal.go │ │ │ │ │ ├── host.go │ │ │ │ │ ├── host_prefix.go │ │ │ │ │ ├── idempotency.go │ │ │ │ │ ├── json │ │ │ │ │ └── jsonutil │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ └── unmarshal.go │ │ │ │ │ ├── jsonvalue.go │ │ │ │ │ ├── payload.go │ │ │ │ │ ├── query │ │ │ │ │ ├── build.go │ │ │ │ │ ├── queryutil │ │ │ │ │ │ └── queryutil.go │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ └── unmarshal_error.go │ │ │ │ │ ├── rest │ │ │ │ │ ├── build.go │ │ │ │ │ ├── payload.go │ │ │ │ │ └── unmarshal.go │ │ │ │ │ ├── timestamp.go │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ └── xml │ │ │ │ │ └── xmlutil │ │ │ │ │ ├── build.go │ │ │ │ │ ├── unmarshal.go │ │ │ │ │ └── xml_to_struct.go │ │ │ │ └── service │ │ │ │ ├── ec2 │ │ │ │ ├── api.go │ │ │ │ ├── customizations.go │ │ │ │ ├── doc.go │ │ │ │ ├── ec2iface │ │ │ │ │ └── interface.go │ │ │ │ ├── errors.go │ │ │ │ ├── service.go │ │ │ │ └── waiters.go │ │ │ │ ├── iam │ │ │ │ ├── api.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── service.go │ │ │ │ └── waiters.go │ │ │ │ └── sts │ │ │ │ ├── api.go │ │ │ │ ├── customizations.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── service.go │ │ │ │ └── stsiface │ │ │ │ └── interface.go │ │ ├── davecgh │ │ │ └── go-spew │ │ │ │ ├── LICENSE │ │ │ │ └── spew │ │ │ │ ├── bypass.go │ │ │ │ ├── bypasssafe.go │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── dump.go │ │ │ │ ├── format.go │ │ │ │ └── spew.go │ │ ├── go-logr │ │ │ └── logr │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── go.mod │ │ │ │ └── logr.go │ │ ├── gogo │ │ │ └── protobuf │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── proto │ │ │ │ ├── Makefile │ │ │ │ ├── clone.go │ │ │ │ ├── custom_gogo.go │ │ │ │ ├── decode.go │ │ │ │ ├── deprecated.go │ │ │ │ ├── discard.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration_gogo.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_gogo.go │ │ │ │ ├── equal.go │ │ │ │ ├── extensions.go │ │ │ │ ├── extensions_gogo.go │ │ │ │ ├── lib.go │ │ │ │ ├── lib_gogo.go │ │ │ │ ├── message_set.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_reflect_gogo.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── pointer_unsafe_gogo.go │ │ │ │ ├── properties.go │ │ │ │ ├── properties_gogo.go │ │ │ │ ├── skip_gogo.go │ │ │ │ ├── table_marshal.go │ │ │ │ ├── table_marshal_gogo.go │ │ │ │ ├── table_merge.go │ │ │ │ ├── table_unmarshal.go │ │ │ │ ├── table_unmarshal_gogo.go │ │ │ │ ├── text.go │ │ │ │ ├── text_gogo.go │ │ │ │ ├── text_parser.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── timestamp_gogo.go │ │ │ │ ├── wrappers.go │ │ │ │ └── wrappers_gogo.go │ │ │ │ └── sortkeys │ │ │ │ └── sortkeys.go │ │ ├── golang │ │ │ └── protobuf │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── proto │ │ │ │ ├── buffer.go │ │ │ │ ├── defaults.go │ │ │ │ ├── deprecated.go │ │ │ │ ├── discard.go │ │ │ │ ├── extensions.go │ │ │ │ ├── properties.go │ │ │ │ ├── proto.go │ │ │ │ ├── registry.go │ │ │ │ ├── text_decode.go │ │ │ │ ├── text_encode.go │ │ │ │ ├── wire.go │ │ │ │ └── wrappers.go │ │ │ │ └── ptypes │ │ │ │ ├── any.go │ │ │ │ ├── any │ │ │ │ └── any.pb.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration │ │ │ │ └── duration.pb.go │ │ │ │ ├── timestamp.go │ │ │ │ └── timestamp │ │ │ │ └── timestamp.pb.go │ │ ├── google │ │ │ ├── go-github │ │ │ │ └── v29 │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── github │ │ │ │ │ ├── activity.go │ │ │ │ │ ├── activity_events.go │ │ │ │ │ ├── activity_notifications.go │ │ │ │ │ ├── activity_star.go │ │ │ │ │ ├── activity_watching.go │ │ │ │ │ ├── admin.go │ │ │ │ │ ├── admin_orgs.go │ │ │ │ │ ├── admin_stats.go │ │ │ │ │ ├── admin_users.go │ │ │ │ │ ├── apps.go │ │ │ │ │ ├── apps_installation.go │ │ │ │ │ ├── apps_manifest.go │ │ │ │ │ ├── apps_marketplace.go │ │ │ │ │ ├── authorizations.go │ │ │ │ │ ├── checks.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_types.go │ │ │ │ │ ├── gists.go │ │ │ │ │ ├── gists_comments.go │ │ │ │ │ ├── git.go │ │ │ │ │ ├── git_blobs.go │ │ │ │ │ ├── git_commits.go │ │ │ │ │ ├── git_refs.go │ │ │ │ │ ├── git_tags.go │ │ │ │ │ ├── git_trees.go │ │ │ │ │ ├── github-accessors.go │ │ │ │ │ ├── github.go │ │ │ │ │ ├── gitignore.go │ │ │ │ │ ├── interactions.go │ │ │ │ │ ├── interactions_orgs.go │ │ │ │ │ ├── interactions_repos.go │ │ │ │ │ ├── issues.go │ │ │ │ │ ├── issues_assignees.go │ │ │ │ │ ├── issues_comments.go │ │ │ │ │ ├── issues_events.go │ │ │ │ │ ├── issues_labels.go │ │ │ │ │ ├── issues_milestones.go │ │ │ │ │ ├── issues_timeline.go │ │ │ │ │ ├── licenses.go │ │ │ │ │ ├── messages.go │ │ │ │ │ ├── migrations.go │ │ │ │ │ ├── migrations_source_import.go │ │ │ │ │ ├── migrations_user.go │ │ │ │ │ ├── misc.go │ │ │ │ │ ├── orgs.go │ │ │ │ │ ├── orgs_hooks.go │ │ │ │ │ ├── orgs_members.go │ │ │ │ │ ├── orgs_outside_collaborators.go │ │ │ │ │ ├── orgs_projects.go │ │ │ │ │ ├── orgs_users_blocking.go │ │ │ │ │ ├── projects.go │ │ │ │ │ ├── pulls.go │ │ │ │ │ ├── pulls_comments.go │ │ │ │ │ ├── pulls_reviewers.go │ │ │ │ │ ├── pulls_reviews.go │ │ │ │ │ ├── reactions.go │ │ │ │ │ ├── repos.go │ │ │ │ │ ├── repos_collaborators.go │ │ │ │ │ ├── repos_comments.go │ │ │ │ │ ├── repos_commits.go │ │ │ │ │ ├── repos_community_health.go │ │ │ │ │ ├── repos_contents.go │ │ │ │ │ ├── repos_deployments.go │ │ │ │ │ ├── repos_forks.go │ │ │ │ │ ├── repos_hooks.go │ │ │ │ │ ├── repos_invitations.go │ │ │ │ │ ├── repos_keys.go │ │ │ │ │ ├── repos_merging.go │ │ │ │ │ ├── repos_pages.go │ │ │ │ │ ├── repos_prereceive_hooks.go │ │ │ │ │ ├── repos_projects.go │ │ │ │ │ ├── repos_releases.go │ │ │ │ │ ├── repos_stats.go │ │ │ │ │ ├── repos_statuses.go │ │ │ │ │ ├── repos_traffic.go │ │ │ │ │ ├── search.go │ │ │ │ │ ├── strings.go │ │ │ │ │ ├── teams.go │ │ │ │ │ ├── teams_discussion_comments.go │ │ │ │ │ ├── teams_discussions.go │ │ │ │ │ ├── teams_members.go │ │ │ │ │ ├── timestamp.go │ │ │ │ │ ├── users.go │ │ │ │ │ ├── users_administration.go │ │ │ │ │ ├── users_blocking.go │ │ │ │ │ ├── users_emails.go │ │ │ │ │ ├── users_followers.go │ │ │ │ │ ├── users_gpg_keys.go │ │ │ │ │ ├── users_keys.go │ │ │ │ │ ├── users_projects.go │ │ │ │ │ ├── with_appengine.go │ │ │ │ │ └── without_appengine.go │ │ │ ├── go-querystring │ │ │ │ ├── LICENSE │ │ │ │ └── query │ │ │ │ │ └── encode.go │ │ │ └── gofuzz │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── fuzz.go │ │ │ │ └── go.mod │ │ ├── googleapis │ │ │ └── gnostic │ │ │ │ ├── LICENSE │ │ │ │ ├── compiler │ │ │ │ ├── README.md │ │ │ │ ├── context.go │ │ │ │ ├── error.go │ │ │ │ ├── extensions.go │ │ │ │ ├── helpers.go │ │ │ │ ├── main.go │ │ │ │ └── reader.go │ │ │ │ ├── extensions │ │ │ │ ├── README.md │ │ │ │ ├── extension.pb.go │ │ │ │ ├── extension.proto │ │ │ │ └── extensions.go │ │ │ │ ├── jsonschema │ │ │ │ ├── README.md │ │ │ │ ├── base.go │ │ │ │ ├── display.go │ │ │ │ ├── models.go │ │ │ │ ├── operations.go │ │ │ │ ├── reader.go │ │ │ │ ├── schema.json │ │ │ │ └── writer.go │ │ │ │ └── openapiv2 │ │ │ │ ├── OpenAPIv2.go │ │ │ │ ├── OpenAPIv2.pb.go │ │ │ │ ├── OpenAPIv2.proto │ │ │ │ ├── README.md │ │ │ │ ├── document.go │ │ │ │ └── openapi-2.0.json │ │ ├── imdario │ │ │ └── mergo │ │ │ │ ├── .deepsource.toml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── map.go │ │ │ │ ├── merge.go │ │ │ │ └── mergo.go │ │ ├── jmespath │ │ │ └── go-jmespath │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── api.go │ │ │ │ ├── astnodetype_string.go │ │ │ │ ├── functions.go │ │ │ │ ├── interpreter.go │ │ │ │ ├── lexer.go │ │ │ │ ├── parser.go │ │ │ │ ├── toktype_string.go │ │ │ │ └── util.go │ │ ├── json-iterator │ │ │ └── go │ │ │ │ ├── .codecov.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gopkg.lock │ │ │ │ ├── Gopkg.toml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── adapter.go │ │ │ │ ├── any.go │ │ │ │ ├── any_array.go │ │ │ │ ├── any_bool.go │ │ │ │ ├── any_float.go │ │ │ │ ├── any_int32.go │ │ │ │ ├── any_int64.go │ │ │ │ ├── any_invalid.go │ │ │ │ ├── any_nil.go │ │ │ │ ├── any_number.go │ │ │ │ ├── any_object.go │ │ │ │ ├── any_str.go │ │ │ │ ├── any_uint32.go │ │ │ │ ├── any_uint64.go │ │ │ │ ├── build.sh │ │ │ │ ├── config.go │ │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── iter.go │ │ │ │ ├── iter_array.go │ │ │ │ ├── iter_float.go │ │ │ │ ├── iter_int.go │ │ │ │ ├── iter_object.go │ │ │ │ ├── iter_skip.go │ │ │ │ ├── iter_skip_sloppy.go │ │ │ │ ├── iter_skip_strict.go │ │ │ │ ├── iter_str.go │ │ │ │ ├── jsoniter.go │ │ │ │ ├── pool.go │ │ │ │ ├── reflect.go │ │ │ │ ├── reflect_array.go │ │ │ │ ├── reflect_dynamic.go │ │ │ │ ├── reflect_extension.go │ │ │ │ ├── reflect_json_number.go │ │ │ │ ├── reflect_json_raw_message.go │ │ │ │ ├── reflect_map.go │ │ │ │ ├── reflect_marshaler.go │ │ │ │ ├── reflect_native.go │ │ │ │ ├── reflect_optional.go │ │ │ │ ├── reflect_slice.go │ │ │ │ ├── reflect_struct_decoder.go │ │ │ │ ├── reflect_struct_encoder.go │ │ │ │ ├── stream.go │ │ │ │ ├── stream_float.go │ │ │ │ ├── stream_int.go │ │ │ │ ├── stream_str.go │ │ │ │ └── test.sh │ │ ├── kr │ │ │ └── fs │ │ │ │ ├── LICENSE │ │ │ │ ├── Readme │ │ │ │ ├── filesystem.go │ │ │ │ ├── go.mod │ │ │ │ └── walk.go │ │ ├── modern-go │ │ │ ├── concurrent │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── executor.go │ │ │ │ ├── go_above_19.go │ │ │ │ ├── go_below_19.go │ │ │ │ ├── log.go │ │ │ │ ├── test.sh │ │ │ │ └── unbounded_executor.go │ │ │ └── reflect2 │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gopkg.lock │ │ │ │ ├── Gopkg.toml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── go_above_17.go │ │ │ │ ├── go_above_19.go │ │ │ │ ├── go_below_17.go │ │ │ │ ├── go_below_19.go │ │ │ │ ├── reflect2.go │ │ │ │ ├── reflect2_amd64.s │ │ │ │ ├── reflect2_kind.go │ │ │ │ ├── relfect2_386.s │ │ │ │ ├── relfect2_amd64p32.s │ │ │ │ ├── relfect2_arm.s │ │ │ │ ├── relfect2_arm64.s │ │ │ │ ├── relfect2_mips64x.s │ │ │ │ ├── relfect2_mipsx.s │ │ │ │ ├── relfect2_ppc64x.s │ │ │ │ ├── relfect2_s390x.s │ │ │ │ ├── safe_field.go │ │ │ │ ├── safe_map.go │ │ │ │ ├── safe_slice.go │ │ │ │ ├── safe_struct.go │ │ │ │ ├── safe_type.go │ │ │ │ ├── test.sh │ │ │ │ ├── type_map.go │ │ │ │ ├── unsafe_array.go │ │ │ │ ├── unsafe_eface.go │ │ │ │ ├── unsafe_field.go │ │ │ │ ├── unsafe_iface.go │ │ │ │ ├── unsafe_link.go │ │ │ │ ├── unsafe_map.go │ │ │ │ ├── unsafe_ptr.go │ │ │ │ ├── unsafe_slice.go │ │ │ │ ├── unsafe_struct.go │ │ │ │ └── unsafe_type.go │ │ ├── openshift │ │ │ ├── api │ │ │ │ ├── LICENSE │ │ │ │ ├── config │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── 0000_00_cluster-version-operator_01_clusteroperator.crd.yaml │ │ │ │ │ │ ├── 0000_00_cluster-version-operator_01_clusterversion.crd.yaml │ │ │ │ │ │ ├── 0000_03_config-operator_01_operatorhub.crd.yaml │ │ │ │ │ │ ├── 0000_03_config-operator_01_proxy.crd.yaml │ │ │ │ │ │ ├── 0000_10_config-operator_01_apiserver.crd.yaml │ │ │ │ │ │ ├── 0000_10_config-operator_01_authentication.crd.yaml │ │ │ │ │ │ ├── 0000_10_config-operator_01_build.crd.yaml │ │ │ │ │ │ ├── 0000_10_config-operator_01_console.crd.yaml │ │ │ │ │ │ ├── 0000_10_config-operator_01_dns.crd.yaml │ │ │ │ │ │ ├── 0000_10_config-operator_01_featuregate.crd.yaml │ │ │ │ │ │ ├── 0000_10_config-operator_01_image.crd.yaml │ │ │ │ │ │ ├── 0000_10_config-operator_01_infrastructure.crd.yaml │ │ │ │ │ │ ├── 0000_10_config-operator_01_ingress.crd.yaml │ │ │ │ │ │ ├── 0000_10_config-operator_01_network.crd.yaml │ │ │ │ │ │ ├── 0000_10_config-operator_01_oauth.crd.yaml │ │ │ │ │ │ ├── 0000_10_config-operator_01_project.crd.yaml │ │ │ │ │ │ ├── 0000_10_config-operator_01_scheduler.crd.yaml │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── stringsource.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_apiserver.go │ │ │ │ │ │ ├── types_authentication.go │ │ │ │ │ │ ├── types_build.go │ │ │ │ │ │ ├── types_cluster_operator.go │ │ │ │ │ │ ├── types_cluster_version.go │ │ │ │ │ │ ├── types_console.go │ │ │ │ │ │ ├── types_dns.go │ │ │ │ │ │ ├── types_feature.go │ │ │ │ │ │ ├── types_image.go │ │ │ │ │ │ ├── types_infrastructure.go │ │ │ │ │ │ ├── types_ingress.go │ │ │ │ │ │ ├── types_network.go │ │ │ │ │ │ ├── types_oauth.go │ │ │ │ │ │ ├── types_operatorhub.go │ │ │ │ │ │ ├── types_project.go │ │ │ │ │ │ ├── types_proxy.go │ │ │ │ │ │ ├── types_scheduling.go │ │ │ │ │ │ ├── types_tlssecurityprofile.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ │ └── operator │ │ │ │ │ ├── v1 │ │ │ │ │ ├── 0000_10_config-operator_01_config.crd.yaml │ │ │ │ │ ├── 0000_20_etcd-operator_01.crd.yaml │ │ │ │ │ ├── 0000_20_kube-apiserver-operator_01_config.crd.yaml │ │ │ │ │ ├── 0000_20_kube-apiserver-operator_01_config.crd.yaml-patch │ │ │ │ │ ├── 0000_25_kube-controller-manager-operator_01_config.crd.yaml │ │ │ │ │ ├── 0000_25_kube-controller-manager-operator_01_config.crd.yaml-patch │ │ │ │ │ ├── 0000_25_kube-scheduler-operator_01_config.crd.yaml │ │ │ │ │ ├── 0000_25_kube-scheduler-operator_01_config.crd.yaml-patch │ │ │ │ │ ├── 0000_30_openshift-apiserver-operator_01_config.crd.yaml │ │ │ │ │ ├── 0000_40_cloud-credential-operator_00_config.crd.yaml │ │ │ │ │ ├── 0000_40_kube-storage-version-migrator-operator_00_config.crd.yaml │ │ │ │ │ ├── 0000_50_cluster-authentication-operator_01_config.crd.yaml │ │ │ │ │ ├── 0000_50_cluster-openshift-controller-manager-operator_02_config.crd.yaml │ │ │ │ │ ├── 0000_50_cluster_storage_operator_01_crd.yaml │ │ │ │ │ ├── 0000_50_ingress-operator_00-ingresscontroller.crd.yaml │ │ │ │ │ ├── 0000_50_ingress-operator_00-ingresscontroller.crd.yaml-patch │ │ │ │ │ ├── 0000_50_service-ca-operator_02_crd.yaml │ │ │ │ │ ├── 0000_70_cluster-network-operator_01_crd.yaml │ │ │ │ │ ├── 0000_70_console-operator.crd.yaml │ │ │ │ │ ├── 0000_70_dns-operator_00-custom-resource-definition.yaml │ │ │ │ │ ├── 0000_80_csi_snapshot_controller_operator_01_crd.yaml │ │ │ │ │ ├── 0000_90_cluster_csi_driver_01_config.crd.yaml │ │ │ │ │ ├── 0000_90_cluster_csi_driver_01_config.crd.yaml-patch │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_authentication.go │ │ │ │ │ ├── types_cloudcredential.go │ │ │ │ │ ├── types_config.go │ │ │ │ │ ├── types_console.go │ │ │ │ │ ├── types_csi_cluster_driver.go │ │ │ │ │ ├── types_csi_snapshot.go │ │ │ │ │ ├── types_dns.go │ │ │ │ │ ├── types_etcd.go │ │ │ │ │ ├── types_ingress.go │ │ │ │ │ ├── types_kubeapiserver.go │ │ │ │ │ ├── types_kubecontrollermanager.go │ │ │ │ │ ├── types_kubestorageversionmigrator.go │ │ │ │ │ ├── types_network.go │ │ │ │ │ ├── types_openshiftapiserver.go │ │ │ │ │ ├── types_openshiftcontrollermanager.go │ │ │ │ │ ├── types_scheduler.go │ │ │ │ │ ├── types_serviceca.go │ │ │ │ │ ├── types_servicecatalogapiserver.go │ │ │ │ │ ├── types_servicecatalogcontrollermanager.go │ │ │ │ │ ├── types_storage.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── 0000_10_config-operator_01_imagecontentsourcepolicy.crd.yaml │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_image_content_source_policy.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.swagger_doc_generated.go │ │ │ ├── client-go │ │ │ │ ├── LICENSE │ │ │ │ ├── config │ │ │ │ │ └── clientset │ │ │ │ │ │ └── versioned │ │ │ │ │ │ ├── clientset.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── scheme │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── register.go │ │ │ │ │ │ └── typed │ │ │ │ │ │ └── config │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── apiserver.go │ │ │ │ │ │ ├── authentication.go │ │ │ │ │ │ ├── build.go │ │ │ │ │ │ ├── clusteroperator.go │ │ │ │ │ │ ├── clusterversion.go │ │ │ │ │ │ ├── config_client.go │ │ │ │ │ │ ├── console.go │ │ │ │ │ │ ├── dns.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── featuregate.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── image.go │ │ │ │ │ │ ├── infrastructure.go │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ ├── network.go │ │ │ │ │ │ ├── oauth.go │ │ │ │ │ │ ├── operatorhub.go │ │ │ │ │ │ ├── project.go │ │ │ │ │ │ ├── proxy.go │ │ │ │ │ │ └── scheduler.go │ │ │ │ └── operator │ │ │ │ │ └── clientset │ │ │ │ │ └── versioned │ │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ │ └── typed │ │ │ │ │ └── operator │ │ │ │ │ └── v1 │ │ │ │ │ ├── authentication.go │ │ │ │ │ ├── cloudcredential.go │ │ │ │ │ ├── clustercsidriver.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── console.go │ │ │ │ │ ├── csisnapshotcontroller.go │ │ │ │ │ ├── dns.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── etcd.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingresscontroller.go │ │ │ │ │ ├── kubeapiserver.go │ │ │ │ │ ├── kubecontrollermanager.go │ │ │ │ │ ├── kubescheduler.go │ │ │ │ │ ├── kubestorageversionmigrator.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── openshiftapiserver.go │ │ │ │ │ ├── openshiftcontrollermanager.go │ │ │ │ │ ├── operator_client.go │ │ │ │ │ ├── serviceca.go │ │ │ │ │ ├── servicecatalogapiserver.go │ │ │ │ │ ├── servicecatalogcontrollermanager.go │ │ │ │ │ └── storage.go │ │ │ └── machine-api-operator │ │ │ │ ├── LICENSE │ │ │ │ └── pkg │ │ │ │ ├── apis │ │ │ │ └── machine │ │ │ │ │ ├── register.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ ├── common_types.go │ │ │ │ │ ├── consts.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── machine_types.go │ │ │ │ │ ├── machinehealthcheck_types.go │ │ │ │ │ ├── machineset_types.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── generated │ │ │ │ └── clientset │ │ │ │ └── versioned │ │ │ │ ├── scheme │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ └── machine │ │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── machine.go │ │ │ │ ├── machine_client.go │ │ │ │ ├── machinehealthcheck.go │ │ │ │ └── machineset.go │ │ ├── pkg │ │ │ ├── errors │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── appveyor.yml │ │ │ │ ├── errors.go │ │ │ │ ├── go113.go │ │ │ │ └── stack.go │ │ │ └── sftp │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── attrs.go │ │ │ │ ├── attrs_stubs.go │ │ │ │ ├── attrs_unix.go │ │ │ │ ├── client.go │ │ │ │ ├── conn.go │ │ │ │ ├── debug.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── match.go │ │ │ │ ├── packet-manager.go │ │ │ │ ├── packet-typing.go │ │ │ │ ├── packet.go │ │ │ │ ├── release.go │ │ │ │ ├── request-attrs.go │ │ │ │ ├── request-errors.go │ │ │ │ ├── request-example.go │ │ │ │ ├── request-interfaces.go │ │ │ │ ├── request-readme.md │ │ │ │ ├── request-server.go │ │ │ │ ├── request-unix.go │ │ │ │ ├── request.go │ │ │ │ ├── request_windows.go │ │ │ │ ├── server.go │ │ │ │ ├── server_statvfs_darwin.go │ │ │ │ ├── server_statvfs_impl.go │ │ │ │ ├── server_statvfs_linux.go │ │ │ │ ├── server_statvfs_stubs.go │ │ │ │ ├── server_stubs.go │ │ │ │ ├── server_unix.go │ │ │ │ ├── sftp.go │ │ │ │ ├── syscall_fixed.go │ │ │ │ └── syscall_good.go │ │ ├── pmezard │ │ │ └── go-difflib │ │ │ │ ├── LICENSE │ │ │ │ └── difflib │ │ │ │ └── difflib.go │ │ ├── spf13 │ │ │ └── pflag │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bool.go │ │ │ │ ├── bool_slice.go │ │ │ │ ├── bytes.go │ │ │ │ ├── count.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration_slice.go │ │ │ │ ├── flag.go │ │ │ │ ├── float32.go │ │ │ │ ├── float32_slice.go │ │ │ │ ├── float64.go │ │ │ │ ├── float64_slice.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── golangflag.go │ │ │ │ ├── int.go │ │ │ │ ├── int16.go │ │ │ │ ├── int32.go │ │ │ │ ├── int32_slice.go │ │ │ │ ├── int64.go │ │ │ │ ├── int64_slice.go │ │ │ │ ├── int8.go │ │ │ │ ├── int_slice.go │ │ │ │ ├── ip.go │ │ │ │ ├── ip_slice.go │ │ │ │ ├── ipmask.go │ │ │ │ ├── ipnet.go │ │ │ │ ├── string.go │ │ │ │ ├── string_array.go │ │ │ │ ├── string_slice.go │ │ │ │ ├── string_to_int.go │ │ │ │ ├── string_to_int64.go │ │ │ │ ├── string_to_string.go │ │ │ │ ├── uint.go │ │ │ │ ├── uint16.go │ │ │ │ ├── uint32.go │ │ │ │ ├── uint64.go │ │ │ │ ├── uint8.go │ │ │ │ └── uint_slice.go │ │ └── stretchr │ │ │ └── testify │ │ │ ├── LICENSE │ │ │ ├── assert │ │ │ ├── assertion_compare.go │ │ │ ├── assertion_format.go │ │ │ ├── assertion_format.go.tmpl │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertions.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ └── http_assertions.go │ │ │ └── require │ │ │ ├── doc.go │ │ │ ├── forward_requirements.go │ │ │ ├── require.go │ │ │ ├── require.go.tmpl │ │ │ ├── require_forward.go │ │ │ ├── require_forward.go.tmpl │ │ │ └── requirements.go │ ├── golang.org │ │ └── x │ │ │ ├── crypto │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── blowfish │ │ │ │ ├── block.go │ │ │ │ ├── cipher.go │ │ │ │ └── const.go │ │ │ ├── cast5 │ │ │ │ └── cast5.go │ │ │ ├── chacha20 │ │ │ │ ├── chacha_arm64.go │ │ │ │ ├── chacha_arm64.s │ │ │ │ ├── chacha_generic.go │ │ │ │ ├── chacha_noasm.go │ │ │ │ ├── chacha_ppc64le.go │ │ │ │ ├── chacha_ppc64le.s │ │ │ │ ├── chacha_s390x.go │ │ │ │ ├── chacha_s390x.s │ │ │ │ └── xor.go │ │ │ ├── curve25519 │ │ │ │ ├── curve25519.go │ │ │ │ ├── curve25519_amd64.go │ │ │ │ ├── curve25519_amd64.s │ │ │ │ ├── curve25519_generic.go │ │ │ │ └── curve25519_noasm.go │ │ │ ├── ed25519 │ │ │ │ ├── ed25519.go │ │ │ │ ├── ed25519_go113.go │ │ │ │ └── internal │ │ │ │ │ └── edwards25519 │ │ │ │ │ ├── const.go │ │ │ │ │ └── edwards25519.go │ │ │ ├── internal │ │ │ │ └── subtle │ │ │ │ │ ├── aliasing.go │ │ │ │ │ └── aliasing_appengine.go │ │ │ ├── openpgp │ │ │ │ ├── armor │ │ │ │ │ ├── armor.go │ │ │ │ │ └── encode.go │ │ │ │ ├── canonical_text.go │ │ │ │ ├── elgamal │ │ │ │ │ └── elgamal.go │ │ │ │ ├── errors │ │ │ │ │ └── errors.go │ │ │ │ ├── keys.go │ │ │ │ ├── packet │ │ │ │ │ ├── compressed.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── encrypted_key.go │ │ │ │ │ ├── literal.go │ │ │ │ │ ├── ocfb.go │ │ │ │ │ ├── one_pass_signature.go │ │ │ │ │ ├── opaque.go │ │ │ │ │ ├── packet.go │ │ │ │ │ ├── private_key.go │ │ │ │ │ ├── public_key.go │ │ │ │ │ ├── public_key_v3.go │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── signature.go │ │ │ │ │ ├── signature_v3.go │ │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ │ ├── userattribute.go │ │ │ │ │ └── userid.go │ │ │ │ ├── read.go │ │ │ │ ├── s2k │ │ │ │ │ └── s2k.go │ │ │ │ └── write.go │ │ │ ├── poly1305 │ │ │ │ ├── bits_compat.go │ │ │ │ ├── bits_go1.13.go │ │ │ │ ├── mac_noasm.go │ │ │ │ ├── poly1305.go │ │ │ │ ├── sum_amd64.go │ │ │ │ ├── sum_amd64.s │ │ │ │ ├── sum_generic.go │ │ │ │ ├── sum_ppc64le.go │ │ │ │ ├── sum_ppc64le.s │ │ │ │ ├── sum_s390x.go │ │ │ │ └── sum_s390x.s │ │ │ └── ssh │ │ │ │ ├── buffer.go │ │ │ │ ├── certs.go │ │ │ │ ├── channel.go │ │ │ │ ├── cipher.go │ │ │ │ ├── client.go │ │ │ │ ├── client_auth.go │ │ │ │ ├── common.go │ │ │ │ ├── connection.go │ │ │ │ ├── doc.go │ │ │ │ ├── handshake.go │ │ │ │ ├── internal │ │ │ │ └── bcrypt_pbkdf │ │ │ │ │ └── bcrypt_pbkdf.go │ │ │ │ ├── kex.go │ │ │ │ ├── keys.go │ │ │ │ ├── mac.go │ │ │ │ ├── messages.go │ │ │ │ ├── mux.go │ │ │ │ ├── server.go │ │ │ │ ├── session.go │ │ │ │ ├── ssh_gss.go │ │ │ │ ├── streamlocal.go │ │ │ │ ├── tcpip.go │ │ │ │ ├── terminal │ │ │ │ ├── terminal.go │ │ │ │ ├── util.go │ │ │ │ ├── util_aix.go │ │ │ │ ├── util_bsd.go │ │ │ │ ├── util_linux.go │ │ │ │ ├── util_plan9.go │ │ │ │ ├── util_solaris.go │ │ │ │ └── util_windows.go │ │ │ │ └── transport.go │ │ │ ├── net │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── context │ │ │ │ ├── context.go │ │ │ │ ├── ctxhttp │ │ │ │ │ └── ctxhttp.go │ │ │ │ ├── go17.go │ │ │ │ ├── go19.go │ │ │ │ ├── pre_go17.go │ │ │ │ └── pre_go19.go │ │ │ ├── http │ │ │ │ └── httpguts │ │ │ │ │ ├── guts.go │ │ │ │ │ └── httplex.go │ │ │ ├── http2 │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ciphers.go │ │ │ │ ├── client_conn_pool.go │ │ │ │ ├── databuffer.go │ │ │ │ ├── errors.go │ │ │ │ ├── flow.go │ │ │ │ ├── frame.go │ │ │ │ ├── go111.go │ │ │ │ ├── gotrack.go │ │ │ │ ├── headermap.go │ │ │ │ ├── hpack │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── hpack.go │ │ │ │ │ ├── huffman.go │ │ │ │ │ └── tables.go │ │ │ │ ├── http2.go │ │ │ │ ├── not_go111.go │ │ │ │ ├── pipe.go │ │ │ │ ├── server.go │ │ │ │ ├── transport.go │ │ │ │ ├── write.go │ │ │ │ ├── writesched.go │ │ │ │ ├── writesched_priority.go │ │ │ │ └── writesched_random.go │ │ │ └── idna │ │ │ │ ├── idna10.0.0.go │ │ │ │ ├── idna9.0.0.go │ │ │ │ ├── punycode.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── trie.go │ │ │ │ └── trieval.go │ │ │ ├── oauth2 │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── internal │ │ │ │ ├── client_appengine.go │ │ │ │ ├── doc.go │ │ │ │ ├── oauth2.go │ │ │ │ ├── token.go │ │ │ │ └── transport.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ │ ├── sys │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── cpu │ │ │ │ ├── asm_aix_ppc64.s │ │ │ │ ├── byteorder.go │ │ │ │ ├── cpu.go │ │ │ │ ├── cpu_aix.go │ │ │ │ ├── cpu_arm.go │ │ │ │ ├── cpu_arm64.go │ │ │ │ ├── cpu_arm64.s │ │ │ │ ├── cpu_gc_arm64.go │ │ │ │ ├── cpu_gc_s390x.go │ │ │ │ ├── cpu_gc_x86.go │ │ │ │ ├── cpu_gccgo_arm64.go │ │ │ │ ├── cpu_gccgo_s390x.go │ │ │ │ ├── cpu_gccgo_x86.c │ │ │ │ ├── cpu_gccgo_x86.go │ │ │ │ ├── cpu_linux.go │ │ │ │ ├── cpu_linux_arm.go │ │ │ │ ├── cpu_linux_arm64.go │ │ │ │ ├── cpu_linux_mips64x.go │ │ │ │ ├── cpu_linux_noinit.go │ │ │ │ ├── cpu_linux_ppc64x.go │ │ │ │ ├── cpu_linux_s390x.go │ │ │ │ ├── cpu_mips64x.go │ │ │ │ ├── cpu_mipsx.go │ │ │ │ ├── cpu_netbsd_arm64.go │ │ │ │ ├── cpu_other_arm.go │ │ │ │ ├── cpu_other_arm64.go │ │ │ │ ├── cpu_other_mips64x.go │ │ │ │ ├── cpu_ppc64x.go │ │ │ │ ├── cpu_riscv64.go │ │ │ │ ├── cpu_s390x.go │ │ │ │ ├── cpu_s390x.s │ │ │ │ ├── cpu_wasm.go │ │ │ │ ├── cpu_x86.go │ │ │ │ ├── cpu_x86.s │ │ │ │ ├── cpu_zos.go │ │ │ │ ├── cpu_zos_s390x.go │ │ │ │ ├── hwcap_linux.go │ │ │ │ ├── syscall_aix_gccgo.go │ │ │ │ └── syscall_aix_ppc64_gc.go │ │ │ ├── internal │ │ │ │ └── unsafeheader │ │ │ │ │ └── unsafeheader.go │ │ │ ├── unix │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── affinity_linux.go │ │ │ │ ├── aliases.go │ │ │ │ ├── asm_aix_ppc64.s │ │ │ │ ├── asm_darwin_386.s │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ ├── asm_freebsd_arm64.s │ │ │ │ ├── asm_linux_386.s │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ ├── asm_linux_arm.s │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ ├── asm_linux_riscv64.s │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ ├── asm_netbsd_arm64.s │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ ├── asm_openbsd_arm64.s │ │ │ │ ├── asm_openbsd_mips64.s │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ ├── bluetooth_linux.go │ │ │ │ ├── cap_freebsd.go │ │ │ │ ├── constants.go │ │ │ │ ├── dev_aix_ppc.go │ │ │ │ ├── dev_aix_ppc64.go │ │ │ │ ├── dev_darwin.go │ │ │ │ ├── dev_dragonfly.go │ │ │ │ ├── dev_freebsd.go │ │ │ │ ├── dev_linux.go │ │ │ │ ├── dev_netbsd.go │ │ │ │ ├── dev_openbsd.go │ │ │ │ ├── dirent.go │ │ │ │ ├── endian_big.go │ │ │ │ ├── endian_little.go │ │ │ │ ├── env_unix.go │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ ├── errors_freebsd_arm64.go │ │ │ │ ├── fcntl.go │ │ │ │ ├── fcntl_darwin.go │ │ │ │ ├── fcntl_linux_32bit.go │ │ │ │ ├── fdset.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── ioctl.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── pagesize_unix.go │ │ │ │ ├── pledge_openbsd.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── readdirent_getdents.go │ │ │ │ ├── readdirent_getdirentries.go │ │ │ │ ├── sockcmsg_dragonfly.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── sockcmsg_unix_other.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_aix.go │ │ │ │ ├── syscall_aix_ppc.go │ │ │ │ ├── syscall_aix_ppc64.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_darwin.1_12.go │ │ │ │ ├── syscall_darwin.1_13.go │ │ │ │ ├── syscall_darwin.go │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ ├── syscall_darwin_libSystem.go │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ ├── syscall_freebsd.go │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ ├── syscall_freebsd_arm64.go │ │ │ │ ├── syscall_illumos.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ ├── syscall_linux_gc.go │ │ │ │ ├── syscall_linux_gc_386.go │ │ │ │ ├── syscall_linux_gc_arm.go │ │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ ├── syscall_linux_riscv64.go │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ ├── syscall_netbsd.go │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ ├── syscall_netbsd_arm64.go │ │ │ │ ├── syscall_openbsd.go │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ ├── syscall_openbsd_arm64.go │ │ │ │ ├── syscall_openbsd_mips64.go │ │ │ │ ├── syscall_solaris.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ │ ├── timestruct.go │ │ │ │ ├── unveil_openbsd.go │ │ │ │ ├── xattr_bsd.go │ │ │ │ ├── zerrors_aix_ppc.go │ │ │ │ ├── zerrors_aix_ppc64.go │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ │ ├── zerrors_linux.go │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ ├── zerrors_linux_riscv64.go │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ ├── zptrace_armnn_linux.go │ │ │ │ ├── zptrace_linux_arm64.go │ │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ │ ├── zptrace_x86_linux.go │ │ │ │ ├── zsyscall_aix_ppc.go │ │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ │ ├── zsyscall_darwin_386.1_13.go │ │ │ │ ├── zsyscall_darwin_386.1_13.s │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ ├── zsyscall_darwin_386.s │ │ │ │ ├── zsyscall_darwin_amd64.1_13.go │ │ │ │ ├── zsyscall_darwin_amd64.1_13.s │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ │ ├── zsyscall_darwin_arm.1_13.go │ │ │ │ ├── zsyscall_darwin_arm.1_13.s │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ ├── zsyscall_darwin_arm.s │ │ │ │ ├── zsyscall_darwin_arm64.1_13.go │ │ │ │ ├── zsyscall_darwin_arm64.1_13.s │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ │ ├── zsyscall_linux.go │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ │ ├── ztypes_aix_ppc.go │ │ │ │ ├── ztypes_aix_ppc64.go │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ │ ├── ztypes_linux.go │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ ├── ztypes_linux_riscv64.go │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ └── windows │ │ │ │ ├── aliases.go │ │ │ │ ├── dll_windows.go │ │ │ │ ├── empty.s │ │ │ │ ├── env_windows.go │ │ │ │ ├── eventlog.go │ │ │ │ ├── exec_windows.go │ │ │ │ ├── memory_windows.go │ │ │ │ ├── mkerrors.bash │ │ │ │ ├── mkknownfolderids.bash │ │ │ │ ├── mksyscall.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── security_windows.go │ │ │ │ ├── service.go │ │ │ │ ├── setupapierrors_windows.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_windows.go │ │ │ │ ├── types_windows.go │ │ │ │ ├── types_windows_386.go │ │ │ │ ├── types_windows_amd64.go │ │ │ │ ├── types_windows_arm.go │ │ │ │ ├── zerrors_windows.go │ │ │ │ ├── zknownfolderids_windows.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── text │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── secure │ │ │ │ └── bidirule │ │ │ │ │ ├── bidirule.go │ │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ │ └── bidirule9.0.0.go │ │ │ ├── transform │ │ │ │ └── transform.go │ │ │ └── unicode │ │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ │ └── time │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── rate │ │ │ └── rate.go │ ├── google.golang.org │ │ ├── appengine │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ │ ├── api.go │ │ │ │ ├── api_classic.go │ │ │ │ ├── api_common.go │ │ │ │ ├── app_id.go │ │ │ │ ├── base │ │ │ │ │ ├── api_base.pb.go │ │ │ │ │ └── api_base.proto │ │ │ │ ├── datastore │ │ │ │ │ ├── datastore_v3.pb.go │ │ │ │ │ └── datastore_v3.proto │ │ │ │ ├── identity.go │ │ │ │ ├── identity_classic.go │ │ │ │ ├── identity_flex.go │ │ │ │ ├── identity_vm.go │ │ │ │ ├── internal.go │ │ │ │ ├── log │ │ │ │ │ ├── log_service.pb.go │ │ │ │ │ └── log_service.proto │ │ │ │ ├── main.go │ │ │ │ ├── main_common.go │ │ │ │ ├── main_vm.go │ │ │ │ ├── metadata.go │ │ │ │ ├── net.go │ │ │ │ ├── regen.sh │ │ │ │ ├── remote_api │ │ │ │ │ ├── remote_api.pb.go │ │ │ │ │ └── remote_api.proto │ │ │ │ ├── transaction.go │ │ │ │ └── urlfetch │ │ │ │ │ ├── urlfetch_service.pb.go │ │ │ │ │ └── urlfetch_service.proto │ │ │ └── urlfetch │ │ │ │ └── urlfetch.go │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── encoding │ │ │ ├── prototext │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ │ └── protowire │ │ │ │ └── wire.go │ │ │ ├── internal │ │ │ ├── descfmt │ │ │ │ └── stringer.go │ │ │ ├── descopts │ │ │ │ └── options.go │ │ │ ├── detrand │ │ │ │ └── rand.go │ │ │ ├── encoding │ │ │ │ ├── defval │ │ │ │ │ └── default.go │ │ │ │ ├── messageset │ │ │ │ │ └── messageset.go │ │ │ │ ├── tag │ │ │ │ │ └── tag.go │ │ │ │ └── text │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_number.go │ │ │ │ │ ├── decode_string.go │ │ │ │ │ ├── decode_token.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── encode.go │ │ │ ├── errors │ │ │ │ ├── errors.go │ │ │ │ ├── is_go112.go │ │ │ │ └── is_go113.go │ │ │ ├── fieldsort │ │ │ │ └── fieldsort.go │ │ │ ├── filedesc │ │ │ │ ├── build.go │ │ │ │ ├── desc.go │ │ │ │ ├── desc_init.go │ │ │ │ ├── desc_lazy.go │ │ │ │ ├── desc_list.go │ │ │ │ ├── desc_list_gen.go │ │ │ │ └── placeholder.go │ │ │ ├── filetype │ │ │ │ └── build.go │ │ │ ├── flags │ │ │ │ ├── flags.go │ │ │ │ ├── proto_legacy_disable.go │ │ │ │ └── proto_legacy_enable.go │ │ │ ├── genid │ │ │ │ ├── any_gen.go │ │ │ │ ├── api_gen.go │ │ │ │ ├── descriptor_gen.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration_gen.go │ │ │ │ ├── empty_gen.go │ │ │ │ ├── field_mask_gen.go │ │ │ │ ├── goname.go │ │ │ │ ├── map_entry.go │ │ │ │ ├── source_context_gen.go │ │ │ │ ├── struct_gen.go │ │ │ │ ├── timestamp_gen.go │ │ │ │ ├── type_gen.go │ │ │ │ ├── wrappers.go │ │ │ │ └── wrappers_gen.go │ │ │ ├── impl │ │ │ │ ├── api_export.go │ │ │ │ ├── checkinit.go │ │ │ │ ├── codec_extension.go │ │ │ │ ├── codec_field.go │ │ │ │ ├── codec_gen.go │ │ │ │ ├── codec_map.go │ │ │ │ ├── codec_map_go111.go │ │ │ │ ├── codec_map_go112.go │ │ │ │ ├── codec_message.go │ │ │ │ ├── codec_messageset.go │ │ │ │ ├── codec_reflect.go │ │ │ │ ├── codec_tables.go │ │ │ │ ├── codec_unsafe.go │ │ │ │ ├── convert.go │ │ │ │ ├── convert_list.go │ │ │ │ ├── convert_map.go │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── enum.go │ │ │ │ ├── extension.go │ │ │ │ ├── legacy_enum.go │ │ │ │ ├── legacy_export.go │ │ │ │ ├── legacy_extension.go │ │ │ │ ├── legacy_file.go │ │ │ │ ├── legacy_message.go │ │ │ │ ├── merge.go │ │ │ │ ├── merge_gen.go │ │ │ │ ├── message.go │ │ │ │ ├── message_reflect.go │ │ │ │ ├── message_reflect_field.go │ │ │ │ ├── message_reflect_gen.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── validate.go │ │ │ │ └── weak.go │ │ │ ├── mapsort │ │ │ │ └── mapsort.go │ │ │ ├── pragma │ │ │ │ └── pragma.go │ │ │ ├── set │ │ │ │ └── ints.go │ │ │ ├── strs │ │ │ │ ├── strings.go │ │ │ │ ├── strings_pure.go │ │ │ │ └── strings_unsafe.go │ │ │ └── version │ │ │ │ └── version.go │ │ │ ├── proto │ │ │ ├── checkinit.go │ │ │ ├── decode.go │ │ │ ├── decode_gen.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encode_gen.go │ │ │ ├── equal.go │ │ │ ├── extension.go │ │ │ ├── merge.go │ │ │ ├── messageset.go │ │ │ ├── proto.go │ │ │ ├── proto_methods.go │ │ │ ├── proto_reflect.go │ │ │ ├── reset.go │ │ │ ├── size.go │ │ │ ├── size_gen.go │ │ │ └── wrappers.go │ │ │ ├── reflect │ │ │ ├── protoreflect │ │ │ │ ├── methods.go │ │ │ │ ├── proto.go │ │ │ │ ├── source.go │ │ │ │ ├── type.go │ │ │ │ ├── value.go │ │ │ │ ├── value_pure.go │ │ │ │ ├── value_union.go │ │ │ │ └── value_unsafe.go │ │ │ └── protoregistry │ │ │ │ └── registry.go │ │ │ ├── runtime │ │ │ ├── protoiface │ │ │ │ ├── legacy.go │ │ │ │ └── methods.go │ │ │ └── protoimpl │ │ │ │ ├── impl.go │ │ │ │ └── version.go │ │ │ └── types │ │ │ └── known │ │ │ ├── anypb │ │ │ └── any.pb.go │ │ │ ├── durationpb │ │ │ └── duration.pb.go │ │ │ └── timestamppb │ │ │ └── timestamp.pb.go │ ├── gopkg.in │ │ ├── inf.v0 │ │ │ ├── LICENSE │ │ │ ├── dec.go │ │ │ └── rounder.go │ │ ├── yaml.v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── LICENSE.libyaml │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── go.mod │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ │ └── yaml.v3 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── go.mod │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ ├── k8s.io │ │ ├── api │ │ │ ├── LICENSE │ │ │ ├── admissionregistration │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── apiserverinternal │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── apps │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── authentication │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── authorization │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v2beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ │ └── v2beta2 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ │ └── v2alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── certificates │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── coordination │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── annotation_key_constants.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── lifecycle.go │ │ │ │ │ ├── objectreference.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── resource.go │ │ │ │ │ ├── taint.go │ │ │ │ │ ├── toleration.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── well_known_labels.go │ │ │ │ │ ├── well_known_taints.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── discovery │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── well_known_labels.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── well_known_labels.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── events │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── flowcontrol │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── networking │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── well_known_annotations.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── node │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── policy │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ ├── scheduling │ │ │ │ ├── v1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.prerelease-lifecycle.go │ │ ├── apimachinery │ │ │ ├── LICENSE │ │ │ ├── pkg │ │ │ │ ├── api │ │ │ │ │ ├── errors │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── errors.go │ │ │ │ │ ├── meta │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── conditions.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ │ │ ├── help.go │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ ├── lazy.go │ │ │ │ │ │ ├── meta.go │ │ │ │ │ │ ├── multirestmapper.go │ │ │ │ │ │ ├── priority.go │ │ │ │ │ │ └── restmapper.go │ │ │ │ │ └── resource │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── amount.go │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── math.go │ │ │ │ │ │ ├── quantity.go │ │ │ │ │ │ ├── quantity_proto.go │ │ │ │ │ │ ├── scale_int.go │ │ │ │ │ │ ├── suffix.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── apis │ │ │ │ │ └── meta │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── group_version.go │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── labels.go │ │ │ │ │ │ ├── meta.go │ │ │ │ │ │ ├── micro_time.go │ │ │ │ │ │ ├── micro_time_fuzz.go │ │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ ├── time_fuzz.go │ │ │ │ │ │ ├── time_proto.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ │ ├── unstructured │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── unstructured.go │ │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ │ ├── validation │ │ │ │ │ │ └── validation.go │ │ │ │ │ │ ├── watch.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── conversion │ │ │ │ │ ├── converter.go │ │ │ │ │ ├── deep_equal.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── helper.go │ │ │ │ │ └── queryparams │ │ │ │ │ │ ├── convert.go │ │ │ │ │ │ └── doc.go │ │ │ │ ├── fields │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fields.go │ │ │ │ │ ├── requirements.go │ │ │ │ │ └── selector.go │ │ │ │ ├── labels │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── selector.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── runtime │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── codec_check.go │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── converter.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── embedded.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── extension.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── helper.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── mapper.go │ │ │ │ │ ├── negotiate.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── schema │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── group_version.go │ │ │ │ │ │ └── interfaces.go │ │ │ │ │ ├── scheme.go │ │ │ │ │ ├── scheme_builder.go │ │ │ │ │ ├── serializer │ │ │ │ │ │ ├── codec_factory.go │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ │ └── meta.go │ │ │ │ │ │ ├── negotiated_codec.go │ │ │ │ │ │ ├── protobuf │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── protobuf.go │ │ │ │ │ │ ├── recognizer │ │ │ │ │ │ │ └── recognizer.go │ │ │ │ │ │ ├── streaming │ │ │ │ │ │ │ └── streaming.go │ │ │ │ │ │ └── versioning │ │ │ │ │ │ │ └── versioning.go │ │ │ │ │ ├── swagger_doc_generator.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_proto.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── selection │ │ │ │ │ └── operator.go │ │ │ │ ├── types │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── namespacedname.go │ │ │ │ │ ├── nodename.go │ │ │ │ │ ├── patch.go │ │ │ │ │ └── uid.go │ │ │ │ ├── util │ │ │ │ │ ├── clock │ │ │ │ │ │ └── clock.go │ │ │ │ │ ├── errors │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── errors.go │ │ │ │ │ ├── framer │ │ │ │ │ │ └── framer.go │ │ │ │ │ ├── intstr │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── instr_fuzz.go │ │ │ │ │ │ └── intstr.go │ │ │ │ │ ├── json │ │ │ │ │ │ └── json.go │ │ │ │ │ ├── naming │ │ │ │ │ │ └── from_stack.go │ │ │ │ │ ├── net │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ ├── interface.go │ │ │ │ │ │ ├── port_range.go │ │ │ │ │ │ ├── port_split.go │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── rand │ │ │ │ │ │ └── rand.go │ │ │ │ │ ├── runtime │ │ │ │ │ │ └── runtime.go │ │ │ │ │ ├── sets │ │ │ │ │ │ ├── byte.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── empty.go │ │ │ │ │ │ ├── int.go │ │ │ │ │ │ ├── int32.go │ │ │ │ │ │ ├── int64.go │ │ │ │ │ │ └── string.go │ │ │ │ │ ├── validation │ │ │ │ │ │ ├── field │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ └── path.go │ │ │ │ │ │ └── validation.go │ │ │ │ │ ├── wait │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── wait.go │ │ │ │ │ └── yaml │ │ │ │ │ │ └── decoder.go │ │ │ │ ├── version │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ └── types.go │ │ │ │ └── watch │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── mux.go │ │ │ │ │ ├── streamwatcher.go │ │ │ │ │ ├── watch.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── third_party │ │ │ │ └── forked │ │ │ │ └── golang │ │ │ │ └── reflect │ │ │ │ └── deep_equal.go │ │ ├── client-go │ │ │ ├── LICENSE │ │ │ ├── discovery │ │ │ │ ├── discovery_client.go │ │ │ │ ├── doc.go │ │ │ │ └── helper.go │ │ │ ├── kubernetes │ │ │ │ ├── clientset.go │ │ │ │ ├── doc.go │ │ │ │ ├── import.go │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ └── typed │ │ │ │ │ ├── admissionregistration │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ │ ├── apiserverinternal │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ ├── apiserverinternal_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ └── storageversion.go │ │ │ │ │ ├── apps │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── apps_client.go │ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ │ ├── daemonset.go │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── replicaset.go │ │ │ │ │ │ └── statefulset.go │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ ├── apps_client.go │ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ └── statefulset.go │ │ │ │ │ └── v1beta2 │ │ │ │ │ │ ├── apps_client.go │ │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ │ ├── daemonset.go │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── replicaset.go │ │ │ │ │ │ └── statefulset.go │ │ │ │ │ ├── authentication │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ └── tokenreview.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ └── tokenreview.go │ │ │ │ │ ├── authorization │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ │ ├── autoscaling │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ │ ├── v2beta1 │ │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ │ └── v2beta2 │ │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ │ ├── batch │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── batch_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ └── job.go │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ ├── batch_client.go │ │ │ │ │ │ ├── cronjob.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ └── v2alpha1 │ │ │ │ │ │ ├── batch_client.go │ │ │ │ │ │ ├── cronjob.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ ├── certificates │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ ├── coordination │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ └── lease.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── coordination_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ └── lease.go │ │ │ │ │ ├── core │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ │ ├── configmap.go │ │ │ │ │ │ ├── core_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── limitrange.go │ │ │ │ │ │ ├── namespace.go │ │ │ │ │ │ ├── namespace_expansion.go │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ ├── node_expansion.go │ │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ │ ├── pod.go │ │ │ │ │ │ ├── pod_expansion.go │ │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ │ ├── secret.go │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ ├── service_expansion.go │ │ │ │ │ │ └── serviceaccount.go │ │ │ │ │ ├── discovery │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── discovery_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── discovery_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── endpointslice.go │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ ├── events │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ ├── events_client.go │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ │ ├── events_client.go │ │ │ │ │ │ └── generated_expansion.go │ │ │ │ │ ├── extensions │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── daemonset.go │ │ │ │ │ │ ├── deployment.go │ │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── extensions_client.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ ├── networkpolicy.go │ │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ │ └── replicaset.go │ │ │ │ │ ├── flowcontrol │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ │ ├── flowschema.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── flowcontrol_client.go │ │ │ │ │ │ ├── flowschema.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ └── prioritylevelconfiguration.go │ │ │ │ │ ├── networking │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ │ ├── networking_client.go │ │ │ │ │ │ └── networkpolicy.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── ingress.go │ │ │ │ │ │ ├── ingressclass.go │ │ │ │ │ │ └── networking_client.go │ │ │ │ │ ├── node │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── node_client.go │ │ │ │ │ │ └── runtimeclass.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── node_client.go │ │ │ │ │ │ └── runtimeclass.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── node_client.go │ │ │ │ │ │ └── runtimeclass.go │ │ │ │ │ ├── policy │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── eviction.go │ │ │ │ │ │ ├── eviction_expansion.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ │ └── policy_client.go │ │ │ │ │ ├── rbac │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ └── rolebinding.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ └── rolebinding.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ │ ├── role.go │ │ │ │ │ │ └── rolebinding.go │ │ │ │ │ ├── scheduling │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ │ └── scheduling_client.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ │ └── scheduling_client.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ │ └── scheduling_client.go │ │ │ │ │ └── storage │ │ │ │ │ ├── v1 │ │ │ │ │ ├── csidriver.go │ │ │ │ │ ├── csinode.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── storage_client.go │ │ │ │ │ ├── storageclass.go │ │ │ │ │ └── volumeattachment.go │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── csistoragecapacity.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── storage_client.go │ │ │ │ │ └── volumeattachment.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ ├── csidriver.go │ │ │ │ │ ├── csinode.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── storage_client.go │ │ │ │ │ ├── storageclass.go │ │ │ │ │ └── volumeattachment.go │ │ │ ├── pkg │ │ │ │ ├── apis │ │ │ │ │ └── clientauthentication │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── version │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── base.go │ │ │ │ │ ├── def.bzl │ │ │ │ │ ├── doc.go │ │ │ │ │ └── version.go │ │ │ ├── plugin │ │ │ │ └── pkg │ │ │ │ │ └── client │ │ │ │ │ └── auth │ │ │ │ │ └── exec │ │ │ │ │ ├── exec.go │ │ │ │ │ └── metrics.go │ │ │ ├── rest │ │ │ │ ├── OWNERS │ │ │ │ ├── client.go │ │ │ │ ├── config.go │ │ │ │ ├── exec.go │ │ │ │ ├── plugin.go │ │ │ │ ├── request.go │ │ │ │ ├── transport.go │ │ │ │ ├── url_utils.go │ │ │ │ ├── urlbackoff.go │ │ │ │ ├── warnings.go │ │ │ │ ├── watch │ │ │ │ │ ├── decoder.go │ │ │ │ │ └── encoder.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── tools │ │ │ │ ├── auth │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── clientauth.go │ │ │ │ ├── clientcmd │ │ │ │ │ ├── api │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── latest │ │ │ │ │ │ │ └── latest.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── auth_loaders.go │ │ │ │ │ ├── client_config.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── flag.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── loader.go │ │ │ │ │ ├── merged_client_builder.go │ │ │ │ │ ├── overrides.go │ │ │ │ │ └── validation.go │ │ │ │ ├── metrics │ │ │ │ │ ├── OWNERS │ │ │ │ │ └── metrics.go │ │ │ │ └── reference │ │ │ │ │ └── ref.go │ │ │ ├── transport │ │ │ │ ├── OWNERS │ │ │ │ ├── cache.go │ │ │ │ ├── cert_rotation.go │ │ │ │ ├── config.go │ │ │ │ ├── round_trippers.go │ │ │ │ ├── token_source.go │ │ │ │ └── transport.go │ │ │ └── util │ │ │ │ ├── cert │ │ │ │ ├── OWNERS │ │ │ │ ├── cert.go │ │ │ │ ├── csr.go │ │ │ │ ├── io.go │ │ │ │ ├── pem.go │ │ │ │ └── server_inspection.go │ │ │ │ ├── connrotation │ │ │ │ └── connrotation.go │ │ │ │ ├── flowcontrol │ │ │ │ ├── backoff.go │ │ │ │ └── throttle.go │ │ │ │ ├── homedir │ │ │ │ └── homedir.go │ │ │ │ ├── keyutil │ │ │ │ ├── OWNERS │ │ │ │ └── key.go │ │ │ │ └── workqueue │ │ │ │ ├── default_rate_limiters.go │ │ │ │ ├── delaying_queue.go │ │ │ │ ├── doc.go │ │ │ │ ├── metrics.go │ │ │ │ ├── parallelizer.go │ │ │ │ ├── queue.go │ │ │ │ └── rate_limiting_queue.go │ │ ├── klog │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── RELEASE.md │ │ │ ├── SECURITY_CONTACTS │ │ │ ├── code-of-conduct.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── klog.go │ │ │ ├── klog_file.go │ │ │ └── v2 │ │ │ │ ├── .gitignore │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── RELEASE.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── SECURITY_CONTACTS │ │ │ │ ├── code-of-conduct.md │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── klog.go │ │ │ │ └── klog_file.go │ │ └── utils │ │ │ ├── LICENSE │ │ │ └── integer │ │ │ └── integer.go │ ├── modules.txt │ └── sigs.k8s.io │ │ ├── cluster-api-provider-aws │ │ ├── LICENSE │ │ └── pkg │ │ │ └── apis │ │ │ └── awsprovider │ │ │ └── v1beta1 │ │ │ ├── awsproviderconfig_types.go │ │ │ ├── awsproviderstatus_types.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── controller-runtime │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── client │ │ │ └── config │ │ │ │ ├── config.go │ │ │ │ └── doc.go │ │ │ ├── internal │ │ │ └── log │ │ │ │ └── log.go │ │ │ ├── log │ │ │ ├── deleg.go │ │ │ ├── log.go │ │ │ └── null.go │ │ │ └── scheme │ │ │ └── scheme.go │ │ ├── structured-merge-diff │ │ └── v4 │ │ │ ├── LICENSE │ │ │ └── value │ │ │ ├── allocator.go │ │ │ ├── doc.go │ │ │ ├── fields.go │ │ │ ├── jsontagutil.go │ │ │ ├── list.go │ │ │ ├── listreflect.go │ │ │ ├── listunstructured.go │ │ │ ├── map.go │ │ │ ├── mapreflect.go │ │ │ ├── mapunstructured.go │ │ │ ├── reflectcache.go │ │ │ ├── scalar.go │ │ │ ├── structreflect.go │ │ │ ├── value.go │ │ │ ├── valuereflect.go │ │ │ └── valueunstructured.go │ │ └── yaml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── SECURITY_CONTACTS │ │ ├── code-of-conduct.md │ │ ├── fields.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── yaml.go │ │ └── yaml_go110.go │ ├── windows │ └── windows.go │ └── wmcb │ ├── deploy │ ├── job.yaml │ ├── role.yaml │ └── rolebinding.yaml │ ├── main_test.go │ ├── powershell │ └── wget-ignore-cert.ps1 │ ├── templates │ └── cni.template │ └── wmcb_test.go ├── pkg ├── bootstrapper │ ├── bootstrapper.go │ ├── bootstrapper_test.go │ ├── kubelet.go │ └── templates │ │ └── kubelet_config.json ├── cloud │ ├── aws.go │ └── cloud.go └── internal │ └── containerd_conf.toml ├── test └── e2e │ ├── bootstrapper_test.go │ ├── main_test.go │ └── uninstall_kubelet_test.go └── vendor ├── github.com ├── ajeddeloh │ └── go-json │ │ ├── README │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fold.go │ │ ├── indent.go │ │ ├── scanner.go │ │ ├── stream.go │ │ └── tags.go ├── aws │ ├── aws-sdk-go-v2 │ │ ├── .gitignore │ │ ├── .golangci.toml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── DESIGN.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── aws │ │ │ ├── config.go │ │ │ ├── context.go │ │ │ ├── credential_cache.go │ │ │ ├── credentials.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── errors.go │ │ │ ├── from_ptr.go │ │ │ ├── go_module_metadata.go │ │ │ ├── logging.go │ │ │ ├── logging_generate.go │ │ │ ├── middleware │ │ │ │ ├── metadata.go │ │ │ │ ├── middleware.go │ │ │ │ ├── osname.go │ │ │ │ ├── osname_go115.go │ │ │ │ ├── request_id.go │ │ │ │ ├── request_id_retriever.go │ │ │ │ └── user_agent.go │ │ │ ├── protocol │ │ │ │ ├── query │ │ │ │ │ ├── array.go │ │ │ │ │ ├── encoder.go │ │ │ │ │ ├── map.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── object.go │ │ │ │ │ └── value.go │ │ │ │ ├── restjson │ │ │ │ │ └── decoder_util.go │ │ │ │ └── xml │ │ │ │ │ └── error_utils.go │ │ │ ├── ratelimit │ │ │ │ ├── token_bucket.go │ │ │ │ └── token_rate_limit.go │ │ │ ├── request.go │ │ │ ├── retry │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── jitter_backoff.go │ │ │ │ ├── metadata.go │ │ │ │ ├── middleware.go │ │ │ │ ├── retry.go │ │ │ │ ├── retryable_error.go │ │ │ │ ├── standard.go │ │ │ │ └── timeout_error.go │ │ │ ├── retryer.go │ │ │ ├── signer │ │ │ │ ├── internal │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ ├── header_rules.go │ │ │ │ │ │ ├── headers.go │ │ │ │ │ │ ├── hmac.go │ │ │ │ │ │ ├── host.go │ │ │ │ │ │ ├── scope.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ └── util.go │ │ │ │ └── v4 │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── presign_middleware.go │ │ │ │ │ ├── stream.go │ │ │ │ │ └── v4.go │ │ │ ├── to_ptr.go │ │ │ ├── transport │ │ │ │ └── http │ │ │ │ │ ├── client.go │ │ │ │ │ ├── content_type.go │ │ │ │ │ ├── response_error.go │ │ │ │ │ ├── response_error_middleware.go │ │ │ │ │ └── timeout_read_closer.go │ │ │ ├── types.go │ │ │ └── version.go │ │ ├── buildspec.yml │ │ ├── config │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── env_config.go │ │ │ ├── generate.go │ │ │ ├── go_module_metadata.go │ │ │ ├── load_options.go │ │ │ ├── local.go │ │ │ ├── provider.go │ │ │ ├── resolve.go │ │ │ ├── resolve_credentials.go │ │ │ └── shared_config.go │ │ ├── credentials │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── doc.go │ │ │ ├── ec2rolecreds │ │ │ │ ├── doc.go │ │ │ │ └── provider.go │ │ │ ├── endpointcreds │ │ │ │ ├── internal │ │ │ │ │ └── client │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ └── middleware.go │ │ │ │ └── provider.go │ │ │ ├── go_module_metadata.go │ │ │ ├── processcreds │ │ │ │ ├── doc.go │ │ │ │ └── provider.go │ │ │ ├── ssocreds │ │ │ │ ├── doc.go │ │ │ │ ├── os.go │ │ │ │ ├── os_windows.go │ │ │ │ └── provider.go │ │ │ ├── static_provider.go │ │ │ └── stscreds │ │ │ │ ├── assume_role_provider.go │ │ │ │ └── web_identity_provider.go │ │ ├── doc.go │ │ ├── feature │ │ │ └── ec2 │ │ │ │ └── imds │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── api_client.go │ │ │ │ ├── api_op_GetDynamicData.go │ │ │ │ ├── api_op_GetIAMInfo.go │ │ │ │ ├── api_op_GetInstanceIdentityDocument.go │ │ │ │ ├── api_op_GetMetadata.go │ │ │ │ ├── api_op_GetRegion.go │ │ │ │ ├── api_op_GetToken.go │ │ │ │ ├── api_op_GetUserData.go │ │ │ │ ├── doc.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── internal │ │ │ │ └── config │ │ │ │ │ └── resolvers.go │ │ │ │ ├── request_middleware.go │ │ │ │ └── token_provider.go │ │ ├── internal │ │ │ ├── configsources │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.go │ │ │ │ └── go_module_metadata.go │ │ │ ├── endpoints │ │ │ │ └── v2 │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── endpoints.go │ │ │ │ │ └── go_module_metadata.go │ │ │ ├── ini │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── ast.go │ │ │ │ ├── comma_token.go │ │ │ │ ├── comment_token.go │ │ │ │ ├── dependency.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty_token.go │ │ │ │ ├── errors.go │ │ │ │ ├── expression.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ ├── ini.go │ │ │ │ ├── ini_lexer.go │ │ │ │ ├── ini_parser.go │ │ │ │ ├── literal_tokens.go │ │ │ │ ├── newline_token.go │ │ │ │ ├── number_helper.go │ │ │ │ ├── op_tokens.go │ │ │ │ ├── parse_error.go │ │ │ │ ├── parse_stack.go │ │ │ │ ├── sep_tokens.go │ │ │ │ ├── skipper.go │ │ │ │ ├── statement.go │ │ │ │ ├── value_util.go │ │ │ │ ├── visitor.go │ │ │ │ ├── walker.go │ │ │ │ └── ws_token.go │ │ │ ├── rand │ │ │ │ └── rand.go │ │ │ ├── sdk │ │ │ │ ├── interfaces.go │ │ │ │ └── time.go │ │ │ ├── sdkio │ │ │ │ └── byte.go │ │ │ ├── strings │ │ │ │ └── strings.go │ │ │ ├── sync │ │ │ │ └── singleflight │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── singleflight.go │ │ │ └── timeconv │ │ │ │ └── duration.go │ │ ├── local-mod-replace.sh │ │ ├── modman.toml │ │ └── service │ │ │ ├── internal │ │ │ └── presigned-url │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── go_module_metadata.go │ │ │ │ └── middleware.go │ │ │ ├── sso │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_GetRoleCredentials.go │ │ │ ├── api_op_ListAccountRoles.go │ │ │ ├── api_op_ListAccounts.go │ │ │ ├── api_op_Logout.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ └── sts │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_AssumeRole.go │ │ │ ├── api_op_AssumeRoleWithSAML.go │ │ │ ├── api_op_AssumeRoleWithWebIdentity.go │ │ │ ├── api_op_DecodeAuthorizationMessage.go │ │ │ ├── api_op_GetAccessKeyInfo.go │ │ │ ├── api_op_GetCallerIdentity.go │ │ │ ├── api_op_GetFederationToken.go │ │ │ ├── api_op_GetSessionToken.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ └── endpoints │ │ │ │ └── endpoints.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ ├── errors.go │ │ │ └── types.go │ │ │ └── validators.go │ └── smithy-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── doc.go │ │ ├── document.go │ │ ├── document │ │ ├── doc.go │ │ ├── document.go │ │ └── errors.go │ │ ├── encoding │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── httpbinding │ │ │ ├── encode.go │ │ │ ├── header.go │ │ │ ├── path_replace.go │ │ │ ├── query.go │ │ │ └── uri.go │ │ └── xml │ │ │ ├── array.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── element.go │ │ │ ├── encoder.go │ │ │ ├── error_utils.go │ │ │ ├── escape.go │ │ │ ├── map.go │ │ │ ├── value.go │ │ │ └── xml_decoder.go │ │ ├── errors.go │ │ ├── go_module_metadata.go │ │ ├── io │ │ ├── byte.go │ │ ├── doc.go │ │ ├── reader.go │ │ └── ringbuffer.go │ │ ├── local-mod-replace.sh │ │ ├── logging │ │ └── logger.go │ │ ├── middleware │ │ ├── doc.go │ │ ├── logging.go │ │ ├── metadata.go │ │ ├── middleware.go │ │ ├── ordered_group.go │ │ ├── stack.go │ │ ├── stack_values.go │ │ ├── step_build.go │ │ ├── step_deserialize.go │ │ ├── step_finalize.go │ │ ├── step_initialize.go │ │ └── step_serialize.go │ │ ├── ptr │ │ ├── doc.go │ │ ├── from_ptr.go │ │ ├── gen_scalars.go │ │ └── to_ptr.go │ │ ├── rand │ │ ├── doc.go │ │ ├── rand.go │ │ └── uuid.go │ │ ├── time │ │ └── time.go │ │ ├── transport │ │ └── http │ │ │ ├── checksum_middleware.go │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── headerlist.go │ │ │ ├── host.go │ │ │ ├── internal │ │ │ └── io │ │ │ │ └── safe.go │ │ │ ├── md5_checksum.go │ │ │ ├── middleware_close_response_body.go │ │ │ ├── middleware_content_length.go │ │ │ ├── middleware_headers.go │ │ │ ├── middleware_http_logging.go │ │ │ ├── middleware_metadata.go │ │ │ ├── middleware_min_proto.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── time.go │ │ │ ├── url.go │ │ │ └── user_agent.go │ │ └── validation.go ├── coreos │ ├── go-semver │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── semver │ │ │ ├── semver.go │ │ │ └── sort.go │ ├── go-systemd │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── unit │ │ │ ├── deserialize.go │ │ │ ├── escape.go │ │ │ ├── option.go │ │ │ └── serialize.go │ │ └── v22 │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── unit │ │ │ ├── deserialize.go │ │ │ ├── escape.go │ │ │ ├── option.go │ │ │ └── serialize.go │ ├── ign-converter │ │ ├── LICENSE │ │ ├── translate │ │ │ └── v24tov31 │ │ │ │ └── v24tov31.go │ │ └── util │ │ │ └── util.go │ ├── ignition │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── config │ │ │ ├── shared │ │ │ │ ├── errors │ │ │ │ │ └── errors.go │ │ │ │ └── validations │ │ │ │ │ └── unit.go │ │ │ ├── util │ │ │ │ ├── helpers.go │ │ │ │ └── parsingErrors.go │ │ │ ├── v1 │ │ │ │ ├── cloudinit.go │ │ │ │ ├── config.go │ │ │ │ └── types │ │ │ │ │ ├── config.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── filesystem.go │ │ │ │ │ ├── group.go │ │ │ │ │ ├── networkd.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── passwd.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── raid.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── systemd.go │ │ │ │ │ ├── unit.go │ │ │ │ │ └── user.go │ │ │ ├── v2_0 │ │ │ │ ├── append.go │ │ │ │ ├── cloudinit.go │ │ │ │ ├── config.go │ │ │ │ ├── translate.go │ │ │ │ └── types │ │ │ │ │ ├── compression.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── filesystem.go │ │ │ │ │ ├── group.go │ │ │ │ │ ├── hash.go │ │ │ │ │ ├── ignition.go │ │ │ │ │ ├── networkd.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── passwd.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── raid.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── systemd.go │ │ │ │ │ ├── unit.go │ │ │ │ │ ├── url.go │ │ │ │ │ ├── user.go │ │ │ │ │ └── verification.go │ │ │ ├── v2_1 │ │ │ │ ├── append.go │ │ │ │ ├── cloudinit.go │ │ │ │ ├── config.go │ │ │ │ ├── translate.go │ │ │ │ └── types │ │ │ │ │ ├── config.go │ │ │ │ │ ├── directory.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── filesystem.go │ │ │ │ │ ├── ignition.go │ │ │ │ │ ├── mode.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── passwd.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── raid.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── unit.go │ │ │ │ │ ├── url.go │ │ │ │ │ └── verification.go │ │ │ ├── v2_2 │ │ │ │ ├── append.go │ │ │ │ ├── cloudinit.go │ │ │ │ ├── config.go │ │ │ │ ├── translate.go │ │ │ │ └── types │ │ │ │ │ ├── ca.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── directory.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── filesystem.go │ │ │ │ │ ├── ignition.go │ │ │ │ │ ├── mode.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── passwd.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── raid.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── unit.go │ │ │ │ │ ├── url.go │ │ │ │ │ └── verification.go │ │ │ ├── v2_3 │ │ │ │ ├── append.go │ │ │ │ ├── cloudinit.go │ │ │ │ ├── config.go │ │ │ │ ├── translate.go │ │ │ │ └── types │ │ │ │ │ ├── ca.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── directory.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── filesystem.go │ │ │ │ │ ├── ignition.go │ │ │ │ │ ├── mode.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── passwd.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── raid.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── unit.go │ │ │ │ │ ├── url.go │ │ │ │ │ └── verification.go │ │ │ ├── v2_4 │ │ │ │ ├── append.go │ │ │ │ ├── cloudinit.go │ │ │ │ ├── config.go │ │ │ │ ├── translate.go │ │ │ │ └── types │ │ │ │ │ ├── ca.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── directory.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── filesystem.go │ │ │ │ │ ├── headers.go │ │ │ │ │ ├── ignition.go │ │ │ │ │ ├── mode.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── passwd.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── raid.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── unit.go │ │ │ │ │ ├── url.go │ │ │ │ │ └── verification.go │ │ │ ├── v2_5_experimental │ │ │ │ └── types │ │ │ │ │ ├── ca.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── directory.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── file.go │ │ │ │ │ ├── filesystem.go │ │ │ │ │ ├── headers.go │ │ │ │ │ ├── ignition.go │ │ │ │ │ ├── mode.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── partition.go │ │ │ │ │ ├── passwd.go │ │ │ │ │ ├── path.go │ │ │ │ │ ├── raid.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── unit.go │ │ │ │ │ ├── url.go │ │ │ │ │ └── verification.go │ │ │ └── validate │ │ │ │ ├── astjson │ │ │ │ └── node.go │ │ │ │ ├── astnode │ │ │ │ └── astnode.go │ │ │ │ ├── report │ │ │ │ └── report.go │ │ │ │ └── validate.go │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── config │ │ │ ├── merge │ │ │ └── merge.go │ │ │ ├── shared │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ └── validations │ │ │ │ └── unit.go │ │ │ ├── util │ │ │ ├── helpers.go │ │ │ ├── interfaces.go │ │ │ ├── parsingErrors.go │ │ │ └── reflection.go │ │ │ ├── v3_1 │ │ │ ├── config.go │ │ │ └── types │ │ │ │ ├── config.go │ │ │ │ ├── device.go │ │ │ │ ├── directory.go │ │ │ │ ├── disk.go │ │ │ │ ├── file.go │ │ │ │ ├── filesystem.go │ │ │ │ ├── headers.go │ │ │ │ ├── ignition.go │ │ │ │ ├── mode.go │ │ │ │ ├── node.go │ │ │ │ ├── partition.go │ │ │ │ ├── passwd.go │ │ │ │ ├── path.go │ │ │ │ ├── proxy.go │ │ │ │ ├── raid.go │ │ │ │ ├── resource.go │ │ │ │ ├── schema.go │ │ │ │ ├── storage.go │ │ │ │ ├── tls.go │ │ │ │ ├── unit.go │ │ │ │ ├── url.go │ │ │ │ └── verification.go │ │ │ └── validate │ │ │ └── validate.go │ └── vcontext │ │ ├── LICENSE │ │ ├── json │ │ └── json.go │ │ ├── path │ │ └── path.go │ │ ├── report │ │ └── report.go │ │ ├── tree │ │ └── tree.go │ │ └── validate │ │ └── validate.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── go-logr │ ├── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── discard.go │ │ └── logr.go │ └── zapr │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── zapr.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go │ │ └── sortkeys │ │ └── sortkeys.go ├── google │ └── gofuzz │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ └── fuzz.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ ├── trap_windows.go │ │ └── trap_windows_1.4.go ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_118.go │ │ ├── go_above_19.go │ │ ├── go_below_118.go │ │ ├── reflect2.go │ │ ├── reflect2_amd64.s │ │ ├── reflect2_kind.go │ │ ├── relfect2_386.s │ │ ├── relfect2_amd64p32.s │ │ ├── relfect2_arm.s │ │ ├── relfect2_arm64.s │ │ ├── relfect2_mips64x.s │ │ ├── relfect2_mipsx.s │ │ ├── relfect2_ppc64x.s │ │ ├── relfect2_s390x.s │ │ ├── safe_field.go │ │ ├── safe_map.go │ │ ├── safe_slice.go │ │ ├── safe_struct.go │ │ ├── safe_type.go │ │ ├── type_map.go │ │ ├── unsafe_array.go │ │ ├── unsafe_eface.go │ │ ├── unsafe_field.go │ │ ├── unsafe_iface.go │ │ ├── unsafe_link.go │ │ ├── unsafe_map.go │ │ ├── unsafe_ptr.go │ │ ├── unsafe_slice.go │ │ ├── unsafe_struct.go │ │ └── unsafe_type.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── spf13 │ ├── cobra │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── bash_completions.md │ │ ├── bash_completionsV2.go │ │ ├── cobra.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── completions.go │ │ ├── fish_completions.go │ │ ├── fish_completions.md │ │ ├── powershell_completions.go │ │ ├── powershell_completions.md │ │ ├── projects_using_cobra.md │ │ ├── shell_completions.go │ │ ├── shell_completions.md │ │ ├── user_guide.md │ │ ├── zsh_completions.go │ │ └── zsh_completions.md │ └── pflag │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go ├── stretchr │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ └── http_assertions.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go └── vincent-petithory │ └── dataurl │ ├── LICENSE │ ├── README.md │ ├── dataurl.go │ ├── doc.go │ ├── lex.go │ ├── rfc2396.go │ └── wercker.yml ├── go.uber.org ├── atomic │ ├── .codecov.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── bool.go │ ├── bool_ext.go │ ├── doc.go │ ├── duration.go │ ├── duration_ext.go │ ├── error.go │ ├── error_ext.go │ ├── float64.go │ ├── float64_ext.go │ ├── gen.go │ ├── int32.go │ ├── int64.go │ ├── nocmp.go │ ├── string.go │ ├── string_ext.go │ ├── uint32.go │ ├── uint64.go │ └── value.go ├── multierr │ ├── .codecov.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── error.go │ ├── glide.yaml │ └── go113.go └── zap │ ├── .codecov.yml │ ├── .gitignore │ ├── .readme.tmpl │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── array.go │ ├── buffer │ ├── buffer.go │ └── pool.go │ ├── checklicense.sh │ ├── config.go │ ├── doc.go │ ├── encoder.go │ ├── error.go │ ├── field.go │ ├── flag.go │ ├── glide.yaml │ ├── global.go │ ├── http_handler.go │ ├── internal │ ├── bufferpool │ │ └── bufferpool.go │ ├── color │ │ └── color.go │ └── exit │ │ └── exit.go │ ├── level.go │ ├── logger.go │ ├── options.go │ ├── sink.go │ ├── stacktrace.go │ ├── sugar.go │ ├── time.go │ ├── writer.go │ └── zapcore │ ├── buffered_write_syncer.go │ ├── clock.go │ ├── console_encoder.go │ ├── core.go │ ├── doc.go │ ├── encoder.go │ ├── entry.go │ ├── error.go │ ├── field.go │ ├── hook.go │ ├── increase_level.go │ ├── json_encoder.go │ ├── level.go │ ├── level_strings.go │ ├── marshaler.go │ ├── memory_encoder.go │ ├── reflected_encoder.go │ ├── sampler.go │ ├── tee.go │ └── write_syncer.go ├── go4.org ├── AUTHORS ├── LICENSE └── errorutil │ └── highlight.go ├── golang.org └── x │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── go111.go │ │ ├── go115.go │ │ ├── go118.go │ │ ├── gotrack.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── not_go111.go │ │ ├── not_go115.go │ │ ├── not_go118.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ └── writesched_random.go │ └── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ └── trieval.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── internal │ │ └── unsafeheader │ │ │ └── unsafeheader.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── empty.s │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── svc │ │ ├── mgr │ │ │ ├── config.go │ │ │ ├── mgr.go │ │ │ ├── recovery.go │ │ │ └── service.go │ │ ├── security.go │ │ └── service.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ └── text │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── secure │ └── bidirule │ │ ├── bidirule.go │ │ ├── bidirule10.0.0.go │ │ └── bidirule9.0.0.go │ ├── transform │ └── transform.go │ └── unicode │ ├── bidi │ ├── bidi.go │ ├── bracket.go │ ├── core.go │ ├── prop.go │ ├── tables10.0.0.go │ ├── tables11.0.0.go │ ├── tables12.0.0.go │ ├── tables13.0.0.go │ ├── tables9.0.0.go │ └── trieval.go │ └── norm │ ├── composition.go │ ├── forminfo.go │ ├── input.go │ ├── iter.go │ ├── normalize.go │ ├── readwriter.go │ ├── tables10.0.0.go │ ├── tables11.0.0.go │ ├── tables12.0.0.go │ ├── tables13.0.0.go │ ├── tables9.0.0.go │ ├── transform.go │ └── trie.go ├── gopkg.in ├── inf.v0 │ ├── LICENSE │ ├── dec.go │ └── rounder.go ├── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── k8s.io ├── apimachinery │ ├── LICENSE │ ├── pkg │ │ ├── api │ │ │ ├── meta │ │ │ │ ├── OWNERS │ │ │ │ ├── conditions.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ ├── help.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── lazy.go │ │ │ │ ├── meta.go │ │ │ │ ├── multirestmapper.go │ │ │ │ ├── priority.go │ │ │ │ └── restmapper.go │ │ │ └── resource │ │ │ │ ├── OWNERS │ │ │ │ ├── amount.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── math.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── scale_int.go │ │ │ │ ├── suffix.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── apis │ │ │ └── meta │ │ │ │ └── v1 │ │ │ │ ├── OWNERS │ │ │ │ ├── controller_ref.go │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ ├── helpers.go │ │ │ │ ├── labels.go │ │ │ │ ├── meta.go │ │ │ │ ├── micro_time.go │ │ │ │ ├── micro_time_fuzz.go │ │ │ │ ├── micro_time_proto.go │ │ │ │ ├── register.go │ │ │ │ ├── time.go │ │ │ │ ├── time_fuzz.go │ │ │ │ ├── time_proto.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── watch.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ ├── conversion │ │ │ ├── converter.go │ │ │ ├── deep_equal.go │ │ │ ├── doc.go │ │ │ ├── helper.go │ │ │ └── queryparams │ │ │ │ ├── convert.go │ │ │ │ └── doc.go │ │ ├── fields │ │ │ ├── doc.go │ │ │ ├── fields.go │ │ │ ├── requirements.go │ │ │ └── selector.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ ├── labels.go │ │ │ ├── selector.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── runtime │ │ │ ├── allocator.go │ │ │ ├── codec.go │ │ │ ├── codec_check.go │ │ │ ├── conversion.go │ │ │ ├── converter.go │ │ │ ├── doc.go │ │ │ ├── embedded.go │ │ │ ├── error.go │ │ │ ├── extension.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── helper.go │ │ │ ├── interfaces.go │ │ │ ├── mapper.go │ │ │ ├── negotiate.go │ │ │ ├── register.go │ │ │ ├── schema │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ └── interfaces.go │ │ │ ├── scheme.go │ │ │ ├── scheme_builder.go │ │ │ ├── swagger_doc_generator.go │ │ │ ├── types.go │ │ │ ├── types_proto.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── selection │ │ │ └── operator.go │ │ ├── types │ │ │ ├── doc.go │ │ │ ├── namespacedname.go │ │ │ ├── nodename.go │ │ │ ├── patch.go │ │ │ └── uid.go │ │ ├── util │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── intstr │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── instr_fuzz.go │ │ │ │ └── intstr.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── naming │ │ │ │ └── from_stack.go │ │ │ ├── net │ │ │ │ ├── http.go │ │ │ │ ├── interface.go │ │ │ │ ├── port_range.go │ │ │ │ ├── port_split.go │ │ │ │ └── util.go │ │ │ ├── runtime │ │ │ │ └── runtime.go │ │ │ ├── sets │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int32.go │ │ │ │ ├── int64.go │ │ │ │ └── string.go │ │ │ ├── validation │ │ │ │ ├── field │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ └── validation.go │ │ │ └── wait │ │ │ │ ├── doc.go │ │ │ │ └── wait.go │ │ └── watch │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── mux.go │ │ │ ├── streamwatcher.go │ │ │ ├── watch.go │ │ │ └── zz_generated.deepcopy.go │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── reflect │ │ └── deep_equal.go ├── klog │ └── v2 │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── RELEASE.md │ │ ├── SECURITY.md │ │ ├── SECURITY_CONTACTS │ │ ├── code-of-conduct.md │ │ ├── contextual.go │ │ ├── exit.go │ │ ├── imports.go │ │ ├── internal │ │ ├── buffer │ │ │ └── buffer.go │ │ ├── clock │ │ │ ├── README.md │ │ │ └── clock.go │ │ ├── dbg │ │ │ └── dbg.go │ │ ├── serialize │ │ │ └── keyvalues.go │ │ └── severity │ │ │ └── severity.go │ │ ├── k8s_references.go │ │ ├── klog.go │ │ ├── klog_file.go │ │ ├── klog_file_others.go │ │ ├── klog_file_windows.go │ │ └── klogr.go └── utils │ ├── LICENSE │ ├── clock │ ├── README.md │ └── clock.go │ ├── internal │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── net │ │ ├── ip.go │ │ └── parse.go │ ├── net │ ├── ipnet.go │ ├── net.go │ ├── parse.go │ └── port.go │ └── strings │ └── slices │ └── slices.go ├── modules.txt └── sigs.k8s.io ├── controller-runtime ├── LICENSE └── pkg │ └── log │ ├── deleg.go │ ├── log.go │ ├── null.go │ ├── warning_handler.go │ └── zap │ ├── flags.go │ ├── kube_helpers.go │ └── zap.go ├── json ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── SECURITY.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── doc.go ├── internal │ └── golang │ │ └── encoding │ │ └── json │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fold.go │ │ ├── fuzz.go │ │ ├── indent.go │ │ ├── kubernetes_patch.go │ │ ├── scanner.go │ │ ├── stream.go │ │ ├── tables.go │ │ └── tags.go └── json.go └── structured-merge-diff └── v4 ├── LICENSE └── value ├── allocator.go ├── doc.go ├── fields.go ├── jsontagutil.go ├── list.go ├── listreflect.go ├── listunstructured.go ├── map.go ├── mapreflect.go ├── mapunstructured.go ├── reflectcache.go ├── scalar.go ├── structreflect.go ├── value.go ├── valuereflect.go └── valueunstructured.go /.ci-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/.ci-operator.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /Dockerfile.tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/Dockerfile.tools -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/OWNERS -------------------------------------------------------------------------------- /cmd/bootstrapper/initialize_kubelet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/cmd/bootstrapper/initialize_kubelet.go -------------------------------------------------------------------------------- /cmd/bootstrapper/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/cmd/bootstrapper/main.go -------------------------------------------------------------------------------- /cmd/bootstrapper/uninstall_kubelet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/cmd/bootstrapper/uninstall_kubelet.go -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/docs/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/go.sum -------------------------------------------------------------------------------- /hack/run-wmcb-ci-e2e-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/hack/run-wmcb-ci-e2e-test.sh -------------------------------------------------------------------------------- /hack/verify-gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/hack/verify-gofmt.sh -------------------------------------------------------------------------------- /hack/verify-vendor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/hack/verify-vendor.sh -------------------------------------------------------------------------------- /images/PR-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/images/PR-workflow.png -------------------------------------------------------------------------------- /internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/internal.go -------------------------------------------------------------------------------- /internal/test/clusterinfo/openshift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/clusterinfo/openshift.go -------------------------------------------------------------------------------- /internal/test/credentials/credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/credentials/credentials.go -------------------------------------------------------------------------------- /internal/test/framework/framework.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/framework/framework.go -------------------------------------------------------------------------------- /internal/test/framework/windowsvm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/framework/windowsvm.go -------------------------------------------------------------------------------- /internal/test/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/go.mod -------------------------------------------------------------------------------- /internal/test/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/go.sum -------------------------------------------------------------------------------- /internal/test/providers/aws/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/providers/aws/aws.go -------------------------------------------------------------------------------- /internal/test/providers/cloudprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/providers/cloudprovider.go -------------------------------------------------------------------------------- /internal/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/test.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/go-logr/logr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/go-logr/logr/go.mod -------------------------------------------------------------------------------- /internal/test/vendor/github.com/google/gofuzz/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/gofuzz 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/kr/fs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/kr/fs/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/github.com/kr/fs/Readme: -------------------------------------------------------------------------------- 1 | Filesystem Package 2 | 3 | http://godoc.org/github.com/kr/fs 4 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/kr/fs/filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/kr/fs/filesystem.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/kr/fs/go.mod: -------------------------------------------------------------------------------- 1 | module "github.com/kr/fs" 2 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/kr/fs/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/kr/fs/walk.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/.gitignore -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/Makefile -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/README.md -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/attrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/attrs.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/client.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/conn.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/debug.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/go.mod -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/go.sum -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/match.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/packet.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/release.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/request.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/server.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/pkg/sftp/sftp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/pkg/sftp/sftp.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/spf13/pflag/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/pflag 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/spf13/pflag/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/test/vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /internal/test/vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/oauth2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/oauth2/go.mod -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/oauth2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/oauth2/go.sum -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/cpu/cpu_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/cpu/cpu_x86.s -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /internal/test/vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/.travis.yml -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/go.mod -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /internal/test/vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/node/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/node/v1/register.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/client-go/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/client-go/rest/exec.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/.travis.yml -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/CONTRIBUTING.md -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/OWNERS -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/README.md -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/RELEASE.md -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/SECURITY_CONTACTS -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/code-of-conduct.md -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/go.mod -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/go.sum -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/klog.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/klog_file.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/v2/go.mod -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/v2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/v2/go.sum -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /internal/test/vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/modules.txt -------------------------------------------------------------------------------- /internal/test/vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /internal/test/vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /internal/test/vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /internal/test/vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /internal/test/vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /internal/test/vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /internal/test/vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /internal/test/vendor/sigs.k8s.io/yaml/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/sigs.k8s.io/yaml/go.mod -------------------------------------------------------------------------------- /internal/test/vendor/sigs.k8s.io/yaml/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/sigs.k8s.io/yaml/go.sum -------------------------------------------------------------------------------- /internal/test/vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /internal/test/vendor/sigs.k8s.io/yaml/yaml_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/vendor/sigs.k8s.io/yaml/yaml_go110.go -------------------------------------------------------------------------------- /internal/test/windows/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/windows/windows.go -------------------------------------------------------------------------------- /internal/test/wmcb/deploy/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/wmcb/deploy/job.yaml -------------------------------------------------------------------------------- /internal/test/wmcb/deploy/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/wmcb/deploy/role.yaml -------------------------------------------------------------------------------- /internal/test/wmcb/deploy/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/wmcb/deploy/rolebinding.yaml -------------------------------------------------------------------------------- /internal/test/wmcb/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/wmcb/main_test.go -------------------------------------------------------------------------------- /internal/test/wmcb/powershell/wget-ignore-cert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/wmcb/powershell/wget-ignore-cert.ps1 -------------------------------------------------------------------------------- /internal/test/wmcb/templates/cni.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/wmcb/templates/cni.template -------------------------------------------------------------------------------- /internal/test/wmcb/wmcb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/internal/test/wmcb/wmcb_test.go -------------------------------------------------------------------------------- /pkg/bootstrapper/bootstrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/pkg/bootstrapper/bootstrapper.go -------------------------------------------------------------------------------- /pkg/bootstrapper/bootstrapper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/pkg/bootstrapper/bootstrapper_test.go -------------------------------------------------------------------------------- /pkg/bootstrapper/kubelet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/pkg/bootstrapper/kubelet.go -------------------------------------------------------------------------------- /pkg/bootstrapper/templates/kubelet_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/pkg/bootstrapper/templates/kubelet_config.json -------------------------------------------------------------------------------- /pkg/cloud/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/pkg/cloud/aws.go -------------------------------------------------------------------------------- /pkg/cloud/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/pkg/cloud/cloud.go -------------------------------------------------------------------------------- /pkg/internal/containerd_conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/pkg/internal/containerd_conf.toml -------------------------------------------------------------------------------- /test/e2e/bootstrapper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/test/e2e/bootstrapper_test.go -------------------------------------------------------------------------------- /test/e2e/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/test/e2e/main_test.go -------------------------------------------------------------------------------- /test/e2e/uninstall_kubelet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/test/e2e/uninstall_kubelet_test.go -------------------------------------------------------------------------------- /vendor/github.com/ajeddeloh/go-json/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/ajeddeloh/go-json/README -------------------------------------------------------------------------------- /vendor/github.com/ajeddeloh/go-json/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/ajeddeloh/go-json/decode.go -------------------------------------------------------------------------------- /vendor/github.com/ajeddeloh/go-json/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/ajeddeloh/go-json/encode.go -------------------------------------------------------------------------------- /vendor/github.com/ajeddeloh/go-json/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/ajeddeloh/go-json/fold.go -------------------------------------------------------------------------------- /vendor/github.com/ajeddeloh/go-json/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/ajeddeloh/go-json/indent.go -------------------------------------------------------------------------------- /vendor/github.com/ajeddeloh/go-json/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/ajeddeloh/go-json/scanner.go -------------------------------------------------------------------------------- /vendor/github.com/ajeddeloh/go-json/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/ajeddeloh/go-json/stream.go -------------------------------------------------------------------------------- /vendor/github.com/ajeddeloh/go-json/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/ajeddeloh/go-json/tags.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/.golangci.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/.golangci.toml -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/DESIGN.md -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/Makefile -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/NOTICE.txt -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/README.md -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/aws/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/aws/config.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/aws/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/aws/context.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/aws/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/aws/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/aws/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/aws/types.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/modman.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/aws-sdk-go-v2/modman.toml -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/Makefile -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/README.md -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/document.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/document.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/document/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/document/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/encoding/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/encoding/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/errors.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/io/byte.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/io/byte.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/io/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/io/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/io/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/io/reader.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/io/ringbuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/io/ringbuffer.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/ptr/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/ptr/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/ptr/from_ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/ptr/from_ptr.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/ptr/to_ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/ptr/to_ptr.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/rand/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/rand/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/rand/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/rand/rand.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/rand/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/rand/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/time/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/time/time.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/aws/smithy-go/validation.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/go-semver/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-semver/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/go-semver/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/go-systemd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/go-systemd/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/v22/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/go-systemd/v22/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/v22/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/go-systemd/v22/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/ign-converter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/ign-converter/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/ignition/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/ignition/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/ignition/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/ignition/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/ignition/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/ignition/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/ignition/v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/ignition/v2/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/vcontext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/vcontext/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/vcontext/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/vcontext/json/json.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/vcontext/path/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/vcontext/path/path.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/vcontext/tree/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/coreos/vcontext/tree/tree.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/go-logr/logr/.golangci.yaml -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/go-logr/logr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/go-logr/logr/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/go-logr/logr/discard.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/go-logr/zapr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/go-logr/zapr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/zapr/zapr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/go-logr/zapr/zapr.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/gogo/protobuf/proto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/gogo/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/gogo/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/gogo/protobuf/proto/discard.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/gogo/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/gogo/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/gogo/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/google/gofuzz/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/google/gofuzz/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/adapter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/any_array.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/any_bool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/any_float.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/any_int32.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/any_int64.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/any_nil.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/any_number.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/any_object.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/any_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/any_uint32.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/any_uint64.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/build.sh -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/config.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/iter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/iter_array.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/iter_float.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/iter_int.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_skip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/iter_skip.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/iter_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/jsoniter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/jsoniter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/pool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/reflect.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/stream.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/stream_int.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/stream_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/json-iterator/go/test.sh -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/modern-go/concurrent/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/modern-go/concurrent/README.md -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/modern-go/concurrent/log.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/modern-go/concurrent/test.sh -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/modern-go/reflect2/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/modern-go/reflect2/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/modern-go/reflect2/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/modern-go/reflect2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/modern-go/reflect2/README.md -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/modern-go/reflect2/reflect2.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/modern-go/reflect2/safe_map.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/type_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/modern-go/reflect2/type_map.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/command_notwin.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/command_win.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/user_guide.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/zsh_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/zsh_completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/zsh_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/cobra/zsh_completions.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/duration_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/float32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/float64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/int32_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/int64_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_to_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/string_to_int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_to_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/string_to_int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /vendor/github.com/vincent-petithory/dataurl/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/default -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/.travis.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/bool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/bool_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/bool_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/duration.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/duration_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/duration_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/error_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/error_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/float64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/float64_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/float64_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/gen.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/int32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/int64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/nocmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/nocmp.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/string_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/uint32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/uint64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/atomic/value.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/multierr/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/multierr/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/multierr/.travis.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/multierr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/multierr/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/multierr/go113.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/buffer/buffer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/checklicense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/checklicense.sh -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/internal/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/internal/color/color.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/internal/exit/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/internal/exit/exit.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/stacktrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/stacktrace.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/clock.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/entry.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/increase_level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/increase_level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/json_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/json_encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/level_strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/level_strings.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/marshaler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/marshaler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/memory_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/memory_encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/sampler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/sampler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/write_syncer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go.uber.org/zap/zapcore/write_syncer.go -------------------------------------------------------------------------------- /vendor/go4.org/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go4.org/AUTHORS -------------------------------------------------------------------------------- /vendor/go4.org/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go4.org/LICENSE -------------------------------------------------------------------------------- /vendor/go4.org/errorutil/highlight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/go4.org/errorutil/highlight.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http/httpguts/guts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http/httpguts/guts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http/httpguts/httplex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http/httpguts/httplex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go115.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/go115.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go115.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/not_go115.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/not_go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/idna/idna10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/pre_go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/idna/pre_go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/idna/tables10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/idna/tables11.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/idna/tables12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/idna/tables13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/idna/tables9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/empty.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mkerrors.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/mkerrors.bash -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/mgr/mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/svc/mgr/mgr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/svc/security.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/svc/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/sys/windows/types_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bracket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/text/unicode/bidi/bracket.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/text/unicode/bidi/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/help.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/lazy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/lazy.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/meta.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/conversion/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/conversion/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/fields/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/fields/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/fields/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/fields/fields.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/labels/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/labels/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/labels/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/labels/labels.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/codec.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/error.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/helper.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/mapper.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/scheme.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/nodename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/types/nodename.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/types/patch.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/uid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/types/uid.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/util/json/json.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/net/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/util/net/http.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/net/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/util/net/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/byte.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/byte.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/int.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/wait/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/util/wait/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/wait/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/watch/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/watch/filter.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/watch/mux.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/apimachinery/pkg/watch/watch.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/internal/buffer/buffer.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/internal/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/internal/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/dbg/dbg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/internal/dbg/dbg.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/k8s_references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/k8s_references.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/klog_file_others.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/klog_file_windows.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/strings/slices/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/k8s.io/utils/strings/slices/slices.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/controller-runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/sigs.k8s.io/controller-runtime/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/sigs.k8s.io/json/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/sigs.k8s.io/json/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/sigs.k8s.io/json/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/windows-machine-config-bootstrapper/HEAD/vendor/sigs.k8s.io/json/json.go --------------------------------------------------------------------------------