├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── tls │ ├── config.json │ ├── intermediate-csr.json │ ├── root-csr.json │ └── server-csr.json └── workflows │ ├── ci.yaml │ └── rebase.yaml ├── .gitignore ├── .wokeignore ├── APPS_PLUGIN_VERSION ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── SECURITY.md ├── TANZU_VERSION ├── acceptance ├── vendir.lock.yml ├── vendir.yml └── vendor │ └── cartographer │ ├── LICENSE │ ├── NOTICE │ └── config │ └── crd │ └── bases │ ├── carto.run_clusterconfigtemplates.yaml │ ├── carto.run_clusterdeliveries.yaml │ ├── carto.run_clusterdeploymenttemplates.yaml │ ├── carto.run_clusterimagetemplates.yaml │ ├── carto.run_clusterruntemplates.yaml │ ├── carto.run_clustersourcetemplates.yaml │ ├── carto.run_clustersupplychains.yaml │ ├── carto.run_clustertemplates.yaml │ ├── carto.run_deliverables.yaml │ ├── carto.run_runnables.yaml │ └── carto.run_workloads.yaml ├── cmd └── plugin │ └── apps │ ├── README.md │ ├── main.go │ └── test │ └── main.go ├── codecov.yml ├── docs ├── README.md ├── command-reference.md ├── command-reference │ ├── tanzu_apps.md │ ├── tanzu_apps_cluster-supply-chain.md │ ├── tanzu_apps_cluster-supply-chain_get.md │ ├── tanzu_apps_cluster-supply-chain_list.md │ ├── tanzu_apps_workload.md │ ├── tanzu_apps_workload_apply.md │ ├── tanzu_apps_workload_create.md │ ├── tanzu_apps_workload_delete.md │ ├── tanzu_apps_workload_get.md │ ├── tanzu_apps_workload_list.md │ └── tanzu_apps_workload_tail.md ├── commands-details │ ├── clustersupplychain.md │ ├── workload_create_update_apply.md │ ├── workload_delete.md │ ├── workload_get.md │ ├── workload_list.md │ └── workload_tail.md ├── create-workload.md ├── debug-workload.md ├── how-to-guides.md └── tutorials.md ├── go.mod ├── go.sum ├── hack ├── boilerplate.go.txt ├── go.mod ├── go.sum ├── tools.go └── woke │ └── its-woke-rules.yaml ├── pkg ├── apis │ ├── annotations.go │ ├── cartographer │ │ └── v1alpha1 │ │ │ ├── cluster_supply_chain.go │ │ │ ├── cluster_supply_chain_helpers.go │ │ │ ├── common.go │ │ │ ├── deliverable.go │ │ │ ├── groupversion_info.go │ │ │ ├── groupversion_info_test.go │ │ │ ├── labels.go │ │ │ ├── testdata │ │ │ ├── malformed.yaml │ │ │ ├── multidocument.yaml │ │ │ ├── multidocument_first_empty.yaml │ │ │ ├── multidocument_first_last_empty.yaml │ │ │ ├── multidocument_last_empty.yaml │ │ │ ├── supplychain.yaml │ │ │ └── workload.yaml │ │ │ ├── workload.go │ │ │ ├── workload_helpers.go │ │ │ ├── workload_serviceclaim_printer.go │ │ │ ├── workload_serviceclaim_printer_test.go │ │ │ ├── workload_test.go │ │ │ └── zz_generated.deepcopy.go │ ├── knative │ │ └── serving │ │ │ └── v1 │ │ │ ├── groupversion_info.go │ │ │ ├── service_types.go │ │ │ └── zz_generated.deepcopy.go │ ├── labels.go │ ├── lsp │ │ └── local_source_proxy.go │ └── services │ │ └── v1alpha1 │ │ ├── resouceclaimworkloadconfig.go │ │ └── resourceclaimworkloadconfig_test.go ├── cli-runtime │ ├── arguments.go │ ├── arguments_test.go │ ├── client.go │ ├── client_test.go │ ├── cobra.go │ ├── cobra_test.go │ ├── config.go │ ├── config_pkg_test.go │ ├── config_test.go │ ├── dryrun.go │ ├── dryrun_test.go │ ├── emoji.go │ ├── errors.go │ ├── errors_test.go │ ├── flags.go │ ├── flags_test.go │ ├── logs │ │ ├── fake.go │ │ ├── interface.go │ │ └── stern.go │ ├── options.go │ ├── options_test.go │ ├── parsers │ │ ├── env.go │ │ ├── env_test.go │ │ ├── keyvalue.go │ │ ├── keyvalue_test.go │ │ ├── object.go │ │ ├── object_test.go │ │ ├── reference.go │ │ └── reference_test.go │ ├── printer │ │ ├── color.go │ │ ├── color_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── resource.go │ │ ├── resource_test.go │ │ ├── sort.go │ │ ├── sort_test.go │ │ ├── status.go │ │ ├── status_test.go │ │ ├── table │ │ │ ├── interface.go │ │ │ ├── tablegenerator.go │ │ │ ├── tableprinter.go │ │ │ └── tabwriter.go │ │ └── tabwriter │ │ │ └── tabwriter.go │ ├── survey.go │ ├── testdata │ │ ├── .kube │ │ │ └── config │ │ └── .unknown.yaml │ ├── testing │ │ ├── aliases.go │ │ ├── client.go │ │ ├── command_table.go │ │ ├── resource │ │ │ ├── test_resource.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── table_test.go │ │ └── validatable_table.go │ ├── validation │ │ ├── aliases.go │ │ ├── enum.go │ │ ├── enum_test.go │ │ ├── env.go │ │ ├── env_test.go │ │ ├── fielderrors.go │ │ ├── fielderrors_test.go │ │ ├── keyvalue.go │ │ ├── keyvalue_test.go │ │ ├── labels.go │ │ ├── labels_test.go │ │ ├── names.go │ │ ├── names_test.go │ │ ├── port.go │ │ ├── port_test.go │ │ ├── quantity.go │ │ ├── quantity_test.go │ │ ├── reference.go │ │ └── reference_test.go │ ├── wait │ │ ├── wait.go │ │ └── wait_test.go │ └── watch │ │ ├── fake │ │ └── fake_with_watch.go │ │ └── watcher_lifecycle.go ├── commands │ ├── clustersupplychain.go │ ├── clustersupplychain_get.go │ ├── clustersupplychain_get_test.go │ ├── clustersupplychain_list.go │ ├── clustersupplychain_list_test.go │ ├── clustersupplychain_test.go │ ├── docs.go │ ├── localsourceproxy.go │ ├── localsourceproxy_health.go │ ├── localsourceproxy_health_test.go │ ├── lsp │ │ ├── lsp.go │ │ └── lsp_test.go │ ├── testdata │ │ ├── debug.yaml │ │ ├── hello.go.jar │ │ ├── invalid.zip │ │ ├── liveupdate.yaml │ │ ├── local-source-exclude-files-windows │ │ │ ├── .tanzuignore │ │ │ ├── Tiltfile │ │ │ ├── excludable │ │ │ │ └── local │ │ │ ├── hello.txt │ │ │ └── resources │ │ │ │ ├── config │ │ │ │ ├── dev │ │ │ │ └── prod │ │ │ │ └── meta │ │ ├── local-source-exclude-files │ │ │ ├── .tanzuignore │ │ │ ├── Tiltfile │ │ │ ├── excludable │ │ │ │ └── local │ │ │ ├── hello.txt │ │ │ └── resources │ │ │ │ ├── config │ │ │ │ ├── dev │ │ │ │ └── prod │ │ │ │ └── meta │ │ ├── local-source │ │ │ ├── hello.txt │ │ │ └── subpath │ │ │ │ └── hello.txt │ │ ├── no-service-account-name.yaml │ │ ├── param-yaml.yaml │ │ ├── replace-update-strategy │ │ │ ├── all-fields-workload.yaml │ │ │ ├── invalid.yaml │ │ │ ├── replace-annotations.yaml │ │ │ ├── replace-build-env.yaml │ │ │ ├── replace-env.yaml │ │ │ ├── replace-labels.yaml │ │ │ ├── replace-no-service-account-name.yaml │ │ │ ├── replace-no-subpath.yaml │ │ │ ├── replace-params.yaml │ │ │ ├── replace-resources.yaml │ │ │ ├── replace-service-account-name.yaml │ │ │ ├── replace-service-claims.yaml │ │ │ ├── replace-source.yaml │ │ │ └── replace-subpath.yaml │ │ ├── service-account-name.yaml │ │ ├── workload-build-env.yaml │ │ ├── workload-custom-namespace.yaml │ │ ├── workload-invalid-name.yaml │ │ ├── workload-param-yaml.yaml │ │ ├── workload-service-ref.yaml │ │ ├── workload-subPath.yaml │ │ ├── workload-with-lsp-annotation.yaml │ │ ├── workload-with-no-source.yaml │ │ └── workload.yaml │ ├── workload.go │ ├── workload_apply.go │ ├── workload_apply_test.go │ ├── workload_create.go │ ├── workload_create_test.go │ ├── workload_delete.go │ ├── workload_delete_test.go │ ├── workload_get.go │ ├── workload_get_test.go │ ├── workload_list.go │ ├── workload_list_test.go │ ├── workload_tail.go │ ├── workload_tail_test.go │ └── workload_test.go ├── completion │ ├── cluster_supply_chain_names.go │ ├── cluster_supply_chain_names_test.go │ ├── component_name.go │ ├── component_name_test.go │ ├── duration.go │ ├── duration_test.go │ ├── workload_names.go │ └── workload_names_test.go ├── constants.go ├── dies │ ├── cartographer │ │ └── v1alpha1 │ │ │ ├── clustersupply_chain.go │ │ │ ├── deliverable.go │ │ │ ├── helper.go │ │ │ ├── workload.go │ │ │ ├── zz_generated.die.go │ │ │ └── zz_generated.die_test.go │ └── knative │ │ └── serving │ │ └── v1 │ │ ├── service.go │ │ ├── zz_generated.die.go │ │ └── zz_generated.die_test.go ├── flags │ ├── env_var.go │ └── flags.go ├── logger │ ├── fake │ │ └── fake_progress_logger.go │ ├── log_sink.go │ ├── log_sink_test.go │ ├── progress_logger.go │ ├── progress_logger_test.go │ ├── uilogger.go │ └── uilogger_test.go ├── printer │ ├── aliases.go │ ├── cluster_supply_chain_printer.go │ ├── cluster_supply_chain_printer_test.go │ ├── helpers.go │ ├── knative_service_printer.go │ ├── knative_service_printer_test.go │ ├── local_source_proxy.go │ ├── local_source_proxy_test.go │ ├── pod_printer.go │ ├── pod_printer_test.go │ ├── workload_deliverable_printer.go │ ├── workload_deliverable_printer_test.go │ ├── workload_overview_printer.go │ ├── workload_overview_printer_test.go │ ├── workload_source_printer.go │ ├── workload_source_printer_test.go │ ├── workload_status_printer.go │ └── workload_status_printer_test.go └── source │ ├── archive.go │ ├── archive_test.go │ ├── fake │ └── fake_wrapper.go │ ├── imgpkg.go │ ├── local_registry_client.go │ ├── local_registry_client_test.go │ ├── local_registry_round_tripper.go │ ├── local_registry_round_tripper_test.go │ ├── registry.go │ ├── resource.go │ ├── resource_test.go │ └── testdata │ ├── hello.go.jar │ ├── hello.go.zip │ ├── hello_jar │ └── hello.go │ ├── hello_zip │ └── hello.go │ ├── helloworld.jar │ ├── helloworld_java │ ├── content │ │ ├── firefoxOverlay.xul │ │ └── overlay.js │ ├── locale │ │ └── en-US │ │ │ ├── helloworld.dtd │ │ │ └── helloworld.properties │ └── skin │ │ └── overlay.css │ ├── invalid.jar │ └── invalid.zip ├── testing ├── e2e │ ├── cluster_supply_chain_test.go │ ├── testdata │ │ ├── do-not-replace-workload.yaml │ │ ├── hello.go │ │ ├── hello.go.jar │ │ ├── hello_update.go │ │ ├── hello_update.go.zip │ │ ├── prereq │ │ │ ├── cluster-supply-chain.yaml │ │ │ └── pod-withlabel.yaml │ │ ├── replace-workload.yaml │ │ ├── workload-with-lsp-annotation.yaml │ │ └── workload.yaml │ └── workload_test.go └── suite │ ├── client.go │ ├── command_line.go │ ├── helpers.go │ ├── integration.go │ └── utils.go └── vendor ├── cloud.google.com └── go │ └── compute │ ├── LICENSE │ ├── internal │ └── version.go │ └── metadata │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── metadata.go │ ├── retry.go │ ├── retry_linux.go │ └── tidyfix.go ├── dies.dev ├── LICENSE ├── apis │ ├── core │ │ └── v1 │ │ │ ├── binding.go │ │ │ ├── common.go │ │ │ ├── componentstatus.go │ │ │ ├── configmap.go │ │ │ ├── container.go │ │ │ ├── endpoints.go │ │ │ ├── event.go │ │ │ ├── limitrange.go │ │ │ ├── namespace.go │ │ │ ├── node.go │ │ │ ├── persistantvolume.go │ │ │ ├── persistantvolumeclaim.go │ │ │ ├── pod.go │ │ │ ├── podtemplate.go │ │ │ ├── replicationcontroller.go │ │ │ ├── resourcequota.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ ├── serviceaccount.go │ │ │ ├── volume.go │ │ │ └── zz_generated.die.go │ └── meta │ │ └── v1 │ │ ├── condition.go │ │ ├── group.go │ │ ├── listmeta.go │ │ ├── objectmeta.go │ │ ├── selector.go │ │ ├── status.go │ │ ├── typemeta.go │ │ └── zz_generated.die.go └── testing │ └── fields.go ├── github.com ├── AlecAivazis │ └── survey │ │ └── v2 │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── confirm.go │ │ ├── core │ │ ├── template.go │ │ └── write.go │ │ ├── editor.go │ │ ├── filter.go │ │ ├── input.go │ │ ├── multiline.go │ │ ├── multiselect.go │ │ ├── password.go │ │ ├── renderer.go │ │ ├── select.go │ │ ├── survey.go │ │ ├── terminal │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── buffered_reader.go │ │ ├── cursor.go │ │ ├── cursor_windows.go │ │ ├── display.go │ │ ├── display_posix.go │ │ ├── display_windows.go │ │ ├── error.go │ │ ├── output.go │ │ ├── output_windows.go │ │ ├── runereader.go │ │ ├── runereader_bsd.go │ │ ├── runereader_linux.go │ │ ├── runereader_posix.go │ │ ├── runereader_ppc64le.go │ │ ├── runereader_windows.go │ │ ├── sequences.go │ │ ├── stdio.go │ │ ├── syscall_windows.go │ │ └── terminal.go │ │ ├── transform.go │ │ └── validate.go ├── Azure │ ├── azure-sdk-for-go │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── services │ │ │ └── preview │ │ │ │ └── containerregistry │ │ │ │ └── runtime │ │ │ │ └── 2019-08-15-preview │ │ │ │ └── containerregistry │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── accesstokens.go │ │ │ │ ├── blob.go │ │ │ │ ├── client.go │ │ │ │ ├── dataplane_meta.json │ │ │ │ ├── manifests.go │ │ │ │ ├── models.go │ │ │ │ ├── refreshtokens.go │ │ │ │ ├── repository.go │ │ │ │ ├── tag.go │ │ │ │ ├── v2support.go │ │ │ │ └── version.go │ │ └── version │ │ │ └── version.go │ └── go-autorest │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── GNUmakefile │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── autorest │ │ ├── LICENSE │ │ ├── adal │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── devicetoken.go │ │ │ ├── go_mod_tidy_hack.go │ │ │ ├── persist.go │ │ │ ├── sender.go │ │ │ ├── token.go │ │ │ ├── token_1.13.go │ │ │ ├── token_legacy.go │ │ │ └── version.go │ │ ├── authorization.go │ │ ├── authorization_sas.go │ │ ├── authorization_storage.go │ │ ├── autorest.go │ │ ├── azure │ │ │ ├── async.go │ │ │ ├── auth │ │ │ │ ├── LICENSE │ │ │ │ ├── auth.go │ │ │ │ └── go_mod_tidy_hack.go │ │ │ ├── azure.go │ │ │ ├── cli │ │ │ │ ├── LICENSE │ │ │ │ ├── go_mod_tidy_hack.go │ │ │ │ ├── profile.go │ │ │ │ └── token.go │ │ │ ├── environments.go │ │ │ ├── metadata_environment.go │ │ │ └── rp.go │ │ ├── client.go │ │ ├── date │ │ │ ├── LICENSE │ │ │ ├── date.go │ │ │ ├── go_mod_tidy_hack.go │ │ │ ├── time.go │ │ │ ├── timerfc1123.go │ │ │ ├── unixtime.go │ │ │ └── utility.go │ │ ├── error.go │ │ ├── go_mod_tidy_hack.go │ │ ├── preparer.go │ │ ├── responder.go │ │ ├── retriablerequest.go │ │ ├── retriablerequest_1.7.go │ │ ├── retriablerequest_1.8.go │ │ ├── sender.go │ │ ├── utility.go │ │ ├── utility_1.13.go │ │ ├── utility_legacy.go │ │ └── version.go │ │ ├── azure-pipelines.yml │ │ ├── doc.go │ │ ├── logger │ │ ├── LICENSE │ │ ├── go_mod_tidy_hack.go │ │ └── logger.go │ │ └── tracing │ │ ├── LICENSE │ │ ├── go_mod_tidy_hack.go │ │ └── tracing.go ├── Netflix │ └── go-expect │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── OSSMETADATA │ │ ├── README.md │ │ ├── console.go │ │ ├── doc.go │ │ ├── expect.go │ │ ├── expect_opt.go │ │ ├── passthrough_pipe.go │ │ ├── reader_lease.go │ │ └── test_log.go ├── VividCortex │ └── ewma │ │ ├── .gitignore │ │ ├── .whitesource │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codecov.yml │ │ └── ewma.go ├── acarl005 │ └── stripansi │ │ ├── LICENSE │ │ ├── README.md │ │ └── stripansi.go ├── aws │ ├── aws-sdk-go-v2 │ │ ├── .gitignore │ │ ├── .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 │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ └── util.go │ │ │ │ └── v4 │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── presign_middleware.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 │ │ │ ├── endpoints │ │ │ │ └── endpoints.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 │ │ │ ├── ecr │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_BatchCheckLayerAvailability.go │ │ │ ├── api_op_BatchDeleteImage.go │ │ │ ├── api_op_BatchGetImage.go │ │ │ ├── api_op_CompleteLayerUpload.go │ │ │ ├── api_op_CreateRepository.go │ │ │ ├── api_op_DeleteLifecyclePolicy.go │ │ │ ├── api_op_DeleteRegistryPolicy.go │ │ │ ├── api_op_DeleteRepository.go │ │ │ ├── api_op_DeleteRepositoryPolicy.go │ │ │ ├── api_op_DescribeImageScanFindings.go │ │ │ ├── api_op_DescribeImages.go │ │ │ ├── api_op_DescribeRegistry.go │ │ │ ├── api_op_DescribeRepositories.go │ │ │ ├── api_op_GetAuthorizationToken.go │ │ │ ├── api_op_GetDownloadUrlForLayer.go │ │ │ ├── api_op_GetLifecyclePolicy.go │ │ │ ├── api_op_GetLifecyclePolicyPreview.go │ │ │ ├── api_op_GetRegistryPolicy.go │ │ │ ├── api_op_GetRepositoryPolicy.go │ │ │ ├── api_op_InitiateLayerUpload.go │ │ │ ├── api_op_ListImages.go │ │ │ ├── api_op_ListTagsForResource.go │ │ │ ├── api_op_PutImage.go │ │ │ ├── api_op_PutImageScanningConfiguration.go │ │ │ ├── api_op_PutImageTagMutability.go │ │ │ ├── api_op_PutLifecyclePolicy.go │ │ │ ├── api_op_PutRegistryPolicy.go │ │ │ ├── api_op_PutReplicationConfiguration.go │ │ │ ├── api_op_SetRepositoryPolicy.go │ │ │ ├── api_op_StartImageScan.go │ │ │ ├── api_op_StartLifecyclePolicyPreview.go │ │ │ ├── api_op_TagResource.go │ │ │ ├── api_op_UntagResource.go │ │ │ ├── api_op_UploadLayerPart.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── ecrpublic │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── api_client.go │ │ │ ├── api_op_BatchCheckLayerAvailability.go │ │ │ ├── api_op_BatchDeleteImage.go │ │ │ ├── api_op_CompleteLayerUpload.go │ │ │ ├── api_op_CreateRepository.go │ │ │ ├── api_op_DeleteRepository.go │ │ │ ├── api_op_DeleteRepositoryPolicy.go │ │ │ ├── api_op_DescribeImageTags.go │ │ │ ├── api_op_DescribeImages.go │ │ │ ├── api_op_DescribeRegistries.go │ │ │ ├── api_op_DescribeRepositories.go │ │ │ ├── api_op_GetAuthorizationToken.go │ │ │ ├── api_op_GetRegistryCatalogData.go │ │ │ ├── api_op_GetRepositoryCatalogData.go │ │ │ ├── api_op_GetRepositoryPolicy.go │ │ │ ├── api_op_InitiateLayerUpload.go │ │ │ ├── api_op_ListTagsForResource.go │ │ │ ├── api_op_PutImage.go │ │ │ ├── api_op_PutRegistryCatalogData.go │ │ │ ├── api_op_PutRepositoryCatalogData.go │ │ │ ├── api_op_SetRepositoryPolicy.go │ │ │ ├── api_op_TagResource.go │ │ │ ├── api_op_UntagResource.go │ │ │ ├── api_op_UploadLayerPart.go │ │ │ ├── deserializers.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── generated.json │ │ │ ├── go_module_metadata.go │ │ │ ├── internal │ │ │ │ └── endpoints │ │ │ │ │ └── endpoints.go │ │ │ ├── serializers.go │ │ │ ├── types │ │ │ │ ├── enums.go │ │ │ │ ├── errors.go │ │ │ │ └── types.go │ │ │ └── validators.go │ │ │ ├── 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 │ │ ├── encoding │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── httpbinding │ │ │ ├── encode.go │ │ │ ├── header.go │ │ │ ├── path_replace.go │ │ │ ├── query.go │ │ │ └── uri.go │ │ ├── json │ │ │ ├── array.go │ │ │ ├── constants.go │ │ │ ├── decoder_util.go │ │ │ ├── encoder.go │ │ │ ├── escape.go │ │ │ ├── object.go │ │ │ └── value.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 │ │ ├── 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 │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── time.go │ │ │ ├── url.go │ │ │ └── user_agent.go │ │ ├── validation.go │ │ └── waiter │ │ ├── logger.go │ │ └── waiter.go ├── awslabs │ └── amazon-ecr-credential-helper │ │ └── ecr-login │ │ ├── LICENSE │ │ ├── api │ │ ├── client.go │ │ └── factory.go │ │ ├── cache │ │ ├── build.go │ │ ├── credentials.go │ │ ├── file.go │ │ └── null.go │ │ ├── config │ │ ├── cache_dir.go │ │ └── log.go │ │ ├── ecr.go │ │ └── version │ │ └── version.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── briandowns │ └── spinner │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── character_sets.go │ │ └── spinner.go ├── cespare │ └── xxhash │ │ └── v2 │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── testall.sh │ │ ├── xxhash.go │ │ ├── xxhash_amd64.s │ │ ├── xxhash_arm64.s │ │ ├── xxhash_asm.go │ │ ├── xxhash_other.go │ │ ├── xxhash_safe.go │ │ └── xxhash_unsafe.go ├── cheggaaa │ └── pb │ │ └── v3 │ │ ├── LICENSE │ │ ├── element.go │ │ ├── io.go │ │ ├── pb.go │ │ ├── pool.go │ │ ├── pool_win.go │ │ ├── pool_x.go │ │ ├── preset.go │ │ ├── speed.go │ │ ├── template.go │ │ ├── termutil │ │ ├── term.go │ │ ├── term_appengine.go │ │ ├── term_bsd.go │ │ ├── term_linux.go │ │ ├── term_nix.go │ │ ├── term_plan9.go │ │ ├── term_solaris.go │ │ ├── term_win.go │ │ └── term_x.go │ │ └── util.go ├── chrismellard │ └── docker-credential-acr-env │ │ ├── LICENSE │ │ └── pkg │ │ ├── credhelper │ │ └── helper.go │ │ ├── registry │ │ ├── const.go │ │ └── registry.go │ │ └── token │ │ └── token.go ├── containerd │ └── stargz-snapshotter │ │ └── estargz │ │ ├── LICENSE │ │ ├── build.go │ │ ├── errorutil │ │ └── errors.go │ │ ├── estargz.go │ │ ├── gzip.go │ │ ├── testutil.go │ │ └── types.go ├── cppforlife │ ├── color │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── color.go │ │ └── doc.go │ └── go-cli-ui │ │ ├── LICENSE │ │ └── ui │ │ ├── color_ui.go │ │ ├── combo_writer.go │ │ ├── conf_ui.go │ │ ├── indenting_ui.go │ │ ├── interfaces.go │ │ ├── json_ui.go │ │ ├── non_interactive.go │ │ ├── non_tty_ui.go │ │ ├── noop_logger.go │ │ ├── noop_ui.go │ │ ├── padding_ui.go │ │ ├── table │ │ ├── headers.go │ │ ├── interfaces.go │ │ ├── sorting.go │ │ ├── table.go │ │ ├── values.go │ │ └── writer.go │ │ └── ui.go ├── cpuguy83 │ └── go-md2man │ │ └── v2 │ │ ├── LICENSE.md │ │ └── md2man │ │ ├── md2man.go │ │ └── roff.go ├── creack │ └── pty │ │ ├── .gitignore │ │ ├── Dockerfile.golang │ │ ├── Dockerfile.riscv │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asm_solaris_amd64.s │ │ ├── doc.go │ │ ├── ioctl.go │ │ ├── ioctl_bsd.go │ │ ├── ioctl_inner.go │ │ ├── ioctl_legacy.go │ │ ├── ioctl_solaris.go │ │ ├── ioctl_unsupported.go │ │ ├── mktypes.bash │ │ ├── pty_darwin.go │ │ ├── pty_dragonfly.go │ │ ├── pty_freebsd.go │ │ ├── pty_linux.go │ │ ├── pty_netbsd.go │ │ ├── pty_openbsd.go │ │ ├── pty_solaris.go │ │ ├── pty_unsupported.go │ │ ├── run.go │ │ ├── start.go │ │ ├── start_windows.go │ │ ├── test_crosscompile.sh │ │ ├── winsize.go │ │ ├── winsize_unix.go │ │ ├── winsize_unsupported.go │ │ ├── ztypes_386.go │ │ ├── ztypes_amd64.go │ │ ├── ztypes_arm.go │ │ ├── ztypes_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_ppc64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_loong64.go │ │ ├── ztypes_mipsx.go │ │ ├── ztypes_netbsd_32bit_int.go │ │ ├── ztypes_openbsd_32bit_int.go │ │ ├── ztypes_ppc.go │ │ ├── ztypes_ppc64.go │ │ ├── ztypes_ppc64le.go │ │ ├── ztypes_riscvx.go │ │ ├── ztypes_s390x.go │ │ └── ztypes_sparcx.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── dimchansky │ └── utfbom │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── utfbom.go ├── docker │ ├── cli │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── cli │ │ │ └── config │ │ │ ├── config.go │ │ │ ├── configfile │ │ │ ├── file.go │ │ │ ├── file_unix.go │ │ │ └── file_windows.go │ │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── default_store.go │ │ │ ├── default_store_darwin.go │ │ │ ├── default_store_linux.go │ │ │ ├── default_store_unsupported.go │ │ │ ├── default_store_windows.go │ │ │ ├── file_store.go │ │ │ └── native_store.go │ │ │ └── types │ │ │ └── authconfig.go │ ├── distribution │ │ ├── LICENSE │ │ └── registry │ │ │ └── client │ │ │ └── auth │ │ │ └── challenge │ │ │ ├── addr.go │ │ │ └── authchallenge.go │ ├── docker-credential-helpers │ │ ├── LICENSE │ │ ├── client │ │ │ ├── client.go │ │ │ └── command.go │ │ └── credentials │ │ │ ├── credentials.go │ │ │ ├── error.go │ │ │ ├── helper.go │ │ │ └── version.go │ └── docker │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pkg │ │ └── homedir │ │ ├── homedir_linux.go │ │ ├── homedir_others.go │ │ ├── homedir_unix.go │ │ └── homedir_windows.go ├── emicklei │ └── go-restful │ │ └── v3 │ │ ├── .gitignore │ │ ├── .goconvey │ │ ├── .travis.yml │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── Srcfile │ │ ├── bench_test.sh │ │ ├── compress.go │ │ ├── compressor_cache.go │ │ ├── compressor_pools.go │ │ ├── compressors.go │ │ ├── constants.go │ │ ├── container.go │ │ ├── cors_filter.go │ │ ├── coverage.sh │ │ ├── curly.go │ │ ├── curly_route.go │ │ ├── custom_verb.go │ │ ├── doc.go │ │ ├── entity_accessors.go │ │ ├── extensions.go │ │ ├── filter.go │ │ ├── filter_adapter.go │ │ ├── json.go │ │ ├── jsoniter.go │ │ ├── jsr311.go │ │ ├── log │ │ └── log.go │ │ ├── logger.go │ │ ├── mime.go │ │ ├── options_filter.go │ │ ├── parameter.go │ │ ├── path_expression.go │ │ ├── path_processor.go │ │ ├── request.go │ │ ├── response.go │ │ ├── route.go │ │ ├── route_builder.go │ │ ├── route_reader.go │ │ ├── router.go │ │ ├── service_error.go │ │ ├── web_service.go │ │ └── web_service_container.go ├── evanphx │ └── json-patch │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── merge.go │ │ ├── patch.go │ │ └── v5 │ │ ├── LICENSE │ │ ├── errors.go │ │ ├── merge.go │ │ └── patch.go ├── fatih │ └── color │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── color.go │ │ ├── color_windows.go │ │ └── doc.go ├── fsnotify │ └── fsnotify │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend_fen.go │ │ ├── backend_inotify.go │ │ ├── backend_kqueue.go │ │ ├── backend_other.go │ │ ├── backend_windows.go │ │ ├── fsnotify.go │ │ ├── mkdoc.zsh │ │ ├── system_bsd.go │ │ └── system_darwin.go ├── go-errors │ └── errors │ │ ├── .travis.yml │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── error.go │ │ ├── error_1_13.go │ │ ├── error_backward.go │ │ ├── parse_panic.go │ │ └── stackframe.go ├── go-logr │ └── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── discard.go │ │ ├── funcr │ │ └── funcr.go │ │ ├── logr.go │ │ ├── testing │ │ └── test.go │ │ └── testr │ │ └── testr.go ├── go-openapi │ ├── jsonpointer │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── pointer.go │ ├── jsonreference │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ │ └── normalize_url.go │ │ └── reference.go │ └── swag │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── convert.go │ │ ├── convert_types.go │ │ ├── doc.go │ │ ├── file.go │ │ ├── json.go │ │ ├── loading.go │ │ ├── name_lexem.go │ │ ├── net.go │ │ ├── path.go │ │ ├── post_go18.go │ │ ├── post_go19.go │ │ ├── pre_go18.go │ │ ├── pre_go19.go │ │ ├── split.go │ │ ├── util.go │ │ └── yaml.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-jwt │ └── jwt │ │ └── v4 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── ed25519.go │ │ ├── ed25519_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── parser_option.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ ├── staticcheck.conf │ │ ├── token.go │ │ └── types.go ├── golang │ ├── groupcache │ │ ├── LICENSE │ │ └── lru │ │ │ └── lru.go │ └── 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 │ ├── btree │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.go │ │ └── btree_generic.go │ ├── 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 │ │ └── openapiv3 │ │ │ ├── OpenAPIv3.go │ │ │ ├── OpenAPIv3.pb.go │ │ │ ├── OpenAPIv3.proto │ │ │ ├── README.md │ │ │ ├── annotations.pb.go │ │ │ ├── annotations.proto │ │ │ ├── document.go │ │ │ ├── openapi-3.0.json │ │ │ └── openapi-3.1.json │ ├── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ │ ├── cmpopts │ │ │ ├── equate.go │ │ │ ├── ignore.go │ │ │ ├── sort.go │ │ │ ├── struct_filter.go │ │ │ └── xform.go │ │ │ ├── compare.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ ├── debug_disable.go │ │ │ │ ├── debug_enable.go │ │ │ │ └── diff.go │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ ├── function │ │ │ │ └── func.go │ │ │ └── value │ │ │ │ ├── name.go │ │ │ │ ├── pointer.go │ │ │ │ └── sort.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_references.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ ├── go-containerregistry │ │ ├── LICENSE │ │ ├── internal │ │ │ ├── and │ │ │ │ └── and_closer.go │ │ │ ├── compression │ │ │ │ └── compression.go │ │ │ ├── estargz │ │ │ │ └── estargz.go │ │ │ ├── gzip │ │ │ │ └── zip.go │ │ │ ├── httptest │ │ │ │ └── httptest.go │ │ │ ├── redact │ │ │ │ └── redact.go │ │ │ ├── retry │ │ │ │ ├── retry.go │ │ │ │ └── wait │ │ │ │ │ └── kubernetes_apimachinery_wait.go │ │ │ ├── verify │ │ │ │ └── verify.go │ │ │ └── zstd │ │ │ │ └── zstd.go │ │ └── pkg │ │ │ ├── authn │ │ │ ├── README.md │ │ │ ├── anon.go │ │ │ ├── auth.go │ │ │ ├── authn.go │ │ │ ├── basic.go │ │ │ ├── bearer.go │ │ │ ├── doc.go │ │ │ ├── github │ │ │ │ └── keychain.go │ │ │ ├── keychain.go │ │ │ └── multikeychain.go │ │ │ ├── compression │ │ │ └── compression.go │ │ │ ├── logs │ │ │ └── logs.go │ │ │ ├── name │ │ │ ├── README.md │ │ │ ├── check.go │ │ │ ├── digest.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── options.go │ │ │ ├── ref.go │ │ │ ├── registry.go │ │ │ ├── repository.go │ │ │ └── tag.go │ │ │ ├── registry │ │ │ ├── README.md │ │ │ ├── blobs.go │ │ │ ├── blobs_disk.go │ │ │ ├── error.go │ │ │ ├── manifest.go │ │ │ ├── registry.go │ │ │ └── tls.go │ │ │ └── v1 │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── empty │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── image.go │ │ │ └── index.go │ │ │ ├── google │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── doc.go │ │ │ ├── keychain.go │ │ │ ├── list.go │ │ │ └── options.go │ │ │ ├── hash.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── layer.go │ │ │ ├── manifest.go │ │ │ ├── match │ │ │ └── match.go │ │ │ ├── mutate │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── mutate.go │ │ │ └── rebase.go │ │ │ ├── partial │ │ │ ├── README.md │ │ │ ├── compressed.go │ │ │ ├── doc.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── uncompressed.go │ │ │ └── with.go │ │ │ ├── platform.go │ │ │ ├── progress.go │ │ │ ├── remote │ │ │ ├── README.md │ │ │ ├── catalog.go │ │ │ ├── check.go │ │ │ ├── delete.go │ │ │ ├── descriptor.go │ │ │ ├── doc.go │ │ │ ├── fetcher.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── layer.go │ │ │ ├── list.go │ │ │ ├── mount.go │ │ │ ├── multi_write.go │ │ │ ├── options.go │ │ │ ├── progress.go │ │ │ ├── puller.go │ │ │ ├── pusher.go │ │ │ ├── referrers.go │ │ │ ├── schema1.go │ │ │ ├── transport │ │ │ │ ├── README.md │ │ │ │ ├── basic.go │ │ │ │ ├── bearer.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── logger.go │ │ │ │ ├── ping.go │ │ │ │ ├── retry.go │ │ │ │ ├── schemer.go │ │ │ │ ├── scope.go │ │ │ │ ├── transport.go │ │ │ │ └── useragent.go │ │ │ └── write.go │ │ │ ├── stream │ │ │ ├── README.md │ │ │ └── layer.go │ │ │ ├── tarball │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── image.go │ │ │ ├── layer.go │ │ │ └── write.go │ │ │ ├── types │ │ │ └── types.go │ │ │ └── zz_deepcopy_generated.go │ ├── gofuzz │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bytesource │ │ │ └── bytesource.go │ │ ├── doc.go │ │ └── fuzz.go │ ├── shlex │ │ ├── COPYING │ │ ├── README │ │ └── shlex.go │ └── uuid │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ └── version4.go ├── gregjones │ └── httpcache │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── httpcache.go ├── hashicorp │ └── hcl │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── decoder.go │ │ ├── hcl.go │ │ ├── hcl │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── walk.go │ │ ├── parser │ │ │ ├── error.go │ │ │ └── parser.go │ │ ├── printer │ │ │ ├── nodes.go │ │ │ └── printer.go │ │ ├── scanner │ │ │ └── scanner.go │ │ ├── strconv │ │ │ └── quote.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── json │ │ ├── parser │ │ │ ├── flatten.go │ │ │ └── parser.go │ │ ├── scanner │ │ │ └── scanner.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── lex.go │ │ └── parse.go ├── imdario │ └── mergo │ │ ├── .deepsource.toml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ └── mergo.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.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 ├── josharian │ └── intern │ │ ├── README.md │ │ ├── intern.go │ │ └── license.md ├── 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 ├── kballard │ └── go-shellquote │ │ ├── LICENSE │ │ ├── README │ │ ├── doc.go │ │ ├── quote.go │ │ └── unquote.go ├── klauspost │ └── compress │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── compressible.go │ │ ├── fse │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── bytereader.go │ │ ├── compress.go │ │ ├── decompress.go │ │ └── fse.go │ │ ├── gen.sh │ │ ├── huff0 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── bytereader.go │ │ ├── compress.go │ │ ├── decompress.go │ │ ├── decompress_amd64.go │ │ ├── decompress_amd64.s │ │ ├── decompress_generic.go │ │ └── huff0.go │ │ ├── internal │ │ ├── cpuinfo │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_amd64.go │ │ │ └── cpuinfo_amd64.s │ │ └── snapref │ │ │ ├── LICENSE │ │ │ ├── decode.go │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_other.go │ │ │ └── snappy.go │ │ ├── s2sx.mod │ │ ├── s2sx.sum │ │ └── zstd │ │ ├── README.md │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── blockdec.go │ │ ├── blockenc.go │ │ ├── blocktype_string.go │ │ ├── bytebuf.go │ │ ├── bytereader.go │ │ ├── decodeheader.go │ │ ├── decoder.go │ │ ├── decoder_options.go │ │ ├── dict.go │ │ ├── enc_base.go │ │ ├── enc_best.go │ │ ├── enc_better.go │ │ ├── enc_dfast.go │ │ ├── enc_fast.go │ │ ├── encoder.go │ │ ├── encoder_options.go │ │ ├── framedec.go │ │ ├── frameenc.go │ │ ├── fse_decoder.go │ │ ├── fse_decoder_amd64.go │ │ ├── fse_decoder_amd64.s │ │ ├── fse_decoder_generic.go │ │ ├── fse_encoder.go │ │ ├── fse_predefined.go │ │ ├── hash.go │ │ ├── history.go │ │ ├── internal │ │ └── xxhash │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_arm64.s │ │ │ ├── xxhash_asm.go │ │ │ ├── xxhash_other.go │ │ │ └── xxhash_safe.go │ │ ├── matchlen_amd64.go │ │ ├── matchlen_amd64.s │ │ ├── matchlen_generic.go │ │ ├── seqdec.go │ │ ├── seqdec_amd64.go │ │ ├── seqdec_amd64.s │ │ ├── seqdec_generic.go │ │ ├── seqenc.go │ │ ├── snappy.go │ │ ├── zip.go │ │ └── zstd.go ├── logrusorgru │ └── aurora │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS.md │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aurora.go │ │ ├── aurora_black_standard.png │ │ ├── aurora_colors_black.png │ │ ├── aurora_colors_white.png │ │ ├── aurora_formats.gif │ │ ├── aurora_grayscale.png │ │ ├── aurora_rarely_supported.png │ │ ├── aurora_white_standard.png │ │ ├── color.go │ │ ├── disable.png │ │ ├── enable.png │ │ ├── gopher_aurora.png │ │ ├── printf.png │ │ ├── simple.png │ │ ├── sprintf.go │ │ ├── sprintf.png │ │ ├── value.go │ │ └── wrap.go ├── magiconair │ └── properties │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── decode.go │ │ ├── doc.go │ │ ├── integrate.go │ │ ├── lex.go │ │ ├── load.go │ │ ├── parser.go │ │ ├── properties.go │ │ └── rangecheck.go ├── mailru │ └── easyjson │ │ ├── LICENSE │ │ ├── buffer │ │ └── pool.go │ │ ├── jlexer │ │ ├── bytestostr.go │ │ ├── bytestostr_nounsafe.go │ │ ├── error.go │ │ └── lexer.go │ │ └── jwriter │ │ └── writer.go ├── mattn │ ├── go-colorable │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_appengine.go │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ ├── go.test.sh │ │ └── noncolorable.go │ ├── go-isatty │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── go.test.sh │ │ ├── isatty_bsd.go │ │ ├── isatty_others.go │ │ ├── isatty_plan9.go │ │ ├── isatty_solaris.go │ │ ├── isatty_tcgets.go │ │ └── isatty_windows.go │ └── go-runewidth │ │ ├── LICENSE │ │ ├── README.md │ │ ├── runewidth.go │ │ ├── runewidth_appengine.go │ │ ├── runewidth_js.go │ │ ├── runewidth_posix.go │ │ ├── runewidth_table.go │ │ └── runewidth_windows.go ├── matttproud │ └── golang_protobuf_extensions │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pbutil │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go ├── mgutz │ └── ansi │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ansi.go │ │ ├── doc.go │ │ └── print.go ├── mitchellh │ ├── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ └── homedir.go │ └── mapstructure │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ └── mapstructure.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_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 ├── monochromegane │ └── go-gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── depth_holder.go │ │ ├── full_scan_patterns.go │ │ ├── gitignore.go │ │ ├── index_scan_patterns.go │ │ ├── initial_holder.go │ │ ├── match.go │ │ ├── pattern.go │ │ ├── patterns.go │ │ └── util.go ├── munnerz │ └── goautoneg │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.txt │ │ └── autoneg.go ├── olekukonko │ └── tablewriter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── csv.go │ │ ├── table.go │ │ ├── table_with_color.go │ │ ├── util.go │ │ └── wrap.go ├── opencontainers │ ├── go-digest │ │ ├── .mailmap │ │ ├── .pullapprove.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── LICENSE.docs │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── algorithm.go │ │ ├── digest.go │ │ ├── digester.go │ │ ├── doc.go │ │ └── verifiers.go │ └── image-spec │ │ ├── LICENSE │ │ └── specs-go │ │ ├── v1 │ │ ├── annotations.go │ │ ├── config.go │ │ ├── descriptor.go │ │ ├── index.go │ │ ├── layout.go │ │ ├── manifest.go │ │ └── mediatype.go │ │ ├── version.go │ │ └── versioned.go ├── pelletier │ └── go-toml │ │ └── v2 │ │ ├── .dockerignore │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.toml │ │ ├── .goreleaser.yaml │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── ci.sh │ │ ├── decode.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── internal │ │ ├── characters │ │ │ ├── ascii.go │ │ │ └── utf8.go │ │ ├── danger │ │ │ ├── danger.go │ │ │ └── typeid.go │ │ └── tracker │ │ │ ├── key.go │ │ │ ├── seen.go │ │ │ └── tracker.go │ │ ├── localtime.go │ │ ├── marshaler.go │ │ ├── strict.go │ │ ├── toml.abnf │ │ ├── types.go │ │ ├── unmarshaler.go │ │ └── unstable │ │ ├── ast.go │ │ ├── builder.go │ │ ├── doc.go │ │ ├── kind.go │ │ ├── parser.go │ │ └── scanner.go ├── peterbourgon │ └── diskv │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compression.go │ │ ├── diskv.go │ │ └── index.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 ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.go │ │ │ ├── collectors │ │ │ ├── collectors.go │ │ │ ├── dbstats_collector.go │ │ │ ├── expvar_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ └── process_collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal │ │ │ ├── almost_equal.go │ │ │ ├── difflib.go │ │ │ ├── go_collector_options.go │ │ │ ├── go_runtime_metrics.go │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_js.go │ │ │ ├── process_collector_other.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.go │ │ │ └── option.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ └── wrap.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── openmetrics_create.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ ├── internal │ │ │ └── bitbucket.org │ │ │ │ └── ww │ │ │ │ └── goautoneg │ │ │ │ ├── README.txt │ │ │ │ └── autoneg.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ ├── value.go │ │ │ ├── value_float.go │ │ │ ├── value_histogram.go │ │ │ └── value_type.go │ └── procfs │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cmdline.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_loong64.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_riscvx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fscache.go │ │ ├── internal │ │ ├── fs │ │ │ └── fs.go │ │ └── util │ │ │ ├── parse.go │ │ │ ├── readfile.go │ │ │ ├── sysreadfile.go │ │ │ ├── sysreadfile_compat.go │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_ip_socket.go │ │ ├── net_protocols.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_tcp.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── net_xfrm.go │ │ ├── netstat.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_cgroups.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_interrupts.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_netstat.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_snmp.go │ │ ├── proc_snmp6.go │ │ ├── proc_stat.go │ │ ├── proc_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go ├── rivo │ └── uniseg │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── doc.go │ │ ├── grapheme.go │ │ └── properties.go ├── russross │ └── blackfriday │ │ └── v2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── block.go │ │ ├── doc.go │ │ ├── entities.go │ │ ├── esc.go │ │ ├── html.go │ │ ├── inline.go │ │ ├── markdown.go │ │ ├── node.go │ │ └── smartypants.go ├── sagikazarmark │ ├── locafero │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── file_type.go │ │ ├── finder.go │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── helpers.go │ │ └── justfile │ └── slog-shim │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── attr.go │ │ ├── attr_120.go │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── handler.go │ │ ├── handler_120.go │ │ ├── json_handler.go │ │ ├── json_handler_120.go │ │ ├── level.go │ │ ├── level_120.go │ │ ├── logger.go │ │ ├── logger_120.go │ │ ├── record.go │ │ ├── record_120.go │ │ ├── text_handler.go │ │ ├── text_handler_120.go │ │ ├── value.go │ │ └── value_120.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── buffer_pool.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── sourcegraph │ └── conc │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── internal │ │ └── multierror │ │ │ ├── multierror_go119.go │ │ │ └── multierror_go120.go │ │ ├── iter │ │ ├── iter.go │ │ └── map.go │ │ ├── panics │ │ ├── panics.go │ │ └── try.go │ │ └── waitgroup.go ├── spf13 │ ├── afero │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── afero.go │ │ ├── appveyor.yml │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── httpFs.go │ │ ├── internal │ │ │ └── common │ │ │ │ └── adapters.go │ │ ├── iofs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ │ ├── dir.go │ │ │ ├── dirmap.go │ │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── symlink.go │ │ ├── unionFile.go │ │ └── util.go │ ├── cast │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cast.go │ │ ├── caste.go │ │ └── timeformattype_string.go │ ├── cobra │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── active_help.go │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── bash_completionsV2.go │ │ ├── cobra.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── completions.go │ │ ├── doc │ │ │ ├── man_docs.go │ │ │ ├── md_docs.go │ │ │ ├── rest_docs.go │ │ │ ├── util.go │ │ │ └── yaml_docs.go │ │ ├── fish_completions.go │ │ ├── flag_groups.go │ │ ├── powershell_completions.go │ │ ├── shell_completions.go │ │ └── zsh_completions.go │ ├── 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 │ └── viper │ │ ├── .editorconfig │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .yamlignore │ │ ├── .yamllint.yaml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── TROUBLESHOOTING.md │ │ ├── flags.go │ │ ├── flake.lock │ │ ├── flake.nix │ │ ├── internal │ │ └── encoding │ │ │ ├── decoder.go │ │ │ ├── dotenv │ │ │ ├── codec.go │ │ │ └── map_utils.go │ │ │ ├── encoder.go │ │ │ ├── error.go │ │ │ ├── hcl │ │ │ └── codec.go │ │ │ ├── ini │ │ │ ├── codec.go │ │ │ └── map_utils.go │ │ │ ├── javaproperties │ │ │ ├── codec.go │ │ │ └── map_utils.go │ │ │ ├── json │ │ │ └── codec.go │ │ │ ├── toml │ │ │ └── codec.go │ │ │ └── yaml │ │ │ └── codec.go │ │ ├── logger.go │ │ ├── util.go │ │ ├── viper.go │ │ ├── viper_go1_15.go │ │ ├── viper_go1_16.go │ │ ├── watch.go │ │ └── watch_unsupported.go ├── stern │ └── stern │ │ ├── LICENSE │ │ ├── kubernetes │ │ └── clientset.go │ │ └── stern │ │ ├── config.go │ │ ├── container_state.go │ │ ├── list.go │ │ ├── resource_matcher.go │ │ ├── stern.go │ │ ├── tail.go │ │ ├── target.go │ │ └── watch.go ├── stretchr │ ├── objx │ │ ├── .codeclimate.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Taskfile.yml │ │ ├── accessors.go │ │ ├── conversions.go │ │ ├── doc.go │ │ ├── map.go │ │ ├── mutations.go │ │ ├── security.go │ │ ├── tests.go │ │ ├── type_specific.go │ │ ├── type_specific_codegen.go │ │ └── value.go │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_compare_can_convert.go │ │ ├── assertion_compare_legacy.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 │ │ └── mock │ │ ├── doc.go │ │ └── mock.go ├── subosito │ └── gotenv │ │ ├── .env │ │ ├── .env.invalid │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── gotenv.go ├── vbatts │ └── tar-split │ │ ├── LICENSE │ │ └── archive │ │ └── tar │ │ ├── common.go │ │ ├── format.go │ │ ├── reader.go │ │ ├── stat_actime1.go │ │ ├── stat_actime2.go │ │ ├── stat_unix.go │ │ ├── strconv.go │ │ └── writer.go ├── vito │ └── go-interact │ │ ├── LICENSE.md │ │ └── interact │ │ ├── choice.go │ │ ├── errors.go │ │ ├── interaction.go │ │ ├── password.go │ │ ├── required.go │ │ └── userio.go ├── vmware-labs │ └── reconciler-runtime │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── reconcilers │ │ ├── alias.go │ │ ├── enqueuer.go │ │ ├── logger.go │ │ ├── patch.go │ │ ├── reconcilers.go │ │ ├── stash.go │ │ └── webhook.go │ │ ├── testing │ │ ├── aliases.go │ │ ├── assert.go │ │ ├── client.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── reconciler.go │ │ ├── recorder.go │ │ ├── subreconciler.go │ │ ├── tracker.go │ │ └── webhook.go │ │ ├── tracker │ │ └── tracker.go │ │ └── validation │ │ ├── docs.go │ │ └── fielderrors.go ├── vmware-tanzu │ ├── carvel-imgpkg │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pkg │ │ │ └── imgpkg │ │ │ ├── image │ │ │ ├── dir_image.go │ │ │ ├── file_image.go │ │ │ ├── file_layer.go │ │ │ └── tar_image.go │ │ │ ├── imagedigest │ │ │ └── imagedigest.go │ │ │ ├── internal │ │ │ └── util │ │ │ │ ├── level_logger.go │ │ │ │ ├── logger.go │ │ │ │ ├── prefixed_logger.go │ │ │ │ ├── progress_logger.go │ │ │ │ ├── retry.go │ │ │ │ ├── tag.go │ │ │ │ └── throttle.go │ │ │ ├── plainimage │ │ │ ├── contents.go │ │ │ └── plain_image.go │ │ │ └── registry │ │ │ ├── auth │ │ │ ├── credentialprovider │ │ │ │ └── keyring.go │ │ │ ├── custom_keychain.go │ │ │ └── env_keychain.go │ │ │ ├── doc.go │ │ │ ├── keychain.go │ │ │ ├── registry.go │ │ │ ├── transport.go │ │ │ └── with_progress.go │ ├── difflib │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── difflib.go │ └── tanzu-plugin-runtime │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── component │ │ ├── README.md │ │ ├── ask_for_confirmation.go │ │ ├── colorable-tty.go │ │ ├── doc.go │ │ ├── output.go │ │ ├── output_spinner.go │ │ ├── prompt.go │ │ ├── question.go │ │ ├── reader.go │ │ └── select.go │ │ ├── config │ │ └── types │ │ │ ├── clientconfig.go │ │ │ ├── clientconfig_helper.go │ │ │ ├── clientconfig_types.go │ │ │ └── metadata_clientconfig_types.go │ │ ├── log │ │ ├── log.go │ │ ├── logger.go │ │ ├── types.go │ │ └── writer.go │ │ └── plugin │ │ ├── buildinfo │ │ └── buildinfo.go │ │ ├── describe.go │ │ ├── generate_docs.go │ │ ├── info.go │ │ ├── lint.go │ │ ├── lint │ │ ├── cli-wordlist.yml │ │ ├── doc.go │ │ ├── lint.go │ │ └── terms.go │ │ ├── plugin.go │ │ ├── post-install.go │ │ ├── root.go │ │ ├── sync_plugins.go │ │ ├── types.go │ │ ├── usage.go │ │ └── version.go └── xlab │ └── treeprint │ ├── LICENSE │ ├── README.md │ ├── helpers.go │ ├── struct.go │ └── treeprint.go ├── go.starlark.net ├── LICENSE ├── internal │ ├── compile │ │ ├── compile.go │ │ └── serial.go │ └── spell │ │ └── spell.go ├── resolve │ ├── binding.go │ └── resolve.go ├── starlark │ ├── debug.go │ ├── empty.s │ ├── eval.go │ ├── hashtable.go │ ├── int.go │ ├── int_generic.go │ ├── int_posix64.go │ ├── interp.go │ ├── library.go │ ├── profile.go │ ├── unpack.go │ └── value.go ├── starlarkstruct │ ├── module.go │ └── struct.go └── syntax │ ├── grammar.txt │ ├── parse.go │ ├── quote.go │ ├── scan.go │ ├── syntax.go │ └── walk.go ├── go.uber.org ├── atomic │ ├── .codecov.yml │ ├── .gitignore │ ├── 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 │ ├── time.go │ ├── time_ext.go │ ├── uint32.go │ ├── uint64.go │ ├── uintptr.go │ ├── unsafe_pointer.go │ └── value.go └── multierr │ ├── .codecov.yml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── error.go │ └── glide.yaml ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── pkcs12 │ │ ├── bmp-string.go │ │ ├── crypto.go │ │ ├── errors.go │ │ ├── internal │ │ │ └── rc2 │ │ │ │ └── rc2.go │ │ ├── mac.go │ │ ├── pbkdf.go │ │ ├── pkcs12.go │ │ └── safebags.go │ └── ssh │ │ └── terminal │ │ └── terminal.go │ ├── exp │ ├── LICENSE │ ├── PATENTS │ ├── constraints │ │ └── constraints.go │ ├── slices │ │ ├── cmp.go │ │ ├── slices.go │ │ ├── sort.go │ │ ├── zsortanyfunc.go │ │ └── zsortordered.go │ └── slog │ │ ├── attr.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal │ │ ├── buffer │ │ │ └── buffer.go │ │ └── ignorepc.go │ │ ├── json_handler.go │ │ ├── level.go │ │ ├── logger.go │ │ ├── noplog.bench │ │ ├── record.go │ │ ├── text_handler.go │ │ ├── value.go │ │ ├── value_119.go │ │ └── value_120.go │ ├── mod │ ├── LICENSE │ ├── PATENTS │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ ├── context.go │ │ ├── go17.go │ │ ├── go19.go │ │ ├── pre_go17.go │ │ └── pre_go19.go │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── 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 │ │ │ ├── static_table.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 │ │ └── writesched_roundrobin.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 │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── oauth2 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── authhandler │ │ └── authhandler.go │ ├── google │ │ ├── appengine.go │ │ ├── appengine_gen1.go │ │ ├── appengine_gen2_flex.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── google.go │ │ ├── internal │ │ │ └── externalaccount │ │ │ │ ├── aws.go │ │ │ │ ├── basecredentials.go │ │ │ │ ├── clientauth.go │ │ │ │ ├── err.go │ │ │ │ ├── executablecredsource.go │ │ │ │ ├── filecredsource.go │ │ │ │ ├── impersonate.go │ │ │ │ ├── sts_exchange.go │ │ │ │ └── urlcredsource.go │ │ ├── jwt.go │ │ └── sdk.go │ ├── internal │ │ ├── client_appengine.go │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── oauth2.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ └── errgroup │ │ ├── errgroup.go │ │ ├── go120.go │ │ └── pre_go120.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── execabs │ │ ├── execabs.go │ │ ├── execabs_go118.go │ │ └── execabs_go119.go │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_go15_plan9.go │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.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 │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── epoll_zos.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── fstatfs_zos.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.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_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.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_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.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_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.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_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.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_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.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_amd64.go │ │ ├── zsyscall_darwin_amd64.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_freebsd_riscv64.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_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.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_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.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_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.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 │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.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_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.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_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.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 │ │ ├── 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 │ ├── term │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── term.go │ ├── term_plan9.go │ ├── term_unix.go │ ├── term_unix_bsd.go │ ├── term_unix_other.go │ ├── term_unsupported.go │ ├── term_windows.go │ └── terminal.go │ ├── text │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ │ ├── encoding.go │ │ ├── internal │ │ │ ├── identifier │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ └── unicode │ │ │ ├── override.go │ │ │ └── unicode.go │ ├── internal │ │ └── utf8internal │ │ │ └── utf8internal.go │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ ├── 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 │ │ │ ├── tables15.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 │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ └── trie.go │ └── width │ │ ├── kind_string.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ ├── trieval.go │ │ └── width.go │ └── time │ ├── LICENSE │ ├── PATENTS │ └── rate │ ├── rate.go │ └── sometimes.go ├── gomodules.xyz ├── jsonpatch │ ├── v2 │ │ ├── LICENSE │ │ └── jsonpatch.go │ └── v3 │ │ ├── LICENSE │ │ └── jsonpatch.go └── orderedmap │ ├── LICENSE │ ├── README.md │ ├── helpers.go │ └── orderedmap.go ├── google.golang.org ├── appengine │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── appengine.go │ ├── appengine_vm.go │ ├── errors.go │ ├── identity.go │ ├── internal │ │ ├── api.go │ │ ├── api_classic.go │ │ ├── api_common.go │ │ ├── app_id.go │ │ ├── app_identity │ │ │ ├── app_identity_service.pb.go │ │ │ └── app_identity_service.proto │ │ ├── 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 │ │ ├── modules │ │ │ ├── modules_service.pb.go │ │ │ └── modules_service.proto │ │ ├── net.go │ │ ├── regen.sh │ │ ├── remote_api │ │ │ ├── remote_api.pb.go │ │ │ └── remote_api.proto │ │ ├── transaction.go │ │ └── urlfetch │ │ │ ├── urlfetch_service.pb.go │ │ │ └── urlfetch_service.proto │ ├── namespace.go │ ├── timeout.go │ ├── travis_install.sh │ ├── travis_test.sh │ └── urlfetch │ │ └── urlfetch.go └── protobuf │ ├── 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 │ ├── 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 │ ├── order │ │ ├── order.go │ │ └── range.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 │ ├── protodesc │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_resolve.go │ │ ├── desc_validate.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.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 │ ├── descriptorpb │ └── descriptor.pb.go │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ └── timestamppb │ └── timestamp.pb.go ├── gopkg.in ├── inf.v0 │ ├── LICENSE │ ├── dec.go │ └── rounder.go ├── ini.v1 │ ├── .editorconfig │ ├── .gitignore │ ├── .golangci.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── codecov.yml │ ├── data_source.go │ ├── deprecated.go │ ├── error.go │ ├── file.go │ ├── helper.go │ ├── ini.go │ ├── key.go │ ├── parser.go │ ├── section.go │ └── struct.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 ├── gotest.tools └── v3 │ ├── LICENSE │ ├── assert │ ├── assert.go │ └── cmp │ │ ├── compare.go │ │ └── result.go │ └── internal │ ├── assert │ ├── assert.go │ └── result.go │ ├── difflib │ ├── LICENSE │ └── difflib.go │ ├── format │ ├── diff.go │ └── format.go │ └── source │ ├── defers.go │ ├── source.go │ ├── update.go │ └── version.go ├── k8s.io ├── api │ ├── LICENSE │ ├── admission │ │ ├── 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 │ ├── admissionregistration │ │ ├── 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 │ ├── apidiscovery │ │ └── v2beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.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 │ │ ├── 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 │ ├── 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 │ │ ├── v2 │ │ │ ├── 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 │ ├── 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 │ │ ├── v1 │ │ │ ├── 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 │ │ ├── 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 │ │ └── v1beta3 │ │ │ ├── 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 │ ├── imagepolicy │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── networking │ │ ├── v1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── well_known_annotations.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 │ │ │ └── zz_generated.prerelease-lifecycle.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 │ │ ├── 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 │ ├── 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 │ ├── resource │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.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 │ │ └── 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 ├── apiextensions-apiserver │ ├── LICENSE │ └── pkg │ │ └── apis │ │ └── apiextensions │ │ ├── deepcopy.go │ │ ├── doc.go │ │ ├── helpers.go │ │ ├── register.go │ │ ├── types.go │ │ ├── types_jsonschema.go │ │ ├── v1 │ │ ├── .import-restrictions │ │ ├── conversion.go │ │ ├── deepcopy.go │ │ ├── defaults.go │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── marshal.go │ │ ├── register.go │ │ ├── types.go │ │ ├── types_jsonschema.go │ │ ├── zz_generated.conversion.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.defaults.go │ │ └── zz_generated.deepcopy.go ├── apimachinery │ ├── LICENSE │ ├── pkg │ │ ├── api │ │ │ ├── equality │ │ │ │ └── semantic.go │ │ │ ├── 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 │ │ │ │ └── testrestmapper │ │ │ │ │ └── test_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 │ │ │ └── validation │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ └── objectmeta.go │ │ ├── apis │ │ │ └── meta │ │ │ │ ├── internalversion │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── scheme │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── 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 │ │ │ │ │ ├── unstructuredscheme │ │ │ │ │ │ └── scheme.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── validation │ │ │ │ │ └── validation.go │ │ │ │ ├── watch.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── v1beta1 │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.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 │ │ │ ├── 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 │ │ │ ├── cache │ │ │ │ ├── expiring.go │ │ │ │ └── lruexpirecache.go │ │ │ ├── diff │ │ │ │ └── diff.go │ │ │ ├── duration │ │ │ │ └── duration.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── framer │ │ │ │ └── framer.go │ │ │ ├── intstr │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── instr_fuzz.go │ │ │ │ └── intstr.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── managedfields │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── extract.go │ │ │ │ ├── fieldmanager.go │ │ │ │ ├── gvkparser.go │ │ │ │ ├── internal │ │ │ │ │ ├── atmostevery.go │ │ │ │ │ ├── buildmanagerinfo.go │ │ │ │ │ ├── capmanagers.go │ │ │ │ │ ├── conflict.go │ │ │ │ │ ├── fieldmanager.go │ │ │ │ │ ├── fields.go │ │ │ │ │ ├── lastapplied.go │ │ │ │ │ ├── lastappliedmanager.go │ │ │ │ │ ├── lastappliedupdater.go │ │ │ │ │ ├── managedfields.go │ │ │ │ │ ├── managedfieldsupdater.go │ │ │ │ │ ├── manager.go │ │ │ │ │ ├── pathelement.go │ │ │ │ │ ├── skipnonapplied.go │ │ │ │ │ ├── stripmeta.go │ │ │ │ │ ├── structuredmerge.go │ │ │ │ │ ├── typeconverter.go │ │ │ │ │ └── versionconverter.go │ │ │ │ ├── node.yaml │ │ │ │ ├── pod.yaml │ │ │ │ ├── scalehandler.go │ │ │ │ └── typeconverter.go │ │ │ ├── mergepatch │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ └── util.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 │ │ │ │ ├── ordered.go │ │ │ │ ├── set.go │ │ │ │ └── string.go │ │ │ ├── strategicpatch │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ ├── meta.go │ │ │ │ ├── patch.go │ │ │ │ └── types.go │ │ │ ├── uuid │ │ │ │ └── uuid.go │ │ │ ├── validation │ │ │ │ ├── field │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ └── validation.go │ │ │ ├── wait │ │ │ │ ├── backoff.go │ │ │ │ ├── delay.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── loop.go │ │ │ │ ├── poll.go │ │ │ │ ├── timer.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 │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── json │ │ ├── OWNERS │ │ └── fields.go │ │ └── reflect │ │ └── deep_equal.go ├── cli-runtime │ ├── LICENSE │ └── pkg │ │ └── resource │ │ ├── builder.go │ │ ├── client.go │ │ ├── crd_finder.go │ │ ├── doc.go │ │ ├── fake.go │ │ ├── helper.go │ │ ├── interfaces.go │ │ ├── kustomizevisitor.go │ │ ├── mapper.go │ │ ├── metadata_decoder.go │ │ ├── query_param_verifier.go │ │ ├── result.go │ │ ├── scheme.go │ │ ├── selector.go │ │ └── visitor.go ├── client-go │ ├── LICENSE │ ├── applyconfigurations │ │ ├── admissionregistration │ │ │ ├── v1 │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── rule.go │ │ │ │ ├── rulewithoperations.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── validatingwebhook.go │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ └── webhookclientconfig.go │ │ │ ├── v1alpha1 │ │ │ │ ├── admissionpolicyspec.go │ │ │ │ ├── matchresources.go │ │ │ │ ├── namedrulewithoperations.go │ │ │ │ ├── paramkind.go │ │ │ │ ├── paramref.go │ │ │ │ ├── paramsource.go │ │ │ │ ├── rule.go │ │ │ │ ├── rulewithoperations.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ ├── validatingadmissionpolicybinding.go │ │ │ │ ├── validatingadmissionpolicybindingspec.go │ │ │ │ ├── validatingadmissionpolicyspec.go │ │ │ │ └── validation.go │ │ │ └── v1beta1 │ │ │ │ ├── mutatingwebhook.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ ├── rule.go │ │ │ │ ├── rulewithoperations.go │ │ │ │ ├── servicereference.go │ │ │ │ ├── validatingwebhook.go │ │ │ │ ├── validatingwebhookconfiguration.go │ │ │ │ └── webhookclientconfig.go │ │ ├── apiserverinternal │ │ │ └── v1alpha1 │ │ │ │ ├── serverstorageversion.go │ │ │ │ ├── storageversion.go │ │ │ │ ├── storageversioncondition.go │ │ │ │ └── storageversionstatus.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ ├── v1beta1 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── rollbackconfig.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ │ └── v1beta2 │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── rollingupdatestatefulsetstrategy.go │ │ │ │ ├── scale.go │ │ │ │ ├── statefulset.go │ │ │ │ ├── statefulsetcondition.go │ │ │ │ ├── statefulsetordinals.go │ │ │ │ ├── statefulsetpersistentvolumeclaimretentionpolicy.go │ │ │ │ ├── statefulsetspec.go │ │ │ │ ├── statefulsetstatus.go │ │ │ │ └── statefulsetupdatestrategy.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── scale.go │ │ │ │ ├── scalespec.go │ │ │ │ └── scalestatus.go │ │ │ ├── v2 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ ├── hpascalingrules.go │ │ │ │ ├── metricidentifier.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── metrictarget.go │ │ │ │ ├── metricvaluestatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podresourcemetricsource.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ │ ├── v2beta1 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ │ └── v2beta2 │ │ │ │ ├── containerresourcemetricsource.go │ │ │ │ ├── containerresourcemetricstatus.go │ │ │ │ ├── crossversionobjectreference.go │ │ │ │ ├── externalmetricsource.go │ │ │ │ ├── externalmetricstatus.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscalerbehavior.go │ │ │ │ ├── horizontalpodautoscalercondition.go │ │ │ │ ├── horizontalpodautoscalerspec.go │ │ │ │ ├── horizontalpodautoscalerstatus.go │ │ │ │ ├── hpascalingpolicy.go │ │ │ │ ├── hpascalingrules.go │ │ │ │ ├── metricidentifier.go │ │ │ │ ├── metricspec.go │ │ │ │ ├── metricstatus.go │ │ │ │ ├── metrictarget.go │ │ │ │ ├── metricvaluestatus.go │ │ │ │ ├── objectmetricsource.go │ │ │ │ ├── objectmetricstatus.go │ │ │ │ ├── podsmetricsource.go │ │ │ │ ├── podsmetricstatus.go │ │ │ │ ├── resourcemetricsource.go │ │ │ │ └── resourcemetricstatus.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── cronjobspec.go │ │ │ │ ├── cronjobstatus.go │ │ │ │ ├── job.go │ │ │ │ ├── jobcondition.go │ │ │ │ ├── jobspec.go │ │ │ │ ├── jobstatus.go │ │ │ │ ├── jobtemplatespec.go │ │ │ │ ├── podfailurepolicy.go │ │ │ │ ├── podfailurepolicyonexitcodesrequirement.go │ │ │ │ ├── podfailurepolicyonpodconditionspattern.go │ │ │ │ ├── podfailurepolicyrule.go │ │ │ │ └── uncountedterminatedpods.go │ │ │ └── v1beta1 │ │ │ │ ├── cronjob.go │ │ │ │ ├── cronjobspec.go │ │ │ │ ├── cronjobstatus.go │ │ │ │ └── jobtemplatespec.go │ │ ├── certificates │ │ │ ├── v1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ └── certificatesigningrequeststatus.go │ │ │ └── v1beta1 │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequestcondition.go │ │ │ │ ├── certificatesigningrequestspec.go │ │ │ │ └── certificatesigningrequeststatus.go │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── lease.go │ │ │ │ └── leasespec.go │ │ │ └── v1beta1 │ │ │ │ ├── lease.go │ │ │ │ └── leasespec.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── affinity.go │ │ │ │ ├── attachedvolume.go │ │ │ │ ├── awselasticblockstorevolumesource.go │ │ │ │ ├── azurediskvolumesource.go │ │ │ │ ├── azurefilepersistentvolumesource.go │ │ │ │ ├── azurefilevolumesource.go │ │ │ │ ├── capabilities.go │ │ │ │ ├── cephfspersistentvolumesource.go │ │ │ │ ├── cephfsvolumesource.go │ │ │ │ ├── cinderpersistentvolumesource.go │ │ │ │ ├── cindervolumesource.go │ │ │ │ ├── claimsource.go │ │ │ │ ├── clientipconfig.go │ │ │ │ ├── componentcondition.go │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── configmapenvsource.go │ │ │ │ ├── configmapkeyselector.go │ │ │ │ ├── configmapnodeconfigsource.go │ │ │ │ ├── configmapprojection.go │ │ │ │ ├── configmapvolumesource.go │ │ │ │ ├── container.go │ │ │ │ ├── containerimage.go │ │ │ │ ├── containerport.go │ │ │ │ ├── containerstate.go │ │ │ │ ├── containerstaterunning.go │ │ │ │ ├── containerstateterminated.go │ │ │ │ ├── containerstatewaiting.go │ │ │ │ ├── containerstatus.go │ │ │ │ ├── csipersistentvolumesource.go │ │ │ │ ├── csivolumesource.go │ │ │ │ ├── daemonendpoint.go │ │ │ │ ├── downwardapiprojection.go │ │ │ │ ├── downwardapivolumefile.go │ │ │ │ ├── downwardapivolumesource.go │ │ │ │ ├── emptydirvolumesource.go │ │ │ │ ├── endpointaddress.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── endpointsubset.go │ │ │ │ ├── envfromsource.go │ │ │ │ ├── envvar.go │ │ │ │ ├── envvarsource.go │ │ │ │ ├── ephemeralcontainer.go │ │ │ │ ├── ephemeralcontainercommon.go │ │ │ │ ├── ephemeralvolumesource.go │ │ │ │ ├── event.go │ │ │ │ ├── eventseries.go │ │ │ │ ├── eventsource.go │ │ │ │ ├── execaction.go │ │ │ │ ├── fcvolumesource.go │ │ │ │ ├── flexpersistentvolumesource.go │ │ │ │ ├── flexvolumesource.go │ │ │ │ ├── flockervolumesource.go │ │ │ │ ├── gcepersistentdiskvolumesource.go │ │ │ │ ├── gitrepovolumesource.go │ │ │ │ ├── glusterfspersistentvolumesource.go │ │ │ │ ├── glusterfsvolumesource.go │ │ │ │ ├── grpcaction.go │ │ │ │ ├── hostalias.go │ │ │ │ ├── hostpathvolumesource.go │ │ │ │ ├── httpgetaction.go │ │ │ │ ├── httpheader.go │ │ │ │ ├── iscsipersistentvolumesource.go │ │ │ │ ├── iscsivolumesource.go │ │ │ │ ├── keytopath.go │ │ │ │ ├── lifecycle.go │ │ │ │ ├── lifecyclehandler.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── limitrangeitem.go │ │ │ │ ├── limitrangespec.go │ │ │ │ ├── loadbalanceringress.go │ │ │ │ ├── loadbalancerstatus.go │ │ │ │ ├── localobjectreference.go │ │ │ │ ├── localvolumesource.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namespacecondition.go │ │ │ │ ├── namespacespec.go │ │ │ │ ├── namespacestatus.go │ │ │ │ ├── nfsvolumesource.go │ │ │ │ ├── node.go │ │ │ │ ├── nodeaddress.go │ │ │ │ ├── nodeaffinity.go │ │ │ │ ├── nodecondition.go │ │ │ │ ├── nodeconfigsource.go │ │ │ │ ├── nodeconfigstatus.go │ │ │ │ ├── nodedaemonendpoints.go │ │ │ │ ├── nodeselector.go │ │ │ │ ├── nodeselectorrequirement.go │ │ │ │ ├── nodeselectorterm.go │ │ │ │ ├── nodespec.go │ │ │ │ ├── nodestatus.go │ │ │ │ ├── nodesysteminfo.go │ │ │ │ ├── objectfieldselector.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── persistentvolumeclaimcondition.go │ │ │ │ ├── persistentvolumeclaimspec.go │ │ │ │ ├── persistentvolumeclaimstatus.go │ │ │ │ ├── persistentvolumeclaimtemplate.go │ │ │ │ ├── persistentvolumeclaimvolumesource.go │ │ │ │ ├── persistentvolumesource.go │ │ │ │ ├── persistentvolumespec.go │ │ │ │ ├── persistentvolumestatus.go │ │ │ │ ├── photonpersistentdiskvolumesource.go │ │ │ │ ├── pod.go │ │ │ │ ├── podaffinity.go │ │ │ │ ├── podaffinityterm.go │ │ │ │ ├── podantiaffinity.go │ │ │ │ ├── podcondition.go │ │ │ │ ├── poddnsconfig.go │ │ │ │ ├── poddnsconfigoption.go │ │ │ │ ├── podip.go │ │ │ │ ├── podos.go │ │ │ │ ├── podreadinessgate.go │ │ │ │ ├── podresourceclaim.go │ │ │ │ ├── podschedulinggate.go │ │ │ │ ├── podsecuritycontext.go │ │ │ │ ├── podspec.go │ │ │ │ ├── podstatus.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── podtemplatespec.go │ │ │ │ ├── portstatus.go │ │ │ │ ├── portworxvolumesource.go │ │ │ │ ├── preferredschedulingterm.go │ │ │ │ ├── probe.go │ │ │ │ ├── probehandler.go │ │ │ │ ├── projectedvolumesource.go │ │ │ │ ├── quobytevolumesource.go │ │ │ │ ├── rbdpersistentvolumesource.go │ │ │ │ ├── rbdvolumesource.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontrollercondition.go │ │ │ │ ├── replicationcontrollerspec.go │ │ │ │ ├── replicationcontrollerstatus.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourcefieldselector.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── resourcequotaspec.go │ │ │ │ ├── resourcequotastatus.go │ │ │ │ ├── resourcerequirements.go │ │ │ │ ├── scaleiopersistentvolumesource.go │ │ │ │ ├── scaleiovolumesource.go │ │ │ │ ├── scopedresourceselectorrequirement.go │ │ │ │ ├── scopeselector.go │ │ │ │ ├── seccompprofile.go │ │ │ │ ├── secret.go │ │ │ │ ├── secretenvsource.go │ │ │ │ ├── secretkeyselector.go │ │ │ │ ├── secretprojection.go │ │ │ │ ├── secretreference.go │ │ │ │ ├── secretvolumesource.go │ │ │ │ ├── securitycontext.go │ │ │ │ ├── selinuxoptions.go │ │ │ │ ├── service.go │ │ │ │ ├── serviceaccount.go │ │ │ │ ├── serviceaccounttokenprojection.go │ │ │ │ ├── serviceport.go │ │ │ │ ├── servicespec.go │ │ │ │ ├── servicestatus.go │ │ │ │ ├── sessionaffinityconfig.go │ │ │ │ ├── storageospersistentvolumesource.go │ │ │ │ ├── storageosvolumesource.go │ │ │ │ ├── sysctl.go │ │ │ │ ├── taint.go │ │ │ │ ├── tcpsocketaction.go │ │ │ │ ├── toleration.go │ │ │ │ ├── topologyselectorlabelrequirement.go │ │ │ │ ├── topologyselectorterm.go │ │ │ │ ├── topologyspreadconstraint.go │ │ │ │ ├── typedlocalobjectreference.go │ │ │ │ ├── typedobjectreference.go │ │ │ │ ├── volume.go │ │ │ │ ├── volumedevice.go │ │ │ │ ├── volumemount.go │ │ │ │ ├── volumenodeaffinity.go │ │ │ │ ├── volumeprojection.go │ │ │ │ ├── volumesource.go │ │ │ │ ├── vspherevirtualdiskvolumesource.go │ │ │ │ ├── weightedpodaffinityterm.go │ │ │ │ └── windowssecuritycontextoptions.go │ │ ├── discovery │ │ │ ├── v1 │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.go │ │ │ │ └── forzone.go │ │ │ └── v1beta1 │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpointconditions.go │ │ │ │ ├── endpointhints.go │ │ │ │ ├── endpointport.go │ │ │ │ ├── endpointslice.go │ │ │ │ └── forzone.go │ │ ├── events │ │ │ ├── v1 │ │ │ │ ├── event.go │ │ │ │ └── eventseries.go │ │ │ └── v1beta1 │ │ │ │ ├── event.go │ │ │ │ └── eventseries.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── allowedcsidriver.go │ │ │ │ ├── allowedflexvolume.go │ │ │ │ ├── allowedhostpath.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonsetcondition.go │ │ │ │ ├── daemonsetspec.go │ │ │ │ ├── daemonsetstatus.go │ │ │ │ ├── daemonsetupdatestrategy.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deploymentcondition.go │ │ │ │ ├── deploymentspec.go │ │ │ │ ├── deploymentstatus.go │ │ │ │ ├── deploymentstrategy.go │ │ │ │ ├── fsgroupstrategyoptions.go │ │ │ │ ├── hostportrange.go │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── idrange.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipblock.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ ├── networkpolicypeer.go │ │ │ │ ├── networkpolicyport.go │ │ │ │ ├── networkpolicyspec.go │ │ │ │ ├── networkpolicystatus.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ ├── podsecuritypolicyspec.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicasetcondition.go │ │ │ │ ├── replicasetspec.go │ │ │ │ ├── replicasetstatus.go │ │ │ │ ├── rollbackconfig.go │ │ │ │ ├── rollingupdatedaemonset.go │ │ │ │ ├── rollingupdatedeployment.go │ │ │ │ ├── runasgroupstrategyoptions.go │ │ │ │ ├── runasuserstrategyoptions.go │ │ │ │ ├── runtimeclassstrategyoptions.go │ │ │ │ ├── scale.go │ │ │ │ ├── selinuxstrategyoptions.go │ │ │ │ └── supplementalgroupsstrategyoptions.go │ │ ├── flowcontrol │ │ │ ├── v1alpha1 │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ ├── v1beta1 │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ ├── v1beta2 │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ │ └── v1beta3 │ │ │ │ ├── flowdistinguishermethod.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── flowschemacondition.go │ │ │ │ ├── flowschemaspec.go │ │ │ │ ├── flowschemastatus.go │ │ │ │ ├── groupsubject.go │ │ │ │ ├── limitedprioritylevelconfiguration.go │ │ │ │ ├── limitresponse.go │ │ │ │ ├── nonresourcepolicyrule.go │ │ │ │ ├── policyruleswithsubjects.go │ │ │ │ ├── prioritylevelconfiguration.go │ │ │ │ ├── prioritylevelconfigurationcondition.go │ │ │ │ ├── prioritylevelconfigurationreference.go │ │ │ │ ├── prioritylevelconfigurationspec.go │ │ │ │ ├── prioritylevelconfigurationstatus.go │ │ │ │ ├── queuingconfiguration.go │ │ │ │ ├── resourcepolicyrule.go │ │ │ │ ├── serviceaccountsubject.go │ │ │ │ ├── subject.go │ │ │ │ └── usersubject.go │ │ ├── internal │ │ │ └── internal.go │ │ ├── meta │ │ │ └── v1 │ │ │ │ ├── condition.go │ │ │ │ ├── deleteoptions.go │ │ │ │ ├── groupversionkind.go │ │ │ │ ├── labelselector.go │ │ │ │ ├── labelselectorrequirement.go │ │ │ │ ├── listmeta.go │ │ │ │ ├── managedfieldsentry.go │ │ │ │ ├── objectmeta.go │ │ │ │ ├── ownerreference.go │ │ │ │ ├── preconditions.go │ │ │ │ ├── status.go │ │ │ │ ├── statuscause.go │ │ │ │ ├── statusdetails.go │ │ │ │ ├── typemeta.go │ │ │ │ └── unstructured.go │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ ├── ingressclassspec.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressservicebackend.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ ├── ingresstls.go │ │ │ │ ├── ipblock.go │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── networkpolicyegressrule.go │ │ │ │ ├── networkpolicyingressrule.go │ │ │ │ ├── networkpolicypeer.go │ │ │ │ ├── networkpolicyport.go │ │ │ │ ├── networkpolicyspec.go │ │ │ │ ├── networkpolicystatus.go │ │ │ │ └── servicebackendport.go │ │ │ ├── v1alpha1 │ │ │ │ ├── clustercidr.go │ │ │ │ └── clustercidrspec.go │ │ │ └── v1beta1 │ │ │ │ ├── httpingresspath.go │ │ │ │ ├── httpingressrulevalue.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingressbackend.go │ │ │ │ ├── ingressclass.go │ │ │ │ ├── ingressclassparametersreference.go │ │ │ │ ├── ingressclassspec.go │ │ │ │ ├── ingressloadbalanceringress.go │ │ │ │ ├── ingressloadbalancerstatus.go │ │ │ │ ├── ingressportstatus.go │ │ │ │ ├── ingressrule.go │ │ │ │ ├── ingressrulevalue.go │ │ │ │ ├── ingressspec.go │ │ │ │ ├── ingressstatus.go │ │ │ │ └── ingresstls.go │ │ ├── node │ │ │ ├── v1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ └── scheduling.go │ │ │ ├── v1alpha1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ ├── runtimeclassspec.go │ │ │ │ └── scheduling.go │ │ │ └── v1beta1 │ │ │ │ ├── overhead.go │ │ │ │ ├── runtimeclass.go │ │ │ │ └── scheduling.go │ │ ├── policy │ │ │ ├── v1 │ │ │ │ ├── eviction.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ └── poddisruptionbudgetstatus.go │ │ │ └── v1beta1 │ │ │ │ ├── allowedcsidriver.go │ │ │ │ ├── allowedflexvolume.go │ │ │ │ ├── allowedhostpath.go │ │ │ │ ├── eviction.go │ │ │ │ ├── fsgroupstrategyoptions.go │ │ │ │ ├── hostportrange.go │ │ │ │ ├── idrange.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ ├── poddisruptionbudgetspec.go │ │ │ │ ├── poddisruptionbudgetstatus.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ ├── podsecuritypolicyspec.go │ │ │ │ ├── runasgroupstrategyoptions.go │ │ │ │ ├── runasuserstrategyoptions.go │ │ │ │ ├── runtimeclassstrategyoptions.go │ │ │ │ ├── selinuxstrategyoptions.go │ │ │ │ └── supplementalgroupsstrategyoptions.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ │ ├── v1alpha1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ │ └── v1beta1 │ │ │ │ ├── aggregationrule.go │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── policyrule.go │ │ │ │ ├── role.go │ │ │ │ ├── rolebinding.go │ │ │ │ ├── roleref.go │ │ │ │ └── subject.go │ │ ├── resource │ │ │ └── v1alpha1 │ │ │ │ ├── allocationresult.go │ │ │ │ ├── podscheduling.go │ │ │ │ ├── podschedulingspec.go │ │ │ │ ├── podschedulingstatus.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimconsumerreference.go │ │ │ │ ├── resourceclaimparametersreference.go │ │ │ │ ├── resourceclaimschedulingstatus.go │ │ │ │ ├── resourceclaimspec.go │ │ │ │ ├── resourceclaimstatus.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ ├── resourceclaimtemplatespec.go │ │ │ │ ├── resourceclass.go │ │ │ │ └── resourceclassparametersreference.go │ │ ├── scheduling │ │ │ ├── v1 │ │ │ │ └── priorityclass.go │ │ │ ├── v1alpha1 │ │ │ │ └── priorityclass.go │ │ │ └── v1beta1 │ │ │ │ └── priorityclass.go │ │ └── storage │ │ │ ├── v1 │ │ │ ├── csidriver.go │ │ │ ├── csidriverspec.go │ │ │ ├── csinode.go │ │ │ ├── csinodedriver.go │ │ │ ├── csinodespec.go │ │ │ ├── csistoragecapacity.go │ │ │ ├── storageclass.go │ │ │ ├── tokenrequest.go │ │ │ ├── volumeattachment.go │ │ │ ├── volumeattachmentsource.go │ │ │ ├── volumeattachmentspec.go │ │ │ ├── volumeattachmentstatus.go │ │ │ ├── volumeerror.go │ │ │ └── volumenoderesources.go │ │ │ ├── v1alpha1 │ │ │ ├── csistoragecapacity.go │ │ │ ├── volumeattachment.go │ │ │ ├── volumeattachmentsource.go │ │ │ ├── volumeattachmentspec.go │ │ │ ├── volumeattachmentstatus.go │ │ │ └── volumeerror.go │ │ │ └── v1beta1 │ │ │ ├── csidriver.go │ │ │ ├── csidriverspec.go │ │ │ ├── csinode.go │ │ │ ├── csinodedriver.go │ │ │ ├── csinodespec.go │ │ │ ├── csistoragecapacity.go │ │ │ ├── storageclass.go │ │ │ ├── tokenrequest.go │ │ │ ├── volumeattachment.go │ │ │ ├── volumeattachmentsource.go │ │ │ ├── volumeattachmentspec.go │ │ │ ├── volumeattachmentstatus.go │ │ │ ├── volumeerror.go │ │ │ └── volumenoderesources.go │ ├── discovery │ │ ├── aggregated_discovery.go │ │ ├── cached │ │ │ ├── disk │ │ │ │ ├── cached_discovery.go │ │ │ │ └── round_tripper.go │ │ │ └── memory │ │ │ │ └── memcache.go │ │ ├── discovery_client.go │ │ ├── doc.go │ │ └── helper.go │ ├── dynamic │ │ ├── interface.go │ │ ├── scheme.go │ │ └── simple.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 │ │ │ ├── v1alpha1 │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── validatingadmissionpolicy.go │ │ │ │ └── validatingadmissionpolicybinding.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 │ │ │ ├── v1alpha1 │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── selfsubjectreview.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 │ │ │ ├── v2 │ │ │ │ ├── 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 │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ └── v1beta1 │ │ │ │ ├── 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 │ │ │ ├── v1 │ │ │ │ ├── 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 │ │ │ ├── v1beta2 │ │ │ │ ├── doc.go │ │ │ │ ├── flowcontrol_client.go │ │ │ │ ├── flowschema.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── prioritylevelconfiguration.go │ │ │ └── v1beta3 │ │ │ │ ├── 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 │ │ │ ├── v1alpha1 │ │ │ │ ├── clustercidr.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── networking_client.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 │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── policy_client.go │ │ │ └── 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 │ │ │ ├── resource │ │ │ └── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── podscheduling.go │ │ │ │ ├── resource_client.go │ │ │ │ ├── resourceclaim.go │ │ │ │ ├── resourceclaimtemplate.go │ │ │ │ └── resourceclass.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 │ │ │ ├── csistoragecapacity.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 │ │ │ ├── csistoragecapacity.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ ├── storageclass.go │ │ │ └── volumeattachment.go │ ├── metadata │ │ ├── interface.go │ │ └── metadata.go │ ├── openapi │ │ ├── cached │ │ │ ├── client.go │ │ │ └── groupversion.go │ │ ├── client.go │ │ └── groupversion.go │ ├── pkg │ │ ├── apis │ │ │ └── clientauthentication │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ ├── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── version │ │ │ ├── base.go │ │ │ ├── doc.go │ │ │ └── version.go │ ├── plugin │ │ └── pkg │ │ │ └── client │ │ │ └── auth │ │ │ ├── OWNERS │ │ │ ├── azure │ │ │ └── azure_stub.go │ │ │ ├── exec │ │ │ ├── exec.go │ │ │ └── metrics.go │ │ │ ├── gcp │ │ │ └── gcp_stub.go │ │ │ ├── oidc │ │ │ └── oidc.go │ │ │ ├── plugins.go │ │ │ └── plugins_providers.go │ ├── rest │ │ ├── OWNERS │ │ ├── client.go │ │ ├── config.go │ │ ├── exec.go │ │ ├── fake │ │ │ └── fake.go │ │ ├── plugin.go │ │ ├── request.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── urlbackoff.go │ │ ├── warnings.go │ │ ├── watch │ │ │ ├── decoder.go │ │ │ └── encoder.go │ │ ├── with_retry.go │ │ └── zz_generated.deepcopy.go │ ├── restmapper │ │ ├── category_expansion.go │ │ ├── discovery.go │ │ └── shortcut.go │ ├── testing │ │ ├── actions.go │ │ ├── fake.go │ │ ├── fixture.go │ │ └── interface.go │ ├── tools │ │ ├── auth │ │ │ ├── OWNERS │ │ │ └── clientauth.go │ │ ├── cache │ │ │ ├── OWNERS │ │ │ ├── controller.go │ │ │ ├── delta_fifo.go │ │ │ ├── doc.go │ │ │ ├── expiration_cache.go │ │ │ ├── expiration_cache_fakes.go │ │ │ ├── fake_custom_store.go │ │ │ ├── fifo.go │ │ │ ├── heap.go │ │ │ ├── index.go │ │ │ ├── listers.go │ │ │ ├── listwatch.go │ │ │ ├── mutation_cache.go │ │ │ ├── mutation_detector.go │ │ │ ├── reflector.go │ │ │ ├── reflector_metrics.go │ │ │ ├── retry_with_deadline.go │ │ │ ├── shared_informer.go │ │ │ ├── store.go │ │ │ ├── thread_safe_store.go │ │ │ └── undelta_store.go │ │ ├── clientcmd │ │ │ ├── api │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── latest │ │ │ │ │ └── latest.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.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 │ │ ├── leaderelection │ │ │ ├── OWNERS │ │ │ ├── healthzadaptor.go │ │ │ ├── leaderelection.go │ │ │ ├── metrics.go │ │ │ └── resourcelock │ │ │ │ ├── configmaplock.go │ │ │ │ ├── endpointslock.go │ │ │ │ ├── interface.go │ │ │ │ ├── leaselock.go │ │ │ │ └── multilock.go │ │ ├── metrics │ │ │ ├── OWNERS │ │ │ └── metrics.go │ │ ├── pager │ │ │ └── pager.go │ │ ├── record │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_cache.go │ │ │ ├── fake.go │ │ │ └── util │ │ │ │ └── util.go │ │ ├── reference │ │ │ └── ref.go │ │ └── watch │ │ │ ├── informerwatcher.go │ │ │ ├── retrywatcher.go │ │ │ └── until.go │ ├── transport │ │ ├── OWNERS │ │ ├── cache.go │ │ ├── cache_go118.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 ├── component-base │ ├── LICENSE │ └── config │ │ ├── OWNERS │ │ ├── doc.go │ │ ├── types.go │ │ ├── v1alpha1 │ │ ├── conversion.go │ │ ├── defaults.go │ │ ├── doc.go │ │ ├── register.go │ │ ├── types.go │ │ ├── zz_generated.conversion.go │ │ └── zz_generated.deepcopy.go │ │ └── zz_generated.deepcopy.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 ├── kube-openapi │ ├── LICENSE │ └── pkg │ │ ├── builder3 │ │ └── util │ │ │ └── util.go │ │ ├── cached │ │ └── cache.go │ │ ├── common │ │ ├── common.go │ │ ├── doc.go │ │ └── interfaces.go │ │ ├── handler3 │ │ └── handler.go │ │ ├── internal │ │ ├── flags.go │ │ ├── serialization.go │ │ └── third_party │ │ │ └── go-json-experiment │ │ │ └── json │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arshal.go │ │ │ ├── arshal_any.go │ │ │ ├── arshal_default.go │ │ │ ├── arshal_funcs.go │ │ │ ├── arshal_inlined.go │ │ │ ├── arshal_methods.go │ │ │ ├── arshal_time.go │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── errors.go │ │ │ ├── fields.go │ │ │ ├── fold.go │ │ │ ├── intern.go │ │ │ ├── pools.go │ │ │ ├── state.go │ │ │ ├── token.go │ │ │ └── value.go │ │ ├── openapiconv │ │ └── convert.go │ │ ├── schemaconv │ │ ├── openapi.go │ │ ├── proto_models.go │ │ └── smd.go │ │ ├── schemamutation │ │ └── walker.go │ │ ├── spec3 │ │ ├── component.go │ │ ├── encoding.go │ │ ├── example.go │ │ ├── external_documentation.go │ │ ├── fuzz.go │ │ ├── header.go │ │ ├── media_type.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path.go │ │ ├── request_body.go │ │ ├── response.go │ │ ├── security_scheme.go │ │ ├── server.go │ │ └── spec.go │ │ ├── util │ │ └── proto │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── document.go │ │ │ ├── document_v3.go │ │ │ └── openapi.go │ │ └── validation │ │ └── spec │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── contact_info.go │ │ ├── external_docs.go │ │ ├── fuzz.go │ │ ├── gnostic.go │ │ ├── header.go │ │ ├── info.go │ │ ├── items.go │ │ ├── license.go │ │ ├── operation.go │ │ ├── parameter.go │ │ ├── path_item.go │ │ ├── paths.go │ │ ├── ref.go │ │ ├── response.go │ │ ├── responses.go │ │ ├── schema.go │ │ ├── security_scheme.go │ │ ├── swagger.go │ │ └── tag.go ├── kubectl │ ├── LICENSE │ └── pkg │ │ └── scheme │ │ ├── install.go │ │ └── scheme.go └── utils │ ├── LICENSE │ ├── buffer │ └── ring_growing.go │ ├── clock │ ├── README.md │ ├── clock.go │ └── testing │ │ ├── fake_clock.go │ │ └── simple_interval_clock.go │ ├── integer │ └── integer.go │ ├── internal │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── net │ │ ├── ip.go │ │ └── parse.go │ ├── net │ ├── ipfamily.go │ ├── ipnet.go │ ├── net.go │ ├── parse.go │ └── port.go │ ├── pointer │ ├── OWNERS │ ├── README.md │ └── pointer.go │ ├── strings │ └── slices │ │ └── slices.go │ └── trace │ ├── README.md │ └── trace.go ├── modules.txt └── sigs.k8s.io ├── controller-runtime ├── .gitignore ├── .golangci.yml ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── Makefile ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── TMP-LOGGING.md ├── VERSIONING.md ├── alias.go ├── code-of-conduct.md ├── doc.go └── pkg │ ├── builder │ ├── controller.go │ ├── doc.go │ ├── options.go │ └── webhook.go │ ├── cache │ ├── cache.go │ ├── doc.go │ ├── informer_cache.go │ ├── internal │ │ ├── cache_reader.go │ │ ├── deleg_map.go │ │ ├── disabledeepcopy.go │ │ ├── informers_map.go │ │ ├── selector.go │ │ └── transformers.go │ └── multi_namespace_cache.go │ ├── certwatcher │ ├── certwatcher.go │ ├── doc.go │ └── metrics │ │ └── metrics.go │ ├── client │ ├── apiutil │ │ ├── apimachinery.go │ │ ├── dynamicrestmapper.go │ │ └── lazyrestmapper.go │ ├── client.go │ ├── client_cache.go │ ├── codec.go │ ├── config │ │ ├── config.go │ │ └── doc.go │ ├── doc.go │ ├── dryrun.go │ ├── fake │ │ ├── client.go │ │ └── doc.go │ ├── interfaces.go │ ├── metadata_client.go │ ├── namespaced_client.go │ ├── object.go │ ├── options.go │ ├── patch.go │ ├── split.go │ ├── typed_client.go │ ├── unstructured_client.go │ └── watch.go │ ├── cluster │ ├── cluster.go │ └── internal.go │ ├── config │ ├── config.go │ ├── doc.go │ └── v1alpha1 │ │ ├── doc.go │ │ ├── register.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go │ ├── controller │ ├── controller.go │ ├── controllerutil │ │ ├── controllerutil.go │ │ └── doc.go │ └── doc.go │ ├── conversion │ └── conversion.go │ ├── event │ ├── doc.go │ └── event.go │ ├── handler │ ├── doc.go │ ├── enqueue.go │ ├── enqueue_mapped.go │ ├── enqueue_owner.go │ └── eventhandler.go │ ├── healthz │ ├── doc.go │ └── healthz.go │ ├── internal │ ├── controller │ │ ├── controller.go │ │ └── metrics │ │ │ └── metrics.go │ ├── field │ │ └── selector │ │ │ └── utils.go │ ├── httpserver │ │ └── server.go │ ├── log │ │ └── log.go │ ├── objectutil │ │ └── objectutil.go │ └── recorder │ │ └── recorder.go │ ├── leaderelection │ ├── doc.go │ └── leader_election.go │ ├── log │ ├── deleg.go │ ├── log.go │ ├── null.go │ └── warning_handler.go │ ├── manager │ ├── doc.go │ ├── internal.go │ ├── manager.go │ ├── runnable_group.go │ └── signals │ │ ├── doc.go │ │ ├── signal.go │ │ ├── signal_posix.go │ │ └── signal_windows.go │ ├── metrics │ ├── client_go_adapter.go │ ├── doc.go │ ├── leaderelection.go │ ├── listener.go │ ├── registry.go │ └── workqueue.go │ ├── predicate │ ├── doc.go │ └── predicate.go │ ├── ratelimiter │ ├── doc.go │ └── ratelimiter.go │ ├── reconcile │ ├── doc.go │ └── reconcile.go │ ├── recorder │ └── recorder.go │ ├── runtime │ └── inject │ │ ├── doc.go │ │ └── inject.go │ ├── scheme │ └── scheme.go │ ├── source │ ├── doc.go │ ├── internal │ │ └── eventsource.go │ └── source.go │ └── webhook │ ├── admission │ ├── decode.go │ ├── defaulter.go │ ├── defaulter_custom.go │ ├── doc.go │ ├── http.go │ ├── inject.go │ ├── multi.go │ ├── response.go │ ├── validator.go │ ├── validator_custom.go │ └── webhook.go │ ├── alias.go │ ├── conversion │ ├── conversion.go │ └── decoder.go │ ├── doc.go │ ├── internal │ └── metrics │ │ └── metrics.go │ └── server.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 ├── kustomize ├── api │ ├── LICENSE │ ├── filters │ │ ├── annotations │ │ │ ├── annotations.go │ │ │ └── doc.go │ │ ├── fieldspec │ │ │ ├── doc.go │ │ │ └── fieldspec.go │ │ ├── filtersutil │ │ │ └── setters.go │ │ ├── fsslice │ │ │ ├── doc.go │ │ │ └── fsslice.go │ │ ├── iampolicygenerator │ │ │ ├── doc.go │ │ │ └── iampolicygenerator.go │ │ ├── imagetag │ │ │ ├── doc.go │ │ │ ├── imagetag.go │ │ │ ├── legacy.go │ │ │ └── updater.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ └── labels.go │ │ ├── nameref │ │ │ ├── doc.go │ │ │ ├── nameref.go │ │ │ └── seqfilter.go │ │ ├── namespace │ │ │ ├── doc.go │ │ │ └── namespace.go │ │ ├── patchjson6902 │ │ │ ├── doc.go │ │ │ └── patchjson6902.go │ │ ├── patchstrategicmerge │ │ │ ├── doc.go │ │ │ └── patchstrategicmerge.go │ │ ├── prefix │ │ │ ├── doc.go │ │ │ └── prefix.go │ │ ├── refvar │ │ │ ├── doc.go │ │ │ ├── expand.go │ │ │ └── refvar.go │ │ ├── replacement │ │ │ ├── doc.go │ │ │ └── replacement.go │ │ ├── replicacount │ │ │ ├── doc.go │ │ │ └── replicacount.go │ │ ├── suffix │ │ │ ├── doc.go │ │ │ └── suffix.go │ │ └── valueadd │ │ │ └── valueadd.go │ ├── hasher │ │ └── hasher.go │ ├── ifc │ │ └── ifc.go │ ├── image │ │ └── image.go │ ├── internal │ │ ├── accumulator │ │ │ ├── loadconfigfromcrds.go │ │ │ ├── namereferencetransformer.go │ │ │ ├── refvartransformer.go │ │ │ └── resaccumulator.go │ │ ├── builtins │ │ │ ├── AnnotationsTransformer.go │ │ │ ├── ConfigMapGenerator.go │ │ │ ├── HashTransformer.go │ │ │ ├── HelmChartInflationGenerator.go │ │ │ ├── IAMPolicyGenerator.go │ │ │ ├── ImageTagTransformer.go │ │ │ ├── LabelTransformer.go │ │ │ ├── LegacyOrderTransformer.go │ │ │ ├── NamespaceTransformer.go │ │ │ ├── PatchJson6902Transformer.go │ │ │ ├── PatchStrategicMergeTransformer.go │ │ │ ├── PatchTransformer.go │ │ │ ├── PrefixTransformer.go │ │ │ ├── ReplacementTransformer.go │ │ │ ├── ReplicaCountTransformer.go │ │ │ ├── SecretGenerator.go │ │ │ ├── SuffixTransformer.go │ │ │ ├── ValueAddTransformer.go │ │ │ └── doc.go │ │ ├── generators │ │ │ ├── configmap.go │ │ │ ├── secret.go │ │ │ └── utils.go │ │ ├── git │ │ │ ├── cloner.go │ │ │ ├── gitrunner.go │ │ │ └── repospec.go │ │ ├── kusterr │ │ │ └── yamlformaterror.go │ │ ├── plugins │ │ │ ├── builtinconfig │ │ │ │ ├── doc.go │ │ │ │ ├── loaddefaultconfig.go │ │ │ │ ├── namebackreferences.go │ │ │ │ └── transformerconfig.go │ │ │ ├── builtinhelpers │ │ │ │ ├── builtinplugintype_string.go │ │ │ │ └── builtins.go │ │ │ ├── execplugin │ │ │ │ └── execplugin.go │ │ │ ├── fnplugin │ │ │ │ └── fnplugin.go │ │ │ ├── loader │ │ │ │ └── loader.go │ │ │ └── utils │ │ │ │ └── utils.go │ │ ├── target │ │ │ ├── errmissingkustomization.go │ │ │ ├── kusttarget.go │ │ │ ├── kusttarget_configplugin.go │ │ │ └── multitransformer.go │ │ ├── utils │ │ │ ├── annotations.go │ │ │ ├── errtimeout.go │ │ │ ├── makeResIds.go │ │ │ ├── stringslice.go │ │ │ └── timedcall.go │ │ └── validate │ │ │ └── fieldvalidator.go │ ├── konfig │ │ ├── builtinpluginconsts │ │ │ ├── commonannotations.go │ │ │ ├── commonlabels.go │ │ │ ├── defaultconfig.go │ │ │ ├── doc.go │ │ │ ├── images.go │ │ │ ├── nameprefix.go │ │ │ ├── namereference.go │ │ │ ├── namespace.go │ │ │ ├── namesuffix.go │ │ │ ├── replicas.go │ │ │ └── varreference.go │ │ ├── doc.go │ │ ├── general.go │ │ └── plugins.go │ ├── krusty │ │ ├── doc.go │ │ ├── kustomizer.go │ │ └── options.go │ ├── kv │ │ └── kv.go │ ├── loader │ │ ├── errors.go │ │ ├── fileloader.go │ │ ├── loader.go │ │ └── loadrestrictions.go │ ├── provenance │ │ └── provenance.go │ ├── provider │ │ └── depprovider.go │ ├── resmap │ │ ├── factory.go │ │ ├── idslice.go │ │ ├── resmap.go │ │ └── reswrangler.go │ ├── resource │ │ ├── doc.go │ │ ├── factory.go │ │ ├── idset.go │ │ ├── origin.go │ │ └── resource.go │ └── types │ │ ├── builtinpluginloadingoptions_string.go │ │ ├── configmapargs.go │ │ ├── doc.go │ │ ├── erronlybuiltinpluginsallowed.go │ │ ├── errunabletofind.go │ │ ├── fieldspec.go │ │ ├── fix.go │ │ ├── generationbehavior.go │ │ ├── generatorargs.go │ │ ├── generatoroptions.go │ │ ├── helmchartargs.go │ │ ├── iampolicygenerator.go │ │ ├── image.go │ │ ├── inventory.go │ │ ├── kustomization.go │ │ ├── kvpairsources.go │ │ ├── labels.go │ │ ├── loadrestrictions.go │ │ ├── loadrestrictions_string.go │ │ ├── objectmeta.go │ │ ├── pair.go │ │ ├── patch.go │ │ ├── patchstrategicmerge.go │ │ ├── pluginconfig.go │ │ ├── pluginrestrictions.go │ │ ├── pluginrestrictions_string.go │ │ ├── replacement.go │ │ ├── replacementfield.go │ │ ├── replica.go │ │ ├── secretargs.go │ │ ├── selector.go │ │ ├── typemeta.go │ │ └── var.go └── kyaml │ ├── LICENSE │ ├── comments │ └── comments.go │ ├── errors │ └── errors.go │ ├── ext │ └── ext.go │ ├── fieldmeta │ └── fieldmeta.go │ ├── filesys │ ├── confirmeddir.go │ ├── doc.go │ ├── file.go │ ├── fileinfo.go │ ├── fileondisk.go │ ├── filesystem.go │ ├── fsnode.go │ ├── fsondisk.go │ ├── fsondisk_unix.go │ ├── fsondisk_windows.go │ └── util.go │ ├── fn │ └── runtime │ │ ├── container │ │ └── container.go │ │ ├── exec │ │ ├── doc.go │ │ └── exec.go │ │ ├── runtimeutil │ │ ├── doc.go │ │ ├── functiontypes.go │ │ ├── runtimeutil.go │ │ └── types.go │ │ └── starlark │ │ ├── context.go │ │ ├── doc.go │ │ └── starlark.go │ ├── internal │ └── forked │ │ └── github.com │ │ ├── go-yaml │ │ └── yaml │ │ │ ├── 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 │ │ └── qri-io │ │ └── starlib │ │ └── util │ │ ├── LICENSE │ │ ├── doc.go │ │ └── util.go │ ├── kio │ ├── byteio_reader.go │ ├── byteio_writer.go │ ├── doc.go │ ├── filters │ │ ├── filters.go │ │ ├── fmtr.go │ │ ├── grep.go │ │ ├── local.go │ │ ├── merge.go │ │ ├── merge3.go │ │ ├── modify.go │ │ └── stripcomments.go │ ├── ignorefilesmatcher.go │ ├── kio.go │ ├── kioutil │ │ └── kioutil.go │ ├── pkgio_reader.go │ ├── pkgio_writer.go │ └── tree.go │ ├── openapi │ ├── Makefile │ ├── README.md │ ├── kubernetesapi │ │ ├── openapiinfo.go │ │ └── v1212 │ │ │ ├── swagger.go │ │ │ └── swagger.pb │ ├── kustomizationapi │ │ ├── swagger.go │ │ └── swagger.json │ └── openapi.go │ ├── order │ └── syncorder.go │ ├── resid │ ├── gvk.go │ └── resid.go │ ├── runfn │ └── runfn.go │ ├── sets │ ├── string.go │ └── stringlist.go │ ├── sliceutil │ └── slice.go │ ├── utils │ └── pathsplitter.go │ └── yaml │ ├── alias.go │ ├── compatibility.go │ ├── const.go │ ├── datamap.go │ ├── doc.go │ ├── filters.go │ ├── fns.go │ ├── internal │ └── k8sgen │ │ └── pkg │ │ ├── labels │ │ ├── copied.deepcopy.go │ │ ├── labels.go │ │ └── selector.go │ │ ├── selection │ │ └── operator.go │ │ └── util │ │ ├── errors │ │ └── errors.go │ │ ├── sets │ │ ├── empty.go │ │ └── string.go │ │ └── validation │ │ ├── field │ │ ├── errors.go │ │ └── path.go │ │ └── validation.go │ ├── kfns.go │ ├── mapnode.go │ ├── match.go │ ├── merge2 │ ├── merge2.go │ ├── smpdirective.go │ └── smpdirective_string.go │ ├── merge3 │ ├── merge3.go │ └── visitor.go │ ├── order.go │ ├── rnode.go │ ├── schema │ └── schema.go │ ├── types.go │ ├── util.go │ └── walk │ ├── associative_sequence.go │ ├── map.go │ ├── nonassociative_sequence.go │ ├── scalar.go │ ├── visitor.go │ └── walk.go ├── structured-merge-diff └── v4 │ ├── LICENSE │ ├── fieldpath │ ├── doc.go │ ├── element.go │ ├── fromvalue.go │ ├── managers.go │ ├── path.go │ ├── pathelementmap.go │ ├── serialize-pe.go │ ├── serialize.go │ └── set.go │ ├── merge │ ├── conflict.go │ └── update.go │ ├── schema │ ├── doc.go │ ├── elements.go │ ├── equals.go │ └── schemaschema.go │ ├── typed │ ├── doc.go │ ├── helpers.go │ ├── merge.go │ ├── parser.go │ ├── reconcile_schema.go │ ├── remove.go │ ├── tofieldset.go │ ├── typed.go │ ├── union.go │ └── validate.go │ └── 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 ├── yaml.go └── yaml_go110.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/tls/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/.github/tls/config.json -------------------------------------------------------------------------------- /.github/tls/intermediate-csr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/.github/tls/intermediate-csr.json -------------------------------------------------------------------------------- /.github/tls/root-csr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/.github/tls/root-csr.json -------------------------------------------------------------------------------- /.github/tls/server-csr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/.github/tls/server-csr.json -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/rebase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/.github/workflows/rebase.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.wokeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/.wokeignore -------------------------------------------------------------------------------- /APPS_PLUGIN_VERSION: -------------------------------------------------------------------------------- 1 | v0.13.0 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TANZU_VERSION: -------------------------------------------------------------------------------- 1 | v0.90.0 -------------------------------------------------------------------------------- /acceptance/vendir.lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/acceptance/vendir.lock.yml -------------------------------------------------------------------------------- /acceptance/vendir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/acceptance/vendir.yml -------------------------------------------------------------------------------- /acceptance/vendor/cartographer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/acceptance/vendor/cartographer/LICENSE -------------------------------------------------------------------------------- /acceptance/vendor/cartographer/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/acceptance/vendor/cartographer/NOTICE -------------------------------------------------------------------------------- /cmd/plugin/apps/README.md: -------------------------------------------------------------------------------- 1 | # Apps -------------------------------------------------------------------------------- /cmd/plugin/apps/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/cmd/plugin/apps/main.go -------------------------------------------------------------------------------- /cmd/plugin/apps/test/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/cmd/plugin/apps/test/main.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/command-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/docs/command-reference.md -------------------------------------------------------------------------------- /docs/command-reference/tanzu_apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/docs/command-reference/tanzu_apps.md -------------------------------------------------------------------------------- /docs/commands-details/workload_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/docs/commands-details/workload_delete.md -------------------------------------------------------------------------------- /docs/commands-details/workload_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/docs/commands-details/workload_get.md -------------------------------------------------------------------------------- /docs/commands-details/workload_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/docs/commands-details/workload_list.md -------------------------------------------------------------------------------- /docs/commands-details/workload_tail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/docs/commands-details/workload_tail.md -------------------------------------------------------------------------------- /docs/create-workload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/docs/create-workload.md -------------------------------------------------------------------------------- /docs/debug-workload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/docs/debug-workload.md -------------------------------------------------------------------------------- /docs/how-to-guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/docs/how-to-guides.md -------------------------------------------------------------------------------- /docs/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/docs/tutorials.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/hack/go.mod -------------------------------------------------------------------------------- /hack/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/hack/go.sum -------------------------------------------------------------------------------- /hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/hack/tools.go -------------------------------------------------------------------------------- /hack/woke/its-woke-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/hack/woke/its-woke-rules.yaml -------------------------------------------------------------------------------- /pkg/apis/annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/apis/annotations.go -------------------------------------------------------------------------------- /pkg/apis/cartographer/v1alpha1/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/apis/cartographer/v1alpha1/common.go -------------------------------------------------------------------------------- /pkg/apis/cartographer/v1alpha1/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/apis/cartographer/v1alpha1/labels.go -------------------------------------------------------------------------------- /pkg/apis/cartographer/v1alpha1/workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/apis/cartographer/v1alpha1/workload.go -------------------------------------------------------------------------------- /pkg/apis/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/apis/labels.go -------------------------------------------------------------------------------- /pkg/apis/lsp/local_source_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/apis/lsp/local_source_proxy.go -------------------------------------------------------------------------------- /pkg/cli-runtime/arguments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/arguments.go -------------------------------------------------------------------------------- /pkg/cli-runtime/arguments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/arguments_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/client.go -------------------------------------------------------------------------------- /pkg/cli-runtime/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/client_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/cobra.go -------------------------------------------------------------------------------- /pkg/cli-runtime/cobra_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/cobra_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/config.go -------------------------------------------------------------------------------- /pkg/cli-runtime/config_pkg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/config_pkg_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/config_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/dryrun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/dryrun.go -------------------------------------------------------------------------------- /pkg/cli-runtime/dryrun_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/dryrun_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/emoji.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/emoji.go -------------------------------------------------------------------------------- /pkg/cli-runtime/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/errors.go -------------------------------------------------------------------------------- /pkg/cli-runtime/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/errors_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/flags.go -------------------------------------------------------------------------------- /pkg/cli-runtime/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/flags_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/logs/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/logs/fake.go -------------------------------------------------------------------------------- /pkg/cli-runtime/logs/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/logs/interface.go -------------------------------------------------------------------------------- /pkg/cli-runtime/logs/stern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/logs/stern.go -------------------------------------------------------------------------------- /pkg/cli-runtime/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/options.go -------------------------------------------------------------------------------- /pkg/cli-runtime/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/options_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/parsers/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/parsers/env.go -------------------------------------------------------------------------------- /pkg/cli-runtime/parsers/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/parsers/env_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/parsers/keyvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/parsers/keyvalue.go -------------------------------------------------------------------------------- /pkg/cli-runtime/parsers/keyvalue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/parsers/keyvalue_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/parsers/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/parsers/object.go -------------------------------------------------------------------------------- /pkg/cli-runtime/parsers/object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/parsers/object_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/parsers/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/parsers/reference.go -------------------------------------------------------------------------------- /pkg/cli-runtime/parsers/reference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/parsers/reference_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/printer/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/printer/color.go -------------------------------------------------------------------------------- /pkg/cli-runtime/printer/color_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/printer/color_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/printer/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/printer/format.go -------------------------------------------------------------------------------- /pkg/cli-runtime/printer/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/printer/format_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/printer/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/printer/resource.go -------------------------------------------------------------------------------- /pkg/cli-runtime/printer/resource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/printer/resource_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/printer/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/printer/sort.go -------------------------------------------------------------------------------- /pkg/cli-runtime/printer/sort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/printer/sort_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/printer/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/printer/status.go -------------------------------------------------------------------------------- /pkg/cli-runtime/printer/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/printer/status_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/printer/table/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/printer/table/interface.go -------------------------------------------------------------------------------- /pkg/cli-runtime/printer/table/tabwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/printer/table/tabwriter.go -------------------------------------------------------------------------------- /pkg/cli-runtime/survey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/survey.go -------------------------------------------------------------------------------- /pkg/cli-runtime/testdata/.kube/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/testdata/.kube/config -------------------------------------------------------------------------------- /pkg/cli-runtime/testdata/.unknown.yaml: -------------------------------------------------------------------------------- 1 | no-color: true 2 | -------------------------------------------------------------------------------- /pkg/cli-runtime/testing/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/testing/aliases.go -------------------------------------------------------------------------------- /pkg/cli-runtime/testing/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/testing/client.go -------------------------------------------------------------------------------- /pkg/cli-runtime/testing/command_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/testing/command_table.go -------------------------------------------------------------------------------- /pkg/cli-runtime/testing/table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/testing/table_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/aliases.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/enum.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/enum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/enum_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/env.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/env_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/fielderrors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/fielderrors.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/keyvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/keyvalue.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/labels.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/labels_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/names.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/names_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/names_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/port.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/port_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/port_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/quantity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/quantity.go -------------------------------------------------------------------------------- /pkg/cli-runtime/validation/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/validation/reference.go -------------------------------------------------------------------------------- /pkg/cli-runtime/wait/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/wait/wait.go -------------------------------------------------------------------------------- /pkg/cli-runtime/wait/wait_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/wait/wait_test.go -------------------------------------------------------------------------------- /pkg/cli-runtime/watch/watcher_lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/cli-runtime/watch/watcher_lifecycle.go -------------------------------------------------------------------------------- /pkg/commands/clustersupplychain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/clustersupplychain.go -------------------------------------------------------------------------------- /pkg/commands/clustersupplychain_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/clustersupplychain_get.go -------------------------------------------------------------------------------- /pkg/commands/clustersupplychain_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/clustersupplychain_list.go -------------------------------------------------------------------------------- /pkg/commands/clustersupplychain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/clustersupplychain_test.go -------------------------------------------------------------------------------- /pkg/commands/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/docs.go -------------------------------------------------------------------------------- /pkg/commands/localsourceproxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/localsourceproxy.go -------------------------------------------------------------------------------- /pkg/commands/localsourceproxy_health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/localsourceproxy_health.go -------------------------------------------------------------------------------- /pkg/commands/lsp/lsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/lsp/lsp.go -------------------------------------------------------------------------------- /pkg/commands/lsp/lsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/lsp/lsp_test.go -------------------------------------------------------------------------------- /pkg/commands/testdata/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/testdata/debug.yaml -------------------------------------------------------------------------------- /pkg/commands/testdata/hello.go.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/testdata/hello.go.jar -------------------------------------------------------------------------------- /pkg/commands/testdata/invalid.zip: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /pkg/commands/testdata/liveupdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/testdata/liveupdate.yaml -------------------------------------------------------------------------------- /pkg/commands/testdata/local-source-exclude-files-windows/excludable/local: -------------------------------------------------------------------------------- 1 | development -------------------------------------------------------------------------------- /pkg/commands/testdata/local-source-exclude-files-windows/hello.txt: -------------------------------------------------------------------------------- 1 | world! -------------------------------------------------------------------------------- /pkg/commands/testdata/local-source-exclude-files-windows/resources/config/dev: -------------------------------------------------------------------------------- 1 | development -------------------------------------------------------------------------------- /pkg/commands/testdata/local-source-exclude-files-windows/resources/config/prod: -------------------------------------------------------------------------------- 1 | production -------------------------------------------------------------------------------- /pkg/commands/testdata/local-source-exclude-files-windows/resources/meta: -------------------------------------------------------------------------------- 1 | data -------------------------------------------------------------------------------- /pkg/commands/testdata/local-source-exclude-files/excludable/local: -------------------------------------------------------------------------------- 1 | development -------------------------------------------------------------------------------- /pkg/commands/testdata/local-source-exclude-files/hello.txt: -------------------------------------------------------------------------------- 1 | world! -------------------------------------------------------------------------------- /pkg/commands/testdata/local-source-exclude-files/resources/config/dev: -------------------------------------------------------------------------------- 1 | development -------------------------------------------------------------------------------- /pkg/commands/testdata/local-source-exclude-files/resources/config/prod: -------------------------------------------------------------------------------- 1 | production -------------------------------------------------------------------------------- /pkg/commands/testdata/local-source-exclude-files/resources/meta: -------------------------------------------------------------------------------- 1 | data -------------------------------------------------------------------------------- /pkg/commands/testdata/local-source/hello.txt: -------------------------------------------------------------------------------- 1 | world! -------------------------------------------------------------------------------- /pkg/commands/testdata/local-source/subpath/hello.txt: -------------------------------------------------------------------------------- 1 | world! -------------------------------------------------------------------------------- /pkg/commands/testdata/param-yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/testdata/param-yaml.yaml -------------------------------------------------------------------------------- /pkg/commands/testdata/workload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/testdata/workload.yaml -------------------------------------------------------------------------------- /pkg/commands/workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload.go -------------------------------------------------------------------------------- /pkg/commands/workload_apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload_apply.go -------------------------------------------------------------------------------- /pkg/commands/workload_apply_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload_apply_test.go -------------------------------------------------------------------------------- /pkg/commands/workload_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload_create.go -------------------------------------------------------------------------------- /pkg/commands/workload_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload_create_test.go -------------------------------------------------------------------------------- /pkg/commands/workload_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload_delete.go -------------------------------------------------------------------------------- /pkg/commands/workload_delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload_delete_test.go -------------------------------------------------------------------------------- /pkg/commands/workload_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload_get.go -------------------------------------------------------------------------------- /pkg/commands/workload_get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload_get_test.go -------------------------------------------------------------------------------- /pkg/commands/workload_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload_list.go -------------------------------------------------------------------------------- /pkg/commands/workload_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload_list_test.go -------------------------------------------------------------------------------- /pkg/commands/workload_tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload_tail.go -------------------------------------------------------------------------------- /pkg/commands/workload_tail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload_tail_test.go -------------------------------------------------------------------------------- /pkg/commands/workload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/commands/workload_test.go -------------------------------------------------------------------------------- /pkg/completion/component_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/completion/component_name.go -------------------------------------------------------------------------------- /pkg/completion/component_name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/completion/component_name_test.go -------------------------------------------------------------------------------- /pkg/completion/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/completion/duration.go -------------------------------------------------------------------------------- /pkg/completion/duration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/completion/duration_test.go -------------------------------------------------------------------------------- /pkg/completion/workload_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/completion/workload_names.go -------------------------------------------------------------------------------- /pkg/completion/workload_names_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/completion/workload_names_test.go -------------------------------------------------------------------------------- /pkg/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/constants.go -------------------------------------------------------------------------------- /pkg/dies/cartographer/v1alpha1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/dies/cartographer/v1alpha1/helper.go -------------------------------------------------------------------------------- /pkg/dies/cartographer/v1alpha1/workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/dies/cartographer/v1alpha1/workload.go -------------------------------------------------------------------------------- /pkg/dies/knative/serving/v1/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/dies/knative/serving/v1/service.go -------------------------------------------------------------------------------- /pkg/flags/env_var.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/flags/env_var.go -------------------------------------------------------------------------------- /pkg/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/flags/flags.go -------------------------------------------------------------------------------- /pkg/logger/fake/fake_progress_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/logger/fake/fake_progress_logger.go -------------------------------------------------------------------------------- /pkg/logger/log_sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/logger/log_sink.go -------------------------------------------------------------------------------- /pkg/logger/log_sink_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/logger/log_sink_test.go -------------------------------------------------------------------------------- /pkg/logger/progress_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/logger/progress_logger.go -------------------------------------------------------------------------------- /pkg/logger/progress_logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/logger/progress_logger_test.go -------------------------------------------------------------------------------- /pkg/logger/uilogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/logger/uilogger.go -------------------------------------------------------------------------------- /pkg/logger/uilogger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/logger/uilogger_test.go -------------------------------------------------------------------------------- /pkg/printer/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/printer/aliases.go -------------------------------------------------------------------------------- /pkg/printer/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/printer/helpers.go -------------------------------------------------------------------------------- /pkg/printer/knative_service_printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/printer/knative_service_printer.go -------------------------------------------------------------------------------- /pkg/printer/local_source_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/printer/local_source_proxy.go -------------------------------------------------------------------------------- /pkg/printer/local_source_proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/printer/local_source_proxy_test.go -------------------------------------------------------------------------------- /pkg/printer/pod_printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/printer/pod_printer.go -------------------------------------------------------------------------------- /pkg/printer/pod_printer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/printer/pod_printer_test.go -------------------------------------------------------------------------------- /pkg/printer/workload_overview_printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/printer/workload_overview_printer.go -------------------------------------------------------------------------------- /pkg/printer/workload_source_printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/printer/workload_source_printer.go -------------------------------------------------------------------------------- /pkg/printer/workload_status_printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/printer/workload_status_printer.go -------------------------------------------------------------------------------- /pkg/source/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/archive.go -------------------------------------------------------------------------------- /pkg/source/archive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/archive_test.go -------------------------------------------------------------------------------- /pkg/source/fake/fake_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/fake/fake_wrapper.go -------------------------------------------------------------------------------- /pkg/source/imgpkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/imgpkg.go -------------------------------------------------------------------------------- /pkg/source/local_registry_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/local_registry_client.go -------------------------------------------------------------------------------- /pkg/source/local_registry_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/local_registry_client_test.go -------------------------------------------------------------------------------- /pkg/source/local_registry_round_tripper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/local_registry_round_tripper.go -------------------------------------------------------------------------------- /pkg/source/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/registry.go -------------------------------------------------------------------------------- /pkg/source/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/resource.go -------------------------------------------------------------------------------- /pkg/source/resource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/resource_test.go -------------------------------------------------------------------------------- /pkg/source/testdata/hello.go.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/testdata/hello.go.jar -------------------------------------------------------------------------------- /pkg/source/testdata/hello.go.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/testdata/hello.go.zip -------------------------------------------------------------------------------- /pkg/source/testdata/hello_jar/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/testdata/hello_jar/hello.go -------------------------------------------------------------------------------- /pkg/source/testdata/hello_zip/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/testdata/hello_zip/hello.go -------------------------------------------------------------------------------- /pkg/source/testdata/helloworld.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/pkg/source/testdata/helloworld.jar -------------------------------------------------------------------------------- /pkg/source/testdata/invalid.jar: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /pkg/source/testdata/invalid.zip: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /testing/e2e/cluster_supply_chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/testing/e2e/cluster_supply_chain_test.go -------------------------------------------------------------------------------- /testing/e2e/testdata/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/testing/e2e/testdata/hello.go -------------------------------------------------------------------------------- /testing/e2e/testdata/hello.go.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/testing/e2e/testdata/hello.go.jar -------------------------------------------------------------------------------- /testing/e2e/testdata/hello_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/testing/e2e/testdata/hello_update.go -------------------------------------------------------------------------------- /testing/e2e/testdata/hello_update.go.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/testing/e2e/testdata/hello_update.go.zip -------------------------------------------------------------------------------- /testing/e2e/testdata/replace-workload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/testing/e2e/testdata/replace-workload.yaml -------------------------------------------------------------------------------- /testing/e2e/testdata/workload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/testing/e2e/testdata/workload.yaml -------------------------------------------------------------------------------- /testing/e2e/workload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/testing/e2e/workload_test.go -------------------------------------------------------------------------------- /testing/suite/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/testing/suite/client.go -------------------------------------------------------------------------------- /testing/suite/command_line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/testing/suite/command_line.go -------------------------------------------------------------------------------- /testing/suite/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/testing/suite/helpers.go -------------------------------------------------------------------------------- /testing/suite/integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/testing/suite/integration.go -------------------------------------------------------------------------------- /testing/suite/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/testing/suite/utils.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/compute/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/cloud.google.com/go/compute/LICENSE -------------------------------------------------------------------------------- /vendor/dies.dev/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/LICENSE -------------------------------------------------------------------------------- /vendor/dies.dev/apis/core/v1/binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/core/v1/binding.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/core/v1/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/core/v1/common.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/core/v1/configmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/core/v1/configmap.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/core/v1/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/core/v1/container.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/core/v1/endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/core/v1/endpoints.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/core/v1/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/core/v1/event.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/core/v1/limitrange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/core/v1/limitrange.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/core/v1/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/core/v1/namespace.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/core/v1/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/core/v1/node.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/core/v1/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/core/v1/pod.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/core/v1/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/core/v1/secret.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/core/v1/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/core/v1/service.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/core/v1/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/core/v1/volume.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/meta/v1/condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/meta/v1/condition.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/meta/v1/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/meta/v1/group.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/meta/v1/listmeta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/meta/v1/listmeta.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/meta/v1/objectmeta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/meta/v1/objectmeta.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/meta/v1/selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/meta/v1/selector.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/meta/v1/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/meta/v1/status.go -------------------------------------------------------------------------------- /vendor/dies.dev/apis/meta/v1/typemeta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/apis/meta/v1/typemeta.go -------------------------------------------------------------------------------- /vendor/dies.dev/testing/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/dies.dev/testing/fields.go -------------------------------------------------------------------------------- /vendor/github.com/AlecAivazis/survey/v2/filter.go: -------------------------------------------------------------------------------- 1 | package survey 2 | -------------------------------------------------------------------------------- /vendor/github.com/Azure/go-autorest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/Azure/go-autorest/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Netflix/go-expect/OSSMETADATA: -------------------------------------------------------------------------------- 1 | osslifecycle=active 2 | -------------------------------------------------------------------------------- /vendor/github.com/Netflix/go-expect/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/Netflix/go-expect/doc.go -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .*.sw? 3 | /coverage.txt -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/.whitesource: -------------------------------------------------------------------------------- 1 | { 2 | "settingsInheritedFrom": "VividCortex/whitesource-config@master" 3 | } -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/VividCortex/ewma/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/ewma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/VividCortex/ewma/ewma.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go-v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/aws/aws-sdk-go-v2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/aws/smithy-go/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/aws/smithy-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/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/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/aws/smithy-go/README.md -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/aws/smithy-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/aws/smithy-go/errors.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/io/byte.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/aws/smithy-go/io/byte.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/io/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/aws/smithy-go/io/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/smithy-go/ptr/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/aws/smithy-go/ptr/doc.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cheggaaa/pb/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/cheggaaa/pb/v3/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cheggaaa/pb/v3/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/cheggaaa/pb/v3/io.go -------------------------------------------------------------------------------- /vendor/github.com/cheggaaa/pb/v3/pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/cheggaaa/pb/v3/pb.go -------------------------------------------------------------------------------- /vendor/github.com/cheggaaa/pb/v3/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/cheggaaa/pb/v3/pool.go -------------------------------------------------------------------------------- /vendor/github.com/cheggaaa/pb/v3/pool_x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/cheggaaa/pb/v3/pool_x.go -------------------------------------------------------------------------------- /vendor/github.com/cheggaaa/pb/v3/preset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/cheggaaa/pb/v3/preset.go -------------------------------------------------------------------------------- /vendor/github.com/cheggaaa/pb/v3/speed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/cheggaaa/pb/v3/speed.go -------------------------------------------------------------------------------- /vendor/github.com/cheggaaa/pb/v3/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/cheggaaa/pb/v3/util.go -------------------------------------------------------------------------------- /vendor/github.com/cppforlife/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/cppforlife/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/README.md -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/ioctl.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/ioctl_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/ioctl_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/mktypes.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/mktypes.bash -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/pty_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/pty_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/pty_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/pty_linux.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/pty_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/pty_netbsd.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/run.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/start.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/winsize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/winsize.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/ztypes_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/ztypes_386.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/ztypes_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/ztypes_arm.go -------------------------------------------------------------------------------- /vendor/github.com/creack/pty/ztypes_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/creack/pty/ztypes_ppc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/docker/cli/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/docker/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/cli/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/docker/cli/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/go-logr/logr/discard.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/go-openapi/swag/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/go-openapi/swag/file.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/go-openapi/swag/json.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/go-openapi/swag/path.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/go-openapi/swag/split.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/go-openapi/swag/util.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/go-openapi/swag/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v4/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | .idea/ 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/golang-jwt/jwt/v4/doc.go -------------------------------------------------------------------------------- /vendor/github.com/golang-jwt/jwt/v4/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/golang-jwt/jwt/v4/rsa.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/btree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/btree/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/btree/btree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/btree/btree.go -------------------------------------------------------------------------------- /vendor/github.com/google/gnostic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/gnostic/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/shlex/COPYING -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/shlex/README -------------------------------------------------------------------------------- /vendor/github.com/google/shlex/shlex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/shlex/shlex.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/hashicorp/hcl/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/hashicorp/hcl/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/hashicorp/hcl/decoder.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/imdario/mergo/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/imdario/mergo/README.md -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/imdario/mergo/mergo.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/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/json-iterator/go/iter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/json-iterator/go/pool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/json-iterator/go/test.sh -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/gen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd s2/cmd/_s2sx/ || exit 1 4 | go generate . 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.16 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/mailru/easyjson/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/mgutz/ansi/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/mgutz/ansi/README.md -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/ansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/mgutz/ansi/ansi.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/mgutz/ansi/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mgutz/ansi/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/mgutz/ansi/print.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /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/pelletier/go-toml/v2/internal/tracker/tracker.go: -------------------------------------------------------------------------------- 1 | package tracker 2 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/arp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/prometheus/procfs/arp.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/prometheus/procfs/vm.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/rivo/uniseg/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/rivo/uniseg/README.md -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/rivo/uniseg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/grapheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/rivo/uniseg/grapheme.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sourcegraph/conc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/sourcegraph/conc/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/basepath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/basepath.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/iofs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/iofs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/lstater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/lstater.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/mem/dir.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/mem/file.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/regexpfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/regexpfs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/symlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/symlink.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/unionFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/unionFile.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cast/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cobra/CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cobra/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cobra/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/cobra/doc/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/viper/.envrc -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/viper/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.yamlignore: -------------------------------------------------------------------------------- 1 | # TODO: FIXME 2 | /.github/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/viper/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/viper/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/viper/flake.lock -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/viper/flake.nix -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/viper/logger.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/spf13/viper/watch.go -------------------------------------------------------------------------------- /vendor/github.com/stern/stern/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/stern/stern/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/stretchr/objx/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/stretchr/objx/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/stretchr/objx/README.md -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/stretchr/objx/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/stretchr/objx/map.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/stretchr/objx/tests.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/objx/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/stretchr/objx/value.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env: -------------------------------------------------------------------------------- 1 | HELLO=world 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.env.invalid: -------------------------------------------------------------------------------- 1 | lol$wut 2 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.out 3 | annotate.json 4 | profile.cov 5 | -------------------------------------------------------------------------------- /vendor/github.com/subosito/gotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/subosito/gotenv/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/vbatts/tar-split/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/vbatts/tar-split/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xlab/treeprint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/xlab/treeprint/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xlab/treeprint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/xlab/treeprint/README.md -------------------------------------------------------------------------------- /vendor/github.com/xlab/treeprint/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/github.com/xlab/treeprint/struct.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/LICENSE -------------------------------------------------------------------------------- /vendor/go.starlark.net/resolve/binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/resolve/binding.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/resolve/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/resolve/resolve.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/starlark/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/starlark/debug.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/starlark/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/starlark/empty.s -------------------------------------------------------------------------------- /vendor/go.starlark.net/starlark/eval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/starlark/eval.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/starlark/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/starlark/int.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/starlark/interp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/starlark/interp.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/starlark/library.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/starlark/library.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/syntax/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/syntax/parse.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/syntax/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/syntax/quote.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/syntax/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/syntax/scan.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/syntax/syntax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/syntax/syntax.go -------------------------------------------------------------------------------- /vendor/go.starlark.net/syntax/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.starlark.net/syntax/walk.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/bool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/bool_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/bool_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/duration.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/error_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/error_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/float64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/gen.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/int32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/int64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/nocmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/nocmp.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/string_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/time_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/time_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/uint32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/uint64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uintptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/uintptr.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/atomic/value.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/multierr/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/go.uber.org/multierr/glide.yaml -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/cmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/exp/slices/cmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/exp/slices/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slog/attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/exp/slog/attr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slog/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/exp/slog/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slog/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/exp/slog/handler.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slog/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/exp/slog/level.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slog/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/exp/slog/logger.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slog/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/exp/slog/record.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slog/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/exp/slog/value.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go115.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/http2/go115.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/http2/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/windows/empty.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/term/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/term/term_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/gomodules.xyz/orderedmap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gomodules.xyz/orderedmap/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/.editorconfig -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/.golangci.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/Makefile -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/codecov.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/data_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/data_source.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/deprecated.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/file.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/helper.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/gotest.tools/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gotest.tools/v3/LICENSE -------------------------------------------------------------------------------- /vendor/gotest.tools/v3/assert/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/gotest.tools/v3/assert/assert.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/admission/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/admission/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/admission/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/admission/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/apps/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/apps/v1beta2/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/autoscaling/v2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/core/v1/lifecycle.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/discovery/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/discovery/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/discovery/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/events/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/events/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/events/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/events/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/node/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/node/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/node/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/node/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/node/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/policy/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/policy/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/policy/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/rbac/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/scheduling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/cli-runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/cli-runtime/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/client-go/rest/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/client-go/rest/request.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/testing/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/client-go/testing/fake.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/client-go/util/cert/io.go -------------------------------------------------------------------------------- /vendor/k8s.io/component-base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/component-base/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/SECURITY.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/contextual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/contextual.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/exit.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/imports.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/k8s_references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/k8s_references.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/klog/v2/klogr.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/util/proto/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubectl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/kubectl/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/clock/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/clock/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/integer/integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/integer/integer.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/net/ipfamily.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/net/ipnet.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/net/net.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/net/parse.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/net/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/net/port.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/pointer/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/pointer/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/pointer/pointer.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/trace/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/k8s.io/utils/trace/trace.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/json/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/json/Makefile -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/json/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/json/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/json/SECURITY.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/json/doc.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/json/json.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/yaml/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/apps-cli-plugin/HEAD/vendor/sigs.k8s.io/yaml/yaml_go110.go --------------------------------------------------------------------------------