├── vendor ├── github.com │ ├── modern-go │ │ ├── reflect2 │ │ │ ├── reflect2_amd64.s │ │ │ ├── relfect2_386.s │ │ │ ├── relfect2_arm.s │ │ │ ├── relfect2_arm64.s │ │ │ ├── relfect2_mipsx.s │ │ │ ├── relfect2_s390x.s │ │ │ ├── relfect2_amd64p32.s │ │ │ ├── relfect2_mips64x.s │ │ │ ├── relfect2_ppc64x.s │ │ │ ├── .gitignore │ │ │ ├── Gopkg.lock │ │ │ ├── .travis.yml │ │ │ ├── go_above_19.go │ │ │ └── go_below_118.go │ │ └── concurrent │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── go_above_19.go │ │ │ ├── test.sh │ │ │ └── log.go │ ├── yudai │ │ └── gojsondiff │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── wercker.yml │ ├── Masterminds │ │ └── semver │ │ │ └── v3 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ └── SECURITY.md │ ├── emicklei │ │ └── go-restful │ │ │ └── v3 │ │ │ ├── .goconvey │ │ │ ├── Srcfile │ │ │ ├── coverage.sh │ │ │ ├── Makefile │ │ │ ├── .travis.yml │ │ │ ├── bench_test.sh │ │ │ └── SECURITY.md │ ├── spf13 │ │ ├── pflag │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ │ └── cobra │ │ │ ├── .mailmap │ │ │ └── MAINTAINERS │ ├── go-openapi │ │ ├── jsonpointer │ │ │ └── .gitignore │ │ ├── jsonreference │ │ │ └── .gitignore │ │ └── swag │ │ │ ├── .gitignore │ │ │ ├── .gitattributes │ │ │ └── string_bytes.go │ ├── gorilla │ │ └── websocket │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .editorconfig │ │ │ ├── tls_handshake.go │ │ │ └── mask_safe.go │ ├── codegangsta │ │ └── inject │ │ │ ├── .gitignore │ │ │ └── update_readme.sh │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── system_darwin.go │ │ │ ├── system_bsd.go │ │ │ ├── .editorconfig │ │ │ └── .cirrus.yml │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── terminal_check_js.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_no_terminal.go │ │ │ ├── terminal_check_solaris.go │ │ │ ├── terminal_check_unix.go │ │ │ ├── appveyor.yml │ │ │ ├── terminal_check_bsd.go │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── .travis.yml │ │ │ └── terminal_check_windows.go │ ├── prometheus │ │ ├── procfs │ │ │ ├── .gitignore │ │ │ ├── MAINTAINERS.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── SECURITY.md │ │ │ ├── .golangci.yml │ │ │ └── NOTICE │ │ ├── client_golang │ │ │ └── prometheus │ │ │ │ ├── .gitignore │ │ │ │ └── README.md │ │ ├── client_model │ │ │ └── NOTICE │ │ └── common │ │ │ └── NOTICE │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── test.sh │ │ │ └── build.sh │ ├── PuerkitoBio │ │ └── purell │ │ │ └── .gitignore │ ├── onsi │ │ └── gomega │ │ │ ├── .gitignore │ │ │ └── matchers │ │ │ ├── support │ │ │ └── goraph │ │ │ │ ├── node │ │ │ │ └── node.go │ │ │ │ └── util │ │ │ │ └── util.go │ │ │ ├── attributes_slice.go │ │ │ └── be_nil_matcher.go │ ├── zeebo │ │ └── xxh3 │ │ │ └── .gitignore │ ├── opencontainers │ │ └── go-digest │ │ │ ├── .travis.yml │ │ │ ├── .mailmap │ │ │ ├── MAINTAINERS │ │ │ └── .pullapprove.yml │ ├── ghodss │ │ └── yaml │ │ │ ├── .travis.yml │ │ │ └── .gitignore │ ├── evanphx │ │ └── json-patch │ │ │ └── .gitignore │ ├── google │ │ ├── gnostic-models │ │ │ ├── jsonschema │ │ │ │ └── README.md │ │ │ ├── compiler │ │ │ │ └── README.md │ │ │ └── extensions │ │ │ │ └── README.md │ │ ├── gofuzz │ │ │ └── .travis.yml │ │ ├── uuid │ │ │ ├── CONTRIBUTORS │ │ │ ├── doc.go │ │ │ └── node_js.go │ │ ├── go-containerregistry │ │ │ └── pkg │ │ │ │ └── name │ │ │ │ └── README.md │ │ └── go-cmp │ │ │ └── cmp │ │ │ └── internal │ │ │ ├── flags │ │ │ └── flags.go │ │ │ └── diff │ │ │ └── debug_disable.go │ ├── go-sql-driver │ │ └── mysql │ │ │ └── .gitignore │ ├── josharian │ │ └── intern │ │ │ └── README.md │ ├── go-logr │ │ └── logr │ │ │ ├── CHANGELOG.md │ │ │ └── .golangci.yaml │ ├── rancher │ │ ├── rancher │ │ │ └── pkg │ │ │ │ └── client │ │ │ │ └── generated │ │ │ │ └── management │ │ │ │ └── v3 │ │ │ │ ├── zz_generated_duration.go │ │ │ │ ├── zz_generated_user_spec.go │ │ │ │ ├── zz_generated_fleet_workspace_status.go │ │ │ │ ├── zz_generated_identity_configuration.go │ │ │ │ ├── zz_generated_project_network_policy_status.go │ │ │ │ ├── zz_generated_cpu_info.go │ │ │ │ ├── zz_generated_health_check.go │ │ │ │ ├── zz_generated_feature_spec.go │ │ │ │ ├── zz_generated_filter.go │ │ │ │ ├── zz_generated_resource_claim.go │ │ │ │ ├── zz_generated_attached_volume.go │ │ │ │ ├── zz_generated_daemon_endpoint.go │ │ │ │ ├── zz_generated_aes_configuration.go │ │ │ │ ├── zz_generated_version_commits.go │ │ │ │ ├── zz_generated_memory_info.go │ │ │ │ ├── zz_generated_catalog_refresh.go │ │ │ │ ├── zz_generated_dynamic_schema_status.go │ │ │ │ ├── zz_generated_export_output.go │ │ │ │ ├── zz_generated_user_status.go │ │ │ │ ├── zz_generated_import_yaml_output.go │ │ │ │ ├── zz_generated_local_object_reference.go │ │ │ │ ├── zz_generated_canal_network_provider.go │ │ │ │ ├── zz_generated_gke_autopilot_config.go │ │ │ │ ├── zz_generated_imported_config.go │ │ │ │ ├── zz_generated_node_pool_status.go │ │ │ │ ├── zz_generated_secretbox_configuration.go │ │ │ │ ├── zz_generated_template_status.go │ │ │ │ ├── zz_generated_compose_spec.go │ │ │ │ ├── zz_generated_compose_status.go │ │ │ │ ├── zz_generated_flannel_network_provider.go │ │ │ │ ├── zz_generated_oidc_test_output.go │ │ │ │ ├── zz_generated_project_status.go │ │ │ │ ├── zz_generated_key.go │ │ │ │ ├── zz_generated_route_openstack_opts.go │ │ │ │ ├── zz_generated_set_password_input.go │ │ │ │ ├── zz_generated_weave_network_provider.go │ │ │ │ ├── zz_generated_cert_expiration.go │ │ │ │ ├── zz_generated_downward_apiprojection.go │ │ │ │ ├── zz_generated_namespace_resource_quota.go │ │ │ │ ├── zz_generated_node_config_source.go │ │ │ │ ├── zz_generated_auth_config_status.go │ │ │ │ ├── zz_generated_generate_kube_config_output.go │ │ │ │ ├── zz_generated_rotate_certificate_output.go │ │ │ │ ├── zz_generated_upgrade_strategy.go │ │ │ │ ├── zz_generated_catalog_secrets.go │ │ │ │ ├── zz_generated_action.go │ │ │ │ ├── zz_generated_file.go │ │ │ │ ├── zz_generated_node_template_status.go │ │ │ │ ├── zz_generated_rotate_encryption_key_output.go │ │ │ │ ├── zz_generated_generic_oidctest_output.go │ │ │ │ ├── zz_generated_network_vshpere_opts.go │ │ │ │ ├── zz_generated_node_selector.go │ │ │ │ ├── zz_generated_template_version_status.go │ │ │ │ ├── zz_generated_github_config_test_output.go │ │ │ │ ├── zz_generated_harvester_cloud_provider.go │ │ │ │ ├── zz_generated_azure_adconfig_test_output.go │ │ │ │ ├── zz_generated_calico_network_provider.go │ │ │ │ ├── zz_generated_disk_vsphere_opts.go │ │ │ │ ├── zz_generated_saml_config_test_output.go │ │ │ │ ├── zz_generated_cluster_registration_token_spec.go │ │ │ │ ├── zz_generated_map_delta.go │ │ │ │ ├── zz_generated_node_daemon_endpoints.go │ │ │ │ ├── zz_generated_saml_config_test_input.go │ │ │ │ ├── zz_generated_update_global_dnstargets_input.go │ │ │ │ ├── zz_generated_google_oauth_config_test_output.go │ │ │ │ ├── zz_generated_multi_cluster_app_rollback_input.go │ │ │ │ ├── zz_generated_node_address.go │ │ │ │ ├── zz_generated_cluster_template_questions_output.go │ │ │ │ ├── zz_generated_cmek_config.go │ │ │ │ ├── zz_generated_authz_config.go │ │ │ │ ├── zz_generated_host_path_volume_source.go │ │ │ │ ├── zz_generated_rolling_update.go │ │ │ │ ├── zz_generated_container_image.go │ │ │ │ ├── zz_generated_ephemeral_volume_source.go │ │ │ │ ├── zz_generated_audit_log.go │ │ │ │ ├── zz_generated_gke_cidr_block.go │ │ │ │ ├── zz_generated_key_to_path.go │ │ │ │ ├── zz_generated_metadata_update.go │ │ │ │ ├── zz_generated_restore_config.go │ │ │ │ ├── zz_generated_node_runtime_handler_features.go │ │ │ │ ├── zz_generated_empty_dir_volume_source.go │ │ │ │ ├── zz_generated_azure_adconfig_apply_input.go │ │ │ │ ├── zz_generated_object_field_selector.go │ │ │ │ ├── zz_generated_node_runtime_handler.go │ │ │ │ ├── zz_generated_auth_webhook_config.go │ │ │ │ ├── zz_generated_flocker_volume_source.go │ │ │ │ ├── zz_generated_project_resource_quota.go │ │ │ │ ├── zz_generated_event_rate_limit.go │ │ │ │ ├── zz_generated_gke_node_pool_management.go │ │ │ │ ├── zz_generated_port_check.go │ │ │ │ ├── zz_generated_rotate_certificates.go │ │ │ │ ├── zz_generated_search_principals_input.go │ │ │ │ ├── zz_generated_env_var.go │ │ │ │ ├── zz_generated_cluster_component_status.go │ │ │ │ ├── zz_generated_kubernetes_info.go │ │ │ │ ├── zz_generated_photon_persistent_disk_volume_source.go │ │ │ │ ├── zz_generated_launch_template.go │ │ │ │ ├── zz_generated_preferred_scheduling_term.go │ │ │ │ ├── zz_generated_project_network_policy_spec.go │ │ │ │ ├── zz_generated_projected_volume_source.go │ │ │ │ ├── zz_generated_resource_configuration.go │ │ │ │ ├── zz_generated_volume_resource_requirements.go │ │ │ │ ├── zz_generated_extra_env.go │ │ │ │ ├── zz_generated_change_password_input.go │ │ │ │ ├── zz_generated_deployment_strategy.go │ │ │ │ ├── zz_generated_global_dns_status.go │ │ │ │ ├── zz_generated_rotate_certificate_input.go │ │ │ │ ├── zz_generated_aws_cloud_provider.go │ │ │ │ ├── zz_generated_downward_apivolume_source.go │ │ │ │ ├── zz_generated_gke_node_taint_config.go │ │ │ │ ├── zz_generated_label_selector.go │ │ │ │ ├── zz_generated_metadata_openstack_opts.go │ │ │ │ ├── zz_generated_nfs_volume_source.go │ │ │ │ ├── zz_generated_gke_status.go │ │ │ │ ├── zz_generated_secret_key_selector.go │ │ │ │ ├── zz_generated_secrets_encryption_config.go │ │ │ │ ├── zz_generated_update_multi_cluster_app_targets_input.go │ │ │ │ ├── zz_generated_authn_config.go │ │ │ │ ├── zz_generated_node_selector_term.go │ │ │ │ ├── zz_generated_persistent_volume_claim_volume_source.go │ │ │ │ ├── zz_generated_daemon_set_update_strategy.go │ │ │ │ ├── zz_generated_persistent_volume_claim_template.go │ │ │ │ ├── zz_generated_weighted_pod_affinity_term.go │ │ │ │ ├── zz_generated_k3s_config.go │ │ │ │ ├── zz_generated_secret_projection.go │ │ │ │ ├── zz_generated_config_map_key_selector.go │ │ │ │ ├── zz_generated_fleet_workspace_permission.go │ │ │ │ ├── zz_generated_rke2config.go │ │ │ │ ├── zz_generated_oidc_apply_input.go │ │ │ │ ├── zz_generated_gke_master_authorized_networks_config.go │ │ │ │ ├── zz_generated_ingress_capabilities.go │ │ │ │ ├── zz_generated_config_map_projection.go │ │ │ │ ├── zz_generated_restore_from_etcd_backup_input.go │ │ │ │ ├── zz_generated_taint.go │ │ │ │ ├── zz_generated_portworx_volume_source.go │ │ │ │ ├── zz_generated_local_cluster_auth_endpoint.go │ │ │ │ ├── zz_generated_os_info.go │ │ │ │ ├── zz_generated_member.go │ │ │ │ ├── zz_generated_node_selector_requirement.go │ │ │ │ ├── zz_generated_label_selector_requirement.go │ │ │ │ ├── zz_generated_rke_taint.go │ │ │ │ ├── zz_generated_typed_local_object_reference.go │ │ │ │ ├── zz_generated_git_repo_volume_source.go │ │ │ │ ├── zz_generated_resource_requirements.go │ │ │ │ ├── zz_generated_generic_oidcapply_input.go │ │ │ │ ├── zz_generated_rolling_update_daemon_set.go │ │ │ │ └── zz_generated_azure_file_volume_source.go │ │ └── norman │ │ │ └── types │ │ │ ├── convert │ │ │ ├── ref.go │ │ │ └── value_set_string.go │ │ │ ├── slice │ │ │ └── contains.go │ │ │ └── id.go │ ├── pkg │ │ └── errors │ │ │ ├── .travis.yml │ │ │ └── .gitignore │ ├── klauspost │ │ └── cpuid │ │ │ └── v2 │ │ │ ├── os_safe_linux_arm64.go │ │ │ ├── os_unsafe_linux_arm64.go │ │ │ ├── .gitignore │ │ │ ├── os_other_arm64.go │ │ │ ├── detect_ref.go │ │ │ └── test-architectures.sh │ ├── golang │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ └── ptypes │ │ │ └── doc.go │ ├── imdario │ │ └── mergo │ │ │ └── .travis.yml │ ├── munnerz │ │ └── goautoneg │ │ │ └── Makefile │ ├── cespare │ │ └── xxhash │ │ │ └── v2 │ │ │ ├── testall.sh │ │ │ ├── xxhash_asm.go │ │ │ └── xxhash_safe.go │ ├── armon │ │ └── circbuf │ │ │ └── .gitignore │ ├── fatih │ │ └── structs │ │ │ ├── .travis.yml │ │ │ └── .gitignore │ ├── mailru │ │ └── easyjson │ │ │ └── jlexer │ │ │ ├── error.go │ │ │ └── bytestostr_nounsafe.go │ ├── sergi │ │ └── go-diff │ │ │ └── diffmatchpatch │ │ │ ├── operation_string.go │ │ │ └── mathutil.go │ ├── inconshreveable │ │ └── mousetrap │ │ │ └── trap_others.go │ └── gogo │ │ └── protobuf │ │ └── AUTHORS ├── golang.org │ └── x │ │ ├── net │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── config_go125.go │ │ │ └── config_go126.go │ │ └── idna │ │ │ ├── pre_go118.go │ │ │ └── go118.go │ │ ├── sys │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── ptrace_ios.go │ │ │ ├── vgetrandom_unsupported.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── endian_big.go │ │ │ ├── ptrace_darwin.go │ │ │ ├── constants.go │ │ │ ├── endian_little.go │ │ │ ├── mmap_nomremap.go │ │ │ ├── vgetrandom_linux.go │ │ │ ├── auxv_unsupported.go │ │ │ ├── aliases.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── pagesize_unix.go │ │ │ ├── sysvshm_unix_other.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── syscall_linux_gc_arm.go │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── syscall_linux_alarm.go │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_hurd_386.go │ │ │ ├── sysvshm_linux.go │ │ │ └── sockcmsg_dragonfly.go │ │ ├── plan9 │ │ │ ├── asm.s │ │ │ ├── pwd_plan9.go │ │ │ ├── race0.go │ │ │ ├── mksysnum_plan9.sh │ │ │ └── str.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── mksyscall.go │ │ │ ├── race0.go │ │ │ └── str.go │ │ ├── term │ │ ├── codereview.cfg │ │ ├── term_unix_other.go │ │ └── term_unix_bsd.go │ │ ├── oauth2 │ │ ├── internal │ │ │ └── doc.go │ │ └── .travis.yml │ │ └── text │ │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ │ ├── encoding │ │ ├── japanese │ │ │ └── all.go │ │ └── simplifiedchinese │ │ │ └── all.go │ │ └── internal │ │ └── language │ │ └── common.go ├── gomodules.xyz │ ├── go-sh │ │ └── .gitignore │ ├── sets │ │ ├── .gitignore │ │ └── README.md │ ├── logs │ │ ├── README.md │ │ └── .gitignore │ ├── mergo │ │ └── .deepsource.toml │ ├── flags │ │ ├── README.md │ │ └── .gitignore │ ├── clock │ │ └── README.md │ ├── wait │ │ └── README.md │ ├── pointer │ │ └── README.md │ └── x │ │ └── arrays │ │ └── convert.go ├── k8s.io │ ├── kube-openapi │ │ └── pkg │ │ │ ├── util │ │ │ └── proto │ │ │ │ └── OWNERS │ │ │ ├── validation │ │ │ └── spec │ │ │ │ └── .gitignore │ │ │ └── internal │ │ │ └── third_party │ │ │ └── go-json-experiment │ │ │ └── json │ │ │ ├── AUTHORS │ │ │ └── CONTRIBUTORS │ ├── utils │ │ ├── ptr │ │ │ ├── README.md │ │ │ └── OWNERS │ │ ├── pointer │ │ │ ├── README.md │ │ │ └── OWNERS │ │ └── clock │ │ │ └── README.md │ ├── apiserver │ │ └── pkg │ │ │ └── server │ │ │ └── mux │ │ │ └── OWNERS │ ├── client-go │ │ ├── openapi │ │ │ └── OWNERS │ │ ├── tools │ │ │ ├── metrics │ │ │ │ └── OWNERS │ │ │ ├── record │ │ │ │ └── OWNERS │ │ │ ├── auth │ │ │ │ └── OWNERS │ │ │ ├── leaderelection │ │ │ │ └── OWNERS │ │ │ └── cache │ │ │ │ └── OWNERS │ │ ├── util │ │ │ ├── keyutil │ │ │ │ └── OWNERS │ │ │ └── cert │ │ │ │ └── OWNERS │ │ ├── transport │ │ │ └── OWNERS │ │ ├── plugin │ │ │ └── pkg │ │ │ │ └── client │ │ │ │ └── auth │ │ │ │ └── OWNERS │ │ ├── pkg │ │ │ └── apis │ │ │ │ └── clientauthentication │ │ │ │ └── OWNERS │ │ └── rest │ │ │ └── OWNERS │ ├── klog │ │ └── v2 │ │ │ ├── .golangci.yaml │ │ │ ├── code-of-conduct.md │ │ │ ├── internal │ │ │ └── clock │ │ │ │ └── README.md │ │ │ ├── .gitignore │ │ │ ├── OWNERS │ │ │ ├── klog_file_others.go │ │ │ └── RELEASE.md │ ├── apimachinery │ │ ├── pkg │ │ │ ├── util │ │ │ │ ├── mergepatch │ │ │ │ │ └── OWNERS │ │ │ │ ├── strategicpatch │ │ │ │ │ └── OWNERS │ │ │ │ └── validation │ │ │ │ │ └── OWNERS │ │ │ ├── api │ │ │ │ ├── resource │ │ │ │ │ └── OWNERS │ │ │ │ ├── meta │ │ │ │ │ └── OWNERS │ │ │ │ ├── validation │ │ │ │ │ └── OWNERS │ │ │ │ └── errors │ │ │ │ │ └── OWNERS │ │ │ └── apis │ │ │ │ └── meta │ │ │ │ └── v1 │ │ │ │ └── OWNERS │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ └── json │ │ │ └── OWNERS │ └── apiextensions-apiserver │ │ └── pkg │ │ └── apis │ │ └── apiextensions │ │ ├── v1 │ │ └── .import-restrictions │ │ └── v1beta1 │ │ └── .import-restrictions ├── sigs.k8s.io │ ├── json │ │ ├── OWNERS │ │ ├── code-of-conduct.md │ │ └── SECURITY_CONTACTS │ ├── yaml │ │ ├── code-of-conduct.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── OWNERS │ │ ├── goyaml.v2 │ │ │ ├── OWNERS │ │ │ └── NOTICE │ │ └── RELEASE.md │ └── controller-runtime │ │ ├── code-of-conduct.md │ │ ├── OWNERS │ │ ├── .gitignore │ │ └── pkg │ │ └── internal │ │ └── httpserver │ │ └── server.go ├── kmodules.xyz │ ├── apiversion │ │ ├── README.md │ │ └── .gitignore │ └── client-go │ │ ├── conditions │ │ └── README.md │ │ └── .gitignore ├── google.golang.org │ └── protobuf │ │ ├── internal │ │ ├── editiondefaults │ │ │ ├── editions_defaults.binpb │ │ │ └── defaults.go │ │ ├── flags │ │ │ ├── proto_legacy_enable.go │ │ │ └── proto_legacy_disable.go │ │ ├── impl │ │ │ ├── codec_map_go112.go │ │ │ └── codec_unsafe.go │ │ ├── errors │ │ │ └── is_go113.go │ │ ├── genid │ │ │ ├── doc.go │ │ │ └── wrappers.go │ │ └── editionssupport │ │ │ └── editions.go │ │ ├── encoding │ │ └── prototext │ │ │ └── doc.go │ │ ├── runtime │ │ └── protoiface │ │ │ └── legacy.go │ │ └── proto │ │ ├── proto_reflect.go │ │ └── proto_methods.go ├── go.bytebuilders.dev │ └── license-verifier │ │ ├── README.md │ │ ├── .gitignore │ │ ├── kubernetes │ │ ├── .golangci.yml │ │ └── .gitignore │ │ └── .golangci.yml ├── gopkg.in │ ├── yaml.v2 │ │ ├── .travis.yml │ │ └── NOTICE │ └── yaml.v3 │ │ └── NOTICE └── filippo.io │ └── edwards25519 │ └── field │ ├── fe_arm64_noasm.go │ ├── fe_amd64_noasm.go │ ├── fe_arm64.go │ └── fe_amd64.go ├── LICENSE.md ├── .gitignore ├── .golangci.yml └── .github └── .kodiak.toml /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_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/yudai/gojsondiff/.gitignore: -------------------------------------------------------------------------------- 1 | *.test -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/v3/.gitignore: -------------------------------------------------------------------------------- 1 | _fuzz/ -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/gomodules.xyz/go-sh/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /.idea 3 | -------------------------------------------------------------------------------- /vendor/gomodules.xyz/sets/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .idea 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.coverprofile 2 | -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/inject/.gitignore: -------------------------------------------------------------------------------- 1 | inject 2 | inject.test 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/util/proto/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - apelisse 3 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /testdata/fixtures/ 2 | /fixtures 3 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/validation/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | *.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/.golangci.yml: -------------------------------------------------------------------------------- 1 | run: 2 | skip-dirs: 3 | - examples/*.go 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/PuerkitoBio/purell/.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-* 2 | .DS_Store 3 | *.swp 4 | *.swo 5 | tags 6 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | TODO 7 | .vscode -------------------------------------------------------------------------------- /vendor/github.com/zeebo/xxh3/.gitignore: -------------------------------------------------------------------------------- 1 | upstream 2 | *.pprof 3 | xxh3.test 4 | .vscode 5 | *.txt 6 | _compat 7 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/coverage.sh: -------------------------------------------------------------------------------- 1 | go test -coverprofile=coverage.out 2 | go tool cover -html=coverage.out -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/README.md: -------------------------------------------------------------------------------- 1 | # Pointer 2 | 3 | This package provides some functions for pointer-based operations. 4 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.12.x 4 | - 1.13.x 5 | - master 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/README.md: -------------------------------------------------------------------------------- 1 | # Pointer 2 | 3 | This package provides some functions for pointer-based operations. 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitattributes: -------------------------------------------------------------------------------- 1 | # gofmt always uses LF, whereas Git uses CRLF on Windows. 2 | *.go text eol=lf 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/server/mux/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - sttts 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/openapi/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.3 4 | - 1.4 5 | script: 6 | - go test 7 | - go build 8 | -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/inject/update_readme.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | go get github.com/robertkrimen/godocdown/godocdown 3 | godocdown > README.md 4 | -------------------------------------------------------------------------------- /vendor/github.com/evanphx/json-patch/.gitignore: -------------------------------------------------------------------------------- 1 | # editor and IDE paraphernalia 2 | .idea 3 | .vscode 4 | 5 | # macOS paraphernalia 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - deads2k 5 | - lavalamp 6 | - liggitt 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/metrics/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - wojtek-t 5 | - jayunit100 6 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_js.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | 3 | package logrus 4 | 5 | func isTerminal(fd int) bool { 6 | return false 7 | } 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.golangci.yaml: -------------------------------------------------------------------------------- 1 | linters: 2 | disable-all: true 3 | enable: # sorted alphabetical 4 | - gofmt 5 | - misspell 6 | - revive 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/clock/README.md: -------------------------------------------------------------------------------- 1 | # Clock 2 | 3 | This package provides an interface for time-based operations. It allows 4 | mocking time for testing. 5 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitignore: -------------------------------------------------------------------------------- 1 | # go test -c output 2 | *.test 3 | *.test.exe 4 | 5 | # Output of go build ./cmd/fsnotify 6 | /fsnotify 7 | /fsnotify.exe 8 | -------------------------------------------------------------------------------- /vendor/github.com/google/gnostic-models/jsonschema/README.md: -------------------------------------------------------------------------------- 1 | # jsonschema 2 | 3 | This directory contains code for reading, writing, and manipulating JSON 4 | schemas. 5 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.mailmap: -------------------------------------------------------------------------------- 1 | Chris Howey 2 | Nathan Youngman <4566+nathany@users.noreply.github.com> 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .DS_Store? 3 | ._* 4 | .Spotlight-V100 5 | .Trashes 6 | Icon? 7 | ehthumbs.db 8 | Thumbs.db 9 | .idea 10 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/mergepatch/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - pwittrock 5 | reviewers: 6 | - apelisse 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/keyutil/OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - sig-auth-certificates-approvers 3 | reviewers: 4 | - sig-auth-certificates-reviewers 5 | labels: 6 | - sig/auth 7 | -------------------------------------------------------------------------------- /vendor/github.com/google/gnostic-models/compiler/README.md: -------------------------------------------------------------------------------- 1 | # Compiler support code 2 | 3 | This directory contains compiler support code used by Gnostic and Gnostic 4 | extensions. 5 | -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.11.x 5 | - 1.12.x 6 | - 1.13.x 7 | - master 8 | 9 | script: 10 | - go test -cover 11 | -------------------------------------------------------------------------------- /vendor/github.com/josharian/intern/README.md: -------------------------------------------------------------------------------- 1 | Docs: https://godoc.org/github.com/josharian/intern 2 | 3 | See also [Go issue 5160](https://golang.org/issue/5160). 4 | 5 | License: MIT 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/third_party/forked/golang/json/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - pwittrock 5 | reviewers: 6 | - apelisse 7 | -------------------------------------------------------------------------------- /vendor/kmodules.xyz/apiversion/README.md: -------------------------------------------------------------------------------- 1 | # apiversion 2 | 3 | A Go library for parsing and comparing versions like `v1alpha1` `v1beta1`, `v1rc1` and `v1` commonly found in Kubernetes. 4 | -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Paul Borman 2 | bmatsuo 3 | shawnps 4 | theory 5 | jboverfelt 6 | dsymonds 7 | cd1 8 | wallclockbuilder 9 | dansouza 10 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/support/goraph/node/node.go: -------------------------------------------------------------------------------- 1 | package node 2 | 3 | type Node struct { 4 | ID int 5 | Value interface{} 6 | } 7 | 8 | type NodeOrderedSet []Node 9 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/support/goraph/util/util.go: -------------------------------------------------------------------------------- 1 | package util 2 | 3 | import "math" 4 | 5 | func Odd(n int) bool { 6 | return math.Mod(float64(n), 2.0) == 1.0 7 | } 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /vendor/kmodules.xyz/client-go/conditions/README.md: -------------------------------------------------------------------------------- 1 | # conditions 2 | 3 | The code in this package has been copied from https://github.com/kube-bind/kube-bind/tree/main/pkg/apis/third_party/conditions 4 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/Makefile: -------------------------------------------------------------------------------- 1 | all: test 2 | 3 | test: 4 | go vet . 5 | go test -cover -v . 6 | 7 | ex: 8 | find ./examples -type f -name "*.go" | xargs -I {} go build -o /tmp/ignore {} -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # CHANGELOG 2 | 3 | ## v1.0.0-rc1 4 | 5 | This is the first logged release. Major changes (including breaking changes) 6 | have occurred since earlier tags. 7 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Johannes 'fish' Ziemke @discordianfish 2 | * Paul Gier @pgier 3 | * Ben Kochie @SuperQ 4 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_duration.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | DurationType = "duration" 5 | ) 6 | 7 | type Duration struct { 8 | } 9 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_user_spec.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | UserSpecType = "userSpec" 5 | ) 6 | 7 | type UserSpec struct { 8 | } 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/record/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - sig-instrumentation-reviewers 5 | approvers: 6 | - sig-instrumentation-approvers 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - smarterclayton 5 | - wojtek-t 6 | - deads2k 7 | - liggitt 8 | - caesarxuchao 9 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: github.com/pkg/errors 3 | go: 4 | - 1.11.x 5 | - 1.12.x 6 | - 1.13.x 7 | - tip 8 | 9 | script: 10 | - make check 11 | -------------------------------------------------------------------------------- /vendor/github.com/yudai/gojsondiff/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | if [ `go fmt $(go list ./... | grep -v /vendor/) | wc -l` -gt 0 ]; then echo "go fmt error"; exit 1; fi 3 | 4 | tools: 5 | go get github.com/tools/godep 6 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashed/mysql/HEAD/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/v2/os_safe_linux_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2021 Klaus Post, released under MIT License. See LICENSE file. 2 | 3 | //+build nounsafe 4 | 5 | package cpuid 6 | 7 | var hwcap uint 8 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Prometheus Community Code of Conduct 2 | 3 | Prometheus follows the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/main/code-of-conduct.md). 4 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/controller-runtime/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- 1 | Steve Francia 2 | Bjørn Erik Pedersen 3 | Fabiano Franz 4 | -------------------------------------------------------------------------------- /vendor/gomodules.xyz/logs/README.md: -------------------------------------------------------------------------------- 1 | # logs 2 | Helper library required for klog/v2 and stdlib log to coexist 3 | 4 | If you need klog/v2, glog and stdlib log to coexist, please use https://github.com/gomodules/kglog 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/ptr/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | - stewart-yu 6 | - thockin 7 | reviewers: 8 | - apelisse 9 | - stewart-yu 10 | - thockin 11 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_appengine.go: -------------------------------------------------------------------------------- 1 | // +build appengine 2 | 3 | package logrus 4 | 5 | import ( 6 | "io" 7 | ) 8 | 9 | func checkIfTerminal(w io.Writer) bool { 10 | return true 11 | } 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/utils/pointer/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | - stewart-yu 6 | - thockin 7 | reviewers: 8 | - apelisse 9 | - stewart-yu 10 | - thockin 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/.import-restrictions: -------------------------------------------------------------------------------- 1 | inverseRules: 2 | # Allow use of this package in all k8s.io packages. 3 | - selectorRegexp: k8s[.]io 4 | allowedPrefixes: 5 | - '' 6 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/README.md: -------------------------------------------------------------------------------- 1 | See [![Go Reference](https://pkg.go.dev/badge/github.com/prometheus/client_golang/prometheus.svg)](https://pkg.go.dev/github.com/prometheus/client_golang/prometheus). 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/NOTICE: -------------------------------------------------------------------------------- 1 | Data model artifacts for Prometheus. 2 | Copyright 2012-2015 The Prometheus Authors 3 | 4 | This product includes software developed at 5 | SoundCloud Ltd. (http://soundcloud.com/). 6 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_no_terminal.go: -------------------------------------------------------------------------------- 1 | // +build js nacl plan9 2 | 3 | package logrus 4 | 5 | import ( 6 | "io" 7 | ) 8 | 9 | func checkIfTerminal(w io.Writer) bool { 10 | return false 11 | } 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/.import-restrictions: -------------------------------------------------------------------------------- 1 | inverseRules: 2 | # Allow use of this package in all k8s.io packages. 3 | - selectorRegexp: k8s[.]io 4 | allowedPrefixes: 5 | - '' 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-auth-certificates-approvers 5 | reviewers: 6 | - sig-auth-certificates-reviewers 7 | labels: 8 | - sig/auth 9 | -------------------------------------------------------------------------------- /vendor/github.com/google/go-containerregistry/pkg/name/README.md: -------------------------------------------------------------------------------- 1 | # `name` 2 | 3 | [![GoDoc](https://godoc.org/github.com/google/go-containerregistry/pkg/name?status.svg)](https://godoc.org/github.com/google/go-containerregistry/pkg/name) 4 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- 1 | Common libraries shared by Prometheus Go components. 2 | Copyright 2015 The Prometheus Authors 3 | 4 | This product includes software developed at 5 | SoundCloud Ltd. (http://soundcloud.com/). 6 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Reporting a security issue 2 | 3 | The Prometheus security policy, including how to report vulnerabilities, can be 4 | found here: 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/auth/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-auth-authenticators-approvers 5 | reviewers: 6 | - sig-auth-authenticators-reviewers 7 | labels: 8 | - sig/auth 9 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/MAINTAINERS: -------------------------------------------------------------------------------- 1 | maintainers: 2 | - spf13 3 | - johnSchnake 4 | - jpmcb 5 | - marckhouzam 6 | inactive: 7 | - anthonyfok 8 | - bep 9 | - bogem 10 | - broady 11 | - eparis 12 | - jharshman 13 | - wfernandes 14 | -------------------------------------------------------------------------------- /vendor/gomodules.xyz/mergo/.deepsource.toml: -------------------------------------------------------------------------------- 1 | version = 1 2 | 3 | test_patterns = [ 4 | "*_test.go" 5 | ] 6 | 7 | [[analyzers]] 8 | name = "go" 9 | enabled = true 10 | 11 | [analyzers.meta] 12 | import_path = "gomodules.xyz/mergo" -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/strategicpatch/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - apelisse 5 | - pwittrock 6 | reviewers: 7 | - apelisse 8 | emeritus_approvers: 9 | - mengqiy 10 | -------------------------------------------------------------------------------- /vendor/go.bytebuilders.dev/license-verifier/README.md: -------------------------------------------------------------------------------- 1 | [![PkgGoDev](https://pkg.go.dev/badge/go.bytebuilders.dev/license-verifier)](https://pkg.go.dev/go.bytebuilders.dev/license-verifier) 2 | 3 | # license-verifier 4 | Library for verifying license 5 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_fleet_workspace_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | FleetWorkspaceStatusType = "fleetWorkspaceStatus" 5 | ) 6 | 7 | type FleetWorkspaceStatus struct { 8 | } 9 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_identity_configuration.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | IdentityConfigurationType = "identityConfiguration" 5 | ) 6 | 7 | type IdentityConfiguration struct { 8 | } 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/plugin/pkg/client/auth/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - sig-auth-authenticators-approvers 5 | reviewers: 6 | - sig-auth-authenticators-reviewers 7 | labels: 8 | - sig/auth 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/resource/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - thockin 5 | - smarterclayton 6 | - wojtek-t 7 | - derekwaynecarr 8 | - mikedanese 9 | - saad-ali 10 | - janetkuo 11 | -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | install: 3 | - go get -t 4 | - go get golang.org/x/tools/cmd/cover 5 | - go get github.com/mattn/goveralls 6 | script: 7 | - $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/internal/third_party/go-json-experiment/json/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at https://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/pkg/internal/third_party/go-json-experiment/json/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at https://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/system_darwin.go: -------------------------------------------------------------------------------- 1 | //go:build darwin 2 | // +build darwin 3 | 4 | package fsnotify 5 | 6 | import "golang.org/x/sys/unix" 7 | 8 | // note: this constant is not defined on BSD 9 | const openMode = unix.O_EVTONLY | unix.O_CLOEXEC 10 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.8.x 5 | - 1.x 6 | 7 | before_install: 8 | - go get -t -v ./... 9 | 10 | script: 11 | - ./test.sh 12 | 13 | after_success: 14 | - bash <(curl -s https://codecov.io/bash) 15 | -------------------------------------------------------------------------------- /vendor/github.com/yudai/gojsondiff/wercker.yml: -------------------------------------------------------------------------------- 1 | box: golang:1.6.3 2 | 3 | build: 4 | steps: 5 | - setup-go-workspace 6 | - script: 7 | name: tools 8 | code: make tools 9 | - script: 10 | name: test 11 | code: make test 12 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.8.x 5 | - 1.x 6 | 7 | before_install: 8 | - go get -t -v ./... 9 | 10 | script: 11 | - ./test.sh 12 | 13 | after_success: 14 | - bash <(curl -s https://codecov.io/bash) 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_project_network_policy_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ProjectNetworkPolicyStatusType = "projectNetworkPolicyStatus" 5 | ) 6 | 7 | type ProjectNetworkPolicyStatus struct { 8 | } 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·use(SB),NOSPLIT,$0 8 | RET 9 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/string_bytes.go: -------------------------------------------------------------------------------- 1 | package swag 2 | 3 | import "unsafe" 4 | 5 | // hackStringBytes returns the (unsafe) underlying bytes slice of a string. 6 | func hackStringBytes(str string) []byte { 7 | return unsafe.Slice(unsafe.StringData(str), len(str)) 8 | } 9 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/leaderelection/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - mikedanese 5 | reviewers: 6 | - wojtek-t 7 | - deads2k 8 | - mikedanese 9 | - ingvagabund 10 | emeritus_approvers: 11 | - timothysc 12 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/system_bsd.go: -------------------------------------------------------------------------------- 1 | //go:build freebsd || openbsd || netbsd || dragonfly 2 | // +build freebsd openbsd netbsd dragonfly 3 | 4 | package fsnotify 5 | 6 | import "golang.org/x/sys/unix" 7 | 8 | const openMode = unix.O_NONBLOCK | unix.O_RDONLY | unix.O_CLOEXEC 9 | -------------------------------------------------------------------------------- /vendor/github.com/munnerz/goautoneg/Makefile: -------------------------------------------------------------------------------- 1 | include $(GOROOT)/src/Make.inc 2 | 3 | TARG=bitbucket.org/ww/goautoneg 4 | GOFILES=autoneg.go 5 | 6 | include $(GOROOT)/src/Make.pkg 7 | 8 | format: 9 | gofmt -w *.go 10 | 11 | docs: 12 | gomake clean 13 | godoc ${TARG} > README.txt 14 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/.mailmap: -------------------------------------------------------------------------------- 1 | Aaron Lehmann 2 | Derek McGowan 3 | Stephen J Day 4 | Haibing Zhou 5 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x 5 | 6 | before_install: 7 | - go test -v 8 | 9 | script: 10 | - go test -race -coverprofile=coverage.txt -covermode=atomic 11 | 12 | after_success: 13 | - bash <(curl -s https://codecov.io/bash) -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/apis/clientauthentication/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | # approval on api packages bubbles to api-approvers 4 | reviewers: 5 | - sig-auth-authenticators-approvers 6 | - sig-auth-authenticators-reviewers 7 | labels: 8 | - sig/auth 9 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*.go] 4 | indent_style = tab 5 | indent_size = 4 6 | insert_final_newline = true 7 | 8 | [*.{yml,yaml}] 9 | indent_style = space 10 | indent_size = 2 11 | insert_final_newline = true 12 | trim_trailing_whitespace = true 13 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.golangci.yml: -------------------------------------------------------------------------------- 1 | --- 2 | linters: 3 | enable: 4 | - godot 5 | - misspell 6 | - revive 7 | 8 | linter-settings: 9 | godot: 10 | capital: true 11 | exclude: 12 | # Ignore "See: URL" 13 | - 'See:' 14 | misspell: 15 | locale: US 16 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- 1 | procfs provides functions to retrieve system, kernel and process 2 | metrics from the pseudo-filesystem proc. 3 | 4 | Copyright 2014-2015 The Prometheus Authors 5 | 6 | This product includes software developed at 7 | SoundCloud Ltd. (http://soundcloud.com/). 8 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - thockin 5 | - smarterclayton 6 | - caesarxuchao 7 | - wojtek-t 8 | - deads2k 9 | - liggitt 10 | - sttts 11 | - luxas 12 | - dims 13 | - cjcullen 14 | - lojies 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // Package internal contains support packages for oauth2 package. 6 | package internal 7 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/Gopkg.lock: -------------------------------------------------------------------------------- 1 | # This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. 2 | 3 | 4 | [solve-meta] 5 | analyzer-name = "dep" 6 | analyzer-version = 1 7 | input-imports = [] 8 | solver-name = "gps-cdcl" 9 | solver-version = 1 10 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_cpu_info.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | CPUInfoType = "cpuInfo" 5 | CPUInfoFieldCount = "count" 6 | ) 7 | 8 | type CPUInfo struct { 9 | Count int64 `json:"count,omitempty" yaml:"count,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/gomodules.xyz/flags/README.md: -------------------------------------------------------------------------------- 1 | [![CI](https://github.com/gomodules/flags/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/gomodules/flags/actions/workflows/ci.yml) 2 | [![PkgGoDev](https://pkg.go.dev/badge/gomodules.xyz/flags)](https://pkg.go.dev/gomodules.xyz/flags) 3 | 4 | # flags 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/internal/clock/README.md: -------------------------------------------------------------------------------- 1 | # Clock 2 | 3 | This package provides an interface for time-based operations. It allows 4 | mocking time for testing. 5 | 6 | This is a copy of k8s.io/utils/clock. We have to copy it to avoid a circular 7 | dependency (k8s.io/klog -> k8s.io/utils -> k8s.io/klog). 8 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/v2/os_unsafe_linux_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2021 Klaus Post, released under MIT License. See LICENSE file. 2 | 3 | //+build !nounsafe 4 | 5 | package cpuid 6 | 7 | import _ "unsafe" // needed for go:linkname 8 | 9 | //go:linkname hwcap internal/cpu.HWCap 10 | var hwcap uint 11 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/MAINTAINERS: -------------------------------------------------------------------------------- 1 | Derek McGowan (@dmcgowan) 2 | Stephen Day (@stevvooe) 3 | Vincent Batts (@vbatts) 4 | Akihiro Suda (@AkihiroSuda) 5 | Sebastiaan van Stijn (@thaJeztah) 6 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_health_check.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | HealthCheckType = "healthCheck" 5 | HealthCheckFieldURL = "url" 6 | ) 7 | 8 | type HealthCheck struct { 9 | URL string `json:"url,omitempty" yaml:"url,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/gomodules.xyz/clock/README.md: -------------------------------------------------------------------------------- 1 | [![PkgGoDev](https://pkg.go.dev/badge/gomodules.xyz/clock)](https://pkg.go.dev/gomodules.xyz/clock) 2 | 3 | # clock 4 | 5 | This library has been forked from https://github.com/kubernetes/apimachinery/tree/v0.18.3/pkg/util/clock so that it can easily used in non-k8s related projects. 6 | -------------------------------------------------------------------------------- /vendor/gomodules.xyz/wait/README.md: -------------------------------------------------------------------------------- 1 | [![PkgGoDev](https://pkg.go.dev/badge/gomodules.xyz/wait)](https://pkg.go.dev/gomodules.xyz/wait) 2 | 3 | # wait 4 | 5 | This library has been forked from https://github.com/kubernetes/apimachinery/tree/v0.22.0-alpha.2/pkg/util/wait so that it can easily used in non-k8s related projects. 6 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - thockin 5 | - smarterclayton 6 | - wojtek-t 7 | - deads2k 8 | - derekwaynecarr 9 | - caesarxuchao 10 | - mikedanese 11 | - liggitt 12 | - janetkuo 13 | - ncdc 14 | - dims 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/validation/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | # Disable inheritance as this is an api owners file 4 | options: 5 | no_parent_owners: true 6 | approvers: 7 | - api-approvers 8 | reviewers: 9 | - api-reviewers 10 | labels: 11 | - kind/api-change 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/validation/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | # Disable inheritance as this is an api owners file 4 | options: 5 | no_parent_owners: true 6 | approvers: 7 | - api-approvers 8 | reviewers: 9 | - api-reviewers 10 | labels: 11 | - kind/api-change 12 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX leaves these everywhere on SMB shares 2 | ._* 3 | 4 | # OSX trash 5 | .DS_Store 6 | 7 | # Eclipse files 8 | .classpath 9 | .project 10 | .settings/** 11 | 12 | # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA 13 | .idea/ 14 | *.iml 15 | 16 | # Vscode files 17 | .vscode 18 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/go_above_19.go: -------------------------------------------------------------------------------- 1 | //+build go1.9 2 | 3 | package concurrent 4 | 5 | import "sync" 6 | 7 | // Map is a wrapper for sync.Map introduced in go1.9 8 | type Map struct { 9 | sync.Map 10 | } 11 | 12 | // NewMap creates a thread safe Map 13 | func NewMap() *Map { 14 | return &Map{} 15 | } 16 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_feature_spec.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | FeatureSpecType = "featureSpec" 5 | FeatureSpecFieldValue = "value" 6 | ) 7 | 8 | type FeatureSpec struct { 9 | Value *bool `json:"value,omitempty" yaml:"value,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_filter.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | FilterType = "filter" 5 | FilterFieldModifiers = "modifiers" 6 | ) 7 | 8 | type Filter struct { 9 | Modifiers []string `json:"modifiers,omitempty" yaml:"modifiers,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | ## License 2 | 3 | Source code in this repository, Binaries, Docker images and Charts produced by the build process are licensed under the AppsCode Free Trial License 1.0.0. You may obtain a copy of the License at 4 | 5 | - [AppsCode-Trial-1.0.0](https://github.com/appscode/licenses/raw/1.0.0/AppsCode-Free-Trial-1.0.0.md) 6 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.9.x 5 | - 1.x 6 | 7 | before_install: 8 | - go get -t -v ./... 9 | - go get -t -v github.com/modern-go/reflect2-tests/... 10 | 11 | script: 12 | - ./test.sh 13 | 14 | after_success: 15 | - bash <(curl -s https://codecov.io/bash) 16 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_resource_claim.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ResourceClaimType = "resourceClaim" 5 | ResourceClaimFieldName = "name" 6 | ) 7 | 8 | type ResourceClaim struct { 9 | Name string `json:"name,omitempty" yaml:"name,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_solaris.go: -------------------------------------------------------------------------------- 1 | package logrus 2 | 3 | import ( 4 | "golang.org/x/sys/unix" 5 | ) 6 | 7 | // IsTerminal returns true if the given file descriptor is a terminal. 8 | func isTerminal(fd int) bool { 9 | _, err := unix.IoctlGetTermio(fd, unix.TCGETA) 10 | return err == nil 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_attached_volume.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | AttachedVolumeType = "attachedVolume" 5 | AttachedVolumeFieldName = "name" 6 | ) 7 | 8 | type AttachedVolume struct { 9 | Name string `json:"name,omitempty" yaml:"name,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_daemon_endpoint.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | DaemonEndpointType = "daemonEndpoint" 5 | DaemonEndpointFieldPort = "Port" 6 | ) 7 | 8 | type DaemonEndpoint struct { 9 | Port int64 `json:"Port,omitempty" yaml:"Port,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - "1.4.x" 5 | - "1.5.x" 6 | - "1.6.x" 7 | - "1.7.x" 8 | - "1.8.x" 9 | - "1.9.x" 10 | - "1.10.x" 11 | - "1.11.x" 12 | - "1.12.x" 13 | - "1.13.x" 14 | - "1.14.x" 15 | - "tip" 16 | 17 | go_import_path: gopkg.in/yaml.v2 18 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/norman/types/convert/ref.go: -------------------------------------------------------------------------------- 1 | package convert 2 | 3 | import "fmt" 4 | 5 | func ToReference(typeName string) string { 6 | return fmt.Sprintf("reference[%s]", typeName) 7 | } 8 | 9 | func ToFullReference(path, typeName string) string { 10 | return fmt.Sprintf("reference[%s/schemas/%s]", path, typeName) 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_unix.go: -------------------------------------------------------------------------------- 1 | // +build linux aix zos 2 | // +build !js 3 | 4 | package logrus 5 | 6 | import "golang.org/x/sys/unix" 7 | 8 | const ioctlReadTermios = unix.TCGETS 9 | 10 | func isTerminal(fd int) bool { 11 | _, err := unix.IoctlGetTermios(fd, ioctlReadTermios) 12 | return err == nil 13 | } 14 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | reviewers: 3 | - harshanarayana 4 | - mengjiao-liu 5 | - pohly 6 | approvers: 7 | - dims 8 | - pohly 9 | - thockin 10 | emeritus_approvers: 11 | - brancz 12 | - justinsb 13 | - lavalamp 14 | - piosz 15 | - serathius 16 | - tallclair 17 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_aes_configuration.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | AESConfigurationType = "aesConfiguration" 5 | AESConfigurationFieldKeys = "keys" 6 | ) 7 | 8 | type AESConfiguration struct { 9 | Keys []Key `json:"keys,omitempty" yaml:"keys,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/apis/meta/v1/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - thockin 5 | - smarterclayton 6 | - wojtek-t 7 | - deads2k 8 | - caesarxuchao 9 | - liggitt 10 | - sttts 11 | - luxas 12 | - janetkuo 13 | - justinsb 14 | - ncdc 15 | - soltysh 16 | - dims 17 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_version_commits.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | VersionCommitsType = "versionCommits" 5 | VersionCommitsFieldValue = "Value" 6 | ) 7 | 8 | type VersionCommits struct { 9 | Value map[string]string `json:"Value,omitempty" yaml:"Value,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/encoding/prototext/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // Package prototext marshals and unmarshals protocol buffer messages as the 6 | // textproto format. 7 | package prototext 8 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_memory_info.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | MemoryInfoType = "memoryInfo" 5 | MemoryInfoFieldMemTotalKiB = "memTotalKiB" 6 | ) 7 | 8 | type MemoryInfo struct { 9 | MemTotalKiB int64 `json:"memTotalKiB,omitempty" yaml:"memTotalKiB,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - tip 5 | 6 | install: 7 | - export GOPATH="$HOME/gopath" 8 | - mkdir -p "$GOPATH/src/golang.org/x" 9 | - mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/golang.org/x/oauth2" 10 | - go get -v -t -d golang.org/x/oauth2/... 11 | 12 | script: 13 | - go test -v golang.org/x/oauth2/... 14 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build protolegacy 6 | // +build protolegacy 7 | 8 | package flags 9 | 10 | const protoLegacy = true 11 | -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX leaves these everywhere on SMB shares 2 | ._* 3 | 4 | # Eclipse files 5 | .classpath 6 | .project 7 | .settings/** 8 | 9 | # Emacs save files 10 | *~ 11 | 12 | # Vim-related files 13 | [._]*.s[a-w][a-z] 14 | [._]s[a-w][a-z] 15 | *.un~ 16 | Session.vim 17 | .netrwhist 18 | 19 | # Go test binaries 20 | *.test 21 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_catalog_refresh.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | CatalogRefreshType = "catalogRefresh" 5 | CatalogRefreshFieldCatalogs = "catalogs" 6 | ) 7 | 8 | type CatalogRefresh struct { 9 | Catalogs []string `json:"catalogs,omitempty" yaml:"catalogs,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_dynamic_schema_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | DynamicSchemaStatusType = "dynamicSchemaStatus" 5 | DynamicSchemaStatusFieldFake = "fake" 6 | ) 7 | 8 | type DynamicSchemaStatus struct { 9 | Fake string `json:"fake,omitempty" yaml:"fake,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_export_output.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ExportOutputType = "exportOutput" 5 | ExportOutputFieldYAMLOutput = "yamlOutput" 6 | ) 7 | 8 | type ExportOutput struct { 9 | YAMLOutput string `json:"yamlOutput,omitempty" yaml:"yamlOutput,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_user_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | UserStatusType = "userStatus" 5 | UserStatusFieldConditions = "conditions" 6 | ) 7 | 8 | type UserStatus struct { 9 | Conditions []UserCondition `json:"conditions,omitempty" yaml:"conditions,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !protolegacy 6 | // +build !protolegacy 7 | 8 | package flags 9 | 10 | const protoLegacy = false 11 | -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/errors/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | reviewers: 4 | - thockin 5 | - smarterclayton 6 | - wojtek-t 7 | - deads2k 8 | - derekwaynecarr 9 | - caesarxuchao 10 | - mikedanese 11 | - liggitt 12 | - saad-ali 13 | - janetkuo 14 | - tallclair 15 | - dims 16 | - cjcullen 17 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_import_yaml_output.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ImportYamlOutputType = "importYamlOutput" 5 | ImportYamlOutputFieldMessage = "message" 6 | ) 7 | 8 | type ImportYamlOutput struct { 9 | Message string `json:"message,omitempty" yaml:"message,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_local_object_reference.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | LocalObjectReferenceType = "localObjectReference" 5 | LocalObjectReferenceFieldName = "name" 6 | ) 7 | 8 | type LocalObjectReference struct { 9 | Name string `json:"name,omitempty" yaml:"name,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/appveyor.yml: -------------------------------------------------------------------------------- 1 | version: "{build}" 2 | platform: x64 3 | clone_folder: c:\gopath\src\github.com\sirupsen\logrus 4 | environment: 5 | GOPATH: c:\gopath 6 | branches: 7 | only: 8 | - master 9 | install: 10 | - set PATH=%GOPATH%\bin;c:\go\bin;%PATH% 11 | - go version 12 | build_script: 13 | - go get -t 14 | - go test 15 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/klog_file_others.go: -------------------------------------------------------------------------------- 1 | //go:build !windows 2 | // +build !windows 3 | 4 | package klog 5 | 6 | import ( 7 | "os/user" 8 | ) 9 | 10 | func getUserName() string { 11 | userNameOnce.Do(func() { 12 | current, err := user.Current() 13 | if err == nil { 14 | userName = current.Username 15 | } 16 | }) 17 | 18 | return userName 19 | } 20 | -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/testall.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -eu -o pipefail 3 | 4 | # Small convenience script for running the tests with various combinations of 5 | # arch/tags. This assumes we're running on amd64 and have qemu available. 6 | 7 | go test ./... 8 | go test -tags purego ./... 9 | GOARCH=arm64 go test 10 | GOARCH=arm64 go test -tags purego 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_canal_network_provider.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | CanalNetworkProviderType = "canalNetworkProvider" 5 | CanalNetworkProviderFieldIface = "iface" 6 | ) 7 | 8 | type CanalNetworkProvider struct { 9 | Iface string `json:"iface,omitempty" yaml:"iface,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_gke_autopilot_config.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | GKEAutopilotConfigType = "gkeAutopilotConfig" 5 | GKEAutopilotConfigFieldEnabled = "enabled" 6 | ) 7 | 8 | type GKEAutopilotConfig struct { 9 | Enabled bool `json:"enabled,omitempty" yaml:"enabled,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_imported_config.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ImportedConfigType = "importedConfig" 5 | ImportedConfigFieldKubeConfig = "kubeConfig" 6 | ) 7 | 8 | type ImportedConfig struct { 9 | KubeConfig string `json:"kubeConfig,omitempty" yaml:"kubeConfig,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_bsd.go: -------------------------------------------------------------------------------- 1 | // +build darwin dragonfly freebsd netbsd openbsd 2 | // +build !js 3 | 4 | package logrus 5 | 6 | import "golang.org/x/sys/unix" 7 | 8 | const ioctlReadTermios = unix.TIOCGETA 9 | 10 | func isTerminal(fd int) bool { 11 | _, err := unix.IoctlGetTermios(fd, ioctlReadTermios) 12 | return err == nil 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go: -------------------------------------------------------------------------------- 1 | // +build !appengine,!js,!windows,!nacl,!plan9 2 | 3 | package logrus 4 | 5 | import ( 6 | "io" 7 | "os" 8 | ) 9 | 10 | func checkIfTerminal(w io.Writer) bool { 11 | switch v := w.(type) { 12 | case *os.File: 13 | return isTerminal(int(v.Fd())) 14 | default: 15 | return false 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build ios 6 | 7 | package unix 8 | 9 | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { 10 | return ENOTSUP 11 | } 12 | -------------------------------------------------------------------------------- /vendor/gomodules.xyz/flags/.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, built with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | 14 | # Dependency directories (remove the comment below to include it) 15 | vendor/ 16 | -------------------------------------------------------------------------------- /vendor/gomodules.xyz/logs/.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, built with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | 14 | # Dependency directories (remove the comment below to include it) 15 | vendor/ 16 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | echo "" > coverage.txt 5 | 6 | for d in $(go list ./... | grep -v vendor); do 7 | go test -coverprofile=profile.out -coverpkg=github.com/json-iterator/go $d 8 | if [ -f profile.out ]; then 9 | cat profile.out >> coverage.txt 10 | rm profile.out 11 | fi 12 | done 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_node_pool_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | NodePoolStatusType = "nodePoolStatus" 5 | NodePoolStatusFieldConditions = "conditions" 6 | ) 7 | 8 | type NodePoolStatus struct { 9 | Conditions []Condition `json:"conditions,omitempty" yaml:"conditions,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_secretbox_configuration.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | SecretboxConfigurationType = "secretboxConfiguration" 5 | SecretboxConfigurationFieldKeys = "keys" 6 | ) 7 | 8 | type SecretboxConfiguration struct { 9 | Keys []Key `json:"keys,omitempty" yaml:"keys,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_template_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | TemplateStatusType = "templateStatus" 5 | TemplateStatusFieldHelmVersion = "helmVersion" 6 | ) 7 | 8 | type TemplateStatus struct { 9 | HelmVersion string `json:"helmVersion,omitempty" yaml:"helmVersion,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build windows 6 | 7 | package windows 8 | 9 | import "syscall" 10 | 11 | type Errno = syscall.Errno 12 | type SysProcAttr = syscall.SysProcAttr 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_compose_spec.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ComposeSpecType = "composeSpec" 5 | ComposeSpecFieldRancherCompose = "rancherCompose" 6 | ) 7 | 8 | type ComposeSpec struct { 9 | RancherCompose string `json:"rancherCompose,omitempty" yaml:"rancherCompose,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_compose_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ComposeStatusType = "composeStatus" 5 | ComposeStatusFieldConditions = "conditions" 6 | ) 7 | 8 | type ComposeStatus struct { 9 | Conditions []ComposeCondition `json:"conditions,omitempty" yaml:"conditions,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_flannel_network_provider.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | FlannelNetworkProviderType = "flannelNetworkProvider" 5 | FlannelNetworkProviderFieldIface = "iface" 6 | ) 7 | 8 | type FlannelNetworkProvider struct { 9 | Iface string `json:"iface,omitempty" yaml:"iface,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_oidc_test_output.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | OIDCTestOutputType = "oidcTestOutput" 5 | OIDCTestOutputFieldRedirectURL = "redirectUrl" 6 | ) 7 | 8 | type OIDCTestOutput struct { 9 | RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_project_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ProjectStatusType = "projectStatus" 5 | ProjectStatusFieldConditions = "conditions" 6 | ) 7 | 8 | type ProjectStatus struct { 9 | Conditions []ProjectCondition `json:"conditions,omitempty" yaml:"conditions,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | echo "" > coverage.txt 5 | 6 | for d in $(go list ./... | grep -v vendor); do 7 | go test -coverprofile=profile.out -coverpkg=github.com/modern-go/concurrent $d 8 | if [ -f profile.out ]; then 9 | cat profile.out >> coverage.txt 10 | rm profile.out 11 | fi 12 | done 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_key.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | KeyType = "key" 5 | KeyFieldName = "name" 6 | KeyFieldSecret = "secret" 7 | ) 8 | 9 | type Key struct { 10 | Name string `json:"name,omitempty" yaml:"name,omitempty"` 11 | Secret string `json:"secret,omitempty" yaml:"secret,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_route_openstack_opts.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | RouteOpenstackOptsType = "routeOpenstackOpts" 5 | RouteOpenstackOptsFieldRouterID = "router-id" 6 | ) 7 | 8 | type RouteOpenstackOpts struct { 9 | RouterID string `json:"router-id,omitempty" yaml:"router-id,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: github.com/sirupsen/logrus 3 | git: 4 | depth: 1 5 | env: 6 | - GO111MODULE=on 7 | go: 1.15.x 8 | os: linux 9 | install: 10 | - ./travis/install.sh 11 | script: 12 | - cd ci 13 | - go run mage.go -v -w ../ crossBuild 14 | - go run mage.go -v -w ../ lint 15 | - go run mage.go -v -w ../ test 16 | -------------------------------------------------------------------------------- /vendor/kmodules.xyz/apiversion/.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, built with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | 14 | # Dependency directories (remove the comment below to include it) 15 | vendor/ 16 | .idea/ 17 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_set_password_input.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | SetPasswordInputType = "setPasswordInput" 5 | SetPasswordInputFieldNewPassword = "newPassword" 6 | ) 7 | 8 | type SetPasswordInput struct { 9 | NewPassword string `json:"newPassword,omitempty" yaml:"newPassword,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_weave_network_provider.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | WeaveNetworkProviderType = "weaveNetworkProvider" 5 | WeaveNetworkProviderFieldPassword = "password" 6 | ) 7 | 8 | type WeaveNetworkProvider struct { 9 | Password string `json:"password,omitempty" yaml:"password,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/pre_go118.go: -------------------------------------------------------------------------------- 1 | // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. 2 | 3 | // Copyright 2021 The Go Authors. All rights reserved. 4 | // Use of this source code is governed by a BSD-style 5 | // license that can be found in the LICENSE file. 6 | 7 | //go:build !go1.18 8 | 9 | package idna 10 | 11 | const transitionalLookup = true 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go: -------------------------------------------------------------------------------- 1 | // Copyright 2024 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !linux || !go1.24 6 | 7 | package unix 8 | 9 | func vgetrandom(p []byte, flags uint32) (ret int, supported bool) { 10 | return -1, false 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/armon/circbuf/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/log.go: -------------------------------------------------------------------------------- 1 | package concurrent 2 | 3 | import ( 4 | "os" 5 | "log" 6 | "io/ioutil" 7 | ) 8 | 9 | // ErrorLogger is used to print out error, can be set to writer other than stderr 10 | var ErrorLogger = log.New(os.Stderr, "", 0) 11 | 12 | // InfoLogger is used to print informational message, default to off 13 | var InfoLogger = log.New(ioutil.Discard, "", 0) -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_cert_expiration.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | CertExpirationType = "certExpiration" 5 | CertExpirationFieldExpirationDate = "expirationDate" 6 | ) 7 | 8 | type CertExpiration struct { 9 | ExpirationDate string `json:"expirationDate,omitempty" yaml:"expirationDate,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_downward_apiprojection.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | DownwardAPIProjectionType = "downwardAPIProjection" 5 | DownwardAPIProjectionFieldItems = "items" 6 | ) 7 | 8 | type DownwardAPIProjection struct { 9 | Items []DownwardAPIVolumeFile `json:"items,omitempty" yaml:"items,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_namespace_resource_quota.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | NamespaceResourceQuotaType = "namespaceResourceQuota" 5 | NamespaceResourceQuotaFieldLimit = "limit" 6 | ) 7 | 8 | type NamespaceResourceQuota struct { 9 | Limit *ResourceQuotaLimit `json:"limit,omitempty" yaml:"limit,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_node_config_source.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | NodeConfigSourceType = "nodeConfigSource" 5 | NodeConfigSourceFieldConfigMap = "configMap" 6 | ) 7 | 8 | type NodeConfigSource struct { 9 | ConfigMap *ConfigMapNodeConfigSource `json:"configMap,omitempty" yaml:"configMap,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build amd64 && linux && gc 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | //go:noescape 12 | func gettimeofday(tv *Timeval) (err syscall.Errno) 13 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/structs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.7.x 4 | - 1.8.x 5 | - 1.9.x 6 | - tip 7 | sudo: false 8 | before_install: 9 | - go get github.com/axw/gocov/gocov 10 | - go get github.com/mattn/goveralls 11 | - if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi 12 | script: 13 | - $HOME/gopath/bin/goveralls -service=travis-ci 14 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_auth_config_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | AuthConfigStatusType = "authConfigStatus" 5 | AuthConfigStatusFieldConditions = "conditions" 6 | ) 7 | 8 | type AuthConfigStatus struct { 9 | Conditions []AuthConfigConditions `json:"conditions,omitempty" yaml:"conditions,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_generate_kube_config_output.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | GenerateKubeConfigOutputType = "generateKubeConfigOutput" 5 | GenerateKubeConfigOutputFieldConfig = "config" 6 | ) 7 | 8 | type GenerateKubeConfigOutput struct { 9 | Config string `json:"config,omitempty" yaml:"config,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_rotate_certificate_output.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | RotateCertificateOutputType = "rotateCertificateOutput" 5 | RotateCertificateOutputFieldMessage = "message" 6 | ) 7 | 8 | type RotateCertificateOutput struct { 9 | Message string `json:"message,omitempty" yaml:"message,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_upgrade_strategy.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | UpgradeStrategyType = "upgradeStrategy" 5 | UpgradeStrategyFieldRollingUpdate = "rollingUpdate" 6 | ) 7 | 8 | type UpgradeStrategy struct { 9 | RollingUpdate *RollingUpdate `json:"rollingUpdate,omitempty" yaml:"rollingUpdate,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | language: go 4 | 5 | go: 6 | - 1.9.x 7 | - 1.10.x 8 | - 1.11.x 9 | - tip 10 | 11 | matrix: 12 | allow_failures: 13 | - go: tip 14 | 15 | install: 16 | - go get golang.org/x/lint/golint 17 | - export PATH=$GOPATH/bin:$PATH 18 | - go install ./... 19 | 20 | script: 21 | - verify/all.sh -v 22 | - go test ./... 23 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/structs/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/internal/flags/flags.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019, The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package flags 6 | 7 | // Deterministic controls whether the output of Diff should be deterministic. 8 | // This is only used for testing. 9 | var Deterministic bool 10 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_catalog_secrets.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | CatalogSecretsType = "catalogSecrets" 5 | CatalogSecretsFieldCredentialSecret = "credentialSecret" 6 | ) 7 | 8 | type CatalogSecrets struct { 9 | CredentialSecret string `json:"credentialSecret,omitempty" yaml:"credentialSecret,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | // 5 | //go:build armbe || arm64be || m68k || mips || mips64 || mips64p32 || ppc || ppc64 || s390 || s390x || shbe || sparc || sparc64 6 | 7 | package unix 8 | 9 | const isBigEndian = true 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_darwin.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build darwin && !ios 6 | 7 | package unix 8 | 9 | func ptrace(request int, pid int, addr uintptr, data uintptr) error { 10 | return ptrace1(request, pid, addr, data) 11 | } 12 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX leaves these everywhere on SMB shares 2 | ._* 3 | 4 | # Eclipse files 5 | .classpath 6 | .project 7 | .settings/** 8 | 9 | # Idea files 10 | .idea/** 11 | .idea/ 12 | 13 | # Emacs save files 14 | *~ 15 | 16 | # Vim-related files 17 | [._]*.s[a-w][a-z] 18 | [._]s[a-w][a-z] 19 | *.un~ 20 | Session.vim 21 | .netrwhist 22 | 23 | # Go test binaries 24 | *.test 25 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_action.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ActionType = "action" 5 | ActionFieldInput = "input" 6 | ActionFieldOutput = "output" 7 | ) 8 | 9 | type Action struct { 10 | Input string `json:"input,omitempty" yaml:"input,omitempty"` 11 | Output string `json:"output,omitempty" yaml:"output,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_file.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | FileType = "file" 5 | FileFieldContents = "contents" 6 | FileFieldName = "name" 7 | ) 8 | 9 | type File struct { 10 | Contents string `json:"contents,omitempty" yaml:"contents,omitempty"` 11 | Name string `json:"name,omitempty" yaml:"name,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_node_template_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | NodeTemplateStatusType = "nodeTemplateStatus" 5 | NodeTemplateStatusFieldConditions = "conditions" 6 | ) 7 | 8 | type NodeTemplateStatus struct { 9 | Conditions []NodeTemplateCondition `json:"conditions,omitempty" yaml:"conditions,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_rotate_encryption_key_output.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | RotateEncryptionKeyOutputType = "rotateEncryptionKeyOutput" 5 | RotateEncryptionKeyOutputFieldMessage = "message" 6 | ) 7 | 8 | type RotateEncryptionKeyOutput struct { 9 | Message string `json:"message,omitempty" yaml:"message,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | arch: arm64 3 | dist: focal 4 | go: 1.15.x 5 | script: 6 | - diff -u <(echo -n) <(gofmt -d *.go) 7 | - diff -u <(echo -n) <(golint $(go list -e ./...) | grep -v YAMLToJSON) 8 | - GO111MODULE=on go vet . 9 | - GO111MODULE=on go test -v -race ./... 10 | - git diff --exit-code 11 | install: 12 | - GO111MODULE=off go get golang.org/x/lint/golint 13 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_generic_oidctest_output.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | GenericOIDCTestOutputType = "genericOIDCTestOutput" 5 | GenericOIDCTestOutputFieldRedirectURL = "redirectUrl" 6 | ) 7 | 8 | type GenericOIDCTestOutput struct { 9 | RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_network_vshpere_opts.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | NetworkVshpereOptsType = "networkVshpereOpts" 5 | NetworkVshpereOptsFieldPublicNetwork = "public-network" 6 | ) 7 | 8 | type NetworkVshpereOpts struct { 9 | PublicNetwork string `json:"public-network,omitempty" yaml:"public-network,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_node_selector.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | NodeSelectorType = "nodeSelector" 5 | NodeSelectorFieldNodeSelectorTerms = "nodeSelectorTerms" 6 | ) 7 | 8 | type NodeSelector struct { 9 | NodeSelectorTerms []NodeSelectorTerm `json:"nodeSelectorTerms,omitempty" yaml:"nodeSelectorTerms,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_template_version_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | TemplateVersionStatusType = "templateVersionStatus" 5 | TemplateVersionStatusFieldHelmVersion = "helmVersion" 6 | ) 7 | 8 | type TemplateVersionStatus struct { 9 | HelmVersion string `json:"helmVersion,omitempty" yaml:"helmVersion,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos 6 | 7 | package unix 8 | 9 | const ( 10 | R_OK = 0x4 11 | W_OK = 0x2 12 | X_OK = 0x1 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix_other.go: -------------------------------------------------------------------------------- 1 | // Copyright 2021 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build aix || linux || solaris || zos 6 | 7 | package term 8 | 9 | import "golang.org/x/sys/unix" 10 | 11 | const ioctlReadTermios = unix.TCGETS 12 | const ioctlWriteTermios = unix.TCSETS 13 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_map_go112.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build go1.12 6 | // +build go1.12 7 | 8 | package impl 9 | 10 | import "reflect" 11 | 12 | func mapRange(v reflect.Value) *reflect.MapIter { return v.MapRange() } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_github_config_test_output.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | GithubConfigTestOutputType = "githubConfigTestOutput" 5 | GithubConfigTestOutputFieldRedirectURL = "redirectUrl" 6 | ) 7 | 8 | type GithubConfigTestOutput struct { 9 | RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_harvester_cloud_provider.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | HarvesterCloudProviderType = "harvesterCloudProvider" 5 | HarvesterCloudProviderFieldCloudConfig = "cloudConfig" 6 | ) 7 | 8 | type HarvesterCloudProvider struct { 9 | CloudConfig string `json:"cloudConfig,omitempty" yaml:"cloudConfig,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config_go125.go: -------------------------------------------------------------------------------- 1 | // Copyright 2025 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !go1.26 6 | 7 | package http2 8 | 9 | import ( 10 | "net/http" 11 | ) 12 | 13 | func http2ConfigStrictMaxConcurrentRequests(h2 *http.HTTP2Config) bool { 14 | return false 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/controller-runtime/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs: https://git.k8s.io/community/contributors/guide/owners.md 2 | 3 | approvers: 4 | - controller-runtime-admins 5 | - controller-runtime-maintainers 6 | - controller-runtime-approvers 7 | reviewers: 8 | - controller-runtime-admins 9 | - controller-runtime-maintainers 10 | - controller-runtime-approvers 11 | - controller-runtime-reviewers 12 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - dims 5 | - jpbetz 6 | - smarterclayton 7 | - deads2k 8 | - sttts 9 | - liggitt 10 | reviewers: 11 | - dims 12 | - thockin 13 | - jpbetz 14 | - smarterclayton 15 | - wojtek-t 16 | - deads2k 17 | - derekwaynecarr 18 | - mikedanese 19 | - liggitt 20 | - sttts 21 | - tallclair 22 | labels: 23 | - sig/api-machinery 24 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/v2/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_azure_adconfig_test_output.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | AzureADConfigTestOutputType = "azureADConfigTestOutput" 5 | AzureADConfigTestOutputFieldRedirectURL = "redirectUrl" 6 | ) 7 | 8 | type AzureADConfigTestOutput struct { 9 | RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_calico_network_provider.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | CalicoNetworkProviderType = "calicoNetworkProvider" 5 | CalicoNetworkProviderFieldCloudProvider = "cloudProvider" 6 | ) 7 | 8 | type CalicoNetworkProvider struct { 9 | CloudProvider string `json:"cloudProvider,omitempty" yaml:"cloudProvider,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_disk_vsphere_opts.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | DiskVsphereOptsType = "diskVsphereOpts" 5 | DiskVsphereOptsFieldSCSIControllerType = "scsicontrollertype" 6 | ) 7 | 8 | type DiskVsphereOpts struct { 9 | SCSIControllerType string `json:"scsicontrollertype,omitempty" yaml:"scsicontrollertype,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_saml_config_test_output.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | SamlConfigTestOutputType = "samlConfigTestOutput" 5 | SamlConfigTestOutputFieldIdpRedirectURL = "idpRedirectUrl" 6 | ) 7 | 8 | type SamlConfigTestOutput struct { 9 | IdpRedirectURL string `json:"idpRedirectUrl,omitempty" yaml:"idpRedirectUrl,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build go1.10 6 | 7 | package bidirule 8 | 9 | func (t *Transformer) isFinal() bool { 10 | return t.state == ruleLTRFinal || t.state == ruleRTLFinal || t.state == ruleInitial 11 | } 12 | -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_arm64_noasm.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2021 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !arm64 || !gc || purego 6 | // +build !arm64 !gc purego 7 | 8 | package field 9 | 10 | func (v *Element) carryPropagate() *Element { 11 | return v.carryPropagateGeneric() 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/xxhash_asm.go: -------------------------------------------------------------------------------- 1 | //go:build (amd64 || arm64) && !appengine && gc && !purego 2 | // +build amd64 arm64 3 | // +build !appengine 4 | // +build gc 5 | // +build !purego 6 | 7 | package xxhash 8 | 9 | // Sum64 computes the 64-bit xxHash digest of b with a zero seed. 10 | // 11 | //go:noescape 12 | func Sum64(b []byte) uint64 13 | 14 | //go:noescape 15 | func writeBlocks(d *Digest, b []byte) int 16 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/errors/is_go113.go: -------------------------------------------------------------------------------- 1 | // Copyright 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build go1.13 6 | // +build go1.13 7 | 8 | package errors 9 | 10 | import "errors" 11 | 12 | // Is is errors.Is. 13 | func Is(err, target error) bool { return errors.Is(err, target) } 14 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_cluster_registration_token_spec.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ClusterRegistrationTokenSpecType = "clusterRegistrationTokenSpec" 5 | ClusterRegistrationTokenSpecFieldClusterID = "clusterId" 6 | ) 7 | 8 | type ClusterRegistrationTokenSpec struct { 9 | ClusterID string `json:"clusterId,omitempty" yaml:"clusterId,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_map_delta.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | MapDeltaType = "mapDelta" 5 | MapDeltaFieldAdd = "add" 6 | MapDeltaFieldDelete = "delete" 7 | ) 8 | 9 | type MapDelta struct { 10 | Add map[string]string `json:"add,omitempty" yaml:"add,omitempty"` 11 | Delete map[string]bool `json:"delete,omitempty" yaml:"delete,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_node_daemon_endpoints.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | NodeDaemonEndpointsType = "nodeDaemonEndpoints" 5 | NodeDaemonEndpointsFieldKubeletEndpoint = "kubeletEndpoint" 6 | ) 7 | 8 | type NodeDaemonEndpoints struct { 9 | KubeletEndpoint *DaemonEndpoint `json:"kubeletEndpoint,omitempty" yaml:"kubeletEndpoint,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_saml_config_test_input.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | SamlConfigTestInputType = "samlConfigTestInput" 5 | SamlConfigTestInputFieldFinalRedirectURL = "finalRedirectUrl" 6 | ) 7 | 8 | type SamlConfigTestInput struct { 9 | FinalRedirectURL string `json:"finalRedirectUrl,omitempty" yaml:"finalRedirectUrl,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/go.bytebuilders.dev/license-verifier/.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, built with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | 14 | # Dependency directories (remove the comment below to include it) 15 | vendor/ 16 | 17 | .idea/ 18 | .vscode/ 19 | .DS_Store 20 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/japanese/all.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package japanese 6 | 7 | import ( 8 | "golang.org/x/text/encoding" 9 | ) 10 | 11 | // All is a list of all defined encodings in this package. 12 | var All = []encoding.Encoding{EUCJP, ISO2022JP, ShiftJIS} 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_update_global_dnstargets_input.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | UpdateGlobalDNSTargetsInputType = "updateGlobalDNSTargetsInput" 5 | UpdateGlobalDNSTargetsInputFieldProjectIDs = "projectIds" 6 | ) 7 | 8 | type UpdateGlobalDNSTargetsInput struct { 9 | ProjectIDs []string `json:"projectIds,omitempty" yaml:"projectIds,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config_go126.go: -------------------------------------------------------------------------------- 1 | // Copyright 2025 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build go1.26 6 | 7 | package http2 8 | 9 | import ( 10 | "net/http" 11 | ) 12 | 13 | func http2ConfigStrictMaxConcurrentRequests(h2 *http.HTTP2Config) bool { 14 | return h2.StrictMaxConcurrentRequests 15 | } 16 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | // 5 | //go:build 386 || amd64 || amd64p32 || alpha || arm || arm64 || loong64 || mipsle || mips64le || mips64p32le || nios2 || ppc64le || riscv || riscv64 || sh 6 | 7 | package unix 8 | 9 | const isBigEndian = false 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix_bsd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build darwin || dragonfly || freebsd || netbsd || openbsd 6 | 7 | package term 8 | 9 | import "golang.org/x/sys/unix" 10 | 11 | const ioctlReadTermios = unix.TIOCGETA 12 | const ioctlWriteTermios = unix.TIOCSETA 13 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/bench_test.sh: -------------------------------------------------------------------------------- 1 | #go test -run=none -file bench_test.go -test.bench . -cpuprofile=bench_test.out 2 | 3 | go test -c 4 | ./go-restful.test -test.run=none -test.cpuprofile=tmp.prof -test.bench=BenchmarkMany 5 | ./go-restful.test -test.run=none -test.cpuprofile=curly.prof -test.bench=BenchmarkManyCurly 6 | 7 | #go tool pprof go-restful.test tmp.prof 8 | go tool pprof go-restful.test curly.prof 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_google_oauth_config_test_output.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | GoogleOauthConfigTestOutputType = "googleOauthConfigTestOutput" 5 | GoogleOauthConfigTestOutputFieldRedirectURL = "redirectUrl" 6 | ) 7 | 8 | type GoogleOauthConfigTestOutput struct { 9 | RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_multi_cluster_app_rollback_input.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | MultiClusterAppRollbackInputType = "multiClusterAppRollbackInput" 5 | MultiClusterAppRollbackInputFieldRevisionID = "revisionId" 6 | ) 7 | 8 | type MultiClusterAppRollbackInput struct { 9 | RevisionID string `json:"revisionId,omitempty" yaml:"revisionId,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_node_address.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | NodeAddressType = "nodeAddress" 5 | NodeAddressFieldAddress = "address" 6 | NodeAddressFieldType = "type" 7 | ) 8 | 9 | type NodeAddress struct { 10 | Address string `json:"address,omitempty" yaml:"address,omitempty"` 11 | Type string `json:"type,omitempty" yaml:"type,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mmap_nomremap.go: -------------------------------------------------------------------------------- 1 | // Copyright 2023 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build aix || darwin || dragonfly || freebsd || openbsd || solaris || zos 6 | 7 | package unix 8 | 9 | var mapper = &mmapper{ 10 | active: make(map[*byte][]byte), 11 | mmap: mmap, 12 | munmap: munmap, 13 | } 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- 1 | // Copyright 2009 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build generate 6 | 7 | package windows 8 | 9 | //go:generate go run golang.org/x/sys/windows/mkwinsyscall -output zsyscall_windows.go eventlog.go service.go syscall_windows.go security_windows.go setupapi_windows.go 10 | -------------------------------------------------------------------------------- /vendor/gomodules.xyz/pointer/README.md: -------------------------------------------------------------------------------- 1 | [![PkgGoDev](https://pkg.go.dev/badge/gomodules.xyz/pointer)](https://pkg.go.dev/gomodules.xyz/pointer) 2 | ![CI](https://github.com/gomodules/pointer/workflows/CI/badge.svg) 3 | [![Go Report Card](https://goreportcard.com/badge/gomodules.xyz/pointer)](https://goreportcard.com/report/gomodules.xyz/pointer) 4 | 5 | # pointer 6 | 7 | Fork of https://github.com/aws/aws-sdk-go/blob/v1.35.21/aws/convert_types.go 8 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_cluster_template_questions_output.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ClusterTemplateQuestionsOutputType = "clusterTemplateQuestionsOutput" 5 | ClusterTemplateQuestionsOutputFieldQuestions = "questions" 6 | ) 7 | 8 | type ClusterTemplateQuestionsOutput struct { 9 | Questions []Question `json:"questions,omitempty" yaml:"questions,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/vgetrandom_linux.go: -------------------------------------------------------------------------------- 1 | // Copyright 2024 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build linux && go1.24 6 | 7 | package unix 8 | 9 | import _ "unsafe" 10 | 11 | //go:linkname vgetrandom runtime.vgetrandom 12 | //go:noescape 13 | func vgetrandom(p []byte, flags uint32) (ret int, supported bool) 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/simplifiedchinese/all.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package simplifiedchinese 6 | 7 | import ( 8 | "golang.org/x/text/encoding" 9 | ) 10 | 11 | // All is a list of all defined encodings in this package. 12 | var All = []encoding.Encoding{GB18030, GBK, HZGB2312} 13 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package protoiface 6 | 7 | type MessageV1 interface { 8 | Reset() 9 | String() string 10 | ProtoMessage() 11 | } 12 | 13 | type ExtensionRangeV1 struct { 14 | Start, End int32 // both inclusive 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/goyaml.v2/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - dims 5 | - jpbetz 6 | - smarterclayton 7 | - deads2k 8 | - sttts 9 | - liggitt 10 | - natasha41575 11 | - knverey 12 | reviewers: 13 | - dims 14 | - thockin 15 | - jpbetz 16 | - smarterclayton 17 | - deads2k 18 | - derekwaynecarr 19 | - mikedanese 20 | - liggitt 21 | - sttts 22 | - tallclair 23 | labels: 24 | - sig/api-machinery 25 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_cmek_config.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | CMEKConfigType = "cmekConfig" 5 | CMEKConfigFieldKeyName = "keyName" 6 | CMEKConfigFieldRingName = "ringName" 7 | ) 8 | 9 | type CMEKConfig struct { 10 | KeyName string `json:"keyName,omitempty" yaml:"keyName,omitempty"` 11 | RingName string `json:"ringName,omitempty" yaml:"ringName,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/common.go: -------------------------------------------------------------------------------- 1 | // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. 2 | 3 | package language 4 | 5 | // This file contains code common to the maketables.go and the package code. 6 | 7 | // AliasType is the type of an alias in AliasMap. 8 | type AliasType int8 9 | 10 | const ( 11 | Deprecated AliasType = iota 12 | Macro 13 | Legacy 14 | 15 | AliasTypeUnknown AliasType = -1 16 | ) 17 | -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_amd64_noasm.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !amd64 || !gc || purego 6 | // +build !amd64 !gc purego 7 | 8 | package field 9 | 10 | func feMul(v, x, y *Element) { feMulGeneric(v, x, y) } 11 | 12 | func feSquare(v, x *Element) { feSquareGeneric(v, x) } 13 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/v3/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | | Version | Supported | 6 | | ------- | ------------------ | 7 | | v3.7.x | :white_check_mark: | 8 | | < v3.0.1 | :x: | 9 | 10 | ## Reporting a Vulnerability 11 | 12 | Create an Issue and put the label `[security]` in the title of the issue. 13 | Valid reported security issues are expected to be solved within a week. 14 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/.editorconfig: -------------------------------------------------------------------------------- 1 | ; https://editorconfig.org/ 2 | 3 | root = true 4 | 5 | [*] 6 | insert_final_newline = true 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | indent_style = space 10 | indent_size = 2 11 | 12 | [{Makefile,go.mod,go.sum,*.go,.gitmodules}] 13 | indent_style = tab 14 | indent_size = 4 15 | 16 | [*.md] 17 | indent_size = 4 18 | trim_trailing_whitespace = false 19 | 20 | eclint_indent_style = unset 21 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_authz_config.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | AuthzConfigType = "authzConfig" 5 | AuthzConfigFieldMode = "mode" 6 | AuthzConfigFieldOptions = "options" 7 | ) 8 | 9 | type AuthzConfig struct { 10 | Mode string `json:"mode,omitempty" yaml:"mode,omitempty"` 11 | Options map[string]string `json:"options,omitempty" yaml:"options,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/tls_handshake.go: -------------------------------------------------------------------------------- 1 | package websocket 2 | 3 | import ( 4 | "context" 5 | "crypto/tls" 6 | ) 7 | 8 | func doHandshake(ctx context.Context, tlsConn *tls.Conn, cfg *tls.Config) error { 9 | if err := tlsConn.HandshakeContext(ctx); err != nil { 10 | return err 11 | } 12 | if !cfg.InsecureSkipVerify { 13 | if err := tlsConn.VerifyHostname(cfg.ServerName); err != nil { 14 | return err 15 | } 16 | } 17 | return nil 18 | } 19 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/editiondefaults/defaults.go: -------------------------------------------------------------------------------- 1 | // Copyright 2024 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // Package editiondefaults contains the binary representation of the editions 6 | // defaults. 7 | package editiondefaults 8 | 9 | import _ "embed" 10 | 11 | //go:embed editions_defaults.binpb 12 | var Defaults []byte 13 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | set -x 4 | 5 | if [ ! -d /tmp/build-golang/src/github.com/json-iterator ]; then 6 | mkdir -p /tmp/build-golang/src/github.com/json-iterator 7 | ln -s $PWD /tmp/build-golang/src/github.com/json-iterator/go 8 | fi 9 | export GOPATH=/tmp/build-golang 10 | go get -u github.com/golang/dep/cmd/dep 11 | cd /tmp/build-golang/src/github.com/json-iterator/go 12 | exec $GOPATH/bin/dep ensure -update 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_host_path_volume_source.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | HostPathVolumeSourceType = "hostPathVolumeSource" 5 | HostPathVolumeSourceFieldPath = "path" 6 | HostPathVolumeSourceFieldType = "type" 7 | ) 8 | 9 | type HostPathVolumeSource struct { 10 | Path string `json:"path,omitempty" yaml:"path,omitempty"` 11 | Type string `json:"type,omitempty" yaml:"type,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv_unsupported.go: -------------------------------------------------------------------------------- 1 | // Copyright 2025 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !go1.21 && (aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos) 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | func Auxv() ([][2]uintptr, error) { 12 | return nil, syscall.ENOTSUP 13 | } 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !go1.10 6 | 7 | package bidirule 8 | 9 | func (t *Transformer) isFinal() bool { 10 | if !t.isRTL() { 11 | return true 12 | } 13 | return t.state == ruleLTRFinal || t.state == ruleRTLFinal || t.state == ruleInitial 14 | } 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | 26 | /.go 27 | /.idea 28 | /.vscode 29 | /bin 30 | /coverage.txt 31 | /dist 32 | .env* 33 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/mask_safe.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Gorilla WebSocket Authors. All rights reserved. Use of 2 | // this source code is governed by a BSD-style license that can be found in the 3 | // LICENSE file. 4 | 5 | //go:build appengine 6 | // +build appengine 7 | 8 | package websocket 9 | 10 | func maskBytes(key [4]byte, pos int, b []byte) int { 11 | for i := range b { 12 | b[i] ^= key[pos&3] 13 | pos++ 14 | } 15 | return pos & 3 16 | } 17 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/v2/os_other_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2020 Klaus Post, released under MIT License. See LICENSE file. 2 | 3 | // +build arm64 4 | // +build !linux 5 | // +build !darwin 6 | 7 | package cpuid 8 | 9 | import "runtime" 10 | 11 | func detectOS(c *CPUInfo) bool { 12 | c.PhysicalCores = runtime.NumCPU() 13 | // For now assuming 1 thread per core... 14 | c.ThreadsPerCore = 1 15 | c.LogicalCores = c.PhysicalCores 16 | return false 17 | } 18 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/jlexer/error.go: -------------------------------------------------------------------------------- 1 | package jlexer 2 | 3 | import "fmt" 4 | 5 | // LexerError implements the error interface and represents all possible errors that can be 6 | // generated during parsing the JSON data. 7 | type LexerError struct { 8 | Reason string 9 | Offset int 10 | Data string 11 | } 12 | 13 | func (l *LexerError) Error() string { 14 | return fmt.Sprintf("parse error: %s near offset %d of '%s'", l.Reason, l.Offset, l.Data) 15 | } 16 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/attributes_slice.go: -------------------------------------------------------------------------------- 1 | package matchers 2 | 3 | import ( 4 | "encoding/xml" 5 | "strings" 6 | ) 7 | 8 | type attributesSlice []xml.Attr 9 | 10 | func (attrs attributesSlice) Len() int { return len(attrs) } 11 | func (attrs attributesSlice) Less(i, j int) bool { 12 | return strings.Compare(attrs[i].Name.Local, attrs[j].Name.Local) == -1 13 | } 14 | func (attrs attributesSlice) Swap(i, j int) { attrs[i], attrs[j] = attrs[j], attrs[i] } 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_rolling_update.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | RollingUpdateType = "rollingUpdate" 5 | RollingUpdateFieldBatchSize = "batchSize" 6 | RollingUpdateFieldInterval = "interval" 7 | ) 8 | 9 | type RollingUpdate struct { 10 | BatchSize int64 `json:"batchSize,omitempty" yaml:"batchSize,omitempty"` 11 | Interval int64 `json:"interval,omitempty" yaml:"interval,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_plan9.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package plan9 6 | 7 | import "syscall" 8 | 9 | func fixwd() { 10 | syscall.Fixwd() 11 | } 12 | 13 | func Getwd() (wd string, err error) { 14 | return syscall.Getwd() 15 | } 16 | 17 | func Chdir(path string) error { 18 | return syscall.Chdir(path) 19 | } 20 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | type Signal = syscall.Signal 12 | type Errno = syscall.Errno 13 | type SysProcAttr = syscall.SysProcAttr 14 | -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2020 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build arm64 && gc && !purego 6 | // +build arm64,gc,!purego 7 | 8 | package field 9 | 10 | //go:noescape 11 | func carryPropagate(v *Element) 12 | 13 | func (v *Element) carryPropagate() *Element { 14 | carryPropagate(v) 15 | return v 16 | } 17 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_container_image.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ContainerImageType = "containerImage" 5 | ContainerImageFieldNames = "names" 6 | ContainerImageFieldSizeBytes = "sizeBytes" 7 | ) 8 | 9 | type ContainerImage struct { 10 | Names []string `json:"names,omitempty" yaml:"names,omitempty"` 11 | SizeBytes int64 `json:"sizeBytes,omitempty" yaml:"sizeBytes,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_ephemeral_volume_source.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | EphemeralVolumeSourceType = "ephemeralVolumeSource" 5 | EphemeralVolumeSourceFieldVolumeClaimTemplate = "volumeClaimTemplate" 6 | ) 7 | 8 | type EphemeralVolumeSource struct { 9 | VolumeClaimTemplate *PersistentVolumeClaimTemplate `json:"volumeClaimTemplate,omitempty" yaml:"volumeClaimTemplate,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/gomodules.xyz/sets/README.md: -------------------------------------------------------------------------------- 1 | [![PkgGoDev](https://pkg.go.dev/badge/gomodules.xyz/sets)](https://pkg.go.dev/gomodules.xyz/sets) 2 | 3 | # sets 4 | 5 | This library has been forked from https://github.com/kubernetes/apimachinery/tree/v0.18.3/pkg/util/sets so that it can easily used in non-k8s related projects. 6 | 7 | ## Generate set types 8 | 9 | ```bash 10 | set-gen \ 11 | --input-dirs=gomodules.xyz/sets/types \ 12 | --output-package=gomodules.xyz/sets 13 | ``` 14 | -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Google Inc. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // Package uuid generates and inspects UUIDs. 6 | // 7 | // UUIDs are based on RFC 4122 and DCE 1.1: Authentication and Security 8 | // Services. 9 | // 10 | // A UUID is a 16 byte (128 bit) array. UUIDs may be used as keys to 11 | // maps or compared directly. 12 | package uuid 13 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/jlexer/bytestostr_nounsafe.go: -------------------------------------------------------------------------------- 1 | // This file is included to the build if any of the buildtags below 2 | // are defined. Refer to README notes for more details. 3 | 4 | //+build easyjson_nounsafe appengine 5 | 6 | package jlexer 7 | 8 | // bytesToStr creates a string normally from []byte 9 | // 10 | // Note that this method is roughly 1.5x slower than using the 'unsafe' method. 11 | func bytesToStr(data []byte) string { 12 | return string(data) 13 | } 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- 1 | // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. 2 | 3 | // Copyright 2021 The Go Authors. All rights reserved. 4 | // Use of this source code is governed by a BSD-style 5 | // license that can be found in the LICENSE file. 6 | 7 | //go:build go1.18 8 | 9 | package idna 10 | 11 | // Transitional processing is disabled by default in Go 1.18. 12 | // https://golang.org/issue/47510 13 | const transitionalLookup = false 14 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/norman/types/convert/value_set_string.go: -------------------------------------------------------------------------------- 1 | package convert 2 | 3 | import ( 4 | "regexp" 5 | "strings" 6 | ) 7 | 8 | var ( 9 | splitRegexp = regexp.MustCompile("[[:space:]]*,[[:space:]]*") 10 | ) 11 | 12 | func ToValuesSlice(value string) []string { 13 | value = strings.TrimSpace(value) 14 | if strings.HasPrefix(value, "(") && strings.HasSuffix(value, ")") { 15 | return splitRegexp.Split(value[1:len(value)-1], -1) 16 | } 17 | return []string{value} 18 | } 19 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_audit_log.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | AuditLogType = "auditLog" 5 | AuditLogFieldConfiguration = "configuration" 6 | AuditLogFieldEnabled = "enabled" 7 | ) 8 | 9 | type AuditLog struct { 10 | Configuration *AuditLogConfig `json:"configuration,omitempty" yaml:"configuration,omitempty"` 11 | Enabled bool `json:"enabled,omitempty" yaml:"enabled,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_gke_cidr_block.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | GKECidrBlockType = "gkeCidrBlock" 5 | GKECidrBlockFieldCidrBlock = "cidrBlock" 6 | GKECidrBlockFieldDisplayName = "displayName" 7 | ) 8 | 9 | type GKECidrBlock struct { 10 | CidrBlock string `json:"cidrBlock,omitempty" yaml:"cidrBlock,omitempty"` 11 | DisplayName string `json:"displayName,omitempty" yaml:"displayName,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/readdirent_getdents.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build aix || dragonfly || freebsd || linux || netbsd || openbsd 6 | 7 | package unix 8 | 9 | // ReadDirent reads directory entries from fd and writes them into buf. 10 | func ReadDirent(fd int, buf []byte) (n int, err error) { 11 | return Getdents(fd, buf) 12 | } 13 | -------------------------------------------------------------------------------- /vendor/gomodules.xyz/x/arrays/convert.go: -------------------------------------------------------------------------------- 1 | package arrays 2 | 3 | import ( 4 | "errors" 5 | "reflect" 6 | ) 7 | 8 | func InterfaceToSlice(slice interface{}) ([]interface{}, error) { 9 | s := reflect.ValueOf(slice) 10 | if s.Kind() != reflect.Slice { 11 | return nil, errors.New("slice of interface not found") 12 | } 13 | 14 | ret := make([]interface{}, s.Len()) 15 | 16 | for i := 0; i < s.Len(); i++ { 17 | ret[i] = s.Index(i).Interface() 18 | } 19 | 20 | return ret, nil 21 | } 22 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/controller-runtime/.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, build with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | 14 | # editor and IDE paraphernalia 15 | .idea 16 | *.swp 17 | *.swo 18 | *~ 19 | 20 | # Vscode files 21 | .vscode 22 | 23 | # Tools binaries. 24 | hack/tools/bin 25 | 26 | junit-report.xml 27 | /artifacts -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- 1 | version: "2" 2 | linters: 3 | default: standard 4 | enable: 5 | - unparam 6 | 7 | formatters: 8 | enable: 9 | - gofmt 10 | - goimports 11 | settings: 12 | gofmt: 13 | rewrite-rules: 14 | - pattern: 'interface{}' 15 | replacement: 'any' 16 | 17 | issues: 18 | max-same-issues: 100 19 | 20 | exclude-files: 21 | - generated.*\\.go 22 | 23 | exclude-dirs: 24 | - client 25 | - vendor 26 | 27 | run: 28 | timeout: 10m 29 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go_above_19.go: -------------------------------------------------------------------------------- 1 | //+build go1.9 2 | 3 | package reflect2 4 | 5 | import ( 6 | "unsafe" 7 | ) 8 | 9 | //go:linkname resolveTypeOff reflect.resolveTypeOff 10 | func resolveTypeOff(rtype unsafe.Pointer, off int32) unsafe.Pointer 11 | 12 | //go:linkname makemap reflect.makemap 13 | func makemap(rtype unsafe.Pointer, cap int) (m unsafe.Pointer) 14 | 15 | func makeMapWithSize(rtype unsafe.Pointer, cap int) unsafe.Pointer { 16 | return makemap(rtype, cap) 17 | } 18 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/norman/types/slice/contains.go: -------------------------------------------------------------------------------- 1 | package slice 2 | 3 | func ContainsString(slice []string, item string) bool { 4 | for _, j := range slice { 5 | if j == item { 6 | return true 7 | } 8 | } 9 | return false 10 | } 11 | 12 | func StringsEqual(left, right []string) bool { 13 | if len(left) != len(right) { 14 | return false 15 | } 16 | for i := 0; i < len(left); i++ { 17 | if left[i] != right[i] { 18 | return false 19 | } 20 | } 21 | return true 22 | } 23 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_key_to_path.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | KeyToPathType = "keyToPath" 5 | KeyToPathFieldKey = "key" 6 | KeyToPathFieldMode = "mode" 7 | KeyToPathFieldPath = "path" 8 | ) 9 | 10 | type KeyToPath struct { 11 | Key string `json:"key,omitempty" yaml:"key,omitempty"` 12 | Mode *int64 `json:"mode,omitempty" yaml:"mode,omitempty"` 13 | Path string `json:"path,omitempty" yaml:"path,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_metadata_update.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | MetadataUpdateType = "metadataUpdate" 5 | MetadataUpdateFieldAnnotations = "annotations" 6 | MetadataUpdateFieldLabels = "labels" 7 | ) 8 | 9 | type MetadataUpdate struct { 10 | Annotations *MapDelta `json:"annotations,omitempty" yaml:"annotations,omitempty"` 11 | Labels *MapDelta `json:"labels,omitempty" yaml:"labels,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_restore_config.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | RestoreConfigType = "restoreConfig" 5 | RestoreConfigFieldRestore = "restore" 6 | RestoreConfigFieldSnapshotName = "snapshotName" 7 | ) 8 | 9 | type RestoreConfig struct { 10 | Restore bool `json:"restore,omitempty" yaml:"restore,omitempty"` 11 | SnapshotName string `json:"snapshotName,omitempty" yaml:"snapshotName,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos 6 | 7 | // For Unix, get the pagesize from the runtime. 8 | 9 | package unix 10 | 11 | import "syscall" 12 | 13 | func Getpagesize() int { 14 | return syscall.Getpagesize() 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/controller-runtime/pkg/internal/httpserver/server.go: -------------------------------------------------------------------------------- 1 | package httpserver 2 | 3 | import ( 4 | "net/http" 5 | "time" 6 | ) 7 | 8 | // New returns a new server with sane defaults. 9 | func New(handler http.Handler) *http.Server { 10 | return &http.Server{ 11 | Handler: handler, 12 | MaxHeaderBytes: 1 << 20, 13 | IdleTimeout: 90 * time.Second, // matches http.DefaultTransport keep-alive timeout 14 | ReadHeaderTimeout: 32 * time.Second, 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_node_runtime_handler_features.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | NodeRuntimeHandlerFeaturesType = "nodeRuntimeHandlerFeatures" 5 | NodeRuntimeHandlerFeaturesFieldRecursiveReadOnlyMounts = "recursiveReadOnlyMounts" 6 | ) 7 | 8 | type NodeRuntimeHandlerFeatures struct { 9 | RecursiveReadOnlyMounts *bool `json:"recursiveReadOnlyMounts,omitempty" yaml:"recursiveReadOnlyMounts,omitempty"` 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_unix_other.go: -------------------------------------------------------------------------------- 1 | // Copyright 2021 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build (darwin && !ios) || zos 6 | 7 | package unix 8 | 9 | // SysvShmCtl performs control operations on the shared memory segment 10 | // specified by id. 11 | func SysvShmCtl(id, cmd int, desc *SysvShmDesc) (result int, err error) { 12 | return shmctl(id, cmd, desc) 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_empty_dir_volume_source.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | EmptyDirVolumeSourceType = "emptyDirVolumeSource" 5 | EmptyDirVolumeSourceFieldMedium = "medium" 6 | EmptyDirVolumeSourceFieldSizeLimit = "sizeLimit" 7 | ) 8 | 9 | type EmptyDirVolumeSource struct { 10 | Medium string `json:"medium,omitempty" yaml:"medium,omitempty"` 11 | SizeLimit string `json:"sizeLimit,omitempty" yaml:"sizeLimit,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build gc 6 | 7 | #include "textflag.h" 8 | 9 | // 10 | // System calls for ppc64, AIX are implemented in runtime/syscall_aix.go 11 | // 12 | 13 | TEXT ·syscall6(SB),NOSPLIT,$0-88 14 | JMP syscall·syscall6(SB) 15 | 16 | TEXT ·rawSyscall6(SB),NOSPLIT,$0-88 17 | JMP syscall·rawSyscall6(SB) 18 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2009 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build arm && gc && linux 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | // Underlying system call writes to newoffset via pointer. 12 | // Implemented in assembly to avoid allocation. 13 | func seek(fd int, offset int64, whence int) (newoffset int64, err syscall.Errno) 14 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // Package genid contains constants for declarations in descriptor.proto 6 | // and the well-known types. 7 | package genid 8 | 9 | import protoreflect "google.golang.org/protobuf/reflect/protoreflect" 10 | 11 | const GoogleProtobuf_package protoreflect.FullName = "google.protobuf" 12 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_azure_adconfig_apply_input.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | AzureADConfigApplyInputType = "azureADConfigApplyInput" 5 | AzureADConfigApplyInputFieldCode = "code" 6 | AzureADConfigApplyInputFieldConfig = "config" 7 | ) 8 | 9 | type AzureADConfigApplyInput struct { 10 | Code string `json:"code,omitempty" yaml:"code,omitempty"` 11 | Config *AzureADConfig `json:"config,omitempty" yaml:"config,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/v3/.golangci.yml: -------------------------------------------------------------------------------- 1 | run: 2 | deadline: 2m 3 | 4 | linters: 5 | disable-all: true 6 | enable: 7 | - misspell 8 | - govet 9 | - staticcheck 10 | - errcheck 11 | - unparam 12 | - ineffassign 13 | - nakedret 14 | - gocyclo 15 | - dupl 16 | - goimports 17 | - revive 18 | - gosec 19 | - gosimple 20 | - typecheck 21 | - unused 22 | 23 | linters-settings: 24 | gofmt: 25 | simplify: true 26 | dupl: 27 | threshold: 600 28 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_object_field_selector.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ObjectFieldSelectorType = "objectFieldSelector" 5 | ObjectFieldSelectorFieldAPIVersion = "apiVersion" 6 | ObjectFieldSelectorFieldFieldPath = "fieldPath" 7 | ) 8 | 9 | type ObjectFieldSelector struct { 10 | APIVersion string `json:"apiVersion,omitempty" yaml:"apiVersion,omitempty"` 11 | FieldPath string `json:"fieldPath,omitempty" yaml:"fieldPath,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_node_runtime_handler.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | NodeRuntimeHandlerType = "nodeRuntimeHandler" 5 | NodeRuntimeHandlerFieldFeatures = "features" 6 | NodeRuntimeHandlerFieldName = "name" 7 | ) 8 | 9 | type NodeRuntimeHandler struct { 10 | Features *NodeRuntimeHandlerFeatures `json:"features,omitempty" yaml:"features,omitempty"` 11 | Name string `json:"name,omitempty" yaml:"name,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/.golangci.yaml: -------------------------------------------------------------------------------- 1 | run: 2 | timeout: 1m 3 | tests: true 4 | 5 | linters: 6 | disable-all: true 7 | enable: 8 | - asciicheck 9 | - errcheck 10 | - forcetypeassert 11 | - gocritic 12 | - gofmt 13 | - goimports 14 | - gosimple 15 | - govet 16 | - ineffassign 17 | - misspell 18 | - revive 19 | - staticcheck 20 | - typecheck 21 | - unused 22 | 23 | issues: 24 | exclude-use-default: false 25 | max-issues-per-linter: 0 26 | max-same-issues: 10 27 | -------------------------------------------------------------------------------- /vendor/github.com/google/gnostic-models/extensions/README.md: -------------------------------------------------------------------------------- 1 | # Extensions 2 | 3 | **Extension Support is experimental.** 4 | 5 | This directory contains support code for building Gnostic extensio handlers and 6 | associated examples. 7 | 8 | Extension handlers can be used to compile vendor or specification extensions 9 | into protocol buffer structures. 10 | 11 | Like plugins, extension handlers are built as separate executables. Extension 12 | bodies are written to extension handlers as serialized 13 | ExtensionHandlerRequests. 14 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_auth_webhook_config.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | AuthWebhookConfigType = "authWebhookConfig" 5 | AuthWebhookConfigFieldCacheTimeout = "cacheTimeout" 6 | AuthWebhookConfigFieldConfigFile = "configFile" 7 | ) 8 | 9 | type AuthWebhookConfig struct { 10 | CacheTimeout string `json:"cacheTimeout,omitempty" yaml:"cacheTimeout,omitempty"` 11 | ConfigFile string `json:"configFile,omitempty" yaml:"configFile,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build gc 6 | 7 | #include "textflag.h" 8 | 9 | // 10 | // System calls for amd64, Solaris are implemented in runtime/syscall_solaris.go 11 | // 12 | 13 | TEXT ·sysvicall6(SB),NOSPLIT,$0-88 14 | JMP syscall·sysvicall6(SB) 15 | 16 | TEXT ·rawSysvicall6(SB),NOSPLIT,$0-88 17 | JMP syscall·rawSysvicall6(SB) 18 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build (linux && 386) || (linux && arm) || (linux && mips) || (linux && mipsle) || (linux && ppc) 6 | 7 | package unix 8 | 9 | func init() { 10 | // On 32-bit Linux systems, the fcntl syscall that matches Go's 11 | // Flock_t type is SYS_FCNTL64, not SYS_FCNTL. 12 | fcntl64Syscall = SYS_FCNTL64 13 | } 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_alarm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2022 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build linux && (386 || amd64 || mips || mipsle || mips64 || mipsle || ppc64 || ppc64le || ppc || s390x || sparc64) 6 | 7 | package unix 8 | 9 | // SYS_ALARM is not defined on arm or riscv, but is available for other GOARCH 10 | // values. 11 | 12 | //sys Alarm(seconds uint) (remaining uint, err error) 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_flocker_volume_source.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | FlockerVolumeSourceType = "flockerVolumeSource" 5 | FlockerVolumeSourceFieldDatasetName = "datasetName" 6 | FlockerVolumeSourceFieldDatasetUUID = "datasetUUID" 7 | ) 8 | 9 | type FlockerVolumeSource struct { 10 | DatasetName string `json:"datasetName,omitempty" yaml:"datasetName,omitempty"` 11 | DatasetUUID string `json:"datasetUUID,omitempty" yaml:"datasetUUID,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_project_resource_quota.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ProjectResourceQuotaType = "projectResourceQuota" 5 | ProjectResourceQuotaFieldLimit = "limit" 6 | ProjectResourceQuotaFieldUsedLimit = "usedLimit" 7 | ) 8 | 9 | type ProjectResourceQuota struct { 10 | Limit *ResourceQuotaLimit `json:"limit,omitempty" yaml:"limit,omitempty"` 11 | UsedLimit *ResourceQuotaLimit `json:"usedLimit,omitempty" yaml:"usedLimit,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/xxhash_safe.go: -------------------------------------------------------------------------------- 1 | //go:build appengine 2 | // +build appengine 3 | 4 | // This file contains the safe implementations of otherwise unsafe-using code. 5 | 6 | package xxhash 7 | 8 | // Sum64String computes the 64-bit xxHash digest of s with a zero seed. 9 | func Sum64String(s string) uint64 { 10 | return Sum64([]byte(s)) 11 | } 12 | 13 | // WriteString adds more data to d. It always returns len(s), nil. 14 | func (d *Digest) WriteString(s string) (n int, err error) { 15 | return d.Write([]byte(s)) 16 | } 17 | -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/internal/diff/debug_disable.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017, The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !cmp_debug 6 | // +build !cmp_debug 7 | 8 | package diff 9 | 10 | var debug debugger 11 | 12 | type debugger struct{} 13 | 14 | func (debugger) Begin(_, _ int, f EqualFunc, _, _ *EditScript) EqualFunc { 15 | return f 16 | } 17 | func (debugger) Update() {} 18 | func (debugger) Finish() {} 19 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_event_rate_limit.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | EventRateLimitType = "eventRateLimit" 5 | EventRateLimitFieldConfiguration = "configuration" 6 | EventRateLimitFieldEnabled = "enabled" 7 | ) 8 | 9 | type EventRateLimit struct { 10 | Configuration map[string]interface{} `json:"configuration,omitempty" yaml:"configuration,omitempty"` 11 | Enabled bool `json:"enabled,omitempty" yaml:"enabled,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_gke_node_pool_management.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | GKENodePoolManagementType = "gkeNodePoolManagement" 5 | GKENodePoolManagementFieldAutoRepair = "autoRepair" 6 | GKENodePoolManagementFieldAutoUpgrade = "autoUpgrade" 7 | ) 8 | 9 | type GKENodePoolManagement struct { 10 | AutoRepair bool `json:"autoRepair,omitempty" yaml:"autoRepair,omitempty"` 11 | AutoUpgrade bool `json:"autoUpgrade,omitempty" yaml:"autoUpgrade,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/field/fe_amd64.go: -------------------------------------------------------------------------------- 1 | // Code generated by command: go run fe_amd64_asm.go -out ../fe_amd64.s -stubs ../fe_amd64.go -pkg field. DO NOT EDIT. 2 | 3 | //go:build amd64 && gc && !purego 4 | // +build amd64,gc,!purego 5 | 6 | package field 7 | 8 | // feMul sets out = a * b. It works like feMulGeneric. 9 | // 10 | //go:noescape 11 | func feMul(out *Element, a *Element, b *Element) 12 | 13 | // feSquare sets out = a * a. It works like feSquareGeneric. 14 | // 15 | //go:noescape 16 | func feSquare(out *Element, a *Element) 17 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_port_check.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | PortCheckType = "portCheck" 5 | PortCheckFieldAddress = "address" 6 | PortCheckFieldPort = "port" 7 | PortCheckFieldProtocol = "protocol" 8 | ) 9 | 10 | type PortCheck struct { 11 | Address string `json:"address,omitempty" yaml:"address,omitempty"` 12 | Port int64 `json:"port,omitempty" yaml:"port,omitempty"` 13 | Protocol string `json:"protocol,omitempty" yaml:"protocol,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_rotate_certificates.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | RotateCertificatesType = "rotateCertificates" 5 | RotateCertificatesFieldCACertificates = "caCertificates" 6 | RotateCertificatesFieldServices = "services" 7 | ) 8 | 9 | type RotateCertificates struct { 10 | CACertificates bool `json:"caCertificates,omitempty" yaml:"caCertificates,omitempty"` 11 | Services string `json:"services,omitempty" yaml:"services,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_search_principals_input.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | SearchPrincipalsInputType = "searchPrincipalsInput" 5 | SearchPrincipalsInputFieldName = "name" 6 | SearchPrincipalsInputFieldPrincipalType = "principalType" 7 | ) 8 | 9 | type SearchPrincipalsInput struct { 10 | Name string `json:"name,omitempty" yaml:"name,omitempty"` 11 | PrincipalType string `json:"principalType,omitempty" yaml:"principalType,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // Package ptypes provides functionality for interacting with well-known types. 6 | // 7 | // Deprecated: Well-known types have specialized functionality directly 8 | // injected into the generated packages for each message type. 9 | // See the deprecation notice for each function for the suggested alternative. 10 | package ptypes 11 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_env_var.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | EnvVarType = "envVar" 5 | EnvVarFieldName = "name" 6 | EnvVarFieldValue = "value" 7 | EnvVarFieldValueFrom = "valueFrom" 8 | ) 9 | 10 | type EnvVar struct { 11 | Name string `json:"name,omitempty" yaml:"name,omitempty"` 12 | Value string `json:"value,omitempty" yaml:"value,omitempty"` 13 | ValueFrom *EnvVarSource `json:"valueFrom,omitempty" yaml:"valueFrom,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/go.bytebuilders.dev/license-verifier/kubernetes/.golangci.yml: -------------------------------------------------------------------------------- 1 | version: "2" 2 | linters: 3 | default: standard 4 | enable: 5 | - unparam 6 | 7 | formatters: 8 | enable: 9 | - gofmt 10 | - goimports 11 | settings: 12 | gofmt: 13 | rewrite-rules: 14 | - pattern: 'interface{}' 15 | replacement: 'any' 16 | 17 | issues: 18 | max-same-issues: 100 19 | 20 | exclude-files: 21 | - generated.*\\.go 22 | 23 | exclude-dirs: 24 | - client 25 | - vendor 26 | 27 | run: 28 | timeout: 10m 29 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/editionssupport/editions.go: -------------------------------------------------------------------------------- 1 | // Copyright 2024 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // Package editionssupport defines constants for editions that are supported. 6 | package editionssupport 7 | 8 | import descriptorpb "google.golang.org/protobuf/types/descriptorpb" 9 | 10 | const ( 11 | Minimum = descriptorpb.Edition_EDITION_PROTO2 12 | Maximum = descriptorpb.Edition_EDITION_2023 13 | ) 14 | -------------------------------------------------------------------------------- /.github/.kodiak.toml: -------------------------------------------------------------------------------- 1 | version = 1 2 | 3 | [merge] 4 | method = "squash" # default: "merge" 5 | delete_branch_on_merge = true # default: false 6 | optimistic_updates = true # default: true 7 | prioritize_ready_to_merge = true # default: false 8 | 9 | [merge.message] 10 | title = "pull_request_title" # default: "github_default" 11 | body = "github_default" # default: "github_default" 12 | strip_html_comments = true # default: false 13 | 14 | [update] 15 | always = true # default: false 16 | 17 | [approve] 18 | auto_approve_usernames = ["1gtm", "tamalsaha"] 19 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_cluster_component_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ClusterComponentStatusType = "clusterComponentStatus" 5 | ClusterComponentStatusFieldConditions = "conditions" 6 | ClusterComponentStatusFieldName = "name" 7 | ) 8 | 9 | type ClusterComponentStatus struct { 10 | Conditions []ComponentCondition `json:"conditions,omitempty" yaml:"conditions,omitempty"` 11 | Name string `json:"name,omitempty" yaml:"name,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_kubernetes_info.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | KubernetesInfoType = "kubernetesInfo" 5 | KubernetesInfoFieldKubeProxyVersion = "kubeProxyVersion" 6 | KubernetesInfoFieldKubeletVersion = "kubeletVersion" 7 | ) 8 | 9 | type KubernetesInfo struct { 10 | KubeProxyVersion string `json:"kubeProxyVersion,omitempty" yaml:"kubeProxyVersion,omitempty"` 11 | KubeletVersion string `json:"kubeletVersion,omitempty" yaml:"kubeletVersion,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_photon_persistent_disk_volume_source.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | PhotonPersistentDiskVolumeSourceType = "photonPersistentDiskVolumeSource" 5 | PhotonPersistentDiskVolumeSourceFieldFSType = "fsType" 6 | PhotonPersistentDiskVolumeSourceFieldPdID = "pdID" 7 | ) 8 | 9 | type PhotonPersistentDiskVolumeSource struct { 10 | FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` 11 | PdID string `json:"pdID,omitempty" yaml:"pdID,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/wrappers.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package genid 6 | 7 | import protoreflect "google.golang.org/protobuf/reflect/protoreflect" 8 | 9 | // Generic field name and number for messages in wrappers.proto. 10 | const ( 11 | WrapperValue_Value_field_name protoreflect.Name = "value" 12 | WrapperValue_Value_field_number protoreflect.FieldNumber = 1 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/v2/detect_ref.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2015 Klaus Post, released under MIT License. See LICENSE file. 2 | 3 | //+build !amd64,!386,!arm64 gccgo noasm appengine 4 | 5 | package cpuid 6 | 7 | func initCPU() { 8 | cpuid = func(uint32) (a, b, c, d uint32) { return 0, 0, 0, 0 } 9 | cpuidex = func(x, y uint32) (a, b, c, d uint32) { return 0, 0, 0, 0 } 10 | xgetbv = func(uint32) (a, b uint32) { return 0, 0 } 11 | rdtscpAsm = func() (a, b, c, d uint32) { return 0, 0, 0, 0 } 12 | } 13 | 14 | func addInfo(info *CPUInfo, safe bool) {} 15 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/v2/test-architectures.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | go tool dist list | while IFS=/ read os arch; do 6 | echo "Checking $os/$arch..." 7 | echo " normal" 8 | GOARCH=$arch GOOS=$os go build -o /dev/null . 9 | echo " noasm" 10 | GOARCH=$arch GOOS=$os go build -tags noasm -o /dev/null . 11 | echo " appengine" 12 | GOARCH=$arch GOOS=$os go build -tags appengine -o /dev/null . 13 | echo " noasm,appengine" 14 | GOARCH=$arch GOOS=$os go build -tags 'appengine noasm' -o /dev/null . 15 | done 16 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_launch_template.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | LaunchTemplateType = "launchTemplate" 5 | LaunchTemplateFieldID = "id" 6 | LaunchTemplateFieldName = "name" 7 | LaunchTemplateFieldVersion = "version" 8 | ) 9 | 10 | type LaunchTemplate struct { 11 | ID *string `json:"id,omitempty" yaml:"id,omitempty"` 12 | Name *string `json:"name,omitempty" yaml:"name,omitempty"` 13 | Version *int64 `json:"version,omitempty" yaml:"version,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_preferred_scheduling_term.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | PreferredSchedulingTermType = "preferredSchedulingTerm" 5 | PreferredSchedulingTermFieldPreference = "preference" 6 | PreferredSchedulingTermFieldWeight = "weight" 7 | ) 8 | 9 | type PreferredSchedulingTerm struct { 10 | Preference *NodeSelectorTerm `json:"preference,omitempty" yaml:"preference,omitempty"` 11 | Weight int64 `json:"weight,omitempty" yaml:"weight,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_project_network_policy_spec.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ProjectNetworkPolicySpecType = "projectNetworkPolicySpec" 5 | ProjectNetworkPolicySpecFieldDescription = "description" 6 | ProjectNetworkPolicySpecFieldProjectID = "projectId" 7 | ) 8 | 9 | type ProjectNetworkPolicySpec struct { 10 | Description string `json:"description,omitempty" yaml:"description,omitempty"` 11 | ProjectID string `json:"projectId,omitempty" yaml:"projectId,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_projected_volume_source.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ProjectedVolumeSourceType = "projectedVolumeSource" 5 | ProjectedVolumeSourceFieldDefaultMode = "defaultMode" 6 | ProjectedVolumeSourceFieldSources = "sources" 7 | ) 8 | 9 | type ProjectedVolumeSource struct { 10 | DefaultMode *int64 `json:"defaultMode,omitempty" yaml:"defaultMode,omitempty"` 11 | Sources []VolumeProjection `json:"sources,omitempty" yaml:"sources,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_resource_configuration.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ResourceConfigurationType = "resourceConfiguration" 5 | ResourceConfigurationFieldProviders = "providers" 6 | ResourceConfigurationFieldResources = "resources" 7 | ) 8 | 9 | type ResourceConfiguration struct { 10 | Providers []ProviderConfiguration `json:"providers,omitempty" yaml:"providers,omitempty"` 11 | Resources []string `json:"resources,omitempty" yaml:"resources,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_volume_resource_requirements.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | VolumeResourceRequirementsType = "volumeResourceRequirements" 5 | VolumeResourceRequirementsFieldLimits = "limits" 6 | VolumeResourceRequirementsFieldRequests = "requests" 7 | ) 8 | 9 | type VolumeResourceRequirements struct { 10 | Limits map[string]string `json:"limits,omitempty" yaml:"limits,omitempty"` 11 | Requests map[string]string `json:"requests,omitempty" yaml:"requests,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/sergi/go-diff/diffmatchpatch/operation_string.go: -------------------------------------------------------------------------------- 1 | // Code generated by "stringer -type=Operation -trimprefix=Diff"; DO NOT EDIT. 2 | 3 | package diffmatchpatch 4 | 5 | import "fmt" 6 | 7 | const _Operation_name = "DeleteEqualInsert" 8 | 9 | var _Operation_index = [...]uint8{0, 6, 11, 17} 10 | 11 | func (i Operation) String() string { 12 | i -= -1 13 | if i < 0 || i >= Operation(len(_Operation_index)-1) { 14 | return fmt.Sprintf("Operation(%d)", i+-1) 15 | } 16 | return _Operation_name[_Operation_index[i]:_Operation_index[i+1]] 17 | } 18 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_extra_env.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ExtraEnvType = "extraEnv" 5 | ExtraEnvFieldName = "name" 6 | ExtraEnvFieldValue = "value" 7 | ExtraEnvFieldValueFrom = "valueFrom" 8 | ) 9 | 10 | type ExtraEnv struct { 11 | Name string `json:"name,omitempty" yaml:"name,omitempty"` 12 | Value string `json:"value,omitempty" yaml:"value,omitempty"` 13 | ValueFrom *EnvVarSource `json:"valueFrom,omitempty" yaml:"valueFrom,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/go.bytebuilders.dev/license-verifier/.golangci.yml: -------------------------------------------------------------------------------- 1 | version: "2" 2 | linters: 3 | default: standard 4 | enable: 5 | - unparam 6 | 7 | formatters: 8 | enable: 9 | - gofmt 10 | - goimports 11 | settings: 12 | gofmt: 13 | rewrite-rules: 14 | - pattern: 'interface{}' 15 | replacement: 'any' 16 | 17 | issues: 18 | max-same-issues: 100 19 | 20 | exclude-files: 21 | - generated.*\\.go 22 | 23 | exclude-dirs: 24 | - client 25 | - vendor 26 | - kubernetes/vendor 27 | 28 | run: 29 | timeout: 10m 30 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build gccgo && linux && amd64 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | //extern gettimeofday 12 | func realGettimeofday(*Timeval, *byte) int32 13 | 14 | func gettimeofday(tv *Timeval) (err syscall.Errno) { 15 | r := realGettimeofday(tv, nil) 16 | if r < 0 { 17 | return syscall.GetErrno() 18 | } 19 | return 0 20 | } 21 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/cache/OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - thockin 5 | - smarterclayton 6 | - wojtek-t 7 | - deads2k 8 | - caesarxuchao 9 | - liggitt 10 | - ncdc 11 | reviewers: 12 | - thockin 13 | - smarterclayton 14 | - wojtek-t 15 | - deads2k 16 | - derekwaynecarr 17 | - caesarxuchao 18 | - mikedanese 19 | - liggitt 20 | - janetkuo 21 | - justinsb 22 | - soltysh 23 | - jsafrane 24 | - dims 25 | - ingvagabund 26 | - ncdc 27 | emeritus_approvers: 28 | - lavalamp 29 | -------------------------------------------------------------------------------- /vendor/k8s.io/klog/v2/RELEASE.md: -------------------------------------------------------------------------------- 1 | # Release Process 2 | 3 | The `klog` is released on an as-needed basis. The process is as follows: 4 | 5 | 1. An issue is proposing a new release with a changelog since the last release 6 | 1. All [OWNERS](OWNERS) must LGTM this release 7 | 1. An OWNER runs `git tag -s $VERSION` and inserts the changelog and pushes the tag with `git push $VERSION` 8 | 1. The release issue is closed 9 | 1. An announcement email is sent to `kubernetes-dev@googlegroups.com` with the subject `[ANNOUNCE] kubernetes-template-project $VERSION is released` 10 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.cirrus.yml: -------------------------------------------------------------------------------- 1 | freebsd_task: 2 | name: 'FreeBSD' 3 | freebsd_instance: 4 | image_family: freebsd-13-2 5 | install_script: 6 | - pkg update -f 7 | - pkg install -y go 8 | test_script: 9 | # run tests as user "cirrus" instead of root 10 | - pw useradd cirrus -m 11 | - chown -R cirrus:cirrus . 12 | - FSNOTIFY_BUFFER=4096 sudo --preserve-env=FSNOTIFY_BUFFER -u cirrus go test -parallel 1 -race ./... 13 | - sudo --preserve-env=FSNOTIFY_BUFFER -u cirrus go test -parallel 1 -race ./... 14 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_change_password_input.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ChangePasswordInputType = "changePasswordInput" 5 | ChangePasswordInputFieldCurrentPassword = "currentPassword" 6 | ChangePasswordInputFieldNewPassword = "newPassword" 7 | ) 8 | 9 | type ChangePasswordInput struct { 10 | CurrentPassword string `json:"currentPassword,omitempty" yaml:"currentPassword,omitempty"` 11 | NewPassword string `json:"newPassword,omitempty" yaml:"newPassword,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_deployment_strategy.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | DeploymentStrategyType = "deploymentStrategy" 5 | DeploymentStrategyFieldRollingUpdate = "rollingUpdate" 6 | DeploymentStrategyFieldStrategy = "strategy" 7 | ) 8 | 9 | type DeploymentStrategy struct { 10 | RollingUpdate *RollingUpdateDeployment `json:"rollingUpdate,omitempty" yaml:"rollingUpdate,omitempty"` 11 | Strategy string `json:"strategy,omitempty" yaml:"strategy,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_global_dns_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | GlobalDNSStatusType = "globalDnsStatus" 5 | GlobalDNSStatusFieldClusterEndpoints = "clusterEndpoints" 6 | GlobalDNSStatusFieldEndpoints = "endpoints" 7 | ) 8 | 9 | type GlobalDNSStatus struct { 10 | ClusterEndpoints map[string][]string `json:"clusterEndpoints,omitempty" yaml:"clusterEndpoints,omitempty"` 11 | Endpoints []string `json:"endpoints,omitempty" yaml:"endpoints,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_rotate_certificate_input.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | RotateCertificateInputType = "rotateCertificateInput" 5 | RotateCertificateInputFieldCACertificates = "caCertificates" 6 | RotateCertificateInputFieldServices = "services" 7 | ) 8 | 9 | type RotateCertificateInput struct { 10 | CACertificates bool `json:"caCertificates,omitempty" yaml:"caCertificates,omitempty"` 11 | Services string `json:"services,omitempty" yaml:"services,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/kmodules.xyz/client-go/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | .idea/ 26 | dist/ 27 | **/junit.xml 28 | **/.env 29 | .vscode/ 30 | coverage.txt 31 | 32 | /bin 33 | /.go 34 | 35 | apiserver.local.config/** 36 | .DS_Store 37 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_aws_cloud_provider.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | AWSCloudProviderType = "awsCloudProvider" 5 | AWSCloudProviderFieldGlobal = "global" 6 | AWSCloudProviderFieldServiceOverride = "serviceOverride" 7 | ) 8 | 9 | type AWSCloudProvider struct { 10 | Global *GlobalAwsOpts `json:"global,omitempty" yaml:"global,omitempty"` 11 | ServiceOverride map[string]ServiceOverride `json:"serviceOverride,omitempty" yaml:"serviceOverride,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_downward_apivolume_source.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | DownwardAPIVolumeSourceType = "downwardAPIVolumeSource" 5 | DownwardAPIVolumeSourceFieldDefaultMode = "defaultMode" 6 | DownwardAPIVolumeSourceFieldItems = "items" 7 | ) 8 | 9 | type DownwardAPIVolumeSource struct { 10 | DefaultMode *int64 `json:"defaultMode,omitempty" yaml:"defaultMode,omitempty"` 11 | Items []DownwardAPIVolumeFile `json:"items,omitempty" yaml:"items,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- 1 | # Release Process 2 | 3 | The `yaml` Project is released on an as-needed basis. The process is as follows: 4 | 5 | 1. An issue is proposing a new release with a changelog since the last release 6 | 1. All [OWNERS](OWNERS) must LGTM this release 7 | 1. An OWNER runs `git tag -s $VERSION` and inserts the changelog and pushes the tag with `git push $VERSION` 8 | 1. The release issue is closed 9 | 1. An announcement email is sent to `kubernetes-dev@googlegroups.com` with the subject `[ANNOUNCE] kubernetes-template-project $VERSION is released` 10 | -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 Google Inc. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build js 6 | 7 | package uuid 8 | 9 | // getHardwareInterface returns nil values for the JS version of the code. 10 | // This removes the "net" dependency, because it is not used in the browser. 11 | // Using the "net" library inflates the size of the transpiled JS code by 673k bytes. 12 | func getHardwareInterface(name string) (string, []byte) { return "", nil } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_gke_node_taint_config.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | GKENodeTaintConfigType = "gkeNodeTaintConfig" 5 | GKENodeTaintConfigFieldEffect = "effect" 6 | GKENodeTaintConfigFieldKey = "key" 7 | GKENodeTaintConfigFieldValue = "value" 8 | ) 9 | 10 | type GKENodeTaintConfig struct { 11 | Effect string `json:"effect,omitempty" yaml:"effect,omitempty"` 12 | Key string `json:"key,omitempty" yaml:"key,omitempty"` 13 | Value string `json:"value,omitempty" yaml:"value,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_label_selector.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | LabelSelectorType = "labelSelector" 5 | LabelSelectorFieldMatchExpressions = "matchExpressions" 6 | LabelSelectorFieldMatchLabels = "matchLabels" 7 | ) 8 | 9 | type LabelSelector struct { 10 | MatchExpressions []LabelSelectorRequirement `json:"matchExpressions,omitempty" yaml:"matchExpressions,omitempty"` 11 | MatchLabels map[string]string `json:"matchLabels,omitempty" yaml:"matchLabels,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_metadata_openstack_opts.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | MetadataOpenstackOptsType = "metadataOpenstackOpts" 5 | MetadataOpenstackOptsFieldRequestTimeout = "request-timeout" 6 | MetadataOpenstackOptsFieldSearchOrder = "search-order" 7 | ) 8 | 9 | type MetadataOpenstackOpts struct { 10 | RequestTimeout int64 `json:"request-timeout,omitempty" yaml:"request-timeout,omitempty"` 11 | SearchOrder string `json:"search-order,omitempty" yaml:"search-order,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_nfs_volume_source.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | NFSVolumeSourceType = "nfsVolumeSource" 5 | NFSVolumeSourceFieldPath = "path" 6 | NFSVolumeSourceFieldReadOnly = "readOnly" 7 | NFSVolumeSourceFieldServer = "server" 8 | ) 9 | 10 | type NFSVolumeSource struct { 11 | Path string `json:"path,omitempty" yaml:"path,omitempty"` 12 | ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` 13 | Server string `json:"server,omitempty" yaml:"server,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_gke_status.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | GKEStatusType = "gkeStatus" 5 | GKEStatusFieldPrivateRequiresTunnel = "privateRequiresTunnel" 6 | GKEStatusFieldUpstreamSpec = "upstreamSpec" 7 | ) 8 | 9 | type GKEStatus struct { 10 | PrivateRequiresTunnel *bool `json:"privateRequiresTunnel,omitempty" yaml:"privateRequiresTunnel,omitempty"` 11 | UpstreamSpec *GKEClusterConfigSpec `json:"upstreamSpec,omitempty" yaml:"upstreamSpec,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_secret_key_selector.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | SecretKeySelectorType = "secretKeySelector" 5 | SecretKeySelectorFieldKey = "key" 6 | SecretKeySelectorFieldName = "name" 7 | SecretKeySelectorFieldOptional = "optional" 8 | ) 9 | 10 | type SecretKeySelector struct { 11 | Key string `json:"key,omitempty" yaml:"key,omitempty"` 12 | Name string `json:"name,omitempty" yaml:"name,omitempty"` 13 | Optional *bool `json:"optional,omitempty" yaml:"optional,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_secrets_encryption_config.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | SecretsEncryptionConfigType = "secretsEncryptionConfig" 5 | SecretsEncryptionConfigFieldCustomConfig = "customConfig" 6 | SecretsEncryptionConfigFieldEnabled = "enabled" 7 | ) 8 | 9 | type SecretsEncryptionConfig struct { 10 | CustomConfig *EncryptionConfiguration `json:"customConfig,omitempty" yaml:"customConfig,omitempty"` 11 | Enabled bool `json:"enabled,omitempty" yaml:"enabled,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_update_multi_cluster_app_targets_input.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | UpdateMultiClusterAppTargetsInputType = "updateMultiClusterAppTargetsInput" 5 | UpdateMultiClusterAppTargetsInputFieldAnswers = "answers" 6 | UpdateMultiClusterAppTargetsInputFieldProjects = "projects" 7 | ) 8 | 9 | type UpdateMultiClusterAppTargetsInput struct { 10 | Answers []Answer `json:"answers,omitempty" yaml:"answers,omitempty"` 11 | Projects []string `json:"projects,omitempty" yaml:"projects,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_authn_config.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | AuthnConfigType = "authnConfig" 5 | AuthnConfigFieldSANs = "sans" 6 | AuthnConfigFieldStrategy = "strategy" 7 | AuthnConfigFieldWebhook = "webhook" 8 | ) 9 | 10 | type AuthnConfig struct { 11 | SANs []string `json:"sans,omitempty" yaml:"sans,omitempty"` 12 | Strategy string `json:"strategy,omitempty" yaml:"strategy,omitempty"` 13 | Webhook *AuthWebhookConfig `json:"webhook,omitempty" yaml:"webhook,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_node_selector_term.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | NodeSelectorTermType = "nodeSelectorTerm" 5 | NodeSelectorTermFieldMatchExpressions = "matchExpressions" 6 | NodeSelectorTermFieldMatchFields = "matchFields" 7 | ) 8 | 9 | type NodeSelectorTerm struct { 10 | MatchExpressions []NodeSelectorRequirement `json:"matchExpressions,omitempty" yaml:"matchExpressions,omitempty"` 11 | MatchFields []NodeSelectorRequirement `json:"matchFields,omitempty" yaml:"matchFields,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_persistent_volume_claim_volume_source.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | PersistentVolumeClaimVolumeSourceType = "persistentVolumeClaimVolumeSource" 5 | PersistentVolumeClaimVolumeSourceFieldClaimName = "claimName" 6 | PersistentVolumeClaimVolumeSourceFieldReadOnly = "readOnly" 7 | ) 8 | 9 | type PersistentVolumeClaimVolumeSource struct { 10 | ClaimName string `json:"claimName,omitempty" yaml:"claimName,omitempty"` 11 | ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- 1 | // Copyright 2012 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build plan9 && !race 6 | 7 | package plan9 8 | 9 | import ( 10 | "unsafe" 11 | ) 12 | 13 | const raceenabled = false 14 | 15 | func raceAcquire(addr unsafe.Pointer) { 16 | } 17 | 18 | func raceReleaseMerge(addr unsafe.Pointer) { 19 | } 20 | 21 | func raceReadRange(addr unsafe.Pointer, len int) { 22 | } 23 | 24 | func raceWriteRange(addr unsafe.Pointer, len int) { 25 | } 26 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build linux && gc 6 | 7 | package unix 8 | 9 | // SyscallNoError may be used instead of Syscall for syscalls that don't fail. 10 | func SyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) 11 | 12 | // RawSyscallNoError may be used instead of RawSyscall for syscalls that don't 13 | // fail. 14 | func RawSyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_daemon_set_update_strategy.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | DaemonSetUpdateStrategyType = "daemonSetUpdateStrategy" 5 | DaemonSetUpdateStrategyFieldRollingUpdate = "rollingUpdate" 6 | DaemonSetUpdateStrategyFieldStrategy = "strategy" 7 | ) 8 | 9 | type DaemonSetUpdateStrategy struct { 10 | RollingUpdate *RollingUpdateDaemonSet `json:"rollingUpdate,omitempty" yaml:"rollingUpdate,omitempty"` 11 | Strategy string `json:"strategy,omitempty" yaml:"strategy,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_persistent_volume_claim_template.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | PersistentVolumeClaimTemplateType = "persistentVolumeClaimTemplate" 5 | PersistentVolumeClaimTemplateFieldObjectMeta = "metadata" 6 | PersistentVolumeClaimTemplateFieldSpec = "spec" 7 | ) 8 | 9 | type PersistentVolumeClaimTemplate struct { 10 | ObjectMeta *ObjectMeta `json:"metadata,omitempty" yaml:"metadata,omitempty"` 11 | Spec *PersistentVolumeClaimSpec `json:"spec,omitempty" yaml:"spec,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_weighted_pod_affinity_term.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | WeightedPodAffinityTermType = "weightedPodAffinityTerm" 5 | WeightedPodAffinityTermFieldPodAffinityTerm = "podAffinityTerm" 6 | WeightedPodAffinityTermFieldWeight = "weight" 7 | ) 8 | 9 | type WeightedPodAffinityTerm struct { 10 | PodAffinityTerm *PodAffinityTerm `json:"podAffinityTerm,omitempty" yaml:"podAffinityTerm,omitempty"` 11 | Weight int64 `json:"weight,omitempty" yaml:"weight,omitempty"` 12 | } 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Copyright 2009 The Go Authors. All rights reserved. 3 | # Use of this source code is governed by a BSD-style 4 | # license that can be found in the LICENSE file. 5 | 6 | COMMAND="mksysnum_plan9.sh $@" 7 | 8 | cat <= 10 { 16 | buf[i] = byte(val%10 + '0') 17 | i-- 18 | val /= 10 19 | } 20 | buf[i] = byte(val + '0') 21 | return string(buf[i:]) 22 | } 23 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_nil_matcher.go: -------------------------------------------------------------------------------- 1 | // untested sections: 2 2 | 3 | package matchers 4 | 5 | import "github.com/onsi/gomega/format" 6 | 7 | type BeNilMatcher struct { 8 | } 9 | 10 | func (matcher *BeNilMatcher) Match(actual interface{}) (success bool, err error) { 11 | return isNil(actual), nil 12 | } 13 | 14 | func (matcher *BeNilMatcher) FailureMessage(actual interface{}) (message string) { 15 | return format.Message(actual, "to be nil") 16 | } 17 | 18 | func (matcher *BeNilMatcher) NegatedFailureMessage(actual interface{}) (message string) { 19 | return format.Message(actual, "not to be nil") 20 | } 21 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_portworx_volume_source.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | PortworxVolumeSourceType = "portworxVolumeSource" 5 | PortworxVolumeSourceFieldFSType = "fsType" 6 | PortworxVolumeSourceFieldReadOnly = "readOnly" 7 | PortworxVolumeSourceFieldVolumeID = "volumeID" 8 | ) 9 | 10 | type PortworxVolumeSource struct { 11 | FSType string `json:"fsType,omitempty" yaml:"fsType,omitempty"` 12 | ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` 13 | VolumeID string `json:"volumeID,omitempty" yaml:"volumeID,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- 1 | // Copyright 2009 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build windows 6 | 7 | package windows 8 | 9 | func itoa(val int) string { // do it here rather than with fmt to avoid dependency 10 | if val < 0 { 11 | return "-" + itoa(-val) 12 | } 13 | var buf [32]byte // big enough for int64 14 | i := len(buf) - 1 15 | for val >= 10 { 16 | buf[i] = byte(val%10 + '0') 17 | i-- 18 | val /= 10 19 | } 20 | buf[i] = byte(val + '0') 21 | return string(buf[i:]) 22 | } 23 | -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright 2011-2016 Canonical Ltd. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright 2011-2016 Canonical Ltd. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_local_cluster_auth_endpoint.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | LocalClusterAuthEndpointType = "localClusterAuthEndpoint" 5 | LocalClusterAuthEndpointFieldCACerts = "caCerts" 6 | LocalClusterAuthEndpointFieldEnabled = "enabled" 7 | LocalClusterAuthEndpointFieldFQDN = "fqdn" 8 | ) 9 | 10 | type LocalClusterAuthEndpoint struct { 11 | CACerts string `json:"caCerts,omitempty" yaml:"caCerts,omitempty"` 12 | Enabled bool `json:"enabled,omitempty" yaml:"enabled,omitempty"` 13 | FQDN string `json:"fqdn,omitempty" yaml:"fqdn,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_os_info.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | OSInfoType = "osInfo" 5 | OSInfoFieldDockerVersion = "dockerVersion" 6 | OSInfoFieldKernelVersion = "kernelVersion" 7 | OSInfoFieldOperatingSystem = "operatingSystem" 8 | ) 9 | 10 | type OSInfo struct { 11 | DockerVersion string `json:"dockerVersion,omitempty" yaml:"dockerVersion,omitempty"` 12 | KernelVersion string `json:"kernelVersion,omitempty" yaml:"kernelVersion,omitempty"` 13 | OperatingSystem string `json:"operatingSystem,omitempty" yaml:"operatingSystem,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/json/SECURITY_CONTACTS: -------------------------------------------------------------------------------- 1 | # Defined below are the security contacts for this repo. 2 | # 3 | # They are the contact point for the Product Security Committee to reach out 4 | # to for triaging and handling of incoming issues. 5 | # 6 | # The below names agree to abide by the 7 | # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy) 8 | # and will be removed and replaced if they violate that agreement. 9 | # 10 | # DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE 11 | # INSTRUCTIONS AT https://kubernetes.io/security/ 12 | 13 | deads2k 14 | lavalamp 15 | liggitt 16 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_member.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | MemberType = "member" 5 | MemberFieldAccessType = "accessType" 6 | MemberFieldGroupPrincipalID = "groupPrincipalId" 7 | MemberFieldUserPrincipalID = "userPrincipalId" 8 | ) 9 | 10 | type Member struct { 11 | AccessType string `json:"accessType,omitempty" yaml:"accessType,omitempty"` 12 | GroupPrincipalID string `json:"groupPrincipalId,omitempty" yaml:"groupPrincipalId,omitempty"` 13 | UserPrincipalID string `json:"userPrincipalId,omitempty" yaml:"userPrincipalId,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_node_selector_requirement.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | NodeSelectorRequirementType = "nodeSelectorRequirement" 5 | NodeSelectorRequirementFieldKey = "key" 6 | NodeSelectorRequirementFieldOperator = "operator" 7 | NodeSelectorRequirementFieldValues = "values" 8 | ) 9 | 10 | type NodeSelectorRequirement struct { 11 | Key string `json:"key,omitempty" yaml:"key,omitempty"` 12 | Operator string `json:"operator,omitempty" yaml:"operator,omitempty"` 13 | Values []string `json:"values,omitempty" yaml:"values,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/go.bytebuilders.dev/license-verifier/kubernetes/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.cgo1.go 12 | *.cgo2.c 13 | _cgo_defun.c 14 | _cgo_gotypes.go 15 | _cgo_export.* 16 | 17 | _testmain.go 18 | 19 | *.exe 20 | *.test 21 | *.prof 22 | 23 | /bin 24 | /.go 25 | 26 | /.idea 27 | /.markdownlint.json 28 | /.vscode 29 | /apiserver.local.config 30 | /coverage.txt 31 | /dist 32 | /hack/config/.env 33 | /test/e2e/junit.xml 34 | /test/e2e/report.xml 35 | 36 | .terraform 37 | *.tfstate* 38 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_linux.go: -------------------------------------------------------------------------------- 1 | // Copyright 2021 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build linux 6 | 7 | package unix 8 | 9 | import "runtime" 10 | 11 | // SysvShmCtl performs control operations on the shared memory segment 12 | // specified by id. 13 | func SysvShmCtl(id, cmd int, desc *SysvShmDesc) (result int, err error) { 14 | if runtime.GOARCH == "arm" || 15 | runtime.GOARCH == "mips64" || runtime.GOARCH == "mips64le" { 16 | cmd |= ipc_64 17 | } 18 | 19 | return shmctl(id, cmd, desc) 20 | } 21 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/proto_reflect.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // The protoreflect build tag disables use of fast-path methods. 6 | //go:build protoreflect 7 | // +build protoreflect 8 | 9 | package proto 10 | 11 | import ( 12 | "google.golang.org/protobuf/reflect/protoreflect" 13 | "google.golang.org/protobuf/runtime/protoiface" 14 | ) 15 | 16 | const hasProtoMethods = false 17 | 18 | func protoMethods(m protoreflect.Message) *protoiface.Methods { 19 | return nil 20 | } 21 | -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/goyaml.v2/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright 2011-2016 Canonical Ltd. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_label_selector_requirement.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | LabelSelectorRequirementType = "labelSelectorRequirement" 5 | LabelSelectorRequirementFieldKey = "key" 6 | LabelSelectorRequirementFieldOperator = "operator" 7 | LabelSelectorRequirementFieldValues = "values" 8 | ) 9 | 10 | type LabelSelectorRequirement struct { 11 | Key string `json:"key,omitempty" yaml:"key,omitempty"` 12 | Operator string `json:"operator,omitempty" yaml:"operator,omitempty"` 13 | Values []string `json:"values,omitempty" yaml:"values,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_rke_taint.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | RKETaintType = "rkeTaint" 5 | RKETaintFieldEffect = "effect" 6 | RKETaintFieldKey = "key" 7 | RKETaintFieldTimeAdded = "timeAdded" 8 | RKETaintFieldValue = "value" 9 | ) 10 | 11 | type RKETaint struct { 12 | Effect string `json:"effect,omitempty" yaml:"effect,omitempty"` 13 | Key string `json:"key,omitempty" yaml:"key,omitempty"` 14 | TimeAdded string `json:"timeAdded,omitempty" yaml:"timeAdded,omitempty"` 15 | Value string `json:"value,omitempty" yaml:"value,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_typed_local_object_reference.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | TypedLocalObjectReferenceType = "typedLocalObjectReference" 5 | TypedLocalObjectReferenceFieldAPIGroup = "apiGroup" 6 | TypedLocalObjectReferenceFieldKind = "kind" 7 | TypedLocalObjectReferenceFieldName = "name" 8 | ) 9 | 10 | type TypedLocalObjectReference struct { 11 | APIGroup string `json:"apiGroup,omitempty" yaml:"apiGroup,omitempty"` 12 | Kind string `json:"kind,omitempty" yaml:"kind,omitempty"` 13 | Name string `json:"name,omitempty" yaml:"name,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/sergi/go-diff/diffmatchpatch/mathutil.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012-2016 The go-diff authors. All rights reserved. 2 | // https://github.com/sergi/go-diff 3 | // See the included LICENSE file for license details. 4 | // 5 | // go-diff is a Go implementation of Google's Diff, Match, and Patch library 6 | // Original library is Copyright (c) 2006 Google Inc. 7 | // http://code.google.com/p/google-diff-match-patch/ 8 | 9 | package diffmatchpatch 10 | 11 | func min(x, y int) int { 12 | if x < y { 13 | return x 14 | } 15 | return y 16 | } 17 | 18 | func max(x, y int) int { 19 | if x > y { 20 | return x 21 | } 22 | return y 23 | } 24 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | //go:build !purego && !appengine 6 | // +build !purego,!appengine 7 | 8 | package impl 9 | 10 | // When using unsafe pointers, we can just treat enum values as int32s. 11 | 12 | var ( 13 | coderEnumNoZero = coderInt32NoZero 14 | coderEnum = coderInt32 15 | coderEnumPtr = coderInt32Ptr 16 | coderEnumSlice = coderInt32Slice 17 | coderEnumPackedSlice = coderInt32PackedSlice 18 | ) 19 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the official list of GoGo authors for copyright purposes. 2 | # This file is distinct from the CONTRIBUTORS file, which 3 | # lists people. For example, employees are listed in CONTRIBUTORS, 4 | # but not in AUTHORS, because the employer holds the copyright. 5 | 6 | # Names should be added to this file as one of 7 | # Organization's name 8 | # Individual's name 9 | # Individual's name 10 | 11 | # Please keep the list sorted. 12 | 13 | Sendgrid, Inc 14 | Vastech SA (PTY) LTD 15 | Walter Schulze 16 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_git_repo_volume_source.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | GitRepoVolumeSourceType = "gitRepoVolumeSource" 5 | GitRepoVolumeSourceFieldDirectory = "directory" 6 | GitRepoVolumeSourceFieldRepository = "repository" 7 | GitRepoVolumeSourceFieldRevision = "revision" 8 | ) 9 | 10 | type GitRepoVolumeSource struct { 11 | Directory string `json:"directory,omitempty" yaml:"directory,omitempty"` 12 | Repository string `json:"repository,omitempty" yaml:"repository,omitempty"` 13 | Revision string `json:"revision,omitempty" yaml:"revision,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package unix 6 | 7 | // Round the length of a raw sockaddr up to align it properly. 8 | func cmsgAlignOf(salen int) int { 9 | salign := SizeofPtr 10 | if SizeofPtr == 8 && !supportsABI(_dragonflyABIChangeVersion) { 11 | // 64-bit Dragonfly before the September 2019 ABI changes still requires 12 | // 32-bit aligned access to network subsystem. 13 | salign = 4 14 | } 15 | return (salen + salign - 1) & ^(salign - 1) 16 | } 17 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/norman/types/id.go: -------------------------------------------------------------------------------- 1 | package types 2 | 3 | import ( 4 | "fmt" 5 | "regexp" 6 | "strings" 7 | 8 | utilrand "k8s.io/apimachinery/pkg/util/rand" 9 | ) 10 | 11 | var ( 12 | lowerChars = regexp.MustCompile("[a-z]+") 13 | ) 14 | 15 | func GenerateName(typeName string) string { 16 | base := typeName[0:1] + lowerChars.ReplaceAllString(typeName[1:], "") 17 | last := utilrand.String(5) 18 | return fmt.Sprintf("%s-%s", strings.ToLower(base), last) 19 | } 20 | 21 | func GenerateTypePrefix(typeName string) string { 22 | base := typeName[0:1] + lowerChars.ReplaceAllString(typeName[1:], "") 23 | return strings.ToLower(base) + "-" 24 | } 25 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_resource_requirements.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | ResourceRequirementsType = "resourceRequirements" 5 | ResourceRequirementsFieldClaims = "claims" 6 | ResourceRequirementsFieldLimits = "limits" 7 | ResourceRequirementsFieldRequests = "requests" 8 | ) 9 | 10 | type ResourceRequirements struct { 11 | Claims []ResourceClaim `json:"claims,omitempty" yaml:"claims,omitempty"` 12 | Limits map[string]string `json:"limits,omitempty" yaml:"limits,omitempty"` 13 | Requests map[string]string `json:"requests,omitempty" yaml:"requests,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/proto_methods.go: -------------------------------------------------------------------------------- 1 | // Copyright 2019 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // The protoreflect build tag disables use of fast-path methods. 6 | //go:build !protoreflect 7 | // +build !protoreflect 8 | 9 | package proto 10 | 11 | import ( 12 | "google.golang.org/protobuf/reflect/protoreflect" 13 | "google.golang.org/protobuf/runtime/protoiface" 14 | ) 15 | 16 | const hasProtoMethods = true 17 | 18 | func protoMethods(m protoreflect.Message) *protoiface.Methods { 19 | return m.ProtoMethods() 20 | } 21 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go_below_118.go: -------------------------------------------------------------------------------- 1 | //+build !go1.18 2 | 3 | package reflect2 4 | 5 | import ( 6 | "unsafe" 7 | ) 8 | 9 | // m escapes into the return value, but the caller of mapiterinit 10 | // doesn't let the return value escape. 11 | //go:noescape 12 | //go:linkname mapiterinit reflect.mapiterinit 13 | func mapiterinit(rtype unsafe.Pointer, m unsafe.Pointer) (val *hiter) 14 | 15 | func (type2 *UnsafeMapType) UnsafeIterate(obj unsafe.Pointer) MapIterator { 16 | return &UnsafeMapIterator{ 17 | hiter: mapiterinit(type2.rtype, *(*unsafe.Pointer)(obj)), 18 | pKeyRType: type2.pKeyRType, 19 | pElemRType: type2.pElemRType, 20 | } 21 | } -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_generic_oidcapply_input.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | GenericOIDCApplyInputType = "genericOIDCApplyInput" 5 | GenericOIDCApplyInputFieldCode = "code" 6 | GenericOIDCApplyInputFieldEnabled = "enabled" 7 | GenericOIDCApplyInputFieldOIDCConfig = "oidcConfig" 8 | ) 9 | 10 | type GenericOIDCApplyInput struct { 11 | Code string `json:"code,omitempty" yaml:"code,omitempty"` 12 | Enabled bool `json:"enabled,omitempty" yaml:"enabled,omitempty"` 13 | OIDCConfig *OIDCConfig `json:"oidcConfig,omitempty" yaml:"oidcConfig,omitempty"` 14 | } 15 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_rolling_update_daemon_set.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | import ( 4 | "k8s.io/apimachinery/pkg/util/intstr" 5 | ) 6 | 7 | const ( 8 | RollingUpdateDaemonSetType = "rollingUpdateDaemonSet" 9 | RollingUpdateDaemonSetFieldMaxSurge = "maxSurge" 10 | RollingUpdateDaemonSetFieldMaxUnavailable = "maxUnavailable" 11 | ) 12 | 13 | type RollingUpdateDaemonSet struct { 14 | MaxSurge intstr.IntOrString `json:"maxSurge,omitempty" yaml:"maxSurge,omitempty"` 15 | MaxUnavailable intstr.IntOrString `json:"maxUnavailable,omitempty" yaml:"maxUnavailable,omitempty"` 16 | } 17 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_windows.go: -------------------------------------------------------------------------------- 1 | // +build !appengine,!js,windows 2 | 3 | package logrus 4 | 5 | import ( 6 | "io" 7 | "os" 8 | 9 | "golang.org/x/sys/windows" 10 | ) 11 | 12 | func checkIfTerminal(w io.Writer) bool { 13 | switch v := w.(type) { 14 | case *os.File: 15 | handle := windows.Handle(v.Fd()) 16 | var mode uint32 17 | if err := windows.GetConsoleMode(handle, &mode); err != nil { 18 | return false 19 | } 20 | mode |= windows.ENABLE_VIRTUAL_TERMINAL_PROCESSING 21 | if err := windows.SetConsoleMode(handle, mode); err != nil { 22 | return false 23 | } 24 | return true 25 | } 26 | return false 27 | } 28 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/v3/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | The following versions of semver are currently supported: 6 | 7 | | Version | Supported | 8 | | ------- | ------------------ | 9 | | 3.x | :white_check_mark: | 10 | | 2.x | :x: | 11 | | 1.x | :x: | 12 | 13 | Fixes are only released for the latest minor version in the form of a patch release. 14 | 15 | ## Reporting a Vulnerability 16 | 17 | You can privately disclose a vulnerability through GitHubs 18 | [private vulnerability reporting](https://github.com/Masterminds/semver/security/advisories) 19 | mechanism. 20 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/rancher/pkg/client/generated/management/v3/zz_generated_azure_file_volume_source.go: -------------------------------------------------------------------------------- 1 | package client 2 | 3 | const ( 4 | AzureFileVolumeSourceType = "azureFileVolumeSource" 5 | AzureFileVolumeSourceFieldReadOnly = "readOnly" 6 | AzureFileVolumeSourceFieldSecretName = "secretName" 7 | AzureFileVolumeSourceFieldShareName = "shareName" 8 | ) 9 | 10 | type AzureFileVolumeSource struct { 11 | ReadOnly bool `json:"readOnly,omitempty" yaml:"readOnly,omitempty"` 12 | SecretName string `json:"secretName,omitempty" yaml:"secretName,omitempty"` 13 | ShareName string `json:"shareName,omitempty" yaml:"shareName,omitempty"` 14 | } 15 | --------------------------------------------------------------------------------