├── .dockerignore ├── .drone.yml ├── .gitignore ├── Dockerfile.dapper ├── LICENSE ├── Makefile ├── README.md ├── docker └── volumeplugin │ ├── exec.go │ ├── exthandler.go │ ├── plugin.go │ ├── rancher.go │ ├── socket.go │ └── utils.go ├── main.go ├── package ├── abs │ ├── Dockerfile │ ├── Readme.md │ └── rancher-abs ├── common │ ├── common.sh │ └── start.sh ├── ebs │ ├── Dockerfile │ ├── Readme.md │ └── rancher-ebs ├── efs │ ├── Dockerfile │ ├── Readme.md │ └── rancher-efs ├── example │ ├── Dockerfile │ ├── README.md │ ├── rancher-loop │ └── start.sh ├── longhorn │ ├── Dockerfile │ └── rancher-longhorn ├── nfs │ ├── Dockerfile │ ├── Readme.md │ └── rancher-nfs ├── rbd │ ├── Dockerfile │ └── rancher-rbd ├── secrets-bridge-v2 │ └── Dockerfile └── secrets │ └── Dockerfile ├── scripts ├── build ├── ci ├── drone_image_yaml ├── entry ├── package ├── release ├── test ├── validate └── version ├── trash.conf └── vendor ├── github.com ├── Microsoft │ └── go-winio │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backup.go │ │ ├── file.go │ │ ├── fileinfo.go │ │ ├── pipe.go │ │ ├── privilege.go │ │ ├── reparse.go │ │ ├── sd.go │ │ ├── syscall.go │ │ └── zsyscall.go ├── Sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_appengine.go │ │ ├── terminal_bsd.go │ │ ├── terminal_linux.go │ │ ├── terminal_notwindows.go │ │ ├── terminal_solaris.go │ │ ├── terminal_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── coreos │ ├── go-systemd │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── DCO │ │ ├── LICENSE │ │ ├── README.md │ │ ├── activation │ │ │ ├── files.go │ │ │ ├── listeners.go │ │ │ └── packetconns.go │ │ ├── test │ │ └── util │ │ │ ├── util.go │ │ │ ├── util_cgo.go │ │ │ └── util_stub.go │ └── pkg │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── DCO │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── NOTICE │ │ ├── README.md │ │ ├── build │ │ ├── dlopen │ │ ├── dlopen.go │ │ └── dlopen_example.go │ │ └── test ├── docker │ ├── distribution │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── AUTHORS │ │ ├── BUILDING.md │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── Jenkinsfile │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── ROADMAP.md │ │ ├── circle.yml │ │ ├── coverpkg.sh │ │ ├── digest │ │ │ ├── digest.go │ │ │ ├── digester.go │ │ │ ├── doc.go │ │ │ ├── set.go │ │ │ └── verifiers.go │ │ └── reference │ │ │ ├── reference.go │ │ │ └── regexp.go │ ├── docker │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── Dockerfile.aarch64 │ │ ├── Dockerfile.armhf │ │ ├── Dockerfile.ppc64le │ │ ├── Dockerfile.s390x │ │ ├── Dockerfile.simple │ │ ├── Dockerfile.solaris │ │ ├── Dockerfile.windows │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── ROADMAP.md │ │ ├── VENDORING.md │ │ ├── VERSION │ │ ├── pkg │ │ │ ├── README.md │ │ │ └── locker │ │ │ │ ├── README.md │ │ │ │ └── locker.go │ │ ├── poule.yml │ │ └── vendor.conf │ ├── engine-api │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── client │ │ │ ├── checkpoint_create.go │ │ │ ├── checkpoint_delete.go │ │ │ ├── checkpoint_list.go │ │ │ ├── client.go │ │ │ ├── client_unix.go │ │ │ ├── client_windows.go │ │ │ ├── container_attach.go │ │ │ ├── container_commit.go │ │ │ ├── container_copy.go │ │ │ ├── container_create.go │ │ │ ├── container_diff.go │ │ │ ├── container_exec.go │ │ │ ├── container_export.go │ │ │ ├── container_inspect.go │ │ │ ├── container_kill.go │ │ │ ├── container_list.go │ │ │ ├── container_logs.go │ │ │ ├── container_pause.go │ │ │ ├── container_remove.go │ │ │ ├── container_rename.go │ │ │ ├── container_resize.go │ │ │ ├── container_restart.go │ │ │ ├── container_start.go │ │ │ ├── container_stats.go │ │ │ ├── container_stop.go │ │ │ ├── container_top.go │ │ │ ├── container_unpause.go │ │ │ ├── container_update.go │ │ │ ├── container_wait.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── hijack.go │ │ │ ├── image_build.go │ │ │ ├── image_create.go │ │ │ ├── image_history.go │ │ │ ├── image_import.go │ │ │ ├── image_inspect.go │ │ │ ├── image_list.go │ │ │ ├── image_load.go │ │ │ ├── image_pull.go │ │ │ ├── image_push.go │ │ │ ├── image_remove.go │ │ │ ├── image_save.go │ │ │ ├── image_search.go │ │ │ ├── image_tag.go │ │ │ ├── info.go │ │ │ ├── interface.go │ │ │ ├── interface_experimental.go │ │ │ ├── interface_stable.go │ │ │ ├── login.go │ │ │ ├── network_connect.go │ │ │ ├── network_create.go │ │ │ ├── network_disconnect.go │ │ │ ├── network_inspect.go │ │ │ ├── network_list.go │ │ │ ├── network_remove.go │ │ │ ├── node_inspect.go │ │ │ ├── node_list.go │ │ │ ├── node_remove.go │ │ │ ├── node_update.go │ │ │ ├── plugin_disable.go │ │ │ ├── plugin_enable.go │ │ │ ├── plugin_inspect.go │ │ │ ├── plugin_install.go │ │ │ ├── plugin_list.go │ │ │ ├── plugin_push.go │ │ │ ├── plugin_remove.go │ │ │ ├── plugin_set.go │ │ │ ├── request.go │ │ │ ├── service_create.go │ │ │ ├── service_inspect.go │ │ │ ├── service_list.go │ │ │ ├── service_remove.go │ │ │ ├── service_update.go │ │ │ ├── swarm_init.go │ │ │ ├── swarm_inspect.go │ │ │ ├── swarm_join.go │ │ │ ├── swarm_leave.go │ │ │ ├── swarm_update.go │ │ │ ├── task_inspect.go │ │ │ ├── task_list.go │ │ │ ├── transport │ │ │ │ ├── cancellable │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── canceler.go │ │ │ │ │ ├── canceler_go14.go │ │ │ │ │ └── cancellable.go │ │ │ │ ├── client.go │ │ │ │ ├── tlsconfig_clone.go │ │ │ │ ├── tlsconfig_clone_go17.go │ │ │ │ └── transport.go │ │ │ ├── version.go │ │ │ ├── volume_create.go │ │ │ ├── volume_inspect.go │ │ │ ├── volume_list.go │ │ │ └── volume_remove.go │ │ └── types │ │ │ ├── auth.go │ │ │ ├── blkiodev │ │ │ └── blkio.go │ │ │ ├── client.go │ │ │ ├── configs.go │ │ │ ├── container │ │ │ ├── config.go │ │ │ ├── host_config.go │ │ │ ├── hostconfig_unix.go │ │ │ └── hostconfig_windows.go │ │ │ ├── errors.go │ │ │ ├── events │ │ │ └── events.go │ │ │ ├── filters │ │ │ └── parse.go │ │ │ ├── mount │ │ │ └── mount.go │ │ │ ├── network │ │ │ └── network.go │ │ │ ├── plugin.go │ │ │ ├── reference │ │ │ └── image_reference.go │ │ │ ├── registry │ │ │ └── registry.go │ │ │ ├── seccomp.go │ │ │ ├── stats.go │ │ │ ├── strslice │ │ │ └── strslice.go │ │ │ ├── swarm │ │ │ ├── common.go │ │ │ ├── container.go │ │ │ ├── network.go │ │ │ ├── node.go │ │ │ ├── service.go │ │ │ ├── swarm.go │ │ │ └── task.go │ │ │ ├── time │ │ │ ├── duration_convert.go │ │ │ └── timestamp.go │ │ │ ├── types.go │ │ │ └── versions │ │ │ ├── README.md │ │ │ └── compare.go │ ├── go-connections │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── circle.yml │ │ ├── nat │ │ │ ├── nat.go │ │ │ ├── parse.go │ │ │ └── sort.go │ │ ├── sockets │ │ │ ├── README.md │ │ │ ├── inmem_socket.go │ │ │ ├── proxy.go │ │ │ ├── sockets.go │ │ │ ├── sockets_unix.go │ │ │ ├── sockets_windows.go │ │ │ ├── tcp_socket.go │ │ │ └── unix_socket.go │ │ └── tlsconfig │ │ │ ├── config.go │ │ │ ├── config_client_ciphers.go │ │ │ └── config_legacy_client_ciphers.go │ ├── go-plugins-helpers │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── sdk │ │ │ ├── encoder.go │ │ │ ├── handler.go │ │ │ ├── tcp_listener.go │ │ │ ├── unix_listener.go │ │ │ └── unix_listener_unsupported.go │ │ └── volume │ │ │ ├── README.md │ │ │ └── api.go │ └── go-units │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── circle.yml │ │ ├── duration.go │ │ ├── size.go │ │ └── ulimit.go ├── golang │ └── glog │ │ ├── LICENSE │ │ ├── README │ │ ├── glog.go │ │ └── glog_file.go ├── gorilla │ └── websocket │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── compression.go │ │ ├── conn.go │ │ ├── conn_read.go │ │ ├── conn_read_legacy.go │ │ ├── doc.go │ │ ├── json.go │ │ ├── server.go │ │ └── util.go ├── opencontainers │ └── runc │ │ ├── .gitignore │ │ ├── .pullapprove.yml │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── MAINTAINERS_GUIDE.md │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── PRINCIPLES.md │ │ ├── README.md │ │ ├── VERSION │ │ └── libcontainer │ │ ├── README.md │ │ ├── SPEC.md │ │ └── user │ │ ├── MAINTAINERS │ │ ├── lookup.go │ │ ├── lookup_unix.go │ │ ├── lookup_unsupported.go │ │ └── user.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ └── stack.go ├── rancher │ ├── go-rancher-metadata │ │ ├── .gitignore │ │ ├── README.md │ │ └── metadata │ │ │ ├── change.go │ │ │ ├── metadata.go │ │ │ ├── types.go │ │ │ └── utils.go │ ├── go-rancher │ │ ├── .dockerignore │ │ ├── .drone.yml │ │ ├── .gitignore │ │ ├── Dockerfile.dapper │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── trash.conf │ │ └── v2 │ │ │ ├── client.go │ │ │ ├── common.go │ │ │ ├── generated_account.go │ │ │ ├── generated_active_setting.go │ │ │ ├── generated_add_outputs_input.go │ │ │ ├── generated_add_remove_service_link_input.go │ │ │ ├── generated_agent.go │ │ │ ├── generated_amazonec2config.go │ │ │ ├── generated_api_key.go │ │ │ ├── generated_audit_log.go │ │ │ ├── generated_azure_config.go │ │ │ ├── generated_azureadconfig.go │ │ │ ├── generated_backup.go │ │ │ ├── generated_backup_target.go │ │ │ ├── generated_base_machine_config.go │ │ │ ├── generated_binding.go │ │ │ ├── generated_blkio_device_option.go │ │ │ ├── generated_catalog_template.go │ │ │ ├── generated_certificate.go │ │ │ ├── generated_change_secret_input.go │ │ │ ├── generated_client.go │ │ │ ├── generated_cluster_membership.go │ │ │ ├── generated_compose_config.go │ │ │ ├── generated_compose_config_input.go │ │ │ ├── generated_compose_project.go │ │ │ ├── generated_compose_service.go │ │ │ ├── generated_config_item.go │ │ │ ├── generated_config_item_status.go │ │ │ ├── generated_container.go │ │ │ ├── generated_container_event.go │ │ │ ├── generated_container_exec.go │ │ │ ├── generated_container_logs.go │ │ │ ├── generated_container_proxy.go │ │ │ ├── generated_credential.go │ │ │ ├── generated_databasechangelog.go │ │ │ ├── generated_databasechangeloglock.go │ │ │ ├── generated_default_network.go │ │ │ ├── generated_digitalocean_config.go │ │ │ ├── generated_dns_service.go │ │ │ ├── generated_docker_build.go │ │ │ ├── generated_dynamic_schema.go │ │ │ ├── generated_extension_implementation.go │ │ │ ├── generated_extension_point.go │ │ │ ├── generated_external_dns_event.go │ │ │ ├── generated_external_event.go │ │ │ ├── generated_external_handler.go │ │ │ ├── generated_external_handler_external_handler_process_map.go │ │ │ ├── generated_external_handler_process.go │ │ │ ├── generated_external_handler_process_config.go │ │ │ ├── generated_external_host_event.go │ │ │ ├── generated_external_service.go │ │ │ ├── generated_external_service_event.go │ │ │ ├── generated_external_storage_pool_event.go │ │ │ ├── generated_external_volume_event.go │ │ │ ├── generated_field_documentation.go │ │ │ ├── generated_generic_object.go │ │ │ ├── generated_ha_config.go │ │ │ ├── generated_ha_config_input.go │ │ │ ├── generated_healthcheck_instance_host_map.go │ │ │ ├── generated_host.go │ │ │ ├── generated_host_access.go │ │ │ ├── generated_host_api_proxy_token.go │ │ │ ├── generated_identity.go │ │ │ ├── generated_image.go │ │ │ ├── generated_in_service_upgrade_strategy.go │ │ │ ├── generated_instance.go │ │ │ ├── generated_instance_console.go │ │ │ ├── generated_instance_console_input.go │ │ │ ├── generated_instance_health_check.go │ │ │ ├── generated_instance_link.go │ │ │ ├── generated_instance_stop.go │ │ │ ├── generated_ip_address.go │ │ │ ├── generated_kubernetes_service.go │ │ │ ├── generated_kubernetes_stack.go │ │ │ ├── generated_kubernetes_stack_upgrade.go │ │ │ ├── generated_label.go │ │ │ ├── generated_launch_config.go │ │ │ ├── generated_lb_config.go │ │ │ ├── generated_lb_target_config.go │ │ │ ├── generated_ldapconfig.go │ │ │ ├── generated_load_balancer_cookie_stickiness_policy.go │ │ │ ├── generated_load_balancer_service.go │ │ │ ├── generated_local_auth_config.go │ │ │ ├── generated_log_config.go │ │ │ ├── generated_machine.go │ │ │ ├── generated_machine_driver.go │ │ │ ├── generated_mount.go │ │ │ ├── generated_mount_entry.go │ │ │ ├── generated_network.go │ │ │ ├── generated_network_driver.go │ │ │ ├── generated_network_driver_service.go │ │ │ ├── generated_nfs_config.go │ │ │ ├── generated_openldapconfig.go │ │ │ ├── generated_packet_config.go │ │ │ ├── generated_password.go │ │ │ ├── generated_physical_host.go │ │ │ ├── generated_port.go │ │ │ ├── generated_port_rule.go │ │ │ ├── generated_process_definition.go │ │ │ ├── generated_process_execution.go │ │ │ ├── generated_process_instance.go │ │ │ ├── generated_project.go │ │ │ ├── generated_project_member.go │ │ │ ├── generated_project_template.go │ │ │ ├── generated_public_endpoint.go │ │ │ ├── generated_publish.go │ │ │ ├── generated_pull_task.go │ │ │ ├── generated_recreate_on_quorum_strategy_config.go │ │ │ ├── generated_register.go │ │ │ ├── generated_registration_token.go │ │ │ ├── generated_registry.go │ │ │ ├── generated_registry_credential.go │ │ │ ├── generated_resource_definition.go │ │ │ ├── generated_restart_policy.go │ │ │ ├── generated_restore_from_backup_input.go │ │ │ ├── generated_revert_to_snapshot_input.go │ │ │ ├── generated_rolling_restart_strategy.go │ │ │ ├── generated_scale_policy.go │ │ │ ├── generated_secondary_launch_config.go │ │ │ ├── generated_service.go │ │ │ ├── generated_service_binding.go │ │ │ ├── generated_service_consume_map.go │ │ │ ├── generated_service_event.go │ │ │ ├── generated_service_expose_map.go │ │ │ ├── generated_service_link.go │ │ │ ├── generated_service_log.go │ │ │ ├── generated_service_proxy.go │ │ │ ├── generated_service_restart.go │ │ │ ├── generated_service_upgrade.go │ │ │ ├── generated_service_upgrade_strategy.go │ │ │ ├── generated_services_port_range.go │ │ │ ├── generated_set_project_members_input.go │ │ │ ├── generated_set_service_links_input.go │ │ │ ├── generated_setting.go │ │ │ ├── generated_snapshot.go │ │ │ ├── generated_snapshot_backup_input.go │ │ │ ├── generated_stack.go │ │ │ ├── generated_stack_upgrade.go │ │ │ ├── generated_state_transition.go │ │ │ ├── generated_stats_access.go │ │ │ ├── generated_storage_driver.go │ │ │ ├── generated_storage_driver_service.go │ │ │ ├── generated_storage_pool.go │ │ │ ├── generated_subnet.go │ │ │ ├── generated_subscribe.go │ │ │ ├── generated_target_port_rule.go │ │ │ ├── generated_task.go │ │ │ ├── generated_task_instance.go │ │ │ ├── generated_to_service_upgrade_strategy.go │ │ │ ├── generated_type_documentation.go │ │ │ ├── generated_ulimit.go │ │ │ ├── generated_virtual_machine.go │ │ │ ├── generated_virtual_machine_disk.go │ │ │ ├── generated_volume.go │ │ │ ├── generated_volume_activate_input.go │ │ │ ├── generated_volume_snapshot_input.go │ │ │ ├── generated_volume_template.go │ │ │ ├── schemas.go │ │ │ └── types.go │ └── kubernetes-agent │ │ ├── .dockerignore │ │ ├── .drone.yml │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .package │ │ ├── .wrap-docker-args │ │ ├── Dockerfile.dapper │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── healthcheck │ │ └── healthcheck.go │ │ └── trash.conf └── urfave │ └── cli │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── app.go │ ├── appveyor.yml │ ├── category.go │ ├── cli.go │ ├── command.go │ ├── context.go │ ├── errors.go │ ├── flag-types.json │ ├── flag.go │ ├── flag_generated.go │ ├── funcs.go │ ├── generate-flag-types │ ├── help.go │ └── runtests ├── golang.org └── x │ ├── net │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README │ ├── codereview.cfg │ ├── context │ │ ├── context.go │ │ ├── go17.go │ │ └── pre_go17.go │ └── proxy │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── proxy.go │ │ └── socks5.go │ └── sys │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README │ ├── codereview.cfg │ ├── unix │ ├── .gitignore │ ├── asm.s │ ├── asm_darwin_386.s │ ├── asm_darwin_amd64.s │ ├── asm_darwin_arm.s │ ├── asm_darwin_arm64.s │ ├── asm_dragonfly_amd64.s │ ├── asm_freebsd_386.s │ ├── asm_freebsd_amd64.s │ ├── asm_freebsd_arm.s │ ├── asm_linux_386.s │ ├── asm_linux_amd64.s │ ├── asm_linux_arm.s │ ├── asm_linux_arm64.s │ ├── asm_linux_mips64x.s │ ├── asm_linux_ppc64x.s │ ├── asm_linux_s390x.s │ ├── asm_netbsd_386.s │ ├── asm_netbsd_amd64.s │ ├── asm_netbsd_arm.s │ ├── asm_openbsd_386.s │ ├── asm_openbsd_amd64.s │ ├── asm_solaris_amd64.s │ ├── bluetooth_linux.go │ ├── constants.go │ ├── env_unix.go │ ├── env_unset.go │ ├── flock.go │ ├── flock_linux_32bit.go │ ├── gccgo.go │ ├── gccgo_c.c │ ├── gccgo_linux_amd64.go │ ├── mkall.sh │ ├── mkerrors.sh │ ├── mkpost.go │ ├── mksyscall.pl │ ├── mksyscall_solaris.pl │ ├── mksysctl_openbsd.pl │ ├── mksysnum_darwin.pl │ ├── mksysnum_dragonfly.pl │ ├── mksysnum_freebsd.pl │ ├── mksysnum_linux.pl │ ├── mksysnum_netbsd.pl │ ├── mksysnum_openbsd.pl │ ├── race.go │ ├── race0.go │ ├── sockcmsg_linux.go │ ├── sockcmsg_unix.go │ ├── str.go │ ├── syscall.go │ ├── syscall_bsd.go │ ├── syscall_darwin.go │ ├── syscall_darwin_386.go │ ├── syscall_darwin_amd64.go │ ├── syscall_darwin_arm.go │ ├── syscall_darwin_arm64.go │ ├── syscall_dragonfly.go │ ├── syscall_dragonfly_amd64.go │ ├── syscall_freebsd.go │ ├── syscall_freebsd_386.go │ ├── syscall_freebsd_amd64.go │ ├── syscall_freebsd_arm.go │ ├── syscall_linux.go │ ├── syscall_linux_386.go │ ├── syscall_linux_amd64.go │ ├── syscall_linux_arm.go │ ├── syscall_linux_arm64.go │ ├── syscall_linux_mips64x.go │ ├── syscall_linux_ppc64x.go │ ├── syscall_linux_s390x.go │ ├── syscall_netbsd.go │ ├── syscall_netbsd_386.go │ ├── syscall_netbsd_amd64.go │ ├── syscall_netbsd_arm.go │ ├── syscall_no_getwd.go │ ├── syscall_openbsd.go │ ├── syscall_openbsd_386.go │ ├── syscall_openbsd_amd64.go │ ├── syscall_solaris.go │ ├── syscall_solaris_amd64.go │ ├── syscall_unix.go │ ├── types_darwin.go │ ├── types_dragonfly.go │ ├── types_freebsd.go │ ├── types_linux.go │ ├── types_netbsd.go │ ├── types_openbsd.go │ ├── types_solaris.go │ ├── zerrors_darwin_386.go │ ├── zerrors_darwin_amd64.go │ ├── zerrors_darwin_arm.go │ ├── zerrors_darwin_arm64.go │ ├── zerrors_dragonfly_amd64.go │ ├── zerrors_freebsd_386.go │ ├── zerrors_freebsd_amd64.go │ ├── zerrors_freebsd_arm.go │ ├── zerrors_linux_386.go │ ├── zerrors_linux_amd64.go │ ├── zerrors_linux_arm.go │ ├── zerrors_linux_arm64.go │ ├── zerrors_linux_mips64.go │ ├── zerrors_linux_mips64le.go │ ├── zerrors_linux_ppc64.go │ ├── zerrors_linux_ppc64le.go │ ├── zerrors_linux_s390x.go │ ├── zerrors_netbsd_386.go │ ├── zerrors_netbsd_amd64.go │ ├── zerrors_netbsd_arm.go │ ├── zerrors_openbsd_386.go │ ├── zerrors_openbsd_amd64.go │ ├── zerrors_solaris_amd64.go │ ├── zsyscall_darwin_386.go │ ├── zsyscall_darwin_amd64.go │ ├── zsyscall_darwin_arm.go │ ├── zsyscall_darwin_arm64.go │ ├── zsyscall_dragonfly_amd64.go │ ├── zsyscall_freebsd_386.go │ ├── zsyscall_freebsd_amd64.go │ ├── zsyscall_freebsd_arm.go │ ├── zsyscall_linux_386.go │ ├── zsyscall_linux_amd64.go │ ├── zsyscall_linux_arm.go │ ├── zsyscall_linux_arm64.go │ ├── zsyscall_linux_mips64.go │ ├── zsyscall_linux_mips64le.go │ ├── zsyscall_linux_ppc64.go │ ├── zsyscall_linux_ppc64le.go │ ├── zsyscall_linux_s390x.go │ ├── zsyscall_netbsd_386.go │ ├── zsyscall_netbsd_amd64.go │ ├── zsyscall_netbsd_arm.go │ ├── zsyscall_openbsd_386.go │ ├── zsyscall_openbsd_amd64.go │ ├── zsyscall_solaris_amd64.go │ ├── zsysctl_openbsd.go │ ├── zsysnum_darwin_386.go │ ├── zsysnum_darwin_amd64.go │ ├── zsysnum_darwin_arm.go │ ├── zsysnum_darwin_arm64.go │ ├── zsysnum_dragonfly_amd64.go │ ├── zsysnum_freebsd_386.go │ ├── zsysnum_freebsd_amd64.go │ ├── zsysnum_freebsd_arm.go │ ├── zsysnum_linux_386.go │ ├── zsysnum_linux_amd64.go │ ├── zsysnum_linux_arm.go │ ├── zsysnum_linux_arm64.go │ ├── zsysnum_linux_mips64.go │ ├── zsysnum_linux_mips64le.go │ ├── zsysnum_linux_ppc64.go │ ├── zsysnum_linux_ppc64le.go │ ├── zsysnum_linux_s390x.go │ ├── zsysnum_netbsd_386.go │ ├── zsysnum_netbsd_amd64.go │ ├── zsysnum_netbsd_arm.go │ ├── zsysnum_openbsd_386.go │ ├── zsysnum_openbsd_amd64.go │ ├── zsysnum_solaris_amd64.go │ ├── ztypes_darwin_386.go │ ├── ztypes_darwin_amd64.go │ ├── ztypes_darwin_arm.go │ ├── ztypes_darwin_arm64.go │ ├── ztypes_dragonfly_amd64.go │ ├── ztypes_freebsd_386.go │ ├── ztypes_freebsd_amd64.go │ ├── ztypes_freebsd_arm.go │ ├── ztypes_linux_386.go │ ├── ztypes_linux_amd64.go │ ├── ztypes_linux_arm.go │ ├── ztypes_linux_arm64.go │ ├── ztypes_linux_mips64.go │ ├── ztypes_linux_mips64le.go │ ├── ztypes_linux_ppc64.go │ ├── ztypes_linux_ppc64le.go │ ├── ztypes_linux_s390x.go │ ├── ztypes_netbsd_386.go │ ├── ztypes_netbsd_amd64.go │ ├── ztypes_netbsd_arm.go │ ├── ztypes_openbsd_386.go │ ├── ztypes_openbsd_amd64.go │ └── ztypes_solaris_amd64.go │ └── windows │ ├── asm_windows_386.s │ ├── asm_windows_amd64.s │ ├── dll_windows.go │ ├── env_unset.go │ ├── env_windows.go │ ├── eventlog.go │ ├── exec_windows.go │ ├── mksyscall.go │ ├── race.go │ ├── race0.go │ ├── security_windows.go │ ├── service.go │ ├── str.go │ ├── syscall.go │ ├── syscall_windows.go │ ├── zsyscall_windows.go │ ├── ztypes_windows.go │ ├── ztypes_windows_386.go │ └── ztypes_windows_amd64.go └── k8s.io └── kubernetes ├── .generated_docs ├── .gitignore ├── CHANGELOG.md ├── CONTRIB.md ├── CONTRIBUTING.md ├── DESIGN.md ├── LICENSE ├── Makefile ├── Makefile.generated_files ├── OWNERS ├── README.md ├── Vagrantfile ├── code-of-conduct.md ├── labels.yaml └── pkg ├── OWNERS └── util ├── exec ├── doc.go ├── exec.go └── fake_exec.go └── mount ├── doc.go ├── fake.go ├── mount.go ├── mount_linux.go ├── mount_unsupported.go ├── nsenter_mount.go └── nsenter_mount_unsupported.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/.dockerignore -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile.dapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/Dockerfile.dapper -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/README.md -------------------------------------------------------------------------------- /docker/volumeplugin/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/docker/volumeplugin/exec.go -------------------------------------------------------------------------------- /docker/volumeplugin/exthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/docker/volumeplugin/exthandler.go -------------------------------------------------------------------------------- /docker/volumeplugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/docker/volumeplugin/plugin.go -------------------------------------------------------------------------------- /docker/volumeplugin/rancher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/docker/volumeplugin/rancher.go -------------------------------------------------------------------------------- /docker/volumeplugin/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/docker/volumeplugin/socket.go -------------------------------------------------------------------------------- /docker/volumeplugin/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/docker/volumeplugin/utils.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/main.go -------------------------------------------------------------------------------- /package/abs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/abs/Dockerfile -------------------------------------------------------------------------------- /package/abs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/abs/Readme.md -------------------------------------------------------------------------------- /package/abs/rancher-abs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/abs/rancher-abs -------------------------------------------------------------------------------- /package/common/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/common/common.sh -------------------------------------------------------------------------------- /package/common/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/common/start.sh -------------------------------------------------------------------------------- /package/ebs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/ebs/Dockerfile -------------------------------------------------------------------------------- /package/ebs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/ebs/Readme.md -------------------------------------------------------------------------------- /package/ebs/rancher-ebs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/ebs/rancher-ebs -------------------------------------------------------------------------------- /package/efs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/efs/Dockerfile -------------------------------------------------------------------------------- /package/efs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/efs/Readme.md -------------------------------------------------------------------------------- /package/efs/rancher-efs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/efs/rancher-efs -------------------------------------------------------------------------------- /package/example/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/example/Dockerfile -------------------------------------------------------------------------------- /package/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/example/README.md -------------------------------------------------------------------------------- /package/example/rancher-loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/example/rancher-loop -------------------------------------------------------------------------------- /package/example/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/example/start.sh -------------------------------------------------------------------------------- /package/longhorn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/longhorn/Dockerfile -------------------------------------------------------------------------------- /package/longhorn/rancher-longhorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/longhorn/rancher-longhorn -------------------------------------------------------------------------------- /package/nfs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/nfs/Dockerfile -------------------------------------------------------------------------------- /package/nfs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/nfs/Readme.md -------------------------------------------------------------------------------- /package/nfs/rancher-nfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/nfs/rancher-nfs -------------------------------------------------------------------------------- /package/rbd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/rbd/Dockerfile -------------------------------------------------------------------------------- /package/rbd/rancher-rbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/rbd/rancher-rbd -------------------------------------------------------------------------------- /package/secrets-bridge-v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/secrets-bridge-v2/Dockerfile -------------------------------------------------------------------------------- /package/secrets/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/package/secrets/Dockerfile -------------------------------------------------------------------------------- /scripts/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/scripts/build -------------------------------------------------------------------------------- /scripts/ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/scripts/ci -------------------------------------------------------------------------------- /scripts/drone_image_yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/scripts/drone_image_yaml -------------------------------------------------------------------------------- /scripts/entry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/scripts/entry -------------------------------------------------------------------------------- /scripts/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/scripts/package -------------------------------------------------------------------------------- /scripts/release: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec $(dirname $0)/ci 4 | -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/scripts/test -------------------------------------------------------------------------------- /scripts/validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/scripts/validate -------------------------------------------------------------------------------- /scripts/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/scripts/version -------------------------------------------------------------------------------- /trash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/trash.conf -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Microsoft/go-winio/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Microsoft/go-winio/README.md -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Microsoft/go-winio/backup.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Microsoft/go-winio/file.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/fileinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Microsoft/go-winio/fileinfo.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Microsoft/go-winio/pipe.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/privilege.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Microsoft/go-winio/privilege.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/reparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Microsoft/go-winio/reparse.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Microsoft/go-winio/sd.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Microsoft/go-winio/syscall.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/zsyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Microsoft/go-winio/zsyscall.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/terminal_appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/terminal_appengine.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/terminal_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/terminal_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/terminal_notwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/terminal_notwindows.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/terminal_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/terminal_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/terminal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/terminal_windows.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/Sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/go-systemd/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/go-systemd/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/go-systemd/DCO -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/go-systemd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/go-systemd/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/activation/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/go-systemd/activation/files.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/activation/listeners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/go-systemd/activation/listeners.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/activation/packetconns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/go-systemd/activation/packetconns.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/go-systemd/test -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/go-systemd/util/util.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/util/util_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/go-systemd/util/util_cgo.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/util/util_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/go-systemd/util/util_stub.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/pkg/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/pkg/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/pkg/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/pkg/DCO -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/pkg/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/pkg/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/pkg/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/pkg/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/build: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | 3 | go build ./... 4 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/dlopen/dlopen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/pkg/dlopen/dlopen.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/dlopen/dlopen_example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/pkg/dlopen/dlopen_example.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/pkg/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/coreos/pkg/test -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/BUILDING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/Jenkinsfile -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/Makefile -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/ROADMAP.md -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/circle.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/coverpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/coverpkg.sh -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/digest/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/digest/digest.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/digest/digester.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/digest/digester.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/digest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/digest/doc.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/digest/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/digest/set.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/digest/verifiers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/digest/verifiers.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/reference/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/reference/reference.go -------------------------------------------------------------------------------- /vendor/github.com/docker/distribution/reference/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/distribution/reference/regexp.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/.dockerignore -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Dockerfile.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/Dockerfile.aarch64 -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Dockerfile.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/Dockerfile.armhf -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Dockerfile.ppc64le: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/Dockerfile.ppc64le -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Dockerfile.s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/Dockerfile.s390x -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Dockerfile.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/Dockerfile.simple -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Dockerfile.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/Dockerfile.solaris -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Dockerfile.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/Dockerfile.windows -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/Makefile -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/ROADMAP.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/VENDORING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/VENDORING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/VERSION: -------------------------------------------------------------------------------- 1 | 1.14.0-dev 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/pkg/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/locker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/pkg/locker/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/locker/locker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/pkg/locker/locker.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/poule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/poule.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/vendor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/docker/vendor.conf -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/Makefile -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/checkpoint_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/checkpoint_create.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/checkpoint_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/checkpoint_delete.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/checkpoint_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/checkpoint_list.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/client.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/client_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/client_unix.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/client_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/client_windows.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_attach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_attach.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_commit.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_copy.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_create.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_diff.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_exec.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_export.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_inspect.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_kill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_kill.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_list.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_logs.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_pause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_pause.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_remove.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_rename.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_resize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_resize.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_restart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_restart.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_start.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_stats.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_stop.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_top.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_top.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_unpause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_unpause.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_update.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/container_wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/container_wait.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/errors.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/events.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/hijack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/hijack.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/image_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/image_build.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/image_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/image_create.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/image_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/image_history.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/image_import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/image_import.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/image_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/image_inspect.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/image_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/image_list.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/image_load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/image_load.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/image_pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/image_pull.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/image_push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/image_push.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/image_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/image_remove.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/image_save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/image_save.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/image_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/image_search.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/image_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/image_tag.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/info.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/interface.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/interface_experimental.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/interface_experimental.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/interface_stable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/interface_stable.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/login.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/network_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/network_connect.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/network_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/network_create.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/network_disconnect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/network_disconnect.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/network_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/network_inspect.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/network_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/network_list.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/network_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/network_remove.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/node_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/node_inspect.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/node_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/node_list.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/node_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/node_remove.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/node_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/node_update.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/plugin_disable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/plugin_disable.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/plugin_enable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/plugin_enable.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/plugin_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/plugin_inspect.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/plugin_install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/plugin_install.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/plugin_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/plugin_list.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/plugin_push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/plugin_push.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/plugin_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/plugin_remove.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/plugin_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/plugin_set.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/request.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/service_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/service_create.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/service_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/service_inspect.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/service_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/service_list.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/service_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/service_remove.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/service_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/service_update.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/swarm_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/swarm_init.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/swarm_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/swarm_inspect.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/swarm_join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/swarm_join.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/swarm_leave.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/swarm_leave.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/swarm_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/swarm_update.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/task_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/task_inspect.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/task_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/task_list.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/transport/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/transport/client.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/transport/tlsconfig_clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/transport/tlsconfig_clone.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/transport/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/transport/transport.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/version.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/volume_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/volume_create.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/volume_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/volume_inspect.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/volume_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/volume_list.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/client/volume_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/client/volume_remove.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/auth.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/blkiodev/blkio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/blkiodev/blkio.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/client.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/configs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/configs.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/container/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/container/config.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/container/host_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/container/host_config.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/container/hostconfig_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/container/hostconfig_unix.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/errors.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/events/events.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/filters/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/filters/parse.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/mount/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/mount/mount.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/network/network.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/plugin.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/reference/image_reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/reference/image_reference.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/registry/registry.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/seccomp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/seccomp.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/stats.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/strslice/strslice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/strslice/strslice.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/swarm/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/swarm/common.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/swarm/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/swarm/container.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/swarm/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/swarm/network.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/swarm/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/swarm/node.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/swarm/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/swarm/service.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/swarm/swarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/swarm/swarm.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/swarm/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/swarm/task.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/time/duration_convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/time/duration_convert.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/time/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/time/timestamp.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/types.go -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/versions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/versions/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/engine-api/types/versions/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/engine-api/types/versions/compare.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/circle.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/nat/nat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/nat/nat.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/nat/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/nat/parse.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/nat/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/nat/sort.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/inmem_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/sockets/inmem_socket.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/sockets/proxy.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/sockets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/sockets/sockets.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/sockets_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/sockets/sockets_unix.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/sockets_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/sockets/sockets_windows.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/tcp_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/sockets/tcp_socket.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/unix_socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/sockets/unix_socket.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/tlsconfig/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-connections/tlsconfig/config.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/Makefile -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/sdk/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/sdk/encoder.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/sdk/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/sdk/handler.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/sdk/tcp_listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/sdk/tcp_listener.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/sdk/unix_listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/sdk/unix_listener.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/volume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/volume/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/volume/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-plugins-helpers/volume/api.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-units/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-units/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-units/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-units/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-units/circle.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-units/duration.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/docker/go-units/ulimit.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/README.md -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/client.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/compression.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/conn.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/conn_read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/conn_read.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/conn_read_legacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/conn_read_legacy.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/json.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/server.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/gorilla/websocket/util.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/.pullapprove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/.pullapprove.yml -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/MAINTAINERS_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/MAINTAINERS_GUIDE.md -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/Makefile -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/PRINCIPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/PRINCIPLES.md -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/README.md -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0-rc2 2 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/libcontainer/README.md -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/SPEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/libcontainer/SPEC.md -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/user/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/libcontainer/user/lookup.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/opencontainers/runc/libcontainer/user/user.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher-metadata/.gitignore: -------------------------------------------------------------------------------- 1 | go-rancher-metadata 2 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher-metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher-metadata/README.md -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher-metadata/metadata/change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher-metadata/metadata/change.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher-metadata/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher-metadata/metadata/metadata.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher-metadata/metadata/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher-metadata/metadata/types.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher-metadata/metadata/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher-metadata/metadata/utils.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/.dockerignore -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/.drone.yml -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/.gitignore: -------------------------------------------------------------------------------- 1 | /.dapper 2 | /bin 3 | /dist 4 | *.swp 5 | /.trash-cache 6 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/Dockerfile.dapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/Dockerfile.dapper -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/Makefile -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/README.md -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/trash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/trash.conf -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/client.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/common.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_account.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_active_setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_active_setting.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_add_outputs_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_add_outputs_input.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_agent.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_amazonec2config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_amazonec2config.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_api_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_api_key.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_audit_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_audit_log.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_azure_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_azure_config.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_azureadconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_azureadconfig.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_backup.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_backup_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_backup_target.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_binding.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_catalog_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_catalog_template.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_certificate.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_client.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_cluster_membership.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_cluster_membership.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_compose_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_compose_config.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_compose_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_compose_project.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_compose_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_compose_service.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_config_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_config_item.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_config_item_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_config_item_status.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_container.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_container_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_container_event.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_container_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_container_exec.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_container_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_container_logs.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_container_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_container_proxy.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_credential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_credential.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_databasechangelog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_databasechangelog.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_default_network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_default_network.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_dns_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_dns_service.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_docker_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_docker_build.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_dynamic_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_dynamic_schema.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_extension_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_extension_point.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_external_dns_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_external_dns_event.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_external_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_external_event.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_external_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_external_handler.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_external_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_external_service.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_generic_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_generic_object.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_ha_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_ha_config.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_ha_config_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_ha_config_input.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_host.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_host_access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_host_access.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_identity.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_image.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_instance.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_instance_console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_instance_console.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_instance_link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_instance_link.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_instance_stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_instance_stop.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_ip_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_ip_address.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_kubernetes_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_kubernetes_service.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_kubernetes_stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_kubernetes_stack.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_label.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_launch_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_launch_config.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_lb_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_lb_config.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_lb_target_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_lb_target_config.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_ldapconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_ldapconfig.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_local_auth_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_local_auth_config.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_log_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_log_config.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_machine.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_machine_driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_machine_driver.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_mount.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_mount_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_mount_entry.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_network.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_network_driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_network_driver.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_nfs_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_nfs_config.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_openldapconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_openldapconfig.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_packet_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_packet_config.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_password.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_password.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_physical_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_physical_host.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_port.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_port_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_port_rule.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_process_definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_process_definition.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_process_execution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_process_execution.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_process_instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_process_instance.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_project.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_project_member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_project_member.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_project_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_project_template.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_public_endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_public_endpoint.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_publish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_publish.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_pull_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_pull_task.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_register.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_registration_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_registration_token.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_registry.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_restart_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_restart_policy.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_scale_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_scale_policy.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_service.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_service_binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_service_binding.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_service_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_service_event.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_service_expose_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_service_expose_map.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_service_link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_service_link.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_service_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_service_log.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_service_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_service_proxy.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_service_restart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_service_restart.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_service_upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_service_upgrade.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_setting.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_snapshot.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_stack.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_stack_upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_stack_upgrade.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_state_transition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_state_transition.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_stats_access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_stats_access.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_storage_driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_storage_driver.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_storage_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_storage_pool.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_subnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_subnet.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_subscribe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_subscribe.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_target_port_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_target_port_rule.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_task.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_task_instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_task_instance.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_ulimit.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_virtual_machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_virtual_machine.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_volume.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/generated_volume_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/generated_volume_template.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/schemas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/schemas.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/go-rancher/v2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/go-rancher/v2/types.go -------------------------------------------------------------------------------- /vendor/github.com/rancher/kubernetes-agent/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/kubernetes-agent/.dockerignore -------------------------------------------------------------------------------- /vendor/github.com/rancher/kubernetes-agent/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/kubernetes-agent/.drone.yml -------------------------------------------------------------------------------- /vendor/github.com/rancher/kubernetes-agent/.gitignore: -------------------------------------------------------------------------------- 1 | /.dapper 2 | /bin 3 | *.swp 4 | /.trash-cache 5 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/kubernetes-agent/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/kubernetes-agent/.package: -------------------------------------------------------------------------------- 1 | github.com/rancher/kubernetes-agent 2 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/kubernetes-agent/.wrap-docker-args: -------------------------------------------------------------------------------- 1 | --privileged 2 | -------------------------------------------------------------------------------- /vendor/github.com/rancher/kubernetes-agent/Dockerfile.dapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/kubernetes-agent/Dockerfile.dapper -------------------------------------------------------------------------------- /vendor/github.com/rancher/kubernetes-agent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/kubernetes-agent/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rancher/kubernetes-agent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/kubernetes-agent/Makefile -------------------------------------------------------------------------------- /vendor/github.com/rancher/kubernetes-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/kubernetes-agent/README.md -------------------------------------------------------------------------------- /vendor/github.com/rancher/kubernetes-agent/trash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/rancher/kubernetes-agent/trash.conf -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/README.md -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/app.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/category.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/cli.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/command.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/context.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/errors.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/flag-types.json -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/flag.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/flag_generated.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/funcs.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/generate-flag-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/generate-flag-types -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/help.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/github.com/urfave/cli/runtests -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/README -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/flock_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_linux.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/mksysnum_linux.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_no_getwd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/types_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm_windows_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/asm_windows_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm_windows_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/asm_windows_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/security_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/security_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/syscall_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/zsyscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/zsyscall_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/ztypes_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/ztypes_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/ztypes_windows_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/ztypes_windows_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/ztypes_windows_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/golang.org/x/sys/windows/ztypes_windows_amd64.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/.generated_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/.generated_docs -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/CONTRIB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/CONTRIB.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/DESIGN.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/Makefile -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/Makefile.generated_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/Makefile.generated_files -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/Vagrantfile -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/labels.yaml -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/pkg/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/exec/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/pkg/util/exec/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/exec/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/pkg/util/exec/exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/exec/fake_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/pkg/util/exec/fake_exec.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/mount/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/pkg/util/mount/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/mount/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/pkg/util/mount/fake.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/mount/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/pkg/util/mount/mount.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/mount/mount_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/pkg/util/mount/mount_linux.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/mount/mount_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/pkg/util/mount/mount_unsupported.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/mount/nsenter_mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/pkg/util/mount/nsenter_mount.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/mount/nsenter_mount_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/storage/HEAD/vendor/k8s.io/kubernetes/pkg/util/mount/nsenter_mount_unsupported.go --------------------------------------------------------------------------------