├── .dockerignore ├── .gitignore ├── BUILDING.md ├── Dockerfile ├── Dockerfile.scratch ├── Jenkinsfile ├── LICENSE ├── Makefile ├── README.md ├── add-headers.sh ├── ansible ├── ansible.go └── variables.go ├── circle.yml ├── cmd ├── kill.go ├── pod.go ├── rc.go ├── root.go ├── run.go └── version.go ├── docs └── images │ ├── kansible-demo.png │ └── logo.png ├── glide.lock ├── glide.yaml ├── header.txt ├── headers.yml ├── k8s └── k8s.go ├── kansible.go ├── log └── log.go ├── ssh └── ssh.go ├── tools └── create-intellij-idea-golib.sh ├── vendor ├── bitbucket.org │ └── ww │ │ └── goautoneg │ │ ├── Makefile │ │ ├── README.txt │ │ ├── autoneg.go │ │ └── autoneg_test.go ├── github.com │ ├── Masterminds │ │ ├── semver │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── benchmark_test.go │ │ │ ├── collection.go │ │ │ ├── collection_test.go │ │ │ ├── constraints.go │ │ │ ├── constraints_test.go │ │ │ ├── doc.go │ │ │ ├── version.go │ │ │ └── version_test.go │ │ └── vcs │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bzr.go │ │ │ ├── bzr_test.go │ │ │ ├── git.go │ │ │ ├── git_test.go │ │ │ ├── hg.go │ │ │ ├── hg_test.go │ │ │ ├── repo.go │ │ │ ├── repo_test.go │ │ │ ├── svn.go │ │ │ ├── svn_test.go │ │ │ ├── vcs_local_lookup.go │ │ │ ├── vcs_remote_lookup.go │ │ │ └── vcs_remote_lookup_test.go │ ├── beorn7 │ │ └── perks │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── histogram │ │ │ ├── bench_test.go │ │ │ ├── histogram.go │ │ │ └── histogram_test.go │ │ │ ├── quantile │ │ │ ├── bench_test.go │ │ │ ├── example_test.go │ │ │ ├── exampledata.txt │ │ │ ├── stream.go │ │ │ └── stream_test.go │ │ │ └── topk │ │ │ ├── topk.go │ │ │ └── topk_test.go │ ├── blang │ │ └── semver │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── examples │ │ │ └── main.go │ │ │ ├── json.go │ │ │ ├── json_test.go │ │ │ ├── semver.go │ │ │ ├── semver_test.go │ │ │ ├── sort.go │ │ │ ├── sort_test.go │ │ │ ├── sql.go │ │ │ └── sql_test.go │ ├── cloudfoundry-incubator │ │ └── candiedyaml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── candiedyaml_suite_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── emitter.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── fixtures │ │ │ └── specification │ │ │ │ ├── example2_1.yaml │ │ │ │ ├── example2_10.yaml │ │ │ │ ├── example2_11.yaml │ │ │ │ ├── example2_12.yaml │ │ │ │ ├── example2_13.yaml │ │ │ │ ├── example2_14.yaml │ │ │ │ ├── example2_15.yaml │ │ │ │ ├── example2_15_dumped.yaml │ │ │ │ ├── example2_16.yaml │ │ │ │ ├── example2_17.yaml │ │ │ │ ├── example2_17_control.yaml │ │ │ │ ├── example2_17_hexesc.yaml │ │ │ │ ├── example2_17_quoted.yaml │ │ │ │ ├── example2_17_single.yaml │ │ │ │ ├── example2_17_tie_fighter.yaml │ │ │ │ ├── example2_17_unicode.yaml │ │ │ │ ├── example2_18.yaml │ │ │ │ ├── example2_19.yaml │ │ │ │ ├── example2_2.yaml │ │ │ │ ├── example2_20.yaml │ │ │ │ ├── example2_21.yaml │ │ │ │ ├── example2_22.yaml │ │ │ │ ├── example2_23.yaml │ │ │ │ ├── example2_23_application.yaml │ │ │ │ ├── example2_23_non_date.yaml │ │ │ │ ├── example2_23_picture.yaml │ │ │ │ ├── example2_24.yaml │ │ │ │ ├── example2_24_dumped.yaml │ │ │ │ ├── example2_25.yaml │ │ │ │ ├── example2_26.yaml │ │ │ │ ├── example2_27.yaml │ │ │ │ ├── example2_27_dumped.yaml │ │ │ │ ├── example2_28.yaml │ │ │ │ ├── example2_3.yaml │ │ │ │ ├── example2_4.yaml │ │ │ │ ├── example2_5.yaml │ │ │ │ ├── example2_6.yaml │ │ │ │ ├── example2_7.yaml │ │ │ │ ├── example2_8.yaml │ │ │ │ ├── example2_9.yaml │ │ │ │ ├── example_empty.yaml │ │ │ │ └── types │ │ │ │ ├── map.yaml │ │ │ │ ├── map_mixed_tags.yaml │ │ │ │ ├── merge.yaml │ │ │ │ ├── omap.yaml │ │ │ │ ├── pairs.yaml │ │ │ │ ├── seq.yaml │ │ │ │ ├── set.yaml │ │ │ │ ├── v.yaml │ │ │ │ └── value.yaml │ │ │ ├── libyaml-LICENSE │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ ├── reader.go │ │ │ ├── reader_test.go │ │ │ ├── resolver.go │ │ │ ├── resolver_test.go │ │ │ ├── run_parser.go │ │ │ ├── scanner.go │ │ │ ├── scanner_test.go │ │ │ ├── tags.go │ │ │ ├── writer.go │ │ │ ├── yaml_definesh.go │ │ │ ├── yaml_privateh.go │ │ │ └── yamlh.go │ ├── cpuguy83 │ │ └── go-md2man │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── go-md2man.1.md │ │ │ ├── md2man.go │ │ │ └── md2man │ │ │ ├── md2man.go │ │ │ └── roff.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cov_report.sh │ │ │ ├── spew │ │ │ ├── common.go │ │ │ ├── common_test.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── dump_test.go │ │ │ ├── dumpcgo_test.go │ │ │ ├── dumpnocgo_test.go │ │ │ ├── example_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── internal_test.go │ │ │ ├── spew.go │ │ │ ├── spew_test.go │ │ │ └── testdata │ │ │ │ └── dumpcgo.go │ │ │ └── test_coverage.txt │ ├── docker │ │ ├── docker │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.simple │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── ROADMAP.md │ │ │ ├── VERSION │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── api_unit_test.go │ │ │ │ ├── client │ │ │ │ │ ├── attach.go │ │ │ │ │ ├── build.go │ │ │ │ │ ├── cli.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── commit.go │ │ │ │ │ ├── cp.go │ │ │ │ │ ├── create.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── events.go │ │ │ │ │ ├── exec.go │ │ │ │ │ ├── export.go │ │ │ │ │ ├── help.go │ │ │ │ │ ├── hijack.go │ │ │ │ │ ├── history.go │ │ │ │ │ ├── images.go │ │ │ │ │ ├── import.go │ │ │ │ │ ├── info.go │ │ │ │ │ ├── inspect.go │ │ │ │ │ ├── kill.go │ │ │ │ │ ├── load.go │ │ │ │ │ ├── login.go │ │ │ │ │ ├── logout.go │ │ │ │ │ ├── logs.go │ │ │ │ │ ├── network.go │ │ │ │ │ ├── pause.go │ │ │ │ │ ├── port.go │ │ │ │ │ ├── ps.go │ │ │ │ │ ├── pull.go │ │ │ │ │ ├── push.go │ │ │ │ │ ├── rename.go │ │ │ │ │ ├── restart.go │ │ │ │ │ ├── rm.go │ │ │ │ │ ├── rmi.go │ │ │ │ │ ├── run.go │ │ │ │ │ ├── save.go │ │ │ │ │ ├── search.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── start.go │ │ │ │ │ ├── stats.go │ │ │ │ │ ├── stats_unit_test.go │ │ │ │ │ ├── stop.go │ │ │ │ │ ├── tag.go │ │ │ │ │ ├── top.go │ │ │ │ │ ├── unpause.go │ │ │ │ │ ├── utils.go │ │ │ │ │ ├── version.go │ │ │ │ │ └── wait.go │ │ │ │ ├── common.go │ │ │ │ ├── server │ │ │ │ │ ├── form.go │ │ │ │ │ ├── form_test.go │ │ │ │ │ ├── profiler.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── server_experimental.go │ │ │ │ │ ├── server_linux.go │ │ │ │ │ ├── server_linux_test.go │ │ │ │ │ ├── server_stub.go │ │ │ │ │ └── server_windows.go │ │ │ │ └── types │ │ │ │ │ ├── stats.go │ │ │ │ │ └── types.go │ │ │ ├── builder │ │ │ │ ├── bflag.go │ │ │ │ ├── bflag_test.go │ │ │ │ ├── command │ │ │ │ │ └── command.go │ │ │ │ ├── dispatchers.go │ │ │ │ ├── evaluator.go │ │ │ │ ├── internals.go │ │ │ │ ├── internals_linux.go │ │ │ │ ├── internals_windows.go │ │ │ │ ├── job.go │ │ │ │ ├── job_test.go │ │ │ │ ├── parser │ │ │ │ │ ├── dumper │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── json_test.go │ │ │ │ │ ├── line_parsers.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── parser_test.go │ │ │ │ │ ├── testfiles-negative │ │ │ │ │ │ ├── env_no_value │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── shykes-nested-json │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── testfiles │ │ │ │ │ │ ├── ADD-COPY-with-JSON │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── brimstone-consuldock │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── brimstone-docker-consul │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── continueIndent │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── cpuguy83-nagios │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── docker │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── env │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── escapes │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── flags │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── influxdb │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-json-inside-string-double │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-json-inside-string │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-single-quotes │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-unterminated-bracket │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── jeztah-invalid-json-unterminated-string │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── kartar-entrypoint-oddities │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── lk4d4-the-edge-case-generator │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── mail │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── multiple-volumes │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── mumble │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── nginx │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── tf2 │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ ├── weechat │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ │ └── znc │ │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ │ └── result │ │ │ │ │ └── utils.go │ │ │ │ ├── shell_parser.go │ │ │ │ ├── shell_parser_test.go │ │ │ │ ├── support.go │ │ │ │ ├── support_test.go │ │ │ │ └── words │ │ │ ├── cliconfig │ │ │ │ ├── config.go │ │ │ │ └── config_test.go │ │ │ ├── contrib │ │ │ │ ├── README │ │ │ │ ├── REVIEWERS │ │ │ │ ├── apparmor │ │ │ │ │ └── docker │ │ │ │ ├── builder │ │ │ │ │ ├── deb │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── debian-jessie │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── debian-stretch │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── debian-wheezy │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ ├── ubuntu-debootstrap-precise │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ubuntu-debootstrap-trusty │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ubuntu-debootstrap-utopic │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── ubuntu-debootstrap-vivid │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ └── ubuntu-debootstrap-wily │ │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── rpm │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── centos-7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── fedora-20 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── fedora-21 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── fedora-22 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ │ ├── generate.sh │ │ │ │ │ │ └── oraclelinux-7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ ├── check-config.sh │ │ │ │ ├── completion │ │ │ │ │ ├── REVIEWERS │ │ │ │ │ ├── bash │ │ │ │ │ │ └── docker │ │ │ │ │ ├── fish │ │ │ │ │ │ └── docker.fish │ │ │ │ │ └── zsh │ │ │ │ │ │ ├── REVIEWERS │ │ │ │ │ │ └── _docker │ │ │ │ ├── desktop-integration │ │ │ │ │ ├── README.md │ │ │ │ │ ├── chromium │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── gparted │ │ │ │ │ │ └── Dockerfile │ │ │ │ ├── docker-device-tool │ │ │ │ │ └── device_tool.go │ │ │ │ ├── dockerize-disk.sh │ │ │ │ ├── download-frozen-image.sh │ │ │ │ ├── host-integration │ │ │ │ │ ├── Dockerfile.dev │ │ │ │ │ ├── Dockerfile.min │ │ │ │ │ ├── manager.go │ │ │ │ │ ├── manager.sh │ │ │ │ │ └── manager │ │ │ │ │ │ ├── systemd │ │ │ │ │ │ └── upstart │ │ │ │ ├── httpserver │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── server.go │ │ │ │ ├── init │ │ │ │ │ ├── openrc │ │ │ │ │ │ ├── docker.confd │ │ │ │ │ │ └── docker.initd │ │ │ │ │ ├── systemd │ │ │ │ │ │ ├── REVIEWERS │ │ │ │ │ │ ├── docker.service │ │ │ │ │ │ └── docker.socket │ │ │ │ │ ├── sysvinit-debian │ │ │ │ │ │ ├── docker │ │ │ │ │ │ └── docker.default │ │ │ │ │ ├── sysvinit-redhat │ │ │ │ │ │ ├── docker │ │ │ │ │ │ └── docker.sysconfig │ │ │ │ │ └── upstart │ │ │ │ │ │ ├── REVIEWERS │ │ │ │ │ │ └── docker.conf │ │ │ │ ├── mkimage-alpine.sh │ │ │ │ ├── mkimage-arch-pacman.conf │ │ │ │ ├── mkimage-arch.sh │ │ │ │ ├── mkimage-busybox.sh │ │ │ │ ├── mkimage-crux.sh │ │ │ │ ├── mkimage-debootstrap.sh │ │ │ │ ├── mkimage-rinse.sh │ │ │ │ ├── mkimage-yum.sh │ │ │ │ ├── mkimage.sh │ │ │ │ ├── mkimage │ │ │ │ │ ├── .febootstrap-minimize │ │ │ │ │ ├── busybox-static │ │ │ │ │ ├── debootstrap │ │ │ │ │ ├── mageia-urpmi │ │ │ │ │ └── rinse │ │ │ │ ├── mkseccomp.pl │ │ │ │ ├── mkseccomp.sample │ │ │ │ ├── nuke-graph-directory.sh │ │ │ │ ├── project-stats.sh │ │ │ │ ├── report-issue.sh │ │ │ │ ├── reprepro │ │ │ │ │ └── suites.sh │ │ │ │ ├── syntax │ │ │ │ │ ├── kate │ │ │ │ │ │ └── Dockerfile.xml │ │ │ │ │ ├── nano │ │ │ │ │ │ ├── Dockerfile.nanorc │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── textmate │ │ │ │ │ │ ├── Docker.tmbundle │ │ │ │ │ │ │ ├── Preferences │ │ │ │ │ │ │ │ └── Dockerfile.tmPreferences │ │ │ │ │ │ │ ├── Syntaxes │ │ │ │ │ │ │ │ └── Dockerfile.tmLanguage │ │ │ │ │ │ │ └── info.plist │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── REVIEWERS │ │ │ │ │ └── vim │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── doc │ │ │ │ │ │ └── dockerfile.txt │ │ │ │ │ │ ├── ftdetect │ │ │ │ │ │ └── dockerfile.vim │ │ │ │ │ │ └── syntax │ │ │ │ │ │ └── dockerfile.vim │ │ │ │ ├── udev │ │ │ │ │ └── 80-docker.rules │ │ │ │ └── vagrant-docker │ │ │ │ │ └── README.md │ │ │ ├── daemon │ │ │ │ ├── README.md │ │ │ │ ├── archive.go │ │ │ │ ├── attach.go │ │ │ │ ├── changes.go │ │ │ │ ├── commit.go │ │ │ │ ├── config.go │ │ │ │ ├── config_experimental.go │ │ │ │ ├── config_linux.go │ │ │ │ ├── config_stub.go │ │ │ │ ├── config_windows.go │ │ │ │ ├── container.go │ │ │ │ ├── container_unit_test.go │ │ │ │ ├── container_unix.go │ │ │ │ ├── container_windows.go │ │ │ │ ├── create.go │ │ │ │ ├── daemon.go │ │ │ │ ├── daemon_aufs.go │ │ │ │ ├── daemon_btrfs.go │ │ │ │ ├── daemon_devicemapper.go │ │ │ │ ├── daemon_no_aufs.go │ │ │ │ ├── daemon_overlay.go │ │ │ │ ├── daemon_test.go │ │ │ │ ├── daemon_unit_test.go │ │ │ │ ├── daemon_unix.go │ │ │ │ ├── daemon_windows.go │ │ │ │ ├── daemon_zfs.go │ │ │ │ ├── debugtrap_unix.go │ │ │ │ ├── debugtrap_unsupported.go │ │ │ │ ├── debugtrap_windows.go │ │ │ │ ├── delete.go │ │ │ │ ├── events │ │ │ │ │ ├── events.go │ │ │ │ │ └── events_test.go │ │ │ │ ├── exec.go │ │ │ │ ├── exec_linux.go │ │ │ │ ├── exec_windows.go │ │ │ │ ├── execdriver │ │ │ │ │ ├── driver.go │ │ │ │ │ ├── driver_linux.go │ │ │ │ │ ├── execdrivers │ │ │ │ │ │ ├── execdrivers_linux.go │ │ │ │ │ │ └── execdrivers_windows.go │ │ │ │ │ ├── lxc │ │ │ │ │ │ ├── driver.go │ │ │ │ │ │ ├── info.go │ │ │ │ │ │ ├── info_test.go │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ ├── lxc_init_linux.go │ │ │ │ │ │ ├── lxc_init_unsupported.go │ │ │ │ │ │ ├── lxc_template.go │ │ │ │ │ │ └── lxc_template_unit_test.go │ │ │ │ │ ├── native │ │ │ │ │ │ ├── create.go │ │ │ │ │ │ ├── driver.go │ │ │ │ │ │ ├── driver_unsupported.go │ │ │ │ │ │ ├── driver_unsupported_nocgo.go │ │ │ │ │ │ ├── exec.go │ │ │ │ │ │ ├── info.go │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ └── template │ │ │ │ │ │ │ └── default_template.go │ │ │ │ │ ├── pipes.go │ │ │ │ │ ├── termconsole.go │ │ │ │ │ ├── utils.go │ │ │ │ │ └── windows │ │ │ │ │ │ ├── checkoptions.go │ │ │ │ │ │ ├── clean.go │ │ │ │ │ │ ├── exec.go │ │ │ │ │ │ ├── getpids.go │ │ │ │ │ │ ├── info.go │ │ │ │ │ │ ├── namedpipes.go │ │ │ │ │ │ ├── pauseunpause.go │ │ │ │ │ │ ├── run.go │ │ │ │ │ │ ├── stats.go │ │ │ │ │ │ ├── stdconsole.go │ │ │ │ │ │ ├── terminatekill.go │ │ │ │ │ │ ├── ttyconsole.go │ │ │ │ │ │ ├── unsupported.go │ │ │ │ │ │ └── windows.go │ │ │ │ ├── export.go │ │ │ │ ├── graphdriver │ │ │ │ │ ├── aufs │ │ │ │ │ │ ├── aufs.go │ │ │ │ │ │ ├── aufs_test.go │ │ │ │ │ │ ├── dirs.go │ │ │ │ │ │ ├── migrate.go │ │ │ │ │ │ ├── mount.go │ │ │ │ │ │ ├── mount_linux.go │ │ │ │ │ │ └── mount_unsupported.go │ │ │ │ │ ├── btrfs │ │ │ │ │ │ ├── btrfs.go │ │ │ │ │ │ ├── btrfs_test.go │ │ │ │ │ │ ├── dummy_unsupported.go │ │ │ │ │ │ ├── version.go │ │ │ │ │ │ ├── version_none.go │ │ │ │ │ │ └── version_test.go │ │ │ │ │ ├── devmapper │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── deviceset.go │ │ │ │ │ │ ├── devmapper_doc.go │ │ │ │ │ │ ├── devmapper_test.go │ │ │ │ │ │ ├── driver.go │ │ │ │ │ │ └── mount.go │ │ │ │ │ ├── driver.go │ │ │ │ │ ├── driver_linux.go │ │ │ │ │ ├── driver_unsupported.go │ │ │ │ │ ├── driver_windows.go │ │ │ │ │ ├── fsdiff.go │ │ │ │ │ ├── graphtest │ │ │ │ │ │ └── graphtest.go │ │ │ │ │ ├── overlay │ │ │ │ │ │ ├── copy.go │ │ │ │ │ │ ├── overlay.go │ │ │ │ │ │ ├── overlay_test.go │ │ │ │ │ │ └── overlay_unsupported.go │ │ │ │ │ ├── vfs │ │ │ │ │ │ ├── driver.go │ │ │ │ │ │ ├── driver_unsupported.go │ │ │ │ │ │ └── vfs_test.go │ │ │ │ │ ├── windows │ │ │ │ │ │ └── windows.go │ │ │ │ │ └── zfs │ │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ │ ├── zfs.go │ │ │ │ │ │ ├── zfs_freebsd.go │ │ │ │ │ │ ├── zfs_linux.go │ │ │ │ │ │ ├── zfs_test.go │ │ │ │ │ │ └── zfs_unsupported.go │ │ │ │ ├── history.go │ │ │ │ ├── image_delete.go │ │ │ │ ├── info.go │ │ │ │ ├── inspect.go │ │ │ │ ├── kill.go │ │ │ │ ├── list.go │ │ │ │ ├── logdrivers_linux.go │ │ │ │ ├── logdrivers_windows.go │ │ │ │ ├── logger │ │ │ │ │ ├── copier.go │ │ │ │ │ ├── copier_test.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── fluentd │ │ │ │ │ │ └── fluentd.go │ │ │ │ │ ├── gelf │ │ │ │ │ │ ├── gelf.go │ │ │ │ │ │ └── gelf_unsupported.go │ │ │ │ │ ├── journald │ │ │ │ │ │ ├── journald.go │ │ │ │ │ │ └── journald_unsupported.go │ │ │ │ │ ├── jsonfilelog │ │ │ │ │ │ ├── jsonfilelog.go │ │ │ │ │ │ └── jsonfilelog_test.go │ │ │ │ │ ├── logger.go │ │ │ │ │ └── syslog │ │ │ │ │ │ ├── syslog.go │ │ │ │ │ │ └── syslog_unsupported.go │ │ │ │ ├── logs.go │ │ │ │ ├── monitor.go │ │ │ │ ├── network │ │ │ │ │ └── settings.go │ │ │ │ ├── pause.go │ │ │ │ ├── rename.go │ │ │ │ ├── resize.go │ │ │ │ ├── restart.go │ │ │ │ ├── start.go │ │ │ │ ├── state.go │ │ │ │ ├── state_test.go │ │ │ │ ├── stats.go │ │ │ │ ├── stats_collector_unix.go │ │ │ │ ├── stats_collector_windows.go │ │ │ │ ├── stats_linux.go │ │ │ │ ├── stats_windows.go │ │ │ │ ├── stop.go │ │ │ │ ├── top.go │ │ │ │ ├── unpause.go │ │ │ │ ├── utils_nounix.go │ │ │ │ ├── utils_test.go │ │ │ │ ├── utils_unix.go │ │ │ │ ├── volumes.go │ │ │ │ ├── volumes_linux.go │ │ │ │ ├── volumes_linux_unit_test.go │ │ │ │ ├── volumes_unit_test.go │ │ │ │ ├── volumes_windows.go │ │ │ │ └── wait.go │ │ │ ├── docker │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ ├── daemon.go │ │ │ │ ├── daemon_unix.go │ │ │ │ ├── daemon_windows.go │ │ │ │ ├── docker.go │ │ │ │ ├── docker_windows.go │ │ │ │ ├── flags.go │ │ │ │ └── log.go │ │ │ ├── dockerinit │ │ │ │ └── dockerinit.go │ │ │ ├── docs │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── article-img │ │ │ │ │ ├── architecture.svg │ │ │ │ │ ├── ipv6_basic_host_config.gliffy │ │ │ │ │ ├── ipv6_basic_host_config.svg │ │ │ │ │ ├── ipv6_ndp_proxying.gliffy │ │ │ │ │ ├── ipv6_ndp_proxying.svg │ │ │ │ │ ├── ipv6_routed_network_example.gliffy │ │ │ │ │ ├── ipv6_routed_network_example.svg │ │ │ │ │ ├── ipv6_slash64_subnet_config.gliffy │ │ │ │ │ ├── ipv6_slash64_subnet_config.svg │ │ │ │ │ ├── ipv6_switched_network_example.gliffy │ │ │ │ │ └── ipv6_switched_network_example.svg │ │ │ │ ├── articles │ │ │ │ │ ├── ambassador_pattern_linking.md │ │ │ │ │ ├── b2d_volume_images │ │ │ │ │ │ ├── add_cd.png │ │ │ │ │ │ ├── add_new_controller.png │ │ │ │ │ │ ├── add_volume.png │ │ │ │ │ │ ├── boot_order.png │ │ │ │ │ │ ├── gparted.png │ │ │ │ │ │ ├── gparted2.png │ │ │ │ │ │ └── verify.png │ │ │ │ │ ├── b2d_volume_resize.md │ │ │ │ │ ├── baseimages.md │ │ │ │ │ ├── basics.md │ │ │ │ │ ├── certificates.md │ │ │ │ │ ├── cfengine_process_management.md │ │ │ │ │ ├── chef.md │ │ │ │ │ ├── configuring.md │ │ │ │ │ ├── dockerfile_best-practices.md │ │ │ │ │ ├── dsc.md │ │ │ │ │ ├── host_integration.md │ │ │ │ │ ├── https.md │ │ │ │ │ ├── https │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── make_certs.sh │ │ │ │ │ │ └── parsedocs.sh │ │ │ │ │ ├── networking.md │ │ │ │ │ ├── puppet.md │ │ │ │ │ ├── registry_mirror.md │ │ │ │ │ ├── runmetrics.md │ │ │ │ │ ├── security.md │ │ │ │ │ ├── systemd.md │ │ │ │ │ └── using_supervisord.md │ │ │ │ ├── docker-hub │ │ │ │ │ ├── accounts.md │ │ │ │ │ ├── builds.md │ │ │ │ │ ├── home.md │ │ │ │ │ ├── hub-images │ │ │ │ │ │ ├── bb_hooks.png │ │ │ │ │ │ ├── bb_menu.png │ │ │ │ │ │ ├── bb_post-hook.png │ │ │ │ │ │ ├── build-trigger.png │ │ │ │ │ │ ├── dashboard.png │ │ │ │ │ │ ├── deploy_key.png │ │ │ │ │ │ ├── gh-check-admin-org-dh-app-access.png │ │ │ │ │ │ ├── gh-check-user-org-dh-app-access.png │ │ │ │ │ │ ├── gh_add_ssh_user_key.png │ │ │ │ │ │ ├── gh_docker-service.png │ │ │ │ │ │ ├── gh_menu.png │ │ │ │ │ │ ├── gh_org_members.png │ │ │ │ │ │ ├── gh_repo_deploy_key.png │ │ │ │ │ │ ├── gh_service_hook.png │ │ │ │ │ │ ├── gh_settings.png │ │ │ │ │ │ ├── gh_team_members.png │ │ │ │ │ │ ├── groups.png │ │ │ │ │ │ ├── hub.png │ │ │ │ │ │ ├── invite.png │ │ │ │ │ │ ├── org-repo-collaborators.png │ │ │ │ │ │ ├── orgs.png │ │ │ │ │ │ └── repos.png │ │ │ │ │ ├── index.md │ │ │ │ │ ├── official_repos.md │ │ │ │ │ ├── repos.md │ │ │ │ │ └── userguide.md │ │ │ │ ├── examples │ │ │ │ │ ├── apt-cacher-ng.Dockerfile │ │ │ │ │ ├── apt-cacher-ng.md │ │ │ │ │ ├── couchdb_data_volumes.md │ │ │ │ │ ├── mongodb.md │ │ │ │ │ ├── mongodb │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── nodejs_web_app.md │ │ │ │ │ ├── postgresql_service.Dockerfile │ │ │ │ │ ├── postgresql_service.md │ │ │ │ │ ├── running_redis_service.md │ │ │ │ │ ├── running_riak_service.Dockerfile │ │ │ │ │ ├── running_riak_service.md │ │ │ │ │ ├── running_ssh_service.Dockerfile │ │ │ │ │ ├── running_ssh_service.md │ │ │ │ │ └── supervisord.conf │ │ │ │ ├── extend │ │ │ │ │ ├── index.md │ │ │ │ │ ├── plugin_api.md │ │ │ │ │ ├── plugins.md │ │ │ │ │ └── plugins_volume.md │ │ │ │ ├── installation │ │ │ │ │ ├── SUSE.md │ │ │ │ │ ├── amazon.md │ │ │ │ │ ├── archlinux.md │ │ │ │ │ ├── azure.md │ │ │ │ │ ├── binaries.md │ │ │ │ │ ├── centos.md │ │ │ │ │ ├── cruxlinux.md │ │ │ │ │ ├── debian.md │ │ │ │ │ ├── fedora.md │ │ │ │ │ ├── frugalware.md │ │ │ │ │ ├── gentoolinux.md │ │ │ │ │ ├── google.md │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bad_host.png │ │ │ │ │ │ ├── cool_view.png │ │ │ │ │ │ ├── good_host.png │ │ │ │ │ │ ├── kitematic.png │ │ │ │ │ │ ├── linux_docker_host.svg │ │ │ │ │ │ ├── mac_docker_host.svg │ │ │ │ │ │ ├── newsite_view.png │ │ │ │ │ │ ├── osx-installer.png │ │ │ │ │ │ ├── win_docker_host.svg │ │ │ │ │ │ ├── windows-boot2docker-cmd.png │ │ │ │ │ │ ├── windows-boot2docker-powershell.png │ │ │ │ │ │ ├── windows-boot2docker-start.png │ │ │ │ │ │ └── windows-installer.png │ │ │ │ │ ├── index.md │ │ │ │ │ ├── joyent.md │ │ │ │ │ ├── mac.md │ │ │ │ │ ├── oracle.md │ │ │ │ │ ├── rackspace.md │ │ │ │ │ ├── rhel.md │ │ │ │ │ ├── softlayer.md │ │ │ │ │ ├── ubuntulinux.md │ │ │ │ │ └── windows.md │ │ │ │ ├── introduction │ │ │ │ │ └── understanding-docker.md │ │ │ │ ├── misc │ │ │ │ │ ├── faq.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── release-notes.md │ │ │ │ │ └── search.md │ │ │ │ ├── project │ │ │ │ │ ├── advanced-contributing.md │ │ │ │ │ ├── coding-style.md │ │ │ │ │ ├── create-pr.md │ │ │ │ │ ├── doc-style.md │ │ │ │ │ ├── find-an-issue.md │ │ │ │ │ ├── get-help.md │ │ │ │ │ ├── images │ │ │ │ │ │ ├── box.png │ │ │ │ │ │ ├── branch-sig.png │ │ │ │ │ │ ├── checked.png │ │ │ │ │ │ ├── commits_expected.png │ │ │ │ │ │ ├── contributor-edit.png │ │ │ │ │ │ ├── copy_url.png │ │ │ │ │ │ ├── easy_issue.png │ │ │ │ │ │ ├── existing_issue.png │ │ │ │ │ │ ├── existing_issue.snagproj │ │ │ │ │ │ ├── fixes_num.png │ │ │ │ │ │ ├── fork_docker.png │ │ │ │ │ │ ├── fresh_container.png │ │ │ │ │ │ ├── git_bash.png │ │ │ │ │ │ ├── give_try.png │ │ │ │ │ │ ├── gordon.jpeg │ │ │ │ │ │ ├── in_room.png │ │ │ │ │ │ ├── include_gcc.png │ │ │ │ │ │ ├── irc_after_login.png │ │ │ │ │ │ ├── irc_chat.png │ │ │ │ │ │ ├── irc_connect.png │ │ │ │ │ │ ├── irc_login.png │ │ │ │ │ │ ├── issue_list.png │ │ │ │ │ │ ├── latest_commits.png │ │ │ │ │ │ ├── list_example.png │ │ │ │ │ │ ├── locate_branch.png │ │ │ │ │ │ ├── path_variable.png │ │ │ │ │ │ ├── proposal.png │ │ │ │ │ │ ├── proposal.snagproj │ │ │ │ │ │ ├── pull_request_made.png │ │ │ │ │ │ ├── red_notice.png │ │ │ │ │ │ ├── register_email.png │ │ │ │ │ │ ├── register_nic.png │ │ │ │ │ │ ├── three_running.png │ │ │ │ │ │ ├── three_terms.png │ │ │ │ │ │ ├── to_from_pr.png │ │ │ │ │ │ ├── windows-env-vars.png │ │ │ │ │ │ └── windows-mingw.png │ │ │ │ │ ├── make-a-contribution.md │ │ │ │ │ ├── review-pr.md │ │ │ │ │ ├── set-up-dev-env.md │ │ │ │ │ ├── set-up-git.md │ │ │ │ │ ├── software-req-win.md │ │ │ │ │ ├── software-required.md │ │ │ │ │ ├── test-and-docs.md │ │ │ │ │ ├── who-written-for.md │ │ │ │ │ └── work-issue.md │ │ │ │ ├── reference │ │ │ │ │ ├── api │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── _static │ │ │ │ │ │ │ └── io_oauth_authorization_page.png │ │ │ │ │ │ ├── docker-io_api.md │ │ │ │ │ │ ├── docker_io_accounts_api.md │ │ │ │ │ │ ├── docker_remote_api.md │ │ │ │ │ │ ├── docker_remote_api_v1.0.md │ │ │ │ │ │ ├── docker_remote_api_v1.1.md │ │ │ │ │ │ ├── docker_remote_api_v1.10.md │ │ │ │ │ │ ├── docker_remote_api_v1.11.md │ │ │ │ │ │ ├── docker_remote_api_v1.12.md │ │ │ │ │ │ ├── docker_remote_api_v1.13.md │ │ │ │ │ │ ├── docker_remote_api_v1.14.md │ │ │ │ │ │ ├── docker_remote_api_v1.15.md │ │ │ │ │ │ ├── docker_remote_api_v1.16.md │ │ │ │ │ │ ├── docker_remote_api_v1.17.md │ │ │ │ │ │ ├── docker_remote_api_v1.18.md │ │ │ │ │ │ ├── docker_remote_api_v1.19.md │ │ │ │ │ │ ├── docker_remote_api_v1.2.md │ │ │ │ │ │ ├── docker_remote_api_v1.20.md │ │ │ │ │ │ ├── docker_remote_api_v1.3.md │ │ │ │ │ │ ├── docker_remote_api_v1.4.md │ │ │ │ │ │ ├── docker_remote_api_v1.5.md │ │ │ │ │ │ ├── docker_remote_api_v1.6.md │ │ │ │ │ │ ├── docker_remote_api_v1.7.md │ │ │ │ │ │ ├── docker_remote_api_v1.8.md │ │ │ │ │ │ ├── docker_remote_api_v1.9.md │ │ │ │ │ │ ├── hub_registry_spec.md │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── event_state.gliffy │ │ │ │ │ │ │ └── event_state.png │ │ │ │ │ │ ├── registry_api.md │ │ │ │ │ │ ├── registry_api_client_libraries.md │ │ │ │ │ │ └── remote_api_client_libraries.md │ │ │ │ │ ├── builder.md │ │ │ │ │ ├── commandline │ │ │ │ │ │ ├── attach.md │ │ │ │ │ │ ├── build.md │ │ │ │ │ │ ├── cli.md │ │ │ │ │ │ ├── commit.md │ │ │ │ │ │ ├── cp.md │ │ │ │ │ │ ├── create.md │ │ │ │ │ │ ├── daemon.md │ │ │ │ │ │ ├── diff.md │ │ │ │ │ │ ├── docker_images.gif │ │ │ │ │ │ ├── events.md │ │ │ │ │ │ ├── exec.md │ │ │ │ │ │ ├── export.md │ │ │ │ │ │ ├── history.md │ │ │ │ │ │ ├── images.md │ │ │ │ │ │ ├── import.md │ │ │ │ │ │ ├── info.md │ │ │ │ │ │ ├── inspect.md │ │ │ │ │ │ ├── kill.md │ │ │ │ │ │ ├── load.md │ │ │ │ │ │ ├── login.md │ │ │ │ │ │ ├── logout.md │ │ │ │ │ │ ├── logs.md │ │ │ │ │ │ ├── pause.md │ │ │ │ │ │ ├── port.md │ │ │ │ │ │ ├── ps.md │ │ │ │ │ │ ├── pull.md │ │ │ │ │ │ ├── push.md │ │ │ │ │ │ ├── rename.md │ │ │ │ │ │ ├── restart.md │ │ │ │ │ │ ├── rm.md │ │ │ │ │ │ ├── rmi.md │ │ │ │ │ │ ├── run.md │ │ │ │ │ │ ├── save.md │ │ │ │ │ │ ├── search.md │ │ │ │ │ │ ├── start.md │ │ │ │ │ │ ├── stats.md │ │ │ │ │ │ ├── stop.md │ │ │ │ │ │ ├── tag.md │ │ │ │ │ │ ├── top.md │ │ │ │ │ │ ├── unpause.md │ │ │ │ │ │ ├── version.md │ │ │ │ │ │ └── wait.md │ │ │ │ │ ├── glossary.md │ │ │ │ │ ├── logging │ │ │ │ │ │ ├── fluentd.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ └── journald.md │ │ │ │ │ └── run.md │ │ │ │ ├── static_files │ │ │ │ │ ├── README.md │ │ │ │ │ ├── contributors.png │ │ │ │ │ ├── docker-logo-compressed.png │ │ │ │ │ ├── docker_pull_chart.png │ │ │ │ │ ├── docker_push_chart.png │ │ │ │ │ └── dockerlogo-v.png │ │ │ │ ├── terms │ │ │ │ │ ├── container.md │ │ │ │ │ ├── filesystem.md │ │ │ │ │ ├── image.md │ │ │ │ │ ├── images │ │ │ │ │ │ ├── docker-filesystems-busyboxrw.png │ │ │ │ │ │ ├── docker-filesystems-debian.png │ │ │ │ │ │ ├── docker-filesystems-debianrw.png │ │ │ │ │ │ ├── docker-filesystems-generic.png │ │ │ │ │ │ ├── docker-filesystems-multilayer.png │ │ │ │ │ │ ├── docker-filesystems-multiroot.png │ │ │ │ │ │ └── docker-filesystems.svg │ │ │ │ │ ├── layer.md │ │ │ │ │ ├── registry.md │ │ │ │ │ └── repository.md │ │ │ │ ├── touch-up.sh │ │ │ │ └── userguide │ │ │ │ │ ├── dockerhub.md │ │ │ │ │ ├── dockerimages.md │ │ │ │ │ ├── dockerizing.md │ │ │ │ │ ├── dockerlinks.md │ │ │ │ │ ├── dockerrepos.md │ │ │ │ │ ├── dockervolumes.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── labels-custom-metadata.md │ │ │ │ │ ├── level1.md │ │ │ │ │ ├── level2.md │ │ │ │ │ ├── login-web.png │ │ │ │ │ ├── register-web.png │ │ │ │ │ ├── search.png │ │ │ │ │ ├── usingdocker.md │ │ │ │ │ └── webapp1.png │ │ │ ├── experimental │ │ │ │ ├── README.md │ │ │ │ ├── compose_swarm_networking.md │ │ │ │ ├── networking.md │ │ │ │ ├── networking_api.md │ │ │ │ └── plugins_network.md │ │ │ ├── graph │ │ │ │ ├── export.go │ │ │ │ ├── graph.go │ │ │ │ ├── graph_test.go │ │ │ │ ├── graph_unix.go │ │ │ │ ├── graph_windows.go │ │ │ │ ├── history.go │ │ │ │ ├── import.go │ │ │ │ ├── list.go │ │ │ │ ├── load.go │ │ │ │ ├── load_unsupported.go │ │ │ │ ├── mutex.go │ │ │ │ ├── pools_test.go │ │ │ │ ├── pull.go │ │ │ │ ├── pull_v1.go │ │ │ │ ├── pull_v2.go │ │ │ │ ├── push.go │ │ │ │ ├── push_v1.go │ │ │ │ ├── push_v2.go │ │ │ │ ├── registry.go │ │ │ │ ├── service.go │ │ │ │ ├── tags.go │ │ │ │ ├── tags │ │ │ │ │ ├── tags.go │ │ │ │ │ └── tags_unit_test.go │ │ │ │ └── tags_unit_test.go │ │ │ ├── hack │ │ │ │ ├── .vendor-helpers.sh │ │ │ │ ├── dind │ │ │ │ ├── generate-authors.sh │ │ │ │ ├── install.sh │ │ │ │ ├── make.sh │ │ │ │ ├── make │ │ │ │ │ ├── .build-deb │ │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── docker-engine.bash-completion │ │ │ │ │ │ ├── docker-engine.docker.default │ │ │ │ │ │ ├── docker-engine.docker.init │ │ │ │ │ │ ├── docker-engine.docker.upstart │ │ │ │ │ │ ├── docker-engine.install │ │ │ │ │ │ ├── docker-engine.manpages │ │ │ │ │ │ ├── docker-engine.postinst │ │ │ │ │ │ ├── docker-engine.udev │ │ │ │ │ │ ├── docs │ │ │ │ │ │ └── rules │ │ │ │ │ ├── .build-rpm │ │ │ │ │ │ └── docker-engine.spec │ │ │ │ │ ├── .dockerinit │ │ │ │ │ ├── .dockerinit-gccgo │ │ │ │ │ ├── .ensure-emptyfs │ │ │ │ │ ├── .ensure-frozen-images │ │ │ │ │ ├── .ensure-httpserver │ │ │ │ │ ├── .go-autogen │ │ │ │ │ ├── .go-compile-test-dir │ │ │ │ │ ├── .integration-daemon-setup │ │ │ │ │ ├── .integration-daemon-start │ │ │ │ │ ├── .integration-daemon-stop │ │ │ │ │ ├── .resources-windows │ │ │ │ │ │ ├── docker.exe.manifest │ │ │ │ │ │ ├── docker.ico │ │ │ │ │ │ └── docker.png │ │ │ │ │ ├── .validate │ │ │ │ │ ├── README.md │ │ │ │ │ ├── binary │ │ │ │ │ ├── build-deb │ │ │ │ │ ├── build-rpm │ │ │ │ │ ├── cover │ │ │ │ │ ├── cross │ │ │ │ │ ├── dynbinary │ │ │ │ │ ├── dyngccgo │ │ │ │ │ ├── gccgo │ │ │ │ │ ├── release-deb │ │ │ │ │ ├── release-rpm │ │ │ │ │ ├── sign-repos │ │ │ │ │ ├── test-docker-py │ │ │ │ │ ├── test-integration-cli │ │ │ │ │ ├── test-unit │ │ │ │ │ ├── tgz │ │ │ │ │ ├── ubuntu │ │ │ │ │ ├── validate-dco │ │ │ │ │ ├── validate-gofmt │ │ │ │ │ ├── validate-lint │ │ │ │ │ ├── validate-pkg │ │ │ │ │ ├── validate-test │ │ │ │ │ ├── validate-toml │ │ │ │ │ └── validate-vet │ │ │ │ ├── release.sh │ │ │ │ └── vendor.sh │ │ │ ├── image │ │ │ │ ├── image.go │ │ │ │ └── spec │ │ │ │ │ └── v1.md │ │ │ ├── integration-cli │ │ │ │ ├── check_test.go │ │ │ │ ├── docker_api_attach_test.go │ │ │ │ ├── docker_api_containers_test.go │ │ │ │ ├── docker_api_events_test.go │ │ │ │ ├── docker_api_exec_resize_test.go │ │ │ │ ├── docker_api_exec_test.go │ │ │ │ ├── docker_api_images_test.go │ │ │ │ ├── docker_api_info_test.go │ │ │ │ ├── docker_api_inspect_test.go │ │ │ │ ├── docker_api_logs_test.go │ │ │ │ ├── docker_api_network_test.go │ │ │ │ ├── docker_api_resize_test.go │ │ │ │ ├── docker_api_service_test.go │ │ │ │ ├── docker_api_stats_test.go │ │ │ │ ├── docker_api_test.go │ │ │ │ ├── docker_api_version_test.go │ │ │ │ ├── docker_cli_attach_test.go │ │ │ │ ├── docker_cli_attach_unix_test.go │ │ │ │ ├── docker_cli_build_test.go │ │ │ │ ├── docker_cli_build_unix_test.go │ │ │ │ ├── docker_cli_by_digest_test.go │ │ │ │ ├── docker_cli_commit_test.go │ │ │ │ ├── docker_cli_config_test.go │ │ │ │ ├── docker_cli_cp_from_container_test.go │ │ │ │ ├── docker_cli_cp_test.go │ │ │ │ ├── docker_cli_cp_to_container_test.go │ │ │ │ ├── docker_cli_cp_utils.go │ │ │ │ ├── docker_cli_create_test.go │ │ │ │ ├── docker_cli_daemon_experimental_test.go │ │ │ │ ├── docker_cli_daemon_test.go │ │ │ │ ├── docker_cli_diff_test.go │ │ │ │ ├── docker_cli_events_test.go │ │ │ │ ├── docker_cli_events_unix_test.go │ │ │ │ ├── docker_cli_exec_test.go │ │ │ │ ├── docker_cli_exec_unix_test.go │ │ │ │ ├── docker_cli_experimental_test.go │ │ │ │ ├── docker_cli_export_import_test.go │ │ │ │ ├── docker_cli_help_test.go │ │ │ │ ├── docker_cli_history_test.go │ │ │ │ ├── docker_cli_images_test.go │ │ │ │ ├── docker_cli_import_test.go │ │ │ │ ├── docker_cli_info_test.go │ │ │ │ ├── docker_cli_inspect_experimental_test.go │ │ │ │ ├── docker_cli_inspect_test.go │ │ │ │ ├── docker_cli_kill_test.go │ │ │ │ ├── docker_cli_links_test.go │ │ │ │ ├── docker_cli_links_unix_test.go │ │ │ │ ├── docker_cli_login_test.go │ │ │ │ ├── docker_cli_logs_test.go │ │ │ │ ├── docker_cli_nat_test.go │ │ │ │ ├── docker_cli_network_test.go │ │ │ │ ├── docker_cli_pause_test.go │ │ │ │ ├── docker_cli_port_test.go │ │ │ │ ├── docker_cli_port_unix_test.go │ │ │ │ ├── docker_cli_proxy_test.go │ │ │ │ ├── docker_cli_ps_test.go │ │ │ │ ├── docker_cli_pull_test.go │ │ │ │ ├── docker_cli_push_test.go │ │ │ │ ├── docker_cli_rename_test.go │ │ │ │ ├── docker_cli_restart_test.go │ │ │ │ ├── docker_cli_rm_test.go │ │ │ │ ├── docker_cli_rmi_test.go │ │ │ │ ├── docker_cli_run_test.go │ │ │ │ ├── docker_cli_run_unix_test.go │ │ │ │ ├── docker_cli_save_load_test.go │ │ │ │ ├── docker_cli_save_load_unix_test.go │ │ │ │ ├── docker_cli_search_test.go │ │ │ │ ├── docker_cli_service_test.go │ │ │ │ ├── docker_cli_start_test.go │ │ │ │ ├── docker_cli_start_volume_driver_unix_test.go │ │ │ │ ├── docker_cli_stats_test.go │ │ │ │ ├── docker_cli_tag_test.go │ │ │ │ ├── docker_cli_top_test.go │ │ │ │ ├── docker_cli_version_test.go │ │ │ │ ├── docker_cli_wait_test.go │ │ │ │ ├── docker_test_vars.go │ │ │ │ ├── docker_test_vars_cli.go │ │ │ │ ├── docker_test_vars_daemon.go │ │ │ │ ├── docker_utils.go │ │ │ │ ├── fixtures │ │ │ │ │ └── https │ │ │ │ │ │ ├── ca.pem │ │ │ │ │ │ ├── client-cert.pem │ │ │ │ │ │ ├── client-key.pem │ │ │ │ │ │ ├── client-rogue-cert.pem │ │ │ │ │ │ ├── client-rogue-key.pem │ │ │ │ │ │ ├── server-cert.pem │ │ │ │ │ │ ├── server-key.pem │ │ │ │ │ │ ├── server-rogue-cert.pem │ │ │ │ │ │ └── server-rogue-key.pem │ │ │ │ ├── registry.go │ │ │ │ ├── requirements.go │ │ │ │ ├── requirements_unix.go │ │ │ │ ├── test_vars_exec.go │ │ │ │ ├── test_vars_noexec.go │ │ │ │ ├── test_vars_unix.go │ │ │ │ ├── test_vars_windows.go │ │ │ │ └── utils.go │ │ │ ├── links │ │ │ │ ├── links.go │ │ │ │ └── links_test.go │ │ │ ├── man │ │ │ │ ├── Dockerfile │ │ │ │ ├── Dockerfile.5.md │ │ │ │ ├── README.md │ │ │ │ ├── docker-attach.1.md │ │ │ │ ├── docker-build.1.md │ │ │ │ ├── docker-commit.1.md │ │ │ │ ├── docker-cp.1.md │ │ │ │ ├── docker-create.1.md │ │ │ │ ├── docker-diff.1.md │ │ │ │ ├── docker-events.1.md │ │ │ │ ├── docker-exec.1.md │ │ │ │ ├── docker-export.1.md │ │ │ │ ├── docker-history.1.md │ │ │ │ ├── docker-images.1.md │ │ │ │ ├── docker-import.1.md │ │ │ │ ├── docker-info.1.md │ │ │ │ ├── docker-inspect.1.md │ │ │ │ ├── docker-kill.1.md │ │ │ │ ├── docker-load.1.md │ │ │ │ ├── docker-login.1.md │ │ │ │ ├── docker-logout.1.md │ │ │ │ ├── docker-logs.1.md │ │ │ │ ├── docker-pause.1.md │ │ │ │ ├── docker-port.1.md │ │ │ │ ├── docker-ps.1.md │ │ │ │ ├── docker-pull.1.md │ │ │ │ ├── docker-push.1.md │ │ │ │ ├── docker-rename.1.md │ │ │ │ ├── docker-restart.1.md │ │ │ │ ├── docker-rm.1.md │ │ │ │ ├── docker-rmi.1.md │ │ │ │ ├── docker-run.1.md │ │ │ │ ├── docker-save.1.md │ │ │ │ ├── docker-search.1.md │ │ │ │ ├── docker-start.1.md │ │ │ │ ├── docker-stats.1.md │ │ │ │ ├── docker-stop.1.md │ │ │ │ ├── docker-tag.1.md │ │ │ │ ├── docker-top.1.md │ │ │ │ ├── docker-unpause.1.md │ │ │ │ ├── docker-version.1.md │ │ │ │ ├── docker-wait.1.md │ │ │ │ ├── docker.1.md │ │ │ │ └── md2man-all.sh │ │ │ ├── opts │ │ │ │ ├── envfile.go │ │ │ │ ├── envfile_test.go │ │ │ │ ├── ip.go │ │ │ │ ├── ip_test.go │ │ │ │ ├── opts.go │ │ │ │ ├── opts_test.go │ │ │ │ ├── ulimit.go │ │ │ │ └── ulimit_test.go │ │ │ ├── pkg │ │ │ │ ├── README.md │ │ │ │ ├── archive │ │ │ │ │ ├── README.md │ │ │ │ │ ├── archive.go │ │ │ │ │ ├── archive_test.go │ │ │ │ │ ├── archive_unix.go │ │ │ │ │ ├── archive_unix_test.go │ │ │ │ │ ├── archive_windows.go │ │ │ │ │ ├── archive_windows_test.go │ │ │ │ │ ├── changes.go │ │ │ │ │ ├── changes_linux.go │ │ │ │ │ ├── changes_other.go │ │ │ │ │ ├── changes_posix_test.go │ │ │ │ │ ├── changes_test.go │ │ │ │ │ ├── changes_unix.go │ │ │ │ │ ├── changes_windows.go │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── copy_test.go │ │ │ │ │ ├── diff.go │ │ │ │ │ ├── diff_test.go │ │ │ │ │ ├── example_changes.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ └── broken.tar │ │ │ │ │ ├── time_linux.go │ │ │ │ │ ├── time_unsupported.go │ │ │ │ │ ├── utils_test.go │ │ │ │ │ ├── wrap.go │ │ │ │ │ └── wrap_test.go │ │ │ │ ├── broadcastwriter │ │ │ │ │ ├── broadcastwriter.go │ │ │ │ │ └── broadcastwriter_test.go │ │ │ │ ├── chrootarchive │ │ │ │ │ ├── archive.go │ │ │ │ │ ├── archive_test.go │ │ │ │ │ ├── archive_unix.go │ │ │ │ │ ├── archive_windows.go │ │ │ │ │ ├── diff_unix.go │ │ │ │ │ ├── diff_windows.go │ │ │ │ │ ├── init_unix.go │ │ │ │ │ └── init_windows.go │ │ │ │ ├── devicemapper │ │ │ │ │ ├── attach_loopback.go │ │ │ │ │ ├── devmapper.go │ │ │ │ │ ├── devmapper_log.go │ │ │ │ │ ├── devmapper_wrapper.go │ │ │ │ │ ├── devmapper_wrapper_deferred_remove.go │ │ │ │ │ ├── devmapper_wrapper_no_deferred_remove.go │ │ │ │ │ ├── ioctl.go │ │ │ │ │ └── log.go │ │ │ │ ├── directory │ │ │ │ │ ├── directory_linux.go │ │ │ │ │ ├── directory_test.go │ │ │ │ │ └── directory_windows.go │ │ │ │ ├── fileutils │ │ │ │ │ ├── fileutils.go │ │ │ │ │ └── fileutils_test.go │ │ │ │ ├── graphdb │ │ │ │ │ ├── conn_sqlite3.go │ │ │ │ │ ├── conn_sqlite3_unix.go │ │ │ │ │ ├── conn_sqlite3_windows.go │ │ │ │ │ ├── conn_unsupported.go │ │ │ │ │ ├── graphdb.go │ │ │ │ │ ├── graphdb_test.go │ │ │ │ │ ├── sort.go │ │ │ │ │ ├── sort_test.go │ │ │ │ │ └── utils.go │ │ │ │ ├── homedir │ │ │ │ │ ├── homedir.go │ │ │ │ │ └── homedir_test.go │ │ │ │ ├── httputils │ │ │ │ │ ├── httputils.go │ │ │ │ │ ├── mimetype.go │ │ │ │ │ ├── resumablerequestreader.go │ │ │ │ │ └── resumablerequestreader_test.go │ │ │ │ ├── ioutils │ │ │ │ │ ├── fmt.go │ │ │ │ │ ├── fmt_test.go │ │ │ │ │ ├── readers.go │ │ │ │ │ ├── readers_test.go │ │ │ │ │ ├── scheduler.go │ │ │ │ │ ├── scheduler_gccgo.go │ │ │ │ │ ├── writeflusher.go │ │ │ │ │ ├── writers.go │ │ │ │ │ └── writers_test.go │ │ │ │ ├── jsonlog │ │ │ │ │ ├── jsonlog.go │ │ │ │ │ ├── jsonlog_marshalling.go │ │ │ │ │ ├── jsonlog_marshalling_test.go │ │ │ │ │ ├── jsonlog_test.go │ │ │ │ │ ├── jsonlogbytes.go │ │ │ │ │ └── jsonlogbytes_test.go │ │ │ │ ├── jsonmessage │ │ │ │ │ ├── jsonmessage.go │ │ │ │ │ └── jsonmessage_test.go │ │ │ │ ├── listenbuffer │ │ │ │ │ ├── README.md │ │ │ │ │ ├── buffer.go │ │ │ │ │ └── listen_buffer_test.go │ │ │ │ ├── mflag │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── example │ │ │ │ │ │ └── example.go │ │ │ │ │ ├── flag.go │ │ │ │ │ └── flag_test.go │ │ │ │ ├── mount │ │ │ │ │ ├── flags.go │ │ │ │ │ ├── flags_freebsd.go │ │ │ │ │ ├── flags_linux.go │ │ │ │ │ ├── flags_unsupported.go │ │ │ │ │ ├── mount.go │ │ │ │ │ ├── mount_test.go │ │ │ │ │ ├── mounter_freebsd.go │ │ │ │ │ ├── mounter_linux.go │ │ │ │ │ ├── mounter_unsupported.go │ │ │ │ │ ├── mountinfo.go │ │ │ │ │ ├── mountinfo_freebsd.go │ │ │ │ │ ├── mountinfo_linux.go │ │ │ │ │ ├── mountinfo_linux_test.go │ │ │ │ │ ├── mountinfo_unsupported.go │ │ │ │ │ ├── sharedsubtree_linux.go │ │ │ │ │ └── sharedsubtree_linux_test.go │ │ │ │ ├── namesgenerator │ │ │ │ │ ├── names-generator.go │ │ │ │ │ └── names-generator_test.go │ │ │ │ ├── nat │ │ │ │ │ ├── nat.go │ │ │ │ │ ├── nat_test.go │ │ │ │ │ ├── sort.go │ │ │ │ │ └── sort_test.go │ │ │ │ ├── parsers │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── parse.go │ │ │ │ │ │ └── parse_test.go │ │ │ │ │ ├── kernel │ │ │ │ │ │ ├── kernel.go │ │ │ │ │ │ ├── kernel_test.go │ │ │ │ │ │ ├── kernel_windows.go │ │ │ │ │ │ ├── uname_linux.go │ │ │ │ │ │ └── uname_unsupported.go │ │ │ │ │ ├── operatingsystem │ │ │ │ │ │ ├── operatingsystem_linux.go │ │ │ │ │ │ ├── operatingsystem_test.go │ │ │ │ │ │ └── operatingsystem_windows.go │ │ │ │ │ ├── parsers.go │ │ │ │ │ └── parsers_test.go │ │ │ │ ├── pidfile │ │ │ │ │ ├── pidfile.go │ │ │ │ │ └── pidfile_test.go │ │ │ │ ├── plugins │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_test.go │ │ │ │ │ ├── discovery.go │ │ │ │ │ ├── discovery_test.go │ │ │ │ │ ├── pluginrpc-gen │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ └── foo.go │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ ├── parser_test.go │ │ │ │ │ │ └── template.go │ │ │ │ │ └── plugins.go │ │ │ │ ├── pools │ │ │ │ │ ├── pools.go │ │ │ │ │ └── pools_test.go │ │ │ │ ├── progressreader │ │ │ │ │ ├── progressreader.go │ │ │ │ │ └── progressreader_test.go │ │ │ │ ├── promise │ │ │ │ │ └── promise.go │ │ │ │ ├── proxy │ │ │ │ │ ├── network_proxy_test.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── stub_proxy.go │ │ │ │ │ ├── tcp_proxy.go │ │ │ │ │ └── udp_proxy.go │ │ │ │ ├── pubsub │ │ │ │ │ ├── publisher.go │ │ │ │ │ └── publisher_test.go │ │ │ │ ├── random │ │ │ │ │ ├── random.go │ │ │ │ │ └── random_test.go │ │ │ │ ├── reexec │ │ │ │ │ ├── README.md │ │ │ │ │ ├── command_linux.go │ │ │ │ │ ├── command_unsupported.go │ │ │ │ │ ├── command_windows.go │ │ │ │ │ └── reexec.go │ │ │ │ ├── signal │ │ │ │ │ ├── README.md │ │ │ │ │ ├── signal.go │ │ │ │ │ ├── signal_darwin.go │ │ │ │ │ ├── signal_freebsd.go │ │ │ │ │ ├── signal_linux.go │ │ │ │ │ ├── signal_unix.go │ │ │ │ │ ├── signal_unsupported.go │ │ │ │ │ ├── signal_windows.go │ │ │ │ │ └── trap.go │ │ │ │ ├── sockets │ │ │ │ │ ├── README.md │ │ │ │ │ ├── tcp_socket.go │ │ │ │ │ └── unix_socket.go │ │ │ │ ├── stdcopy │ │ │ │ │ ├── stdcopy.go │ │ │ │ │ └── stdcopy_test.go │ │ │ │ ├── streamformatter │ │ │ │ │ ├── streamformatter.go │ │ │ │ │ └── streamformatter_test.go │ │ │ │ ├── stringid │ │ │ │ │ ├── README.md │ │ │ │ │ ├── stringid.go │ │ │ │ │ └── stringid_test.go │ │ │ │ ├── stringutils │ │ │ │ │ ├── README.md │ │ │ │ │ ├── stringutils.go │ │ │ │ │ └── stringutils_test.go │ │ │ │ ├── symlink │ │ │ │ │ ├── LICENSE.APACHE │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fs.go │ │ │ │ │ └── fs_test.go │ │ │ │ ├── sysinfo │ │ │ │ │ ├── README.md │ │ │ │ │ ├── sysinfo.go │ │ │ │ │ ├── sysinfo_linux.go │ │ │ │ │ ├── sysinfo_linux_test.go │ │ │ │ │ └── sysinfo_windows.go │ │ │ │ ├── system │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── events_windows.go │ │ │ │ │ ├── filesys.go │ │ │ │ │ ├── filesys_windows.go │ │ │ │ │ ├── lstat.go │ │ │ │ │ ├── lstat_test.go │ │ │ │ │ ├── lstat_windows.go │ │ │ │ │ ├── meminfo.go │ │ │ │ │ ├── meminfo_linux.go │ │ │ │ │ ├── meminfo_linux_test.go │ │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ │ ├── meminfo_windows.go │ │ │ │ │ ├── mknod.go │ │ │ │ │ ├── mknod_windows.go │ │ │ │ │ ├── stat.go │ │ │ │ │ ├── stat_linux.go │ │ │ │ │ ├── stat_test.go │ │ │ │ │ ├── stat_unsupported.go │ │ │ │ │ ├── stat_windows.go │ │ │ │ │ ├── umask.go │ │ │ │ │ ├── umask_windows.go │ │ │ │ │ ├── utimes_darwin.go │ │ │ │ │ ├── utimes_freebsd.go │ │ │ │ │ ├── utimes_linux.go │ │ │ │ │ ├── utimes_test.go │ │ │ │ │ ├── utimes_unsupported.go │ │ │ │ │ ├── xattrs_linux.go │ │ │ │ │ └── xattrs_unsupported.go │ │ │ │ ├── systemd │ │ │ │ │ ├── booted.go │ │ │ │ │ ├── listendfd.go │ │ │ │ │ └── sd_notify.go │ │ │ │ ├── tailfile │ │ │ │ │ ├── tailfile.go │ │ │ │ │ └── tailfile_test.go │ │ │ │ ├── tarsum │ │ │ │ │ ├── builder_context.go │ │ │ │ │ ├── builder_context_test.go │ │ │ │ │ ├── fileinfosums.go │ │ │ │ │ ├── fileinfosums_test.go │ │ │ │ │ ├── tarsum.go │ │ │ │ │ ├── tarsum_spec.md │ │ │ │ │ ├── tarsum_test.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── 46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457 │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ └── layer.tar │ │ │ │ │ │ ├── 511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158 │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ └── layer.tar │ │ │ │ │ │ ├── collision │ │ │ │ │ │ │ ├── collision-0.tar │ │ │ │ │ │ │ ├── collision-1.tar │ │ │ │ │ │ │ ├── collision-2.tar │ │ │ │ │ │ │ └── collision-3.tar │ │ │ │ │ │ └── xattr │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ └── layer.tar │ │ │ │ │ ├── versioning.go │ │ │ │ │ ├── versioning_test.go │ │ │ │ │ └── writercloser.go │ │ │ │ ├── term │ │ │ │ │ ├── tc_linux_cgo.go │ │ │ │ │ ├── tc_other.go │ │ │ │ │ ├── term.go │ │ │ │ │ ├── term_windows.go │ │ │ │ │ ├── termios_darwin.go │ │ │ │ │ ├── termios_freebsd.go │ │ │ │ │ ├── termios_linux.go │ │ │ │ │ └── winconsole │ │ │ │ │ │ ├── console_windows.go │ │ │ │ │ │ ├── console_windows_test.go │ │ │ │ │ │ ├── term_emulator.go │ │ │ │ │ │ └── term_emulator_test.go │ │ │ │ ├── timeoutconn │ │ │ │ │ ├── timeoutconn.go │ │ │ │ │ └── timeoutconn_test.go │ │ │ │ ├── timeutils │ │ │ │ │ ├── json.go │ │ │ │ │ ├── json_test.go │ │ │ │ │ ├── utils.go │ │ │ │ │ └── utils_test.go │ │ │ │ ├── tlsconfig │ │ │ │ │ └── config.go │ │ │ │ ├── truncindex │ │ │ │ │ ├── truncindex.go │ │ │ │ │ └── truncindex_test.go │ │ │ │ ├── ulimit │ │ │ │ │ ├── ulimit.go │ │ │ │ │ └── ulimit_test.go │ │ │ │ ├── units │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration_test.go │ │ │ │ │ ├── size.go │ │ │ │ │ └── size_test.go │ │ │ │ ├── urlutil │ │ │ │ │ ├── urlutil.go │ │ │ │ │ └── urlutil_test.go │ │ │ │ ├── useragent │ │ │ │ │ ├── README.md │ │ │ │ │ ├── useragent.go │ │ │ │ │ └── useragent_test.go │ │ │ │ └── version │ │ │ │ │ ├── version.go │ │ │ │ │ └── version_test.go │ │ │ ├── project │ │ │ │ ├── CONTRIBUTORS.md │ │ │ │ ├── GOVERNANCE.md │ │ │ │ ├── IRC-ADMINISTRATION.md │ │ │ │ ├── ISSUE-TRIAGE.md │ │ │ │ ├── PACKAGERS.md │ │ │ │ ├── PRINCIPLES.md │ │ │ │ ├── README.md │ │ │ │ ├── RELEASE-CHECKLIST.md │ │ │ │ ├── REVIEWING.md │ │ │ │ └── TOOLS.md │ │ │ ├── registry │ │ │ │ ├── auth.go │ │ │ │ ├── auth_test.go │ │ │ │ ├── authchallenge.go │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpoint_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── registry_mock_test.go │ │ │ │ ├── registry_test.go │ │ │ │ ├── service.go │ │ │ │ ├── session.go │ │ │ │ ├── token.go │ │ │ │ └── types.go │ │ │ ├── runconfig │ │ │ │ ├── compare.go │ │ │ │ ├── compare_test.go │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── exec.go │ │ │ │ ├── exec_test.go │ │ │ │ ├── fixtures │ │ │ │ │ ├── container_config_1_14.json │ │ │ │ │ ├── container_config_1_17.json │ │ │ │ │ ├── container_config_1_19.json │ │ │ │ │ ├── container_hostconfig_1_14.json │ │ │ │ │ ├── container_hostconfig_1_19.json │ │ │ │ │ ├── valid.env │ │ │ │ │ └── valid.label │ │ │ │ ├── hostconfig.go │ │ │ │ ├── hostconfig_test.go │ │ │ │ ├── hostconfig_unix.go │ │ │ │ ├── hostconfig_windows.go │ │ │ │ ├── merge.go │ │ │ │ ├── merge_test.go │ │ │ │ ├── parse.go │ │ │ │ ├── parse_experimental.go │ │ │ │ ├── parse_stub.go │ │ │ │ ├── parse_test.go │ │ │ │ ├── parse_unix.go │ │ │ │ └── parse_windows.go │ │ │ ├── trust │ │ │ │ ├── service.go │ │ │ │ └── trusts.go │ │ │ ├── utils │ │ │ │ ├── experimental.go │ │ │ │ ├── git.go │ │ │ │ ├── git_test.go │ │ │ │ ├── stubs.go │ │ │ │ ├── utils.go │ │ │ │ └── utils_test.go │ │ │ └── volume │ │ │ │ ├── drivers │ │ │ │ ├── adapter.go │ │ │ │ ├── api.go │ │ │ │ ├── extpoint.go │ │ │ │ ├── proxy.go │ │ │ │ └── proxy_test.go │ │ │ │ ├── local │ │ │ │ └── local.go │ │ │ │ └── volume.go │ │ ├── go-units │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.code │ │ │ ├── LICENSE.docs │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── circle.yml │ │ │ ├── duration.go │ │ │ ├── duration_test.go │ │ │ ├── size.go │ │ │ ├── size_test.go │ │ │ ├── ulimit.go │ │ │ └── ulimit_test.go │ │ └── libcontainer │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── MAINTAINERS_GUIDE.md │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── PRINCIPLES.md │ │ │ ├── README.md │ │ │ ├── ROADMAP.md │ │ │ ├── SPEC.md │ │ │ ├── apparmor │ │ │ ├── apparmor.go │ │ │ ├── apparmor_disabled.go │ │ │ ├── gen.go │ │ │ └── setup.go │ │ │ ├── capabilities_linux.go │ │ │ ├── cgroups │ │ │ ├── cgroups.go │ │ │ ├── cgroups_test.go │ │ │ ├── cgroups_unsupported.go │ │ │ ├── fs │ │ │ │ ├── apply_raw.go │ │ │ │ ├── blkio.go │ │ │ │ ├── blkio_test.go │ │ │ │ ├── cpu.go │ │ │ │ ├── cpu_test.go │ │ │ │ ├── cpuacct.go │ │ │ │ ├── cpuset.go │ │ │ │ ├── cpuset_test.go │ │ │ │ ├── devices.go │ │ │ │ ├── devices_test.go │ │ │ │ ├── freezer.go │ │ │ │ ├── freezer_test.go │ │ │ │ ├── fs_unsupported.go │ │ │ │ ├── hugetlb.go │ │ │ │ ├── hugetlb_test.go │ │ │ │ ├── memory.go │ │ │ │ ├── memory_test.go │ │ │ │ ├── net_cls.go │ │ │ │ ├── net_cls_test.go │ │ │ │ ├── net_prio.go │ │ │ │ ├── net_prio_test.go │ │ │ │ ├── perf_event.go │ │ │ │ ├── stats_util_test.go │ │ │ │ ├── util_test.go │ │ │ │ ├── utils.go │ │ │ │ └── utils_test.go │ │ │ ├── stats.go │ │ │ ├── systemd │ │ │ │ ├── apply_nosystemd.go │ │ │ │ └── apply_systemd.go │ │ │ └── utils.go │ │ │ ├── configs │ │ │ ├── cgroup.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── config_unix.go │ │ │ ├── device.go │ │ │ ├── device_defaults.go │ │ │ ├── hugepage_limit.go │ │ │ ├── interface_priority_map.go │ │ │ ├── mount.go │ │ │ ├── namespaces.go │ │ │ ├── namespaces_syscall.go │ │ │ ├── namespaces_syscall_unsupported.go │ │ │ ├── namespaces_unix.go │ │ │ ├── namespaces_windows.go │ │ │ ├── network.go │ │ │ └── validate │ │ │ │ └── config.go │ │ │ ├── console.go │ │ │ ├── console_freebsd.go │ │ │ ├── console_linux.go │ │ │ ├── console_windows.go │ │ │ ├── container.go │ │ │ ├── container_linux.go │ │ │ ├── container_linux_test.go │ │ │ ├── container_nouserns_linux.go │ │ │ ├── container_userns_linux.go │ │ │ ├── criu_opts.go │ │ │ ├── criurpc │ │ │ ├── Makefile │ │ │ ├── criurpc.pb.go │ │ │ └── criurpc.proto │ │ │ ├── devices │ │ │ ├── devices_test.go │ │ │ ├── devices_unix.go │ │ │ ├── devices_windows.go │ │ │ └── number.go │ │ │ ├── docs │ │ │ └── man │ │ │ │ └── nsinit.1.md │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── factory.go │ │ │ ├── factory_linux.go │ │ │ ├── factory_linux_test.go │ │ │ ├── generic_error.go │ │ │ ├── generic_error_test.go │ │ │ ├── hack │ │ │ └── validate.sh │ │ │ ├── init_linux.go │ │ │ ├── integration │ │ │ ├── checkpoint_test.go │ │ │ ├── doc.go │ │ │ ├── exec_test.go │ │ │ ├── execin_test.go │ │ │ ├── init_test.go │ │ │ ├── template_test.go │ │ │ └── utils_test.go │ │ │ ├── label │ │ │ ├── label.go │ │ │ ├── label_selinux.go │ │ │ └── label_selinux_test.go │ │ │ ├── netlink │ │ │ ├── MAINTAINERS │ │ │ ├── netlink.go │ │ │ ├── netlink_linux.go │ │ │ ├── netlink_linux_armppc64.go │ │ │ ├── netlink_linux_notarm.go │ │ │ ├── netlink_linux_test.go │ │ │ └── netlink_unsupported.go │ │ │ ├── network_linux.go │ │ │ ├── notify_linux.go │ │ │ ├── notify_linux_test.go │ │ │ ├── nsenter │ │ │ ├── README.md │ │ │ ├── nsenter.go │ │ │ ├── nsenter_gccgo.go │ │ │ ├── nsenter_test.go │ │ │ ├── nsenter_unsupported.go │ │ │ └── nsexec.c │ │ │ ├── nsinit │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── checkpoint.go │ │ │ ├── config.go │ │ │ ├── exec.go │ │ │ ├── init.go │ │ │ ├── main.go │ │ │ ├── oom.go │ │ │ ├── pause.go │ │ │ ├── restore.go │ │ │ ├── security.go │ │ │ ├── state.go │ │ │ ├── stats.go │ │ │ ├── tty.go │ │ │ └── utils.go │ │ │ ├── process.go │ │ │ ├── process_linux.go │ │ │ ├── restored_process.go │ │ │ ├── rootfs_linux.go │ │ │ ├── rootfs_linux_test.go │ │ │ ├── sample_configs │ │ │ ├── README.md │ │ │ ├── apparmor.json │ │ │ ├── attach_to_bridge.json │ │ │ ├── host-pid.json │ │ │ ├── minimal.json │ │ │ ├── selinux.json │ │ │ └── userns.json │ │ │ ├── seccomp │ │ │ ├── bpf.go │ │ │ ├── context.go │ │ │ ├── filter.go │ │ │ ├── jump_amd64.go │ │ │ └── seccomp.go │ │ │ ├── selinux │ │ │ ├── selinux.go │ │ │ └── selinux_test.go │ │ │ ├── setns_init_linux.go │ │ │ ├── stacktrace │ │ │ ├── capture.go │ │ │ ├── capture_test.go │ │ │ ├── frame.go │ │ │ ├── frame_test.go │ │ │ └── stacktrace.go │ │ │ ├── standard_init_linux.go │ │ │ ├── stats.go │ │ │ ├── stats_freebsd.go │ │ │ ├── stats_linux.go │ │ │ ├── stats_windows.go │ │ │ ├── system │ │ │ ├── linux.go │ │ │ ├── proc.go │ │ │ ├── setns_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_64.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── sysconfig.go │ │ │ ├── sysconfig_notcgo.go │ │ │ └── xattrs_linux.go │ │ │ ├── update-vendor.sh │ │ │ ├── user │ │ │ ├── MAINTAINERS │ │ │ ├── lookup.go │ │ │ ├── lookup_unix.go │ │ │ ├── lookup_unsupported.go │ │ │ ├── user.go │ │ │ └── user_test.go │ │ │ ├── utils │ │ │ ├── utils.go │ │ │ └── utils_test.go │ │ │ └── xattr │ │ │ ├── errors.go │ │ │ ├── xattr_linux.go │ │ │ ├── xattr_test.go │ │ │ └── xattr_unsupported.go │ ├── emicklei │ │ └── go-restful │ │ │ ├── .gitignore │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Srcfile │ │ │ ├── bench_curly_test.go │ │ │ ├── bench_test.go │ │ │ ├── bench_test.sh │ │ │ ├── compress.go │ │ │ ├── compress_test.go │ │ │ ├── compressor_cache.go │ │ │ ├── compressor_pools.go │ │ │ ├── compressors.go │ │ │ ├── constants.go │ │ │ ├── container.go │ │ │ ├── container_test.go │ │ │ ├── cors_filter.go │ │ │ ├── cors_filter_test.go │ │ │ ├── coverage.sh │ │ │ ├── curly.go │ │ │ ├── curly_route.go │ │ │ ├── curly_test.go │ │ │ ├── doc.go │ │ │ ├── doc_examples_test.go │ │ │ ├── entity_accessors.go │ │ │ ├── entity_accessors_test.go │ │ │ ├── examples │ │ │ ├── .goconvey │ │ │ ├── google_app_engine │ │ │ │ ├── .goconvey │ │ │ │ ├── app.yaml │ │ │ │ ├── datastore │ │ │ │ │ ├── .goconvey │ │ │ │ │ ├── app.yaml │ │ │ │ │ └── main.go │ │ │ │ ├── restful-appstats-integration.go │ │ │ │ └── restful-user-service.go │ │ │ ├── home.html │ │ │ ├── restful-CORS-filter.go │ │ │ ├── restful-NCSA-logging.go │ │ │ ├── restful-basic-authentication.go │ │ │ ├── restful-cpuprofiler-service.go │ │ │ ├── restful-curly-router.go │ │ │ ├── restful-encoding-filter.go │ │ │ ├── restful-filters.go │ │ │ ├── restful-form-handling.go │ │ │ ├── restful-hello-world.go │ │ │ ├── restful-html-template.go │ │ │ ├── restful-multi-containers.go │ │ │ ├── restful-options-filter.go │ │ │ ├── restful-path-tail.go │ │ │ ├── restful-pre-post-filters.go │ │ │ ├── restful-resource-functions.go │ │ │ ├── restful-route_test.go │ │ │ ├── restful-routefunction_test.go │ │ │ ├── restful-serve-static.go │ │ │ ├── restful-swagger.go │ │ │ ├── restful-user-resource.go │ │ │ └── restful-user-service.go │ │ │ ├── filter.go │ │ │ ├── filter_test.go │ │ │ ├── install.sh │ │ │ ├── jsr311.go │ │ │ ├── jsr311_test.go │ │ │ ├── log │ │ │ └── log.go │ │ │ ├── logger.go │ │ │ ├── options_filter.go │ │ │ ├── options_filter_test.go │ │ │ ├── parameter.go │ │ │ ├── path_expression.go │ │ │ ├── path_expression_test.go │ │ │ ├── request.go │ │ │ ├── request_test.go │ │ │ ├── response.go │ │ │ ├── response_test.go │ │ │ ├── route.go │ │ │ ├── route_builder.go │ │ │ ├── route_builder_test.go │ │ │ ├── route_test.go │ │ │ ├── router.go │ │ │ ├── service_error.go │ │ │ ├── swagger │ │ │ ├── CHANGES.md │ │ │ ├── README.md │ │ │ ├── api_declaration_list.go │ │ │ ├── config.go │ │ │ ├── model_builder.go │ │ │ ├── model_builder_test.go │ │ │ ├── model_list.go │ │ │ ├── model_list_test.go │ │ │ ├── model_property_ext.go │ │ │ ├── model_property_ext_test.go │ │ │ ├── model_property_list.go │ │ │ ├── model_property_list_test.go │ │ │ ├── ordered_route_map.go │ │ │ ├── ordered_route_map_test.go │ │ │ ├── postbuild_model_test.go │ │ │ ├── swagger.go │ │ │ ├── swagger_builder.go │ │ │ ├── swagger_test.go │ │ │ ├── swagger_webservice.go │ │ │ ├── test_package │ │ │ │ └── struct.go │ │ │ └── utils_test.go │ │ │ ├── tracer_test.go │ │ │ ├── web_service.go │ │ │ ├── web_service_container.go │ │ │ └── web_service_test.go │ ├── evanphx │ │ └── json-patch │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── merge.go │ │ │ ├── merge_test.go │ │ │ ├── patch.go │ │ │ └── patch_test.go │ ├── fatih │ │ └── color │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── color.go │ │ │ ├── color_test.go │ │ │ └── doc.go │ ├── fsouza │ │ └── go-dockerclient │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── DOCKER-LICENSE │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.markdown │ │ │ ├── auth.go │ │ │ ├── auth_test.go │ │ │ ├── build_test.go │ │ │ ├── change.go │ │ │ ├── change_test.go │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── container.go │ │ │ ├── container_test.go │ │ │ ├── env.go │ │ │ ├── env_test.go │ │ │ ├── event.go │ │ │ ├── event_test.go │ │ │ ├── example_test.go │ │ │ ├── exec.go │ │ │ ├── exec_test.go │ │ │ ├── external │ │ │ ├── github.com │ │ │ │ ├── Sirupsen │ │ │ │ │ └── logrus │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── entry.go │ │ │ │ │ │ ├── entry_test.go │ │ │ │ │ │ ├── exported.go │ │ │ │ │ │ ├── formatter.go │ │ │ │ │ │ ├── formatter_bench_test.go │ │ │ │ │ │ ├── hook_test.go │ │ │ │ │ │ ├── hooks.go │ │ │ │ │ │ ├── json_formatter.go │ │ │ │ │ │ ├── json_formatter_test.go │ │ │ │ │ │ ├── logger.go │ │ │ │ │ │ ├── logrus.go │ │ │ │ │ │ ├── logrus_test.go │ │ │ │ │ │ ├── terminal_bsd.go │ │ │ │ │ │ ├── terminal_linux.go │ │ │ │ │ │ ├── terminal_notwindows.go │ │ │ │ │ │ ├── terminal_solaris.go │ │ │ │ │ │ ├── terminal_windows.go │ │ │ │ │ │ ├── text_formatter.go │ │ │ │ │ │ ├── text_formatter_test.go │ │ │ │ │ │ └── writer.go │ │ │ │ ├── docker │ │ │ │ │ ├── docker │ │ │ │ │ │ ├── opts │ │ │ │ │ │ │ ├── envfile.go │ │ │ │ │ │ │ ├── envfile_test.go │ │ │ │ │ │ │ ├── hosts.go │ │ │ │ │ │ │ ├── hosts_test.go │ │ │ │ │ │ │ ├── hosts_unix.go │ │ │ │ │ │ │ ├── hosts_windows.go │ │ │ │ │ │ │ ├── ip.go │ │ │ │ │ │ │ ├── ip_test.go │ │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ │ ├── opts_test.go │ │ │ │ │ │ │ ├── opts_unix.go │ │ │ │ │ │ │ └── opts_windows.go │ │ │ │ │ │ └── pkg │ │ │ │ │ │ │ ├── archive │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── archive.go │ │ │ │ │ │ │ ├── archive_test.go │ │ │ │ │ │ │ ├── archive_unix.go │ │ │ │ │ │ │ ├── archive_unix_test.go │ │ │ │ │ │ │ ├── archive_windows.go │ │ │ │ │ │ │ ├── archive_windows_test.go │ │ │ │ │ │ │ ├── changes.go │ │ │ │ │ │ │ ├── changes_linux.go │ │ │ │ │ │ │ ├── changes_other.go │ │ │ │ │ │ │ ├── changes_posix_test.go │ │ │ │ │ │ │ ├── changes_test.go │ │ │ │ │ │ │ ├── changes_unix.go │ │ │ │ │ │ │ ├── changes_windows.go │ │ │ │ │ │ │ ├── copy.go │ │ │ │ │ │ │ ├── copy_test.go │ │ │ │ │ │ │ ├── copy_unix.go │ │ │ │ │ │ │ ├── copy_windows.go │ │ │ │ │ │ │ ├── diff.go │ │ │ │ │ │ │ ├── diff_test.go │ │ │ │ │ │ │ ├── example_changes.go │ │ │ │ │ │ │ ├── time_linux.go │ │ │ │ │ │ │ ├── time_unsupported.go │ │ │ │ │ │ │ ├── utils_test.go │ │ │ │ │ │ │ ├── whiteouts.go │ │ │ │ │ │ │ ├── wrap.go │ │ │ │ │ │ │ └── wrap_test.go │ │ │ │ │ │ │ ├── fileutils │ │ │ │ │ │ │ ├── fileutils.go │ │ │ │ │ │ │ ├── fileutils_test.go │ │ │ │ │ │ │ ├── fileutils_unix.go │ │ │ │ │ │ │ └── fileutils_windows.go │ │ │ │ │ │ │ ├── homedir │ │ │ │ │ │ │ ├── homedir.go │ │ │ │ │ │ │ └── homedir_test.go │ │ │ │ │ │ │ ├── idtools │ │ │ │ │ │ │ ├── idtools.go │ │ │ │ │ │ │ ├── idtools_unix.go │ │ │ │ │ │ │ ├── idtools_unix_test.go │ │ │ │ │ │ │ ├── idtools_windows.go │ │ │ │ │ │ │ ├── usergroupadd_linux.go │ │ │ │ │ │ │ └── usergroupadd_unsupported.go │ │ │ │ │ │ │ ├── ioutils │ │ │ │ │ │ │ ├── bytespipe.go │ │ │ │ │ │ │ ├── bytespipe_test.go │ │ │ │ │ │ │ ├── fmt.go │ │ │ │ │ │ │ ├── fmt_test.go │ │ │ │ │ │ │ ├── multireader.go │ │ │ │ │ │ │ ├── multireader_test.go │ │ │ │ │ │ │ ├── readers.go │ │ │ │ │ │ │ ├── readers_test.go │ │ │ │ │ │ │ ├── scheduler.go │ │ │ │ │ │ │ ├── scheduler_gccgo.go │ │ │ │ │ │ │ ├── temp_unix.go │ │ │ │ │ │ │ ├── temp_windows.go │ │ │ │ │ │ │ ├── writeflusher.go │ │ │ │ │ │ │ ├── writers.go │ │ │ │ │ │ │ └── writers_test.go │ │ │ │ │ │ │ ├── longpath │ │ │ │ │ │ │ ├── longpath.go │ │ │ │ │ │ │ └── longpath_test.go │ │ │ │ │ │ │ ├── pools │ │ │ │ │ │ │ ├── pools.go │ │ │ │ │ │ │ └── pools_test.go │ │ │ │ │ │ │ ├── promise │ │ │ │ │ │ │ └── promise.go │ │ │ │ │ │ │ ├── stdcopy │ │ │ │ │ │ │ ├── stdcopy.go │ │ │ │ │ │ │ └── stdcopy_test.go │ │ │ │ │ │ │ └── system │ │ │ │ │ │ │ ├── chtimes.go │ │ │ │ │ │ │ ├── chtimes_test.go │ │ │ │ │ │ │ ├── chtimes_unix_test.go │ │ │ │ │ │ │ ├── chtimes_windows_test.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── events_windows.go │ │ │ │ │ │ │ ├── filesys.go │ │ │ │ │ │ │ ├── filesys_windows.go │ │ │ │ │ │ │ ├── lstat.go │ │ │ │ │ │ │ ├── lstat_unix_test.go │ │ │ │ │ │ │ ├── lstat_windows.go │ │ │ │ │ │ │ ├── meminfo.go │ │ │ │ │ │ │ ├── meminfo_linux.go │ │ │ │ │ │ │ ├── meminfo_unix_test.go │ │ │ │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ │ │ │ ├── meminfo_windows.go │ │ │ │ │ │ │ ├── mknod.go │ │ │ │ │ │ │ ├── mknod_windows.go │ │ │ │ │ │ │ ├── path_unix.go │ │ │ │ │ │ │ ├── path_windows.go │ │ │ │ │ │ │ ├── stat.go │ │ │ │ │ │ │ ├── stat_freebsd.go │ │ │ │ │ │ │ ├── stat_linux.go │ │ │ │ │ │ │ ├── stat_solaris.go │ │ │ │ │ │ │ ├── stat_unix_test.go │ │ │ │ │ │ │ ├── stat_unsupported.go │ │ │ │ │ │ │ ├── stat_windows.go │ │ │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ │ │ ├── umask.go │ │ │ │ │ │ │ ├── umask_windows.go │ │ │ │ │ │ │ ├── utimes_darwin.go │ │ │ │ │ │ │ ├── utimes_freebsd.go │ │ │ │ │ │ │ ├── utimes_linux.go │ │ │ │ │ │ │ ├── utimes_unix_test.go │ │ │ │ │ │ │ ├── utimes_unsupported.go │ │ │ │ │ │ │ ├── xattrs_linux.go │ │ │ │ │ │ │ └── xattrs_unsupported.go │ │ │ │ │ └── go-units │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE.code │ │ │ │ │ │ ├── LICENSE.docs │ │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── circle.yml │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ ├── duration_test.go │ │ │ │ │ │ ├── size.go │ │ │ │ │ │ ├── size_test.go │ │ │ │ │ │ ├── ulimit.go │ │ │ │ │ │ └── ulimit_test.go │ │ │ │ ├── gorilla │ │ │ │ │ ├── context │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── context.go │ │ │ │ │ │ ├── context_test.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ └── mux │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bench_test.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── mux.go │ │ │ │ │ │ ├── mux_test.go │ │ │ │ │ │ ├── old_test.go │ │ │ │ │ │ ├── regexp.go │ │ │ │ │ │ └── route.go │ │ │ │ ├── hashicorp │ │ │ │ │ └── go-cleanhttp │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── cleanhttp.go │ │ │ │ └── opencontainers │ │ │ │ │ └── runc │ │ │ │ │ └── libcontainer │ │ │ │ │ └── user │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ ├── lookup.go │ │ │ │ │ ├── lookup_unix.go │ │ │ │ │ ├── lookup_unsupported.go │ │ │ │ │ ├── user.go │ │ │ │ │ └── user_test.go │ │ │ └── golang.org │ │ │ │ └── x │ │ │ │ ├── net │ │ │ │ └── context │ │ │ │ │ ├── context.go │ │ │ │ │ ├── context_test.go │ │ │ │ │ └── withtimeout_test.go │ │ │ │ └── sys │ │ │ │ └── unix │ │ │ │ ├── asm.s │ │ │ │ ├── asm_darwin_386.s │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ ├── asm_dragonfly_386.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_ppc64x.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 │ │ │ │ ├── constants.go │ │ │ │ ├── creds_test.go │ │ │ │ ├── env_unix.go │ │ │ │ ├── env_unset.go │ │ │ │ ├── export_test.go │ │ │ │ ├── flock.go │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── 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 │ │ │ │ ├── mmap_unix_test.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_bsd_test.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_386.go │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ ├── syscall_freebsd.go │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ ├── syscall_freebsd_test.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ ├── syscall_linux_ppc64x.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_test.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_unix_test.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_386.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_ppc64.go │ │ │ │ ├── zerrors_linux_ppc64le.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_386.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_ppc64.go │ │ │ │ ├── zsyscall_linux_ppc64le.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_386.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_ppc64.go │ │ │ │ ├── zsysnum_linux_ppc64le.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_386.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_ppc64.go │ │ │ │ ├── ztypes_linux_ppc64le.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 │ │ │ ├── image.go │ │ │ ├── image_test.go │ │ │ ├── integration_test.go │ │ │ ├── misc.go │ │ │ ├── misc_test.go │ │ │ ├── network.go │ │ │ ├── network_test.go │ │ │ ├── signal.go │ │ │ ├── tar.go │ │ │ ├── testing │ │ │ ├── data │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── barfile │ │ │ │ ├── ca.pem │ │ │ │ ├── cert.pem │ │ │ │ ├── container.tar │ │ │ │ ├── dockerfile.tar │ │ │ │ ├── foofile │ │ │ │ ├── key.pem │ │ │ │ ├── server.pem │ │ │ │ └── serverkey.pem │ │ │ ├── server.go │ │ │ └── server_test.go │ │ │ ├── tls.go │ │ │ ├── volume.go │ │ │ └── volume_test.go │ ├── ghodss │ │ └── yaml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fields.go │ │ │ ├── yaml.go │ │ │ └── yaml_test.go │ ├── golang │ │ ├── glog │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── glog.go │ │ │ ├── glog_file.go │ │ │ └── glog_test.go │ │ ├── groupcache │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── byteview.go │ │ │ ├── byteview_test.go │ │ │ ├── consistenthash │ │ │ │ ├── consistenthash.go │ │ │ │ └── consistenthash_test.go │ │ │ ├── groupcache.go │ │ │ ├── groupcache_test.go │ │ │ ├── groupcachepb │ │ │ │ ├── groupcache.pb.go │ │ │ │ └── groupcache.proto │ │ │ ├── http.go │ │ │ ├── http_test.go │ │ │ ├── lru │ │ │ │ ├── lru.go │ │ │ │ └── lru_test.go │ │ │ ├── peers.go │ │ │ ├── singleflight │ │ │ │ ├── singleflight.go │ │ │ │ └── singleflight_test.go │ │ │ ├── sinks.go │ │ │ └── testpb │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ └── protobuf │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Make.protobuf │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── jsonpb │ │ │ ├── jsonpb.go │ │ │ ├── jsonpb_test.go │ │ │ └── jsonpb_test_proto │ │ │ │ ├── Makefile │ │ │ │ ├── more_test_objects.proto │ │ │ │ └── test_objects.proto │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── all_test.go │ │ │ ├── clone.go │ │ │ ├── clone_test.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── equal_test.go │ │ │ ├── extensions.go │ │ │ ├── extensions_test.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── message_set_test.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── proto3_proto │ │ │ │ └── proto3.proto │ │ │ ├── proto3_test.go │ │ │ ├── size2_test.go │ │ │ ├── size_test.go │ │ │ ├── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── golden_test.go │ │ │ │ └── test.proto │ │ │ ├── text.go │ │ │ ├── text_parser.go │ │ │ ├── text_parser_test.go │ │ │ └── text_test.go │ │ │ └── protoc-gen-go │ │ │ ├── Makefile │ │ │ ├── descriptor │ │ │ └── Makefile │ │ │ ├── doc.go │ │ │ ├── generator │ │ │ ├── Makefile │ │ │ ├── generator.go │ │ │ └── name_test.go │ │ │ ├── internal │ │ │ └── grpc │ │ │ │ └── grpc.go │ │ │ ├── link_grpc.go │ │ │ ├── main.go │ │ │ ├── plugin │ │ │ ├── Makefile │ │ │ └── plugin.pb.golden │ │ │ └── testdata │ │ │ ├── Makefile │ │ │ ├── extension_base.proto │ │ │ ├── extension_extra.proto │ │ │ ├── extension_test.go │ │ │ ├── extension_user.proto │ │ │ ├── grpc.proto │ │ │ ├── imp.pb.go.golden │ │ │ ├── imp.proto │ │ │ ├── imp2.proto │ │ │ ├── imp3.proto │ │ │ ├── main_test.go │ │ │ ├── multi │ │ │ ├── multi1.proto │ │ │ ├── multi2.proto │ │ │ └── multi3.proto │ │ │ ├── my_test │ │ │ ├── test.pb.go.golden │ │ │ └── test.proto │ │ │ └── proto3.proto │ ├── google │ │ ├── cadvisor │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Godeps │ │ │ │ ├── Godeps.json │ │ │ │ └── Readme │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ ├── handler.go │ │ │ │ ├── versions.go │ │ │ │ └── versions_test.go │ │ │ ├── build │ │ │ │ ├── boilerplate │ │ │ │ │ ├── boilerplate.go.txt │ │ │ │ │ ├── boilerplate.py │ │ │ │ │ ├── boilerplate.py.txt │ │ │ │ │ └── boilerplate.sh.txt │ │ │ │ ├── build.sh │ │ │ │ ├── check_boilerplate.sh │ │ │ │ ├── check_errorf.sh │ │ │ │ ├── check_gofmt.sh │ │ │ │ ├── integration.sh │ │ │ │ ├── jenkins_e2e.sh │ │ │ │ ├── presubmit.sh │ │ │ │ └── release.sh │ │ │ ├── cache │ │ │ │ ├── cache.go │ │ │ │ └── memory │ │ │ │ │ ├── memory.go │ │ │ │ │ └── memory_test.go │ │ │ ├── cadvisor.go │ │ │ ├── cadvisor_test.go │ │ │ ├── client │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── clientexample │ │ │ │ │ └── main.go │ │ │ │ └── v2 │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ └── client_test.go │ │ │ ├── collector │ │ │ │ ├── collector_manager.go │ │ │ │ ├── collector_manager_test.go │ │ │ │ ├── config.go │ │ │ │ ├── config │ │ │ │ │ ├── sample_config.json │ │ │ │ │ ├── sample_config_prometheus.json │ │ │ │ │ └── sample_config_prometheus_filtered.json │ │ │ │ ├── fakes.go │ │ │ │ ├── generic_collector.go │ │ │ │ ├── generic_collector_test.go │ │ │ │ ├── prometheus_collector.go │ │ │ │ ├── prometheus_collector_test.go │ │ │ │ └── types.go │ │ │ ├── container │ │ │ │ ├── container.go │ │ │ │ ├── docker │ │ │ │ │ ├── client.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── fsHandler.go │ │ │ │ │ ├── handler.go │ │ │ │ │ └── handler_test.go │ │ │ │ ├── factory.go │ │ │ │ ├── factory_test.go │ │ │ │ ├── libcontainer │ │ │ │ │ ├── compatibility.go │ │ │ │ │ ├── compatibility_test.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── docker-v1.8.3 │ │ │ │ │ │ └── execdriver │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ └── state.json │ │ │ │ │ │ ├── docker-v1.9.1 │ │ │ │ │ │ └── execdriver │ │ │ │ │ │ │ └── native │ │ │ │ │ │ │ └── 1 │ │ │ │ │ │ │ └── state.json │ │ │ │ │ │ └── procnetdev │ │ │ │ ├── mock.go │ │ │ │ └── raw │ │ │ │ │ ├── container_hints.go │ │ │ │ │ ├── container_hints_test.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── handler.go │ │ │ │ │ ├── inotify_watcher.go │ │ │ │ │ └── test_resources │ │ │ │ │ └── container_hints.json │ │ │ ├── deploy │ │ │ │ ├── Dockerfile │ │ │ │ ├── build.sh │ │ │ │ └── canary │ │ │ │ │ └── Dockerfile │ │ │ ├── docs │ │ │ │ ├── api.md │ │ │ │ ├── api_v2.md │ │ │ │ ├── application_metrics.md │ │ │ │ ├── clients.md │ │ │ │ ├── deploy.md │ │ │ │ ├── development │ │ │ │ │ ├── README.md │ │ │ │ │ ├── build.md │ │ │ │ │ ├── integration_testing.md │ │ │ │ │ └── issues.md │ │ │ │ ├── influxdb.md │ │ │ │ ├── prometheus.md │ │ │ │ ├── running.md │ │ │ │ ├── runtime_options.md │ │ │ │ └── web.md │ │ │ ├── events │ │ │ │ ├── handler.go │ │ │ │ └── handler_test.go │ │ │ ├── fs │ │ │ │ ├── fs.go │ │ │ │ ├── fs_test.go │ │ │ │ ├── test_resources │ │ │ │ │ └── diskstats │ │ │ │ └── types.go │ │ │ ├── healthz │ │ │ │ └── healthz.go │ │ │ ├── http │ │ │ │ ├── handlers.go │ │ │ │ └── mux │ │ │ │ │ └── mux.go │ │ │ ├── info │ │ │ │ ├── v1 │ │ │ │ │ ├── container.go │ │ │ │ │ ├── container_test.go │ │ │ │ │ ├── machine.go │ │ │ │ │ ├── metric.go │ │ │ │ │ └── test │ │ │ │ │ │ └── datagen.go │ │ │ │ └── v2 │ │ │ │ │ ├── container.go │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── conversion_test.go │ │ │ │ │ └── machine.go │ │ │ ├── integration │ │ │ │ ├── framework │ │ │ │ │ └── framework.go │ │ │ │ ├── runner │ │ │ │ │ ├── retrywhitelist.txt │ │ │ │ │ ├── run.sh │ │ │ │ │ └── runner.go │ │ │ │ └── tests │ │ │ │ │ ├── TODO.md │ │ │ │ │ ├── api │ │ │ │ │ ├── attributes_test.go │ │ │ │ │ ├── docker_test.go │ │ │ │ │ ├── event_test.go │ │ │ │ │ ├── machine_test.go │ │ │ │ │ ├── machinestats_test.go │ │ │ │ │ └── test_utils.go │ │ │ │ │ └── healthz │ │ │ │ │ ├── healthz_test.go │ │ │ │ │ └── test_utils.go │ │ │ ├── logo.png │ │ │ ├── manager │ │ │ │ ├── container.go │ │ │ │ ├── container_test.go │ │ │ │ ├── machine.go │ │ │ │ ├── manager.go │ │ │ │ ├── manager_mock.go │ │ │ │ └── manager_test.go │ │ │ ├── metrics │ │ │ │ ├── prometheus.go │ │ │ │ ├── prometheus_test.go │ │ │ │ └── testdata │ │ │ │ │ └── prometheus_metrics │ │ │ ├── pages │ │ │ │ ├── containers.go │ │ │ │ ├── containers_html.go │ │ │ │ ├── docker.go │ │ │ │ ├── pages.go │ │ │ │ └── static │ │ │ │ │ ├── bootstrap_min_css.go │ │ │ │ │ ├── bootstrap_min_js.go │ │ │ │ │ ├── bootstrap_theme_min_css.go │ │ │ │ │ ├── containers_css.go │ │ │ │ │ ├── containers_js.go │ │ │ │ │ ├── gcharts_js.go │ │ │ │ │ ├── google_jsapi_js.go │ │ │ │ │ ├── jquery_min_js.go │ │ │ │ │ └── static.go │ │ │ ├── storage │ │ │ │ ├── bigquery │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bigquery.go │ │ │ │ │ └── client │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ └── example │ │ │ │ │ │ └── example.go │ │ │ │ ├── common_flags.go │ │ │ │ ├── elasticsearch │ │ │ │ │ └── elasticsearch.go │ │ │ │ ├── influxdb │ │ │ │ │ ├── influxdb.go │ │ │ │ │ └── influxdb_test.go │ │ │ │ ├── kafka │ │ │ │ │ └── kafka.go │ │ │ │ ├── redis │ │ │ │ │ └── redis.go │ │ │ │ ├── statsd │ │ │ │ │ ├── client │ │ │ │ │ │ └── client.go │ │ │ │ │ └── statsd.go │ │ │ │ ├── stdout │ │ │ │ │ └── stdout.go │ │ │ │ ├── storage.go │ │ │ │ └── test │ │ │ │ │ ├── mock.go │ │ │ │ │ └── storagetests.go │ │ │ ├── storagedriver.go │ │ │ ├── summary │ │ │ │ ├── buffer.go │ │ │ │ ├── buffer_test.go │ │ │ │ ├── percentiles.go │ │ │ │ ├── percentiles_test.go │ │ │ │ └── summary.go │ │ │ ├── test.htdigest │ │ │ ├── test.htpasswd │ │ │ ├── utils │ │ │ │ ├── cloudinfo │ │ │ │ │ ├── aws.go │ │ │ │ │ ├── azure.go │ │ │ │ │ ├── cloudinfo.go │ │ │ │ │ └── gce.go │ │ │ │ ├── container │ │ │ │ │ └── container.go │ │ │ │ ├── cpuload │ │ │ │ │ ├── cpuload.go │ │ │ │ │ └── netlink │ │ │ │ │ │ ├── conn.go │ │ │ │ │ │ ├── defs.go │ │ │ │ │ │ ├── example │ │ │ │ │ │ └── example.go │ │ │ │ │ │ ├── netlink.go │ │ │ │ │ │ └── reader.go │ │ │ │ ├── machine │ │ │ │ │ ├── machine.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ └── cpuinfo │ │ │ │ │ └── topology_test.go │ │ │ │ ├── oomparser │ │ │ │ │ ├── containerOomExampleLog.txt │ │ │ │ │ ├── oomexample │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── oomparser.go │ │ │ │ │ ├── oomparser_test.go │ │ │ │ │ └── systemOomExampleLog.txt │ │ │ │ ├── path.go │ │ │ │ ├── procfs │ │ │ │ │ ├── doc.go │ │ │ │ │ └── jiffy.go │ │ │ │ ├── sysfs │ │ │ │ │ ├── fakesysfs │ │ │ │ │ │ └── fake.go │ │ │ │ │ └── sysfs.go │ │ │ │ ├── sysinfo │ │ │ │ │ ├── sysinfo.go │ │ │ │ │ └── sysinfo_test.go │ │ │ │ ├── timed_store.go │ │ │ │ ├── timed_store_test.go │ │ │ │ └── utils.go │ │ │ ├── validate │ │ │ │ ├── validate.go │ │ │ │ └── validate_test.go │ │ │ └── version │ │ │ │ ├── VERSION │ │ │ │ └── version.go │ │ └── gofuzz │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── fuzz.go │ │ │ └── fuzz_test.go │ ├── imdario │ │ └── mergo │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── merge.go │ │ │ ├── mergo.go │ │ │ ├── mergo_test.go │ │ │ └── testdata │ │ │ ├── license.yml │ │ │ └── thing.yml │ ├── inconshreveable │ │ └── mousetrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── trap_others.go │ │ │ ├── trap_windows.go │ │ │ └── trap_windows_1.4.go │ ├── juju │ │ └── ratelimit │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ratelimit.go │ │ │ ├── ratelimit_test.go │ │ │ └── reader.go │ ├── masterzen │ │ ├── simplexml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── dom │ │ │ │ ├── document.go │ │ │ │ ├── dom_test.go │ │ │ │ ├── element.go │ │ │ │ └── namespace.go │ │ ├── winrm │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── development │ │ │ │ ├── Vagrantfile │ │ │ │ ├── sample_requests.txt │ │ │ │ └── winrm-tests.sh │ │ │ ├── scripts │ │ │ │ └── test.sh │ │ │ ├── soap │ │ │ │ ├── header.go │ │ │ │ ├── header_test.go │ │ │ │ ├── message.go │ │ │ │ ├── namespaces.go │ │ │ │ └── namespaces_test.go │ │ │ ├── winrm.go │ │ │ └── winrm │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── command.go │ │ │ │ ├── command_test.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpoint_test.go │ │ │ │ ├── fixture_test.go │ │ │ │ ├── http.go │ │ │ │ ├── http_test.go │ │ │ │ ├── parameters.go │ │ │ │ ├── parameters_test.go │ │ │ │ ├── powershell.go │ │ │ │ ├── powershell_test.go │ │ │ │ ├── request.go │ │ │ │ ├── request_test.go │ │ │ │ ├── response.go │ │ │ │ ├── response_test.go │ │ │ │ ├── shell.go │ │ │ │ └── shell_test.go │ │ └── xmlpath │ │ │ ├── LICENSE │ │ │ ├── all_test.go │ │ │ ├── doc.go │ │ │ ├── parser.go │ │ │ └── path.go │ ├── mattn │ │ ├── go-colorable │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── _example │ │ │ │ └── main.go │ │ │ ├── colorable_others.go │ │ │ └── colorable_windows.go │ │ └── go-isatty │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── _example │ │ │ └── example.go │ │ │ ├── doc.go │ │ │ ├── isatty_appengine.go │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_linux.go │ │ │ ├── isatty_solaris.go │ │ │ └── isatty_windows.go │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ext │ │ │ └── moved.go │ │ │ ├── pbtest │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ └── quick.go │ │ │ └── pbutil │ │ │ ├── all_test.go │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ └── fixtures_test.go │ ├── nu7hatch │ │ └── gouuid │ │ │ ├── .gitignore │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── example_test.go │ │ │ ├── uuid.go │ │ │ └── uuid_test.go │ ├── opencontainers │ │ └── runc │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ └── Readme │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── MAINTAINERS_GUIDE.md │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── PRINCIPLES.md │ │ │ ├── README.md │ │ │ ├── checkpoint.go │ │ │ ├── events.go │ │ │ ├── exec.go │ │ │ ├── kill.go │ │ │ ├── libcontainer │ │ │ ├── README.md │ │ │ ├── SPEC.md │ │ │ ├── apparmor │ │ │ │ ├── apparmor.go │ │ │ │ └── apparmor_disabled.go │ │ │ ├── capabilities_linux.go │ │ │ ├── cgroups │ │ │ │ ├── cgroups.go │ │ │ │ ├── cgroups_test.go │ │ │ │ ├── cgroups_unsupported.go │ │ │ │ ├── fs │ │ │ │ │ ├── apply_raw.go │ │ │ │ │ ├── blkio.go │ │ │ │ │ ├── blkio_test.go │ │ │ │ │ ├── cpu.go │ │ │ │ │ ├── cpu_test.go │ │ │ │ │ ├── cpuacct.go │ │ │ │ │ ├── cpuset.go │ │ │ │ │ ├── cpuset_test.go │ │ │ │ │ ├── devices.go │ │ │ │ │ ├── devices_test.go │ │ │ │ │ ├── freezer.go │ │ │ │ │ ├── freezer_test.go │ │ │ │ │ ├── fs_unsupported.go │ │ │ │ │ ├── hugetlb.go │ │ │ │ │ ├── hugetlb_test.go │ │ │ │ │ ├── memory.go │ │ │ │ │ ├── memory_test.go │ │ │ │ │ ├── name.go │ │ │ │ │ ├── net_cls.go │ │ │ │ │ ├── net_cls_test.go │ │ │ │ │ ├── net_prio.go │ │ │ │ │ ├── net_prio_test.go │ │ │ │ │ ├── perf_event.go │ │ │ │ │ ├── pids.go │ │ │ │ │ ├── pids_test.go │ │ │ │ │ ├── stats_util_test.go │ │ │ │ │ ├── util_test.go │ │ │ │ │ ├── utils.go │ │ │ │ │ └── utils_test.go │ │ │ │ ├── stats.go │ │ │ │ ├── systemd │ │ │ │ │ ├── apply_nosystemd.go │ │ │ │ │ └── apply_systemd.go │ │ │ │ └── utils.go │ │ │ ├── compat_1.5_linux.go │ │ │ ├── configs │ │ │ │ ├── blkio_device.go │ │ │ │ ├── cgroup_unix.go │ │ │ │ ├── cgroup_unsupported.go │ │ │ │ ├── cgroup_windows.go │ │ │ │ ├── config.go │ │ │ │ ├── config_unix.go │ │ │ │ ├── config_unix_test.go │ │ │ │ ├── config_windows_test.go │ │ │ │ ├── device.go │ │ │ │ ├── device_defaults.go │ │ │ │ ├── hugepage_limit.go │ │ │ │ ├── interface_priority_map.go │ │ │ │ ├── mount.go │ │ │ │ ├── namespaces.go │ │ │ │ ├── namespaces_syscall.go │ │ │ │ ├── namespaces_syscall_unsupported.go │ │ │ │ ├── namespaces_unix.go │ │ │ │ ├── namespaces_unsupported.go │ │ │ │ ├── network.go │ │ │ │ └── validate │ │ │ │ │ └── config.go │ │ │ ├── console.go │ │ │ ├── console_freebsd.go │ │ │ ├── console_linux.go │ │ │ ├── console_windows.go │ │ │ ├── container.go │ │ │ ├── container_linux.go │ │ │ ├── container_linux_test.go │ │ │ ├── container_nouserns_linux.go │ │ │ ├── container_userns_linux.go │ │ │ ├── container_windows.go │ │ │ ├── criu_opts_unix.go │ │ │ ├── criu_opts_windows.go │ │ │ ├── criurpc │ │ │ │ ├── Makefile │ │ │ │ ├── criurpc.pb.go │ │ │ │ └── criurpc.proto │ │ │ ├── devices │ │ │ │ ├── devices_test.go │ │ │ │ ├── devices_unix.go │ │ │ │ ├── devices_unsupported.go │ │ │ │ └── number.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── factory.go │ │ │ ├── factory_linux.go │ │ │ ├── factory_linux_test.go │ │ │ ├── generic_error.go │ │ │ ├── generic_error_test.go │ │ │ ├── init_linux.go │ │ │ ├── integration │ │ │ │ ├── checkpoint_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── exec_test.go │ │ │ │ ├── execin_test.go │ │ │ │ ├── init_test.go │ │ │ │ ├── seccomp_test.go │ │ │ │ ├── template_test.go │ │ │ │ └── utils_test.go │ │ │ ├── label │ │ │ │ ├── label.go │ │ │ │ ├── label_selinux.go │ │ │ │ └── label_selinux_test.go │ │ │ ├── message_linux.go │ │ │ ├── network_linux.go │ │ │ ├── notify_linux.go │ │ │ ├── notify_linux_test.go │ │ │ ├── nsenter │ │ │ │ ├── README.md │ │ │ │ ├── nsenter.go │ │ │ │ ├── nsenter_gccgo.go │ │ │ │ ├── nsenter_test.go │ │ │ │ ├── nsenter_unsupported.go │ │ │ │ └── nsexec.c │ │ │ ├── process.go │ │ │ ├── process_linux.go │ │ │ ├── restored_process.go │ │ │ ├── rootfs_linux.go │ │ │ ├── rootfs_linux_test.go │ │ │ ├── seccomp │ │ │ │ ├── config.go │ │ │ │ ├── fixtures │ │ │ │ │ └── proc_self_status │ │ │ │ ├── seccomp_linux.go │ │ │ │ ├── seccomp_linux_test.go │ │ │ │ └── seccomp_unsupported.go │ │ │ ├── selinux │ │ │ │ ├── selinux.go │ │ │ │ └── selinux_test.go │ │ │ ├── setgroups_linux.go │ │ │ ├── setns_init_linux.go │ │ │ ├── stacktrace │ │ │ │ ├── capture.go │ │ │ │ ├── capture_test.go │ │ │ │ ├── frame.go │ │ │ │ ├── frame_test.go │ │ │ │ └── stacktrace.go │ │ │ ├── standard_init_linux.go │ │ │ ├── state_linux.go │ │ │ ├── state_linux_test.go │ │ │ ├── stats.go │ │ │ ├── stats_freebsd.go │ │ │ ├── stats_linux.go │ │ │ ├── stats_windows.go │ │ │ ├── system │ │ │ │ ├── linux.go │ │ │ │ ├── proc.go │ │ │ │ ├── setns_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_64.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── sysconfig.go │ │ │ │ ├── sysconfig_notcgo.go │ │ │ │ └── xattrs_linux.go │ │ │ ├── user │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── lookup.go │ │ │ │ ├── lookup_unix.go │ │ │ │ ├── lookup_unsupported.go │ │ │ │ ├── user.go │ │ │ │ └── user_test.go │ │ │ ├── utils │ │ │ │ ├── utils.go │ │ │ │ ├── utils_test.go │ │ │ │ └── utils_unix.go │ │ │ └── xattr │ │ │ │ ├── errors.go │ │ │ │ ├── xattr_linux.go │ │ │ │ ├── xattr_test.go │ │ │ │ └── xattr_unsupported.go │ │ │ ├── main.go │ │ │ ├── main_unix.go │ │ │ ├── main_unsupported.go │ │ │ ├── pause.go │ │ │ ├── restore.go │ │ │ ├── rlimit_linux.go │ │ │ ├── script │ │ │ ├── .validate │ │ │ ├── test_Dockerfile │ │ │ ├── tmpmount │ │ │ └── validate-gofmt │ │ │ ├── signals.go │ │ │ ├── spec.go │ │ │ ├── start.go │ │ │ ├── tty.go │ │ │ └── utils.go │ ├── pborman │ │ └── uuid │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── json.go │ │ │ ├── json_test.go │ │ │ ├── node.go │ │ │ ├── seq_test.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── uuid_test.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── prometheus │ │ ├── client_golang │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS.md │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── VERSION │ │ │ ├── api │ │ │ │ └── prometheus │ │ │ │ │ ├── api.go │ │ │ │ │ └── api_test.go │ │ │ ├── examples │ │ │ │ ├── random │ │ │ │ │ └── main.go │ │ │ │ └── simple │ │ │ │ │ └── main.go │ │ │ └── prometheus │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── collector.go │ │ │ │ ├── counter.go │ │ │ │ ├── counter_test.go │ │ │ │ ├── desc.go │ │ │ │ ├── doc.go │ │ │ │ ├── example_clustermanager_test.go │ │ │ │ ├── example_memstats_test.go │ │ │ │ ├── example_selfcollector_test.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── expvar.go │ │ │ │ ├── expvar_test.go │ │ │ │ ├── gauge.go │ │ │ │ ├── gauge_test.go │ │ │ │ ├── go_collector.go │ │ │ │ ├── go_collector_test.go │ │ │ │ ├── histogram.go │ │ │ │ ├── histogram_test.go │ │ │ │ ├── http.go │ │ │ │ ├── http_test.go │ │ │ │ ├── metric.go │ │ │ │ ├── metric_test.go │ │ │ │ ├── process_collector.go │ │ │ │ ├── process_collector_test.go │ │ │ │ ├── push.go │ │ │ │ ├── registry.go │ │ │ │ ├── registry_test.go │ │ │ │ ├── summary.go │ │ │ │ ├── summary_test.go │ │ │ │ ├── untyped.go │ │ │ │ ├── value.go │ │ │ │ ├── vec.go │ │ │ │ └── vec_test.go │ │ ├── client_model │ │ │ ├── .gitignore │ │ │ ├── AUTHORS.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── cpp │ │ │ │ ├── metrics.pb.cc │ │ │ │ └── metrics.pb.h │ │ │ ├── go │ │ │ │ └── metrics.pb.go │ │ │ ├── metrics.proto │ │ │ ├── pom.xml │ │ │ ├── python │ │ │ │ └── prometheus │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── client │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── model │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── metrics_pb2.py │ │ │ ├── ruby │ │ │ │ ├── .gitignore │ │ │ │ ├── Gemfile │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── Rakefile │ │ │ │ ├── lib │ │ │ │ │ └── prometheus │ │ │ │ │ │ └── client │ │ │ │ │ │ ├── model.rb │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── metrics.pb.rb │ │ │ │ │ │ └── version.rb │ │ │ │ └── prometheus-client-model.gemspec │ │ │ ├── setup.py │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── prometheus │ │ │ │ └── client │ │ │ │ └── Metrics.java │ │ ├── common │ │ │ ├── README.md │ │ │ ├── expfmt │ │ │ │ ├── bench_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── decode_test.go │ │ │ │ ├── encode.go │ │ │ │ ├── expfmt.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── fuzz │ │ │ │ │ └── corpus │ │ │ │ │ │ ├── from_test_parse_0 │ │ │ │ │ │ ├── from_test_parse_1 │ │ │ │ │ │ ├── from_test_parse_2 │ │ │ │ │ │ ├── from_test_parse_3 │ │ │ │ │ │ ├── from_test_parse_4 │ │ │ │ │ │ ├── from_test_parse_error_0 │ │ │ │ │ │ ├── from_test_parse_error_1 │ │ │ │ │ │ ├── from_test_parse_error_10 │ │ │ │ │ │ ├── from_test_parse_error_11 │ │ │ │ │ │ ├── from_test_parse_error_12 │ │ │ │ │ │ ├── from_test_parse_error_13 │ │ │ │ │ │ ├── from_test_parse_error_14 │ │ │ │ │ │ ├── from_test_parse_error_15 │ │ │ │ │ │ ├── from_test_parse_error_16 │ │ │ │ │ │ ├── from_test_parse_error_17 │ │ │ │ │ │ ├── from_test_parse_error_18 │ │ │ │ │ │ ├── from_test_parse_error_19 │ │ │ │ │ │ ├── from_test_parse_error_2 │ │ │ │ │ │ ├── from_test_parse_error_3 │ │ │ │ │ │ ├── from_test_parse_error_4 │ │ │ │ │ │ ├── from_test_parse_error_5 │ │ │ │ │ │ ├── from_test_parse_error_6 │ │ │ │ │ │ ├── from_test_parse_error_7 │ │ │ │ │ │ ├── from_test_parse_error_8 │ │ │ │ │ │ ├── from_test_parse_error_9 │ │ │ │ │ │ └── minimal │ │ │ │ ├── json_decode.go │ │ │ │ ├── json_decode_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── json2 │ │ │ │ │ ├── protobuf │ │ │ │ │ ├── protobuf.gz │ │ │ │ │ ├── test.gz │ │ │ │ │ └── text │ │ │ │ ├── text_create.go │ │ │ │ ├── text_create_test.go │ │ │ │ ├── text_parse.go │ │ │ │ └── text_parse_test.go │ │ │ ├── model │ │ │ │ ├── fingerprinting.go │ │ │ │ ├── labels.go │ │ │ │ ├── labels_test.go │ │ │ │ ├── labelset.go │ │ │ │ ├── metric.go │ │ │ │ ├── metric_test.go │ │ │ │ ├── model.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_test.go │ │ │ │ ├── time.go │ │ │ │ ├── time_test.go │ │ │ │ ├── value.go │ │ │ │ └── value_test.go │ │ │ └── route │ │ │ │ └── route.go │ │ └── procfs │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── fixtures │ │ │ ├── 584 │ │ │ │ └── stat │ │ │ ├── 26231 │ │ │ │ ├── cmdline │ │ │ │ ├── fd │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 3 │ │ │ │ │ └── 4 │ │ │ │ ├── limits │ │ │ │ └── stat │ │ │ └── stat │ │ │ ├── fs.go │ │ │ ├── fs_test.go │ │ │ ├── proc.go │ │ │ ├── proc_limits.go │ │ │ ├── proc_limits_test.go │ │ │ ├── proc_stat.go │ │ │ ├── proc_stat_test.go │ │ │ ├── proc_test.go │ │ │ ├── stat.go │ │ │ └── stat_test.go │ ├── russross │ │ └── blackfriday │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── block_test.go │ │ │ ├── html.go │ │ │ ├── inline.go │ │ │ ├── inline_test.go │ │ │ ├── latex.go │ │ │ ├── markdown.go │ │ │ ├── smartypants.go │ │ │ ├── upskirtref │ │ │ ├── Amps and angle encoding.html │ │ │ ├── Amps and angle encoding.text │ │ │ ├── Auto links.html │ │ │ ├── Auto links.text │ │ │ ├── Backslash escapes.html │ │ │ ├── Backslash escapes.text │ │ │ ├── Blockquotes with code blocks.html │ │ │ ├── Blockquotes with code blocks.text │ │ │ ├── Code Blocks.html │ │ │ ├── Code Blocks.text │ │ │ ├── Code Spans.html │ │ │ ├── Code Spans.text │ │ │ ├── Hard-wrapped paragraphs with list-like lines no empty line before block.html │ │ │ ├── Hard-wrapped paragraphs with list-like lines no empty line before block.text │ │ │ ├── Hard-wrapped paragraphs with list-like lines.html │ │ │ ├── Hard-wrapped paragraphs with list-like lines.text │ │ │ ├── Horizontal rules.html │ │ │ ├── Horizontal rules.text │ │ │ ├── Inline HTML (Advanced).html │ │ │ ├── Inline HTML (Advanced).text │ │ │ ├── Inline HTML (Simple).html │ │ │ ├── Inline HTML (Simple).text │ │ │ ├── Inline HTML comments.html │ │ │ ├── Inline HTML comments.text │ │ │ ├── Links, inline style.html │ │ │ ├── Links, inline style.text │ │ │ ├── Links, reference style.html │ │ │ ├── Links, reference style.text │ │ │ ├── Links, shortcut references.html │ │ │ ├── Links, shortcut references.text │ │ │ ├── Literal quotes in titles.html │ │ │ ├── Literal quotes in titles.text │ │ │ ├── Markdown Documentation - Basics.html │ │ │ ├── Markdown Documentation - Basics.text │ │ │ ├── Markdown Documentation - Syntax.html │ │ │ ├── Markdown Documentation - Syntax.text │ │ │ ├── Nested blockquotes.html │ │ │ ├── Nested blockquotes.text │ │ │ ├── Ordered and unordered lists.html │ │ │ ├── Ordered and unordered lists.text │ │ │ ├── Strong and em together.html │ │ │ ├── Strong and em together.text │ │ │ ├── Tabs.html │ │ │ ├── Tabs.text │ │ │ ├── Tidyness.html │ │ │ └── Tidyness.text │ │ │ └── upskirtref_test.go │ ├── shurcooL │ │ └── sanitized_anchor_name │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── main.go │ │ │ └── main_test.go │ ├── spf13 │ │ ├── cobra │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bash_completions.go │ │ │ ├── bash_completions.md │ │ │ ├── bash_completions_test.go │ │ │ ├── cobra.go │ │ │ ├── cobra │ │ │ │ ├── cmd │ │ │ │ │ ├── add.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ ├── init.go │ │ │ │ │ ├── licenses.go │ │ │ │ │ └── root.go │ │ │ │ └── main.go │ │ │ ├── cobra_test.go │ │ │ ├── command.go │ │ │ ├── command_test.go │ │ │ ├── doc_util.go │ │ │ ├── examples_test.go │ │ │ ├── man_docs.go │ │ │ ├── man_docs.md │ │ │ ├── man_docs_test.go │ │ │ ├── md_docs.go │ │ │ ├── md_docs.md │ │ │ └── md_docs_test.go │ │ └── pflag │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_test.go │ │ │ ├── count.go │ │ │ ├── count_test.go │ │ │ ├── duration.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── flag.go │ │ │ ├── flag_test.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── golangflag_test.go │ │ │ ├── int.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── int_slice_test.go │ │ │ ├── ip.go │ │ │ ├── ip_test.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── ipnet_test.go │ │ │ ├── string.go │ │ │ ├── string_slice.go │ │ │ ├── string_slice_test.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ └── verify │ │ │ ├── all.sh │ │ │ ├── gofmt.sh │ │ │ └── golint.sh │ └── ugorji │ │ └── go │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codec │ │ ├── 0doc.go │ │ ├── README.md │ │ ├── binc.go │ │ ├── cbor.go │ │ ├── cbor_test.go │ │ ├── codec_test.go │ │ ├── codecgen │ │ │ ├── README.md │ │ │ ├── gen.go │ │ │ └── z.go │ │ ├── codecgen_test.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fast-path.generated.go │ │ ├── fast-path.go.tmpl │ │ ├── fast-path.not.go │ │ ├── gen-dec-array.go.tmpl │ │ ├── gen-dec-map.go.tmpl │ │ ├── gen-helper.generated.go │ │ ├── gen-helper.go.tmpl │ │ ├── gen.generated.go │ │ ├── gen.go │ │ ├── helper.go │ │ ├── helper_internal.go │ │ ├── helper_not_unsafe.go │ │ ├── helper_test.go │ │ ├── helper_unsafe.go │ │ ├── json.go │ │ ├── msgpack.go │ │ ├── noop.go │ │ ├── prebuild.go │ │ ├── prebuild.sh │ │ ├── py_test.go │ │ ├── rpc.go │ │ ├── simple.go │ │ ├── test-cbor-goldens.json │ │ ├── test.py │ │ ├── tests.sh │ │ ├── time.go │ │ └── values_test.go │ │ └── msgpack.org.md ├── golang.org │ └── x │ │ ├── crypto │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ ├── bcrypt.go │ │ │ └── bcrypt_test.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── blowfish_test.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── bn256 │ │ │ ├── bn256.go │ │ │ ├── bn256_test.go │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── example_test.go │ │ │ ├── gfp12.go │ │ │ ├── gfp2.go │ │ │ ├── gfp6.go │ │ │ ├── optate.go │ │ │ └── twist.go │ │ ├── cast5 │ │ │ ├── cast5.go │ │ │ └── cast5_test.go │ │ ├── codereview.cfg │ │ ├── curve25519 │ │ │ ├── const_amd64.s │ │ │ ├── cswap_amd64.s │ │ │ ├── curve25519.go │ │ │ ├── curve25519_test.go │ │ │ ├── doc.go │ │ │ ├── freeze_amd64.s │ │ │ ├── ladderstep_amd64.s │ │ │ ├── mont25519_amd64.go │ │ │ ├── mul_amd64.s │ │ │ └── square_amd64.s │ │ ├── hkdf │ │ │ ├── example_test.go │ │ │ ├── hkdf.go │ │ │ └── hkdf_test.go │ │ ├── md4 │ │ │ ├── md4.go │ │ │ ├── md4_test.go │ │ │ └── md4block.go │ │ ├── nacl │ │ │ ├── box │ │ │ │ ├── box.go │ │ │ │ └── box_test.go │ │ │ └── secretbox │ │ │ │ ├── secretbox.go │ │ │ │ └── secretbox_test.go │ │ ├── ocsp │ │ │ ├── ocsp.go │ │ │ └── ocsp_test.go │ │ ├── openpgp │ │ │ ├── armor │ │ │ │ ├── armor.go │ │ │ │ ├── armor_test.go │ │ │ │ └── encode.go │ │ │ ├── canonical_text.go │ │ │ ├── canonical_text_test.go │ │ │ ├── clearsign │ │ │ │ ├── clearsign.go │ │ │ │ └── clearsign_test.go │ │ │ ├── elgamal │ │ │ │ ├── elgamal.go │ │ │ │ └── elgamal_test.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── packet │ │ │ │ ├── compressed.go │ │ │ │ ├── compressed_test.go │ │ │ │ ├── config.go │ │ │ │ ├── encrypted_key.go │ │ │ │ ├── encrypted_key_test.go │ │ │ │ ├── literal.go │ │ │ │ ├── ocfb.go │ │ │ │ ├── ocfb_test.go │ │ │ │ ├── one_pass_signature.go │ │ │ │ ├── opaque.go │ │ │ │ ├── opaque_test.go │ │ │ │ ├── packet.go │ │ │ │ ├── packet_test.go │ │ │ │ ├── private_key.go │ │ │ │ ├── private_key_test.go │ │ │ │ ├── public_key.go │ │ │ │ ├── public_key_test.go │ │ │ │ ├── public_key_v3.go │ │ │ │ ├── public_key_v3_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_test.go │ │ │ │ ├── signature_v3.go │ │ │ │ ├── signature_v3_test.go │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ ├── symmetric_key_encrypted_test.go │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ ├── symmetrically_encrypted_test.go │ │ │ │ ├── userattribute.go │ │ │ │ ├── userattribute_test.go │ │ │ │ ├── userid.go │ │ │ │ └── userid_test.go │ │ │ ├── read.go │ │ │ ├── read_test.go │ │ │ ├── s2k │ │ │ │ ├── s2k.go │ │ │ │ └── s2k_test.go │ │ │ ├── write.go │ │ │ └── write_test.go │ │ ├── otr │ │ │ ├── libotr_test_helper.c │ │ │ ├── otr.go │ │ │ ├── otr_test.go │ │ │ └── smp.go │ │ ├── pbkdf2 │ │ │ ├── pbkdf2.go │ │ │ └── pbkdf2_test.go │ │ ├── poly1305 │ │ │ ├── const_amd64.s │ │ │ ├── poly1305.go │ │ │ ├── poly1305_amd64.s │ │ │ ├── poly1305_test.go │ │ │ ├── sum_amd64.go │ │ │ └── sum_ref.go │ │ ├── ripemd160 │ │ │ ├── ripemd160.go │ │ │ ├── ripemd160_test.go │ │ │ └── ripemd160block.go │ │ ├── salsa20 │ │ │ ├── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ ├── salsa20_ref.go │ │ │ │ └── salsa_test.go │ │ │ ├── salsa20.go │ │ │ └── salsa20_test.go │ │ ├── scrypt │ │ │ ├── scrypt.go │ │ │ └── scrypt_test.go │ │ ├── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── keccakf.go │ │ │ ├── register.go │ │ │ ├── sha3.go │ │ │ ├── sha3_test.go │ │ │ ├── shake.go │ │ │ ├── testdata │ │ │ │ └── keccakKats.json.deflate │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── ssh │ │ │ ├── agent │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── forward.go │ │ │ │ ├── keyring.go │ │ │ │ ├── server.go │ │ │ │ ├── server_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── buffer.go │ │ │ ├── buffer_test.go │ │ │ ├── certs.go │ │ │ ├── certs_test.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── cipher_test.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── client_auth_test.go │ │ │ ├── client_test.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── handshake.go │ │ │ ├── handshake_test.go │ │ │ ├── kex.go │ │ │ ├── kex_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── mac.go │ │ │ ├── mempipe_test.go │ │ │ ├── messages.go │ │ │ ├── messages_test.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── session_test.go │ │ │ ├── tcpip.go │ │ │ ├── tcpip_test.go │ │ │ ├── terminal │ │ │ │ ├── terminal.go │ │ │ │ ├── terminal_test.go │ │ │ │ ├── util.go │ │ │ │ ├── util_bsd.go │ │ │ │ ├── util_linux.go │ │ │ │ └── util_windows.go │ │ │ ├── test │ │ │ │ ├── agent_unix_test.go │ │ │ │ ├── cert_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── forward_unix_test.go │ │ │ │ ├── session_test.go │ │ │ │ ├── tcpip_test.go │ │ │ │ ├── test_unix_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── testdata │ │ │ │ ├── doc.go │ │ │ │ └── keys.go │ │ │ ├── testdata_test.go │ │ │ ├── transport.go │ │ │ └── transport_test.go │ │ ├── twofish │ │ │ ├── twofish.go │ │ │ └── twofish_test.go │ │ ├── xtea │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── xtea_test.go │ │ └── xts │ │ │ ├── xts.go │ │ │ └── xts_test.go │ │ ├── net │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── codereview.cfg │ │ ├── context │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── ctxhttp │ │ │ │ ├── cancelreq.go │ │ │ │ ├── cancelreq_go14.go │ │ │ │ ├── ctxhttp.go │ │ │ │ └── ctxhttp_test.go │ │ │ └── withtimeout_test.go │ │ ├── dict │ │ │ └── dict.go │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ ├── atom_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── charset │ │ │ │ ├── charset.go │ │ │ │ ├── charset_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── table.go │ │ │ │ └── testdata │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ ├── README │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ └── meta-content-attribute.html │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── entity_test.go │ │ │ ├── escape.go │ │ │ ├── escape_test.go │ │ │ ├── example_test.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── node_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── render.go │ │ │ ├── render_test.go │ │ │ ├── testdata │ │ │ │ ├── go1.html │ │ │ │ └── webkit │ │ │ │ │ ├── README │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ ├── comments01.dat │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ ├── entities01.dat │ │ │ │ │ ├── entities02.dat │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ ├── isindex.dat │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ ├── scripted │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ └── webkit01.dat │ │ │ │ │ ├── tables01.dat │ │ │ │ │ ├── tests1.dat │ │ │ │ │ ├── tests10.dat │ │ │ │ │ ├── tests11.dat │ │ │ │ │ ├── tests12.dat │ │ │ │ │ ├── tests14.dat │ │ │ │ │ ├── tests15.dat │ │ │ │ │ ├── tests16.dat │ │ │ │ │ ├── tests17.dat │ │ │ │ │ ├── tests18.dat │ │ │ │ │ ├── tests19.dat │ │ │ │ │ ├── tests2.dat │ │ │ │ │ ├── tests20.dat │ │ │ │ │ ├── tests21.dat │ │ │ │ │ ├── tests22.dat │ │ │ │ │ ├── tests23.dat │ │ │ │ │ ├── tests24.dat │ │ │ │ │ ├── tests25.dat │ │ │ │ │ ├── tests26.dat │ │ │ │ │ ├── tests3.dat │ │ │ │ │ ├── tests4.dat │ │ │ │ │ ├── tests5.dat │ │ │ │ │ ├── tests6.dat │ │ │ │ │ ├── tests7.dat │ │ │ │ │ ├── tests8.dat │ │ │ │ │ ├── tests9.dat │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ └── webkit02.dat │ │ │ ├── token.go │ │ │ └── token_test.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── buffer.go │ │ │ ├── buffer_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── flow.go │ │ │ ├── flow_test.go │ │ │ ├── frame.go │ │ │ ├── frame_test.go │ │ │ ├── gotrack.go │ │ │ ├── gotrack_test.go │ │ │ ├── h2demo │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── h2demo.go │ │ │ │ ├── launch.go │ │ │ │ ├── rootCA.key │ │ │ │ ├── rootCA.pem │ │ │ │ ├── rootCA.srl │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ ├── h2i │ │ │ │ ├── README.md │ │ │ │ └── h2i.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── hpack.go │ │ │ │ ├── hpack_test.go │ │ │ │ ├── huffman.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── http2_test.go │ │ │ ├── pipe.go │ │ │ ├── pipe_test.go │ │ │ ├── priority_test.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ ├── testdata │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ ├── transport.go │ │ │ ├── transport_test.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ └── z_spec_test.go │ │ ├── icmp │ │ │ ├── dstunreach.go │ │ │ ├── echo.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── helper_posix.go │ │ │ ├── interface.go │ │ │ ├── ipv4.go │ │ │ ├── ipv4_test.go │ │ │ ├── ipv6.go │ │ │ ├── listen_posix.go │ │ │ ├── listen_stub.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── messagebody.go │ │ │ ├── mpls.go │ │ │ ├── multipart.go │ │ │ ├── multipart_test.go │ │ │ ├── packettoobig.go │ │ │ ├── paramprob.go │ │ │ ├── ping_test.go │ │ │ ├── sys_freebsd.go │ │ │ └── timeexceeded.go │ │ ├── idna │ │ │ ├── idna.go │ │ │ ├── idna_test.go │ │ │ ├── punycode.go │ │ │ └── punycode_test.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.go │ │ │ ├── nettest │ │ │ │ ├── error_posix.go │ │ │ │ ├── error_stub.go │ │ │ │ ├── interface.go │ │ │ │ ├── rlimit.go │ │ │ │ ├── rlimit_stub.go │ │ │ │ ├── rlimit_unix.go │ │ │ │ ├── rlimit_windows.go │ │ │ │ ├── stack.go │ │ │ │ ├── stack_stub.go │ │ │ │ ├── stack_unix.go │ │ │ │ └── stack_windows.go │ │ │ └── timeseries │ │ │ │ ├── timeseries.go │ │ │ │ └── timeseries_test.go │ │ ├── ipv4 │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt_posix.go │ │ │ ├── dgramopt_stub.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt_posix.go │ │ │ ├── genericopt_stub.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── helper_stub.go │ │ │ ├── helper_unix.go │ │ │ ├── helper_windows.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── packet.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_asmreq.go │ │ │ ├── sockopt_asmreq_stub.go │ │ │ ├── sockopt_asmreq_unix.go │ │ │ ├── sockopt_asmreq_windows.go │ │ │ ├── sockopt_asmreqn_stub.go │ │ │ ├── sockopt_asmreqn_unix.go │ │ │ ├── sockopt_ssmreq_stub.go │ │ │ ├── sockopt_ssmreq_unix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sockopt_unix.go │ │ │ ├── sockopt_windows.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_openbsd.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_unix.go │ │ │ ├── thunk_linux_386.s │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── ipv6 │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt_posix.go │ │ │ ├── dgramopt_stub.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt_posix.go │ │ │ ├── genericopt_stub.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── helper_stub.go │ │ │ ├── helper_unix.go │ │ │ ├── helper_windows.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── icmp_windows.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_asmreq_unix.go │ │ │ ├── sockopt_asmreq_windows.go │ │ │ ├── sockopt_ssmreq_stub.go │ │ │ ├── sockopt_ssmreq_unix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sockopt_test.go │ │ │ ├── sockopt_unix.go │ │ │ ├── sockopt_windows.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_unix.go │ │ │ ├── thunk_linux_386.s │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── netutil │ │ │ ├── listen.go │ │ │ └── listen_test.go │ │ ├── proxy │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── per_host_test.go │ │ │ ├── proxy.go │ │ │ ├── proxy_test.go │ │ │ └── socks5.go │ │ ├── publicsuffix │ │ │ ├── gen.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── trace.go │ │ │ └── trace_test.go │ │ ├── webdav │ │ │ ├── file.go │ │ │ ├── file_test.go │ │ │ ├── if.go │ │ │ ├── if_test.go │ │ │ ├── internal │ │ │ │ └── xml │ │ │ │ │ ├── README │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── read_test.go │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ ├── xml.go │ │ │ │ │ └── xml_test.go │ │ │ ├── litmus_test_server.go │ │ │ ├── lock.go │ │ │ ├── lock_test.go │ │ │ ├── prop.go │ │ │ ├── prop_test.go │ │ │ ├── webdav.go │ │ │ ├── webdav_test.go │ │ │ ├── xml.go │ │ │ └── xml_test.go │ │ └── websocket │ │ │ ├── client.go │ │ │ ├── exampledial_test.go │ │ │ ├── examplehandler_test.go │ │ │ ├── hybi.go │ │ │ ├── hybi_test.go │ │ │ ├── server.go │ │ │ ├── websocket.go │ │ │ └── websocket_test.go │ │ └── sys │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── codereview.cfg │ │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── env_unset.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksyscall.pl │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_go15_plan9.go │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── syscall_test.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ └── zsysnum_plan9.go │ │ ├── unix │ │ ├── .gitignore │ │ ├── asm.s │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_386.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_ppc64x.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 │ │ ├── constants.go │ │ ├── creds_test.go │ │ ├── env_unix.go │ │ ├── env_unset.go │ │ ├── export_test.go │ │ ├── flock.go │ │ ├── flock_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── 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 │ │ ├── mmap_unix_test.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_bsd_test.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_386.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_test.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_ppc64x.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_test.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_test.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_386.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_ppc64.go │ │ ├── zerrors_linux_ppc64le.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_386.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_ppc64.go │ │ ├── zsyscall_linux_ppc64le.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_386.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_ppc64.go │ │ ├── zsysnum_linux_ppc64le.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_386.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_ppc64.go │ │ ├── ztypes_linux_ppc64le.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.s │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── dll_windows.go │ │ ├── env_unset.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── export_test.go │ │ ├── key.go │ │ ├── registry_test.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── svc │ │ ├── debug │ │ │ ├── log.go │ │ │ └── service.go │ │ ├── event.go │ │ ├── eventlog │ │ │ ├── install.go │ │ │ ├── log.go │ │ │ └── log_test.go │ │ ├── example │ │ │ ├── beep.go │ │ │ ├── install.go │ │ │ ├── main.go │ │ │ ├── manage.go │ │ │ └── service.go │ │ ├── go12.c │ │ ├── go12.go │ │ ├── go13.go │ │ ├── mgr │ │ │ ├── config.go │ │ │ ├── mgr.go │ │ │ ├── mgr_test.go │ │ │ └── service.go │ │ ├── security.go │ │ ├── service.go │ │ ├── svc_test.go │ │ ├── sys_386.s │ │ └── sys_amd64.s │ │ ├── syscall.go │ │ ├── syscall_test.go │ │ ├── syscall_windows.go │ │ ├── syscall_windows_test.go │ │ ├── zsyscall_windows.go │ │ ├── ztypes_windows.go │ │ ├── ztypes_windows_386.go │ │ └── ztypes_windows_amd64.go ├── gopkg.in │ └── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── suite_test.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go ├── k8s.io │ └── kubernetes │ │ ├── .generated_docs │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIB.md │ │ ├── CONTRIBUTING.md │ │ ├── DESIGN.md │ │ ├── Godeps │ │ ├── .license_file_state │ │ ├── Godeps.json │ │ ├── LICENSES │ │ ├── OWNERS │ │ └── Readme │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── Vagrantfile │ │ ├── api │ │ └── swagger-spec │ │ │ ├── api.json │ │ │ ├── apis.json │ │ │ ├── autoscaling.json │ │ │ ├── autoscaling_v1.json │ │ │ ├── batch.json │ │ │ ├── batch_v1.json │ │ │ ├── extensions.json │ │ │ ├── extensions_v1beta1.json │ │ │ ├── resourceListing.json │ │ │ ├── v1.json │ │ │ └── version.json │ │ ├── build │ │ ├── OWNERS │ │ ├── README.md │ │ ├── build-image │ │ │ ├── Dockerfile │ │ │ └── cross │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ └── VERSION │ │ ├── common.sh │ │ ├── copy-output.sh │ │ ├── debian-iptables │ │ │ ├── Dockerfile │ │ │ └── Makefile │ │ ├── json-extractor.py │ │ ├── make-build-image.sh │ │ ├── make-clean.sh │ │ ├── make-release-notes.sh │ │ ├── pause │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── pause.go │ │ │ └── prepare.sh │ │ ├── push-ci-build.sh │ │ ├── push-devel-build.sh │ │ ├── push-official-release.sh │ │ ├── release.sh │ │ ├── run.sh │ │ ├── shell.sh │ │ └── versionize-docs.sh │ │ ├── cluster │ │ ├── OWNERS │ │ ├── README.md │ │ ├── addons │ │ │ ├── README.md │ │ │ ├── cluster-loadbalancing │ │ │ │ ├── MAINTAINERS.md │ │ │ │ └── glbc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── default-svc.yaml │ │ │ │ │ └── glbc-controller.yaml │ │ │ ├── cluster-monitoring │ │ │ │ ├── README.md │ │ │ │ ├── google │ │ │ │ │ ├── heapster-controller.yaml │ │ │ │ │ └── heapster-service.yaml │ │ │ │ ├── googleinfluxdb │ │ │ │ │ └── heapster-controller-combined.yaml │ │ │ │ ├── influxdb │ │ │ │ │ ├── grafana-service.yaml │ │ │ │ │ ├── heapster-controller.yaml │ │ │ │ │ ├── heapster-service.yaml │ │ │ │ │ ├── influxdb-grafana-controller.yaml │ │ │ │ │ └── influxdb-service.yaml │ │ │ │ └── standalone │ │ │ │ │ ├── heapster-controller.yaml │ │ │ │ │ └── heapster-service.yaml │ │ │ ├── dashboard │ │ │ │ ├── MAINTAINERS.md │ │ │ │ ├── README.md │ │ │ │ ├── dashboard-controller.yaml │ │ │ │ └── dashboard-service.yaml │ │ │ ├── dns │ │ │ │ ├── MAINTAINERS.md │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── kube2sky │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Changelog │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── RELEASES.md │ │ │ │ │ ├── kube2sky.go │ │ │ │ │ └── kube2sky_test.go │ │ │ │ ├── skydns-rc.yaml.in │ │ │ │ ├── skydns-svc.yaml.in │ │ │ │ └── skydns │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ └── README.md │ │ │ ├── fluentd-elasticsearch │ │ │ │ ├── es-controller.yaml │ │ │ │ ├── es-image │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── elasticsearch.yml │ │ │ │ │ ├── elasticsearch_logging_discovery.go │ │ │ │ │ └── run.sh │ │ │ │ ├── es-service.yaml │ │ │ │ ├── fluentd-es-image │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ └── td-agent.conf │ │ │ │ ├── kibana-controller.yaml │ │ │ │ ├── kibana-image │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ └── run.sh │ │ │ │ └── kibana-service.yaml │ │ │ ├── fluentd-gcp │ │ │ │ └── fluentd-gcp-image │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ └── google-fluentd.conf │ │ │ ├── python-image │ │ │ │ ├── Dockerfile │ │ │ │ └── README.md │ │ │ └── registry │ │ │ │ ├── README.md │ │ │ │ ├── auth │ │ │ │ ├── README.md │ │ │ │ └── registry-auth-rc.yaml │ │ │ │ ├── gcs │ │ │ │ ├── README.md │ │ │ │ └── registry-gcs-rc.yaml │ │ │ │ ├── images │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── proxy.conf.in │ │ │ │ ├── proxy.conf.insecure.in │ │ │ │ └── run_proxy.sh │ │ │ │ ├── registry-pv.yaml.in │ │ │ │ ├── registry-pvc.yaml.in │ │ │ │ ├── registry-rc.yaml │ │ │ │ ├── registry-svc.yaml │ │ │ │ └── tls │ │ │ │ ├── README.md │ │ │ │ ├── registry-tls-rc.yaml │ │ │ │ └── registry-tls-svc.yaml │ │ ├── aws │ │ │ ├── config-default.sh │ │ │ ├── config-test.sh │ │ │ ├── coreos │ │ │ │ ├── node.yaml │ │ │ │ └── util.sh │ │ │ ├── jessie │ │ │ │ └── util.sh │ │ │ ├── options.md │ │ │ ├── templates │ │ │ │ ├── configure-vm-aws.sh │ │ │ │ ├── format-disks.sh │ │ │ │ └── iam │ │ │ │ │ ├── kubernetes-master-policy.json │ │ │ │ │ ├── kubernetes-master-role.json │ │ │ │ │ ├── kubernetes-minion-policy.json │ │ │ │ │ └── kubernetes-minion-role.json │ │ │ ├── trusty │ │ │ │ ├── common.sh │ │ │ │ └── util.sh │ │ │ ├── util.sh │ │ │ ├── vivid │ │ │ │ └── util.sh │ │ │ ├── wheezy │ │ │ │ └── util.sh │ │ │ └── wily │ │ │ │ └── util.sh │ │ ├── azure │ │ │ ├── .gitignore │ │ │ ├── config-default.sh │ │ │ └── util.sh │ │ ├── centos │ │ │ ├── .gitignore │ │ │ ├── build.sh │ │ │ ├── config-build.sh │ │ │ ├── config-default.sh │ │ │ ├── master │ │ │ │ └── scripts │ │ │ │ │ ├── apiserver.sh │ │ │ │ │ ├── controller-manager.sh │ │ │ │ │ ├── etcd.sh │ │ │ │ │ └── scheduler.sh │ │ │ ├── node │ │ │ │ └── scripts │ │ │ │ │ ├── docker.sh │ │ │ │ │ ├── flannel.sh │ │ │ │ │ ├── kubelet.sh │ │ │ │ │ └── proxy.sh │ │ │ └── util.sh │ │ ├── cloudimages │ │ │ ├── README.md │ │ │ └── k8s-ebs-jessie-amd64-hvm.yml │ │ ├── common.sh │ │ ├── gce │ │ │ ├── config-common.sh │ │ │ ├── config-default.sh │ │ │ ├── config-test.sh │ │ │ ├── configure-vm.sh │ │ │ ├── coreos │ │ │ │ ├── configure-kubelet.sh │ │ │ │ ├── configure-node.sh │ │ │ │ ├── helper.sh │ │ │ │ ├── kube-manifests │ │ │ │ │ ├── addons │ │ │ │ │ │ ├── cluster-loadbalancing │ │ │ │ │ │ │ └── glbc │ │ │ │ │ │ │ │ ├── default-svc.yaml │ │ │ │ │ │ │ │ └── glbc-controller.yaml │ │ │ │ │ │ ├── cluster-monitoring │ │ │ │ │ │ │ ├── google │ │ │ │ │ │ │ │ ├── heapster-controller.yaml │ │ │ │ │ │ │ │ └── heapster-service.yaml │ │ │ │ │ │ │ ├── googleinfluxdb │ │ │ │ │ │ │ │ └── heapster-controller-combined.yaml │ │ │ │ │ │ │ ├── influxdb │ │ │ │ │ │ │ │ ├── grafana-service.yaml │ │ │ │ │ │ │ │ ├── heapster-controller.yaml │ │ │ │ │ │ │ │ ├── heapster-service.yaml │ │ │ │ │ │ │ │ ├── influxdb-grafana-controller.yaml │ │ │ │ │ │ │ │ └── influxdb-service.yaml │ │ │ │ │ │ │ └── standalone │ │ │ │ │ │ │ │ ├── heapster-controller.yaml │ │ │ │ │ │ │ │ └── heapster-service.yaml │ │ │ │ │ │ ├── dashboard │ │ │ │ │ │ │ ├── dashboard-controller.yaml │ │ │ │ │ │ │ └── dashboard-service.yaml │ │ │ │ │ │ ├── dns │ │ │ │ │ │ │ ├── skydns-rc.yaml │ │ │ │ │ │ │ └── skydns-svc.yaml │ │ │ │ │ │ ├── fluentd-elasticsearch │ │ │ │ │ │ │ ├── es-controller.yaml │ │ │ │ │ │ │ ├── es-service.yaml │ │ │ │ │ │ │ ├── kibana-controller.yaml │ │ │ │ │ │ │ └── kibana-service.yaml │ │ │ │ │ │ ├── namespace.yaml │ │ │ │ │ │ └── registry │ │ │ │ │ │ │ ├── registry-pv.yaml │ │ │ │ │ │ │ ├── registry-pvc.yaml │ │ │ │ │ │ │ ├── registry-rc.yaml │ │ │ │ │ │ │ └── registry-svc.yaml │ │ │ │ │ ├── etcd-events.yaml │ │ │ │ │ ├── etcd.yaml │ │ │ │ │ ├── kube-apiserver.yaml │ │ │ │ │ ├── kube-controller-manager.yaml │ │ │ │ │ ├── kube-scheduler.yaml │ │ │ │ │ ├── kube-system.json │ │ │ │ │ ├── kubelet-config.yaml │ │ │ │ │ └── kubeproxy-config.yaml │ │ │ │ ├── master.yaml │ │ │ │ └── node.yaml │ │ │ ├── debian │ │ │ │ └── helper.sh │ │ │ ├── delete-stranded-load-balancers.sh │ │ │ ├── list-resources.sh │ │ │ ├── trusty │ │ │ │ ├── configure-helper.sh │ │ │ │ ├── configure.sh │ │ │ │ ├── helper.sh │ │ │ │ ├── master.yaml │ │ │ │ └── node.yaml │ │ │ ├── upgrade.sh │ │ │ └── util.sh │ │ ├── get-kube-local.sh │ │ ├── get-kube.sh │ │ ├── gke │ │ │ ├── config-common.sh │ │ │ ├── config-default.sh │ │ │ ├── config-test.sh │ │ │ └── util.sh │ │ ├── images │ │ │ ├── etcd │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ └── build-etcd.sh │ │ │ ├── hyperkube │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── etcd.json │ │ │ │ ├── kube-proxy.json │ │ │ │ ├── master-multi.json │ │ │ │ ├── master.json │ │ │ │ ├── setup-files.sh │ │ │ │ ├── teardown.sh │ │ │ │ └── turnup.sh │ │ │ ├── kubelet │ │ │ │ ├── Dockerfile │ │ │ │ └── Makefile │ │ │ ├── kubemark │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── build-kubemark.sh │ │ │ │ └── kubemark.sh │ │ │ └── nginx │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── backports.list │ │ ├── juju │ │ │ ├── bundles │ │ │ │ ├── README.md │ │ │ │ └── local.yaml │ │ │ ├── charms │ │ │ │ └── trusty │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── kubernetes-master │ │ │ │ │ ├── .bzrignore │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .vendor-rc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config.yaml │ │ │ │ │ ├── copyright │ │ │ │ │ ├── files │ │ │ │ │ │ ├── apiserver.upstart.tmpl │ │ │ │ │ │ ├── controller-manager.upstart.tmpl │ │ │ │ │ │ ├── distribution.conf.tmpl │ │ │ │ │ │ ├── nginx.conf.tmpl │ │ │ │ │ │ └── scheduler.upstart.tmpl │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── config-changed │ │ │ │ │ │ ├── etcd-relation-changed │ │ │ │ │ │ ├── hooks.py │ │ │ │ │ │ ├── install │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ ├── kubernetes_installer.py │ │ │ │ │ │ ├── minions-api-relation-changed │ │ │ │ │ │ ├── network-relation-changed │ │ │ │ │ │ └── setup.py │ │ │ │ │ ├── icon.svg │ │ │ │ │ ├── metadata.yaml │ │ │ │ │ ├── notes.txt │ │ │ │ │ ├── requirements.txt │ │ │ │ │ └── unit_tests │ │ │ │ │ │ ├── kubernetes_installer_test.py │ │ │ │ │ │ └── test_install.py │ │ │ │ │ └── kubernetes │ │ │ │ │ ├── .bzrignore │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .vendor-rc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── copyright │ │ │ │ │ ├── files │ │ │ │ │ ├── cadvisor.upstart.tmpl │ │ │ │ │ ├── kubelet.upstart.tmpl │ │ │ │ │ └── proxy.upstart.tmpl │ │ │ │ │ ├── hooks │ │ │ │ │ ├── api-relation-changed │ │ │ │ │ ├── etcd-relation-changed │ │ │ │ │ ├── hooks.py │ │ │ │ │ ├── install │ │ │ │ │ ├── kubernetes_installer.py │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── registrator.py │ │ │ │ │ ├── network-relation-changed │ │ │ │ │ └── start │ │ │ │ │ ├── icon.svg │ │ │ │ │ ├── metadata.yaml │ │ │ │ │ ├── python_requirements.txt │ │ │ │ │ ├── requirements.txt │ │ │ │ │ └── unit_tests │ │ │ │ │ ├── lib │ │ │ │ │ └── test_registrator.py │ │ │ │ │ └── test_hooks.py │ │ │ ├── config-default.sh │ │ │ ├── config-test.sh │ │ │ ├── kube-system-ns.yaml │ │ │ ├── prereqs │ │ │ │ └── ubuntu-juju.sh │ │ │ ├── return-node-ips.py │ │ │ └── util.sh │ │ ├── kube-down.sh │ │ ├── kube-env.sh │ │ ├── kube-push.sh │ │ ├── kube-up.sh │ │ ├── kube-util.sh │ │ ├── kubectl.sh │ │ ├── kubemark │ │ │ ├── config-default.sh │ │ │ └── util.sh │ │ ├── lib │ │ │ ├── logging.sh │ │ │ └── util.sh │ │ ├── libvirt-coreos │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── config-default.sh │ │ │ ├── config-test.sh │ │ │ ├── coreos.xml │ │ │ ├── network_kubernetes_global.xml │ │ │ ├── network_kubernetes_pods.xml │ │ │ ├── skydns-rc.yaml │ │ │ ├── skydns-svc.yaml │ │ │ ├── user_data.yml │ │ │ ├── user_data_master.yml │ │ │ ├── user_data_minion.yml │ │ │ └── util.sh │ │ ├── log-dump.sh │ │ ├── mesos │ │ │ └── docker │ │ │ │ ├── .gitignore │ │ │ │ ├── OWNERS │ │ │ │ ├── config-default.sh │ │ │ │ ├── config-test.sh │ │ │ │ ├── deploy-addons.sh │ │ │ │ ├── deploy-dns.sh │ │ │ │ ├── deploy-ui.sh │ │ │ │ ├── docker-compose.yml │ │ │ │ ├── km │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── build.sh │ │ │ │ └── opt │ │ │ │ │ └── mesos-cloud.conf │ │ │ │ ├── kube-system-ns.yaml │ │ │ │ ├── socat │ │ │ │ ├── Dockerfile │ │ │ │ └── build.sh │ │ │ │ ├── static-pod.json │ │ │ │ ├── static-pods-ns.yaml │ │ │ │ ├── test │ │ │ │ ├── Dockerfile │ │ │ │ └── build.sh │ │ │ │ └── util.sh │ │ ├── options.md │ │ ├── ovirt │ │ │ └── ovirt-cloud.conf │ │ ├── rackspace │ │ │ ├── authorization.sh │ │ │ ├── cloud-config │ │ │ │ ├── master-cloud-config.yaml │ │ │ │ └── node-cloud-config.yaml │ │ │ ├── config-default.sh │ │ │ ├── kube-up.sh │ │ │ └── util.sh │ │ ├── saltbase │ │ │ ├── README.md │ │ │ ├── install.sh │ │ │ ├── pillar │ │ │ │ ├── README.md │ │ │ │ ├── cluster-params.sls │ │ │ │ ├── docker-images.sls │ │ │ │ ├── logging.sls │ │ │ │ ├── mine.sls │ │ │ │ ├── privilege.sls │ │ │ │ ├── systemd.sls │ │ │ │ └── top.sls │ │ │ ├── reactor │ │ │ │ ├── README.md │ │ │ │ ├── highstate-masters.sls │ │ │ │ ├── highstate-minions.sls │ │ │ │ └── highstate-new.sls │ │ │ └── salt │ │ │ │ ├── README.md │ │ │ │ ├── base.sls │ │ │ │ ├── cadvisor │ │ │ │ └── init.sls │ │ │ │ ├── cni │ │ │ │ └── init.sls │ │ │ │ ├── debian-auto-upgrades │ │ │ │ ├── 20auto-upgrades │ │ │ │ └── init.sls │ │ │ │ ├── docker │ │ │ │ ├── default │ │ │ │ ├── docker-defaults │ │ │ │ ├── docker-healthcheck │ │ │ │ ├── docker-healthcheck.service │ │ │ │ ├── docker-healthcheck.timer │ │ │ │ ├── docker-prestart │ │ │ │ ├── docker.list │ │ │ │ ├── docker.service │ │ │ │ └── init.sls │ │ │ │ ├── e2e │ │ │ │ └── init.sls │ │ │ │ ├── etcd │ │ │ │ ├── etcd.manifest │ │ │ │ └── init.sls │ │ │ │ ├── flannel-server │ │ │ │ ├── flannel-server.manifest │ │ │ │ ├── init.sls │ │ │ │ └── network.json │ │ │ │ ├── flannel │ │ │ │ ├── default │ │ │ │ ├── init.sls │ │ │ │ └── initd │ │ │ │ ├── fluentd-es │ │ │ │ ├── fluentd-es.yaml │ │ │ │ └── init.sls │ │ │ │ ├── fluentd-gcp │ │ │ │ ├── fluentd-gcp.yaml │ │ │ │ └── init.sls │ │ │ │ ├── generate-cert │ │ │ │ ├── init.sls │ │ │ │ ├── make-ca-cert.sh │ │ │ │ └── make-cert.sh │ │ │ │ ├── helpers │ │ │ │ ├── init.sls │ │ │ │ └── safe_format_and_mount │ │ │ │ ├── kube-addons │ │ │ │ ├── init.sls │ │ │ │ ├── initd │ │ │ │ ├── kube-addon-update.sh │ │ │ │ ├── kube-addons.service │ │ │ │ ├── kube-addons.sh │ │ │ │ └── namespace.yaml │ │ │ │ ├── kube-admission-controls │ │ │ │ ├── init.sls │ │ │ │ └── limit-range │ │ │ │ │ └── limit-range.yaml │ │ │ │ ├── kube-apiserver │ │ │ │ ├── init.sls │ │ │ │ └── kube-apiserver.manifest │ │ │ │ ├── kube-client-tools.sls │ │ │ │ ├── kube-controller-manager │ │ │ │ ├── init.sls │ │ │ │ └── kube-controller-manager.manifest │ │ │ │ ├── kube-master-addons │ │ │ │ ├── init.sls │ │ │ │ ├── initd │ │ │ │ ├── kube-master-addons.service │ │ │ │ └── kube-master-addons.sh │ │ │ │ ├── kube-node-unpacker │ │ │ │ ├── init.sls │ │ │ │ ├── initd │ │ │ │ ├── kube-node-unpacker.service │ │ │ │ └── kube-node-unpacker.sh │ │ │ │ ├── kube-proxy │ │ │ │ ├── init.sls │ │ │ │ ├── kube-proxy.manifest │ │ │ │ └── kubeconfig │ │ │ │ ├── kube-registry-proxy │ │ │ │ ├── init.sls │ │ │ │ └── kube-registry-proxy.yaml │ │ │ │ ├── kube-scheduler │ │ │ │ ├── init.sls │ │ │ │ └── kube-scheduler.manifest │ │ │ │ ├── kubelet │ │ │ │ ├── default │ │ │ │ ├── init.sls │ │ │ │ ├── initd │ │ │ │ ├── kubeconfig │ │ │ │ └── kubelet.service │ │ │ │ ├── logrotate │ │ │ │ ├── conf │ │ │ │ ├── cron │ │ │ │ ├── docker-containers │ │ │ │ └── init.sls │ │ │ │ ├── nginx │ │ │ │ ├── init.sls │ │ │ │ ├── kubernetes-site │ │ │ │ ├── nginx.conf │ │ │ │ └── nginx.json │ │ │ │ ├── ntp │ │ │ │ └── init.sls │ │ │ │ ├── opencontrail-networking-master │ │ │ │ └── init.sls │ │ │ │ ├── opencontrail-networking-minion │ │ │ │ └── init.sls │ │ │ │ ├── salt-helpers │ │ │ │ ├── init.sls │ │ │ │ ├── pkg-apt │ │ │ │ └── services │ │ │ │ ├── static-routes │ │ │ │ ├── if-down │ │ │ │ ├── if-up │ │ │ │ ├── init.sls │ │ │ │ └── refresh │ │ │ │ ├── supervisor │ │ │ │ ├── docker-checker.sh │ │ │ │ ├── docker.conf │ │ │ │ ├── init.sls │ │ │ │ ├── kube-addons-checker.sh │ │ │ │ ├── kube-addons.conf │ │ │ │ ├── kubelet-checker.sh │ │ │ │ ├── kubelet.conf │ │ │ │ └── supervisor_watcher.sh │ │ │ │ └── top.sls │ │ ├── test-conformance.sh │ │ ├── test-e2e.sh │ │ ├── test-network.sh │ │ ├── test-smoke.sh │ │ ├── ubuntu │ │ │ ├── .gitignore │ │ │ ├── config-default.sh │ │ │ ├── config-test.sh │ │ │ ├── deployAddons.sh │ │ │ ├── download-release.sh │ │ │ ├── master-flannel │ │ │ │ ├── init_conf │ │ │ │ │ └── flanneld.conf │ │ │ │ └── init_scripts │ │ │ │ │ └── flanneld │ │ │ ├── master │ │ │ │ ├── init_conf │ │ │ │ │ ├── etcd.conf │ │ │ │ │ ├── kube-apiserver.conf │ │ │ │ │ ├── kube-controller-manager.conf │ │ │ │ │ └── kube-scheduler.conf │ │ │ │ └── init_scripts │ │ │ │ │ ├── etcd │ │ │ │ │ ├── kube-apiserver │ │ │ │ │ ├── kube-controller-manager │ │ │ │ │ └── kube-scheduler │ │ │ ├── minion-flannel │ │ │ │ ├── init_conf │ │ │ │ │ └── flanneld.conf │ │ │ │ └── init_scripts │ │ │ │ │ └── flanneld │ │ │ ├── minion │ │ │ │ ├── init_conf │ │ │ │ │ ├── kube-proxy.conf │ │ │ │ │ └── kubelet.conf │ │ │ │ └── init_scripts │ │ │ │ │ ├── kube-proxy │ │ │ │ │ └── kubelet │ │ │ ├── namespace.yaml │ │ │ ├── reconfDocker.sh │ │ │ └── util.sh │ │ ├── update-storage-objects.sh │ │ ├── vagrant │ │ │ ├── OWNERS │ │ │ ├── config-default.sh │ │ │ ├── config-test.sh │ │ │ ├── pod-ip-test.sh │ │ │ ├── provision-master.sh │ │ │ ├── provision-network-master.sh │ │ │ ├── provision-network-node.sh │ │ │ ├── provision-node.sh │ │ │ ├── provision-utils.sh │ │ │ └── util.sh │ │ ├── validate-cluster.sh │ │ └── vsphere │ │ │ ├── config-common.sh │ │ │ ├── config-default.sh │ │ │ ├── config-test.sh │ │ │ ├── templates │ │ │ ├── create-dynamic-salt-files.sh │ │ │ ├── hostname.sh │ │ │ ├── install-release.sh │ │ │ ├── salt-master.sh │ │ │ └── salt-minion.sh │ │ │ └── util.sh │ │ ├── cmd │ │ ├── OWNERS │ │ ├── genbashcomp │ │ │ └── gen_kubectl_bash_comp.go │ │ ├── genconversion │ │ │ └── conversion.go │ │ ├── gendeepcopy │ │ │ └── deep_copy.go │ │ ├── gendocs │ │ │ └── gen_kubectl_docs.go │ │ ├── genkubedocs │ │ │ └── gen_kube_docs.go │ │ ├── genman │ │ │ └── gen_kubectl_man.go │ │ ├── genswaggertypedocs │ │ │ └── swagger_type_docs.go │ │ ├── genutils │ │ │ ├── genutils.go │ │ │ └── genutils_test.go │ │ ├── hyperkube │ │ │ ├── hyperkube.go │ │ │ ├── hyperkube_test.go │ │ │ ├── kube-apiserver.go │ │ │ ├── kube-controller-manager.go │ │ │ ├── kube-proxy.go │ │ │ ├── kube-scheduler.go │ │ │ ├── kubectl.go │ │ │ ├── kubelet.go │ │ │ ├── main.go │ │ │ └── server.go │ │ ├── integration │ │ │ ├── integration.go │ │ │ └── v1-controller.json │ │ ├── kube-apiserver │ │ │ ├── OWNERS │ │ │ ├── apiserver.go │ │ │ └── app │ │ │ │ ├── options │ │ │ │ ├── options.go │ │ │ │ └── options_test.go │ │ │ │ ├── plugins.go │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ ├── kube-controller-manager │ │ │ ├── OWNERS │ │ │ ├── app │ │ │ │ ├── controllermanager.go │ │ │ │ ├── options │ │ │ │ │ └── options.go │ │ │ │ └── plugins.go │ │ │ └── controller-manager.go │ │ ├── kube-proxy │ │ │ ├── app │ │ │ │ ├── conntrack.go │ │ │ │ ├── options │ │ │ │ │ └── options.go │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ │ └── proxy.go │ │ ├── kubectl │ │ │ ├── app │ │ │ │ └── kubectl.go │ │ │ └── kubectl.go │ │ ├── kubelet │ │ │ ├── OWNERS │ │ │ ├── app │ │ │ │ ├── options │ │ │ │ │ └── options.go │ │ │ │ ├── plugins.go │ │ │ │ └── server.go │ │ │ └── kubelet.go │ │ ├── kubemark │ │ │ └── hollow-node.go │ │ ├── libs │ │ │ └── go2idl │ │ │ │ ├── .import-restrictions │ │ │ │ ├── OWNERS │ │ │ │ ├── args │ │ │ │ └── args.go │ │ │ │ ├── client-gen │ │ │ │ ├── .import-restrictions │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── args │ │ │ │ │ └── args.go │ │ │ │ ├── generators │ │ │ │ │ ├── client_generator.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── fake_client_generator.go │ │ │ │ │ │ ├── generator_fake_for_clientset.go │ │ │ │ │ │ ├── generator_fake_for_group.go │ │ │ │ │ │ └── generator_fake_for_type.go │ │ │ │ │ ├── generator_for_clientset.go │ │ │ │ │ ├── generator_for_expansion.go │ │ │ │ │ ├── generator_for_group.go │ │ │ │ │ ├── generator_for_type.go │ │ │ │ │ └── normalization │ │ │ │ │ │ └── normalization.go │ │ │ │ ├── main.go │ │ │ │ ├── testdata │ │ │ │ │ └── apis │ │ │ │ │ │ └── testgroup │ │ │ │ │ │ ├── install │ │ │ │ │ │ └── install.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.generated.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.generated.go │ │ │ │ │ │ └── types.go │ │ │ │ └── testoutput │ │ │ │ │ ├── clientset_generated │ │ │ │ │ └── test_internalclientset │ │ │ │ │ │ └── clientset.go │ │ │ │ │ └── testgroup │ │ │ │ │ └── unversioned │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── testgroup_client.go │ │ │ │ │ ├── testgroup_test.go │ │ │ │ │ ├── testtype.go │ │ │ │ │ └── testtype_expansion.go │ │ │ │ ├── deepcopy-gen │ │ │ │ ├── generators │ │ │ │ │ └── deepcopy.go │ │ │ │ └── main.go │ │ │ │ ├── generator │ │ │ │ ├── default_generator.go │ │ │ │ ├── default_package.go │ │ │ │ ├── doc.go │ │ │ │ ├── error_tracker.go │ │ │ │ ├── execute.go │ │ │ │ ├── generator.go │ │ │ │ ├── import_tracker.go │ │ │ │ ├── snippet_writer.go │ │ │ │ └── snippet_writer_test.go │ │ │ │ ├── go-to-protobuf │ │ │ │ ├── .gitignore │ │ │ │ ├── OWNERS │ │ │ │ ├── main.go │ │ │ │ ├── protobuf │ │ │ │ │ ├── cmd.go │ │ │ │ │ ├── generator.go │ │ │ │ │ ├── import_tracker.go │ │ │ │ │ ├── namer.go │ │ │ │ │ ├── package.go │ │ │ │ │ └── parser.go │ │ │ │ └── protoc-gen-gogo │ │ │ │ │ └── main.go │ │ │ │ ├── import-boss │ │ │ │ ├── .gitignore │ │ │ │ ├── generators │ │ │ │ │ ├── import_restrict.go │ │ │ │ │ └── import_restrict_test.go │ │ │ │ └── main.go │ │ │ │ ├── namer │ │ │ │ ├── doc.go │ │ │ │ ├── namer.go │ │ │ │ ├── namer_test.go │ │ │ │ ├── order.go │ │ │ │ ├── plural_namer.go │ │ │ │ └── plural_namer_test.go │ │ │ │ ├── parser │ │ │ │ ├── doc.go │ │ │ │ ├── parse.go │ │ │ │ └── parse_test.go │ │ │ │ ├── set-gen │ │ │ │ ├── .gitignore │ │ │ │ ├── generators │ │ │ │ │ └── sets.go │ │ │ │ └── main.go │ │ │ │ └── types │ │ │ │ ├── comments.go │ │ │ │ ├── comments_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── flatten.go │ │ │ │ ├── flatten_test.go │ │ │ │ ├── types.go │ │ │ │ └── types_test.go │ │ ├── linkcheck │ │ │ └── links.go │ │ └── mungedocs │ │ │ ├── README.md │ │ │ ├── analytics.go │ │ │ ├── analytics_test.go │ │ │ ├── example_syncer.go │ │ │ ├── example_syncer_test.go │ │ │ ├── headers.go │ │ │ ├── headers_test.go │ │ │ ├── kubectl_dash_f.go │ │ │ ├── kubectl_dash_f_test.go │ │ │ ├── links.go │ │ │ ├── links_test.go │ │ │ ├── mungedocs.go │ │ │ ├── preformatted.go │ │ │ ├── preformatted_test.go │ │ │ ├── testdata │ │ │ ├── example.txt │ │ │ └── pod.yaml │ │ │ ├── toc.go │ │ │ ├── toc_test.go │ │ │ ├── unversioned_warning.go │ │ │ ├── unversioned_warning_test.go │ │ │ ├── util.go │ │ │ ├── util_test.go │ │ │ ├── whitespace.go │ │ │ └── whitespace_test.go │ │ ├── code-of-conduct.md │ │ ├── contrib │ │ ├── README.md │ │ ├── completions │ │ │ └── bash │ │ │ │ ├── MAINTAINERS.md │ │ │ │ └── kubectl │ │ └── mesos │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── ci │ │ │ ├── build-release.sh │ │ │ ├── build.sh │ │ │ ├── run-with-cluster.sh │ │ │ ├── run.sh │ │ │ ├── test-conformance.sh │ │ │ ├── test-e2e.sh │ │ │ ├── test-integration.sh │ │ │ ├── test-smoke.sh │ │ │ └── test-unit.sh │ │ │ ├── cmd │ │ │ ├── k8sm-controller-manager │ │ │ │ ├── doc.go │ │ │ │ └── main.go │ │ │ ├── k8sm-executor │ │ │ │ ├── doc.go │ │ │ │ └── main.go │ │ │ ├── k8sm-scheduler │ │ │ │ ├── doc.go │ │ │ │ └── main.go │ │ │ └── km │ │ │ │ ├── doc.go │ │ │ │ ├── hyperkube.go │ │ │ │ ├── hyperkube_test.go │ │ │ │ ├── k8sm-controllermanager.go │ │ │ │ ├── k8sm-executor.go │ │ │ │ ├── k8sm-minion.go │ │ │ │ ├── k8sm-scheduler.go │ │ │ │ ├── km.go │ │ │ │ ├── kube-apiserver.go │ │ │ │ ├── kube-proxy.go │ │ │ │ └── server.go │ │ │ ├── docs │ │ │ ├── architecture.gliffy │ │ │ ├── architecture.md │ │ │ ├── architecture.png │ │ │ ├── architecture.svg │ │ │ ├── discovery.md │ │ │ ├── ha.md │ │ │ ├── issues.md │ │ │ ├── logos │ │ │ │ ├── k8s-256x256.png │ │ │ │ ├── k8s-48x48.png │ │ │ │ └── k8s-96x96.png │ │ │ ├── networking.gliffy │ │ │ ├── networking.png │ │ │ ├── networking.svg │ │ │ ├── scheduler.md │ │ │ ├── scheduler.monopic │ │ │ └── scheduler.png │ │ │ ├── pkg │ │ │ ├── assert │ │ │ │ ├── assert.go │ │ │ │ └── doc.go │ │ │ ├── backoff │ │ │ │ ├── backoff.go │ │ │ │ └── doc.go │ │ │ ├── controllermanager │ │ │ │ ├── controllermanager.go │ │ │ │ └── doc.go │ │ │ ├── election │ │ │ │ ├── doc.go │ │ │ │ ├── etcd_master.go │ │ │ │ ├── etcd_master_test.go │ │ │ │ ├── fake.go │ │ │ │ ├── master.go │ │ │ │ └── master_test.go │ │ │ ├── executor │ │ │ │ ├── apis.go │ │ │ │ ├── config │ │ │ │ │ ├── config.go │ │ │ │ │ └── doc.go │ │ │ │ ├── doc.go │ │ │ │ ├── executor.go │ │ │ │ ├── executor_test.go │ │ │ │ ├── messages │ │ │ │ │ ├── doc.go │ │ │ │ │ └── messages.go │ │ │ │ ├── mock_test.go │ │ │ │ ├── node.go │ │ │ │ ├── registry.go │ │ │ │ ├── service │ │ │ │ │ ├── cadvisor.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── kubelet.go │ │ │ │ │ ├── podsource │ │ │ │ │ │ └── podsource.go │ │ │ │ │ └── service.go │ │ │ │ ├── suicide.go │ │ │ │ ├── suicide_test.go │ │ │ │ └── watcher.go │ │ │ ├── flagutil │ │ │ │ └── cadvisor.go │ │ │ ├── hyperkube │ │ │ │ ├── doc.go │ │ │ │ ├── hyperkube.go │ │ │ │ └── types.go │ │ │ ├── minion │ │ │ │ ├── config │ │ │ │ │ ├── config.go │ │ │ │ │ └── doc.go │ │ │ │ ├── doc.go │ │ │ │ ├── mountns_darwin.go │ │ │ │ ├── mountns_linux.go │ │ │ │ ├── server.go │ │ │ │ └── tasks │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── events.go │ │ │ │ │ ├── task.go │ │ │ │ │ ├── task_linux.go │ │ │ │ │ ├── task_other.go │ │ │ │ │ ├── task_test.go │ │ │ │ │ └── timer.go │ │ │ ├── node │ │ │ │ ├── doc.go │ │ │ │ ├── node.go │ │ │ │ ├── registrator.go │ │ │ │ ├── registrator_test.go │ │ │ │ ├── statusupdater.go │ │ │ │ └── statusupdater_test.go │ │ │ ├── offers │ │ │ │ ├── doc.go │ │ │ │ ├── metrics │ │ │ │ │ ├── doc.go │ │ │ │ │ └── metrics.go │ │ │ │ ├── offers.go │ │ │ │ └── offers_test.go │ │ │ ├── podutil │ │ │ │ ├── doc.go │ │ │ │ ├── filters.go │ │ │ │ ├── gzip.go │ │ │ │ ├── gzip_test.go │ │ │ │ └── io.go │ │ │ ├── proc │ │ │ │ ├── adapter.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── once.go │ │ │ │ ├── proc.go │ │ │ │ ├── proc_test.go │ │ │ │ ├── state.go │ │ │ │ └── types.go │ │ │ ├── profile │ │ │ │ ├── doc.go │ │ │ │ └── profile.go │ │ │ ├── queue │ │ │ │ ├── delay.go │ │ │ │ ├── delay_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── historical.go │ │ │ │ ├── historical_test.go │ │ │ │ ├── interface.go │ │ │ │ ├── policy.go │ │ │ │ └── priority.go │ │ │ ├── redirfd │ │ │ │ ├── doc.go │ │ │ │ ├── file_descriptor.go │ │ │ │ ├── file_descriptor_test.go │ │ │ │ ├── redirfd_unix.go │ │ │ │ └── redirfd_windows.go │ │ │ ├── runtime │ │ │ │ ├── doc.go │ │ │ │ ├── latch.go │ │ │ │ ├── latch_test.go │ │ │ │ ├── metrics.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── scheduler │ │ │ │ ├── components │ │ │ │ │ ├── algorithm │ │ │ │ │ │ ├── algorithm.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── podschedulers │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fcfs.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── binder │ │ │ │ │ │ ├── binder.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── controller.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── deleter │ │ │ │ │ │ ├── deleter.go │ │ │ │ │ │ ├── deleter_test.go │ │ │ │ │ │ └── doc.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errorhandler │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── errorhandler.go │ │ │ │ │ ├── framework │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── driver_mock.go │ │ │ │ │ │ ├── framework.go │ │ │ │ │ │ ├── framework_test.go │ │ │ │ │ │ ├── frameworkid │ │ │ │ │ │ │ ├── etcd │ │ │ │ │ │ │ │ └── etcd.go │ │ │ │ │ │ │ ├── frameworkid.go │ │ │ │ │ │ │ └── zk │ │ │ │ │ │ │ │ └── zk.go │ │ │ │ │ │ ├── slaveregistry.go │ │ │ │ │ │ └── slaveregistry_test.go │ │ │ │ │ ├── podreconciler │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── podreconciler.go │ │ │ │ │ ├── podstoreadapter.go │ │ │ │ │ ├── scheduler.go │ │ │ │ │ └── tasksreconciler │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── tasksreconciler.go │ │ │ │ ├── config │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_test.go │ │ │ │ │ └── doc.go │ │ │ │ ├── constraint │ │ │ │ │ ├── constraint.go │ │ │ │ │ ├── constraint_test.go │ │ │ │ │ └── doc.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors │ │ │ │ │ ├── doc.go │ │ │ │ │ └── errors.go │ │ │ │ ├── executorinfo │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── codec_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── id.go │ │ │ │ │ ├── lru_cache.go │ │ │ │ │ ├── lru_cache_test.go │ │ │ │ │ ├── registry.go │ │ │ │ │ └── registry_test.go │ │ │ │ ├── ha │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── election.go │ │ │ │ │ └── ha.go │ │ │ │ ├── integration │ │ │ │ │ ├── doc.go │ │ │ │ │ └── integration_test.go │ │ │ │ ├── meta │ │ │ │ │ ├── annotations.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── store.go │ │ │ │ ├── metrics │ │ │ │ │ ├── doc.go │ │ │ │ │ └── metrics.go │ │ │ │ ├── podtask │ │ │ │ │ ├── debug.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── hostport │ │ │ │ │ │ ├── mapper.go │ │ │ │ │ │ └── mapper_test.go │ │ │ │ │ ├── leaky.go │ │ │ │ │ ├── pod_task.go │ │ │ │ │ ├── pod_task_test.go │ │ │ │ │ ├── procurement.go │ │ │ │ │ ├── procurement_test.go │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── registry_test.go │ │ │ │ │ ├── roles.go │ │ │ │ │ └── roles_test.go │ │ │ │ ├── queuer │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── pod.go │ │ │ │ │ └── queuer.go │ │ │ │ ├── resources │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── resource.go │ │ │ │ │ ├── resource_test.go │ │ │ │ │ ├── resources.go │ │ │ │ │ └── types.go │ │ │ │ ├── scheduler.go │ │ │ │ ├── scheduler_mock.go │ │ │ │ └── service │ │ │ │ │ ├── compat_testing.go │ │ │ │ │ ├── compat_unix.go │ │ │ │ │ ├── compat_windows.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── publish.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── service_test.go │ │ │ │ │ ├── validation.go │ │ │ │ │ └── validation_test.go │ │ │ └── service │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints_controller.go │ │ │ │ └── endpoints_controller_test.go │ │ │ └── target.sh │ │ ├── docs │ │ ├── OWNERS │ │ ├── README.md │ │ ├── admin │ │ │ ├── README.md │ │ │ ├── accessing-the-api.md │ │ │ ├── admission-controllers.md │ │ │ ├── authentication.md │ │ │ ├── authorization.md │ │ │ ├── cluster-components.md │ │ │ ├── cluster-large.md │ │ │ ├── cluster-management.md │ │ │ ├── cluster-troubleshooting.md │ │ │ ├── daemon.yaml │ │ │ ├── daemons.md │ │ │ ├── dns.md │ │ │ ├── etcd.md │ │ │ ├── garbage-collection.md │ │ │ ├── high-availability.md │ │ │ ├── high-availability │ │ │ │ ├── default-kubelet │ │ │ │ ├── etcd.yaml │ │ │ │ ├── ha.png │ │ │ │ ├── ha.svg │ │ │ │ ├── kube-apiserver.yaml │ │ │ │ ├── kube-controller-manager.yaml │ │ │ │ ├── kube-scheduler.yaml │ │ │ │ ├── monit-docker │ │ │ │ ├── monit-kubelet │ │ │ │ └── podmaster.yaml │ │ │ ├── introduction.md │ │ │ ├── kube-apiserver.md │ │ │ ├── kube-controller-manager.md │ │ │ ├── kube-proxy.md │ │ │ ├── kube-scheduler.md │ │ │ ├── kubelet.md │ │ │ ├── limitrange │ │ │ │ ├── README.md │ │ │ │ ├── invalid-pod.yaml │ │ │ │ ├── limits.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── valid-pod.yaml │ │ │ ├── master-node-communication.md │ │ │ ├── multi-cluster.md │ │ │ ├── namespaces.md │ │ │ ├── namespaces │ │ │ │ ├── README.md │ │ │ │ ├── namespace-dev.json │ │ │ │ └── namespace-prod.json │ │ │ ├── network-plugins.md │ │ │ ├── networking.md │ │ │ ├── node.md │ │ │ ├── ovs-networking.md │ │ │ ├── ovs-networking.png │ │ │ ├── resource-quota.md │ │ │ ├── resourcequota │ │ │ │ ├── README.md │ │ │ │ ├── limits.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ └── quota.yaml │ │ │ ├── salt.md │ │ │ ├── service-accounts-admin.md │ │ │ └── static-pods.md │ │ ├── api-reference │ │ │ ├── autoscaling │ │ │ │ └── v1 │ │ │ │ │ ├── definitions.html │ │ │ │ │ └── operations.html │ │ │ ├── batch │ │ │ │ └── v1 │ │ │ │ │ ├── definitions.html │ │ │ │ │ └── operations.html │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── definitions.html │ │ │ │ │ ├── definitions.md │ │ │ │ │ ├── operations.html │ │ │ │ │ └── operations.md │ │ │ └── v1 │ │ │ │ ├── definitions.html │ │ │ │ ├── definitions.md │ │ │ │ ├── operations.html │ │ │ │ └── operations.md │ │ ├── api.md │ │ ├── design │ │ │ ├── README.md │ │ │ ├── access.md │ │ │ ├── admission_control.md │ │ │ ├── admission_control_limit_range.md │ │ │ ├── admission_control_resource_quota.md │ │ │ ├── architecture.dia │ │ │ ├── architecture.md │ │ │ ├── architecture.png │ │ │ ├── architecture.svg │ │ │ ├── aws_under_the_hood.md │ │ │ ├── clustering.md │ │ │ ├── clustering │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── dynamic.png │ │ │ │ ├── dynamic.seqdiag │ │ │ │ ├── static.png │ │ │ │ └── static.seqdiag │ │ │ ├── command_execution_port_forwarding.md │ │ │ ├── configmap.md │ │ │ ├── daemon.md │ │ │ ├── enhance-pluggable-policy.md │ │ │ ├── event_compression.md │ │ │ ├── expansion.md │ │ │ ├── extending-api.md │ │ │ ├── horizontal-pod-autoscaler.md │ │ │ ├── identifiers.md │ │ │ ├── indexed-job.md │ │ │ ├── metadata-policy.md │ │ │ ├── namespaces.md │ │ │ ├── networking.md │ │ │ ├── nodeaffinity.md │ │ │ ├── persistent-storage.md │ │ │ ├── podaffinity.md │ │ │ ├── principles.md │ │ │ ├── resources.md │ │ │ ├── scheduler_extender.md │ │ │ ├── secrets.md │ │ │ ├── security.md │ │ │ ├── security_context.md │ │ │ ├── selector-generation.md │ │ │ ├── service_accounts.md │ │ │ ├── simple-rolling-update.md │ │ │ ├── taint-toleration-dedicated.md │ │ │ └── versioning.md │ │ ├── devel │ │ │ ├── README.md │ │ │ ├── adding-an-APIGroup.md │ │ │ ├── api-conventions.md │ │ │ ├── api_changes.md │ │ │ ├── automation.md │ │ │ ├── cherry-picks.md │ │ │ ├── cli-roadmap.md │ │ │ ├── client-libraries.md │ │ │ ├── coding-conventions.md │ │ │ ├── collab.md │ │ │ ├── developer-guides │ │ │ │ └── vagrant.md │ │ │ ├── development.md │ │ │ ├── e2e-node-tests.md │ │ │ ├── e2e-tests.md │ │ │ ├── faster_reviews.md │ │ │ ├── flaky-tests.md │ │ │ ├── generating-clientset.md │ │ │ ├── getting-builds.md │ │ │ ├── git_workflow.png │ │ │ ├── how-to-doc.md │ │ │ ├── instrumentation.md │ │ │ ├── issues.md │ │ │ ├── kubectl-conventions.md │ │ │ ├── kubemark-guide.md │ │ │ ├── logging.md │ │ │ ├── making-release-notes.md │ │ │ ├── mesos-style.md │ │ │ ├── node-performance-testing.md │ │ │ ├── on-call-build-cop.md │ │ │ ├── on-call-rotations.md │ │ │ ├── on-call-user-support.md │ │ │ ├── owners.md │ │ │ ├── pr_workflow.dia │ │ │ ├── pr_workflow.png │ │ │ ├── profiling.md │ │ │ ├── pull-requests.md │ │ │ ├── releasing.md │ │ │ ├── running-locally.md │ │ │ ├── scheduler.md │ │ │ ├── scheduler_algorithm.md │ │ │ ├── update-release-docs.md │ │ │ ├── writing-a-getting-started-guide.md │ │ │ └── writing-good-e2e-tests.md │ │ ├── getting-started-guides │ │ │ ├── README.md │ │ │ ├── all-lines.png │ │ │ ├── aws.md │ │ │ ├── azure.md │ │ │ ├── bigquery-logging.png │ │ │ ├── binary_release.md │ │ │ ├── centos │ │ │ │ └── centos_manual_config.md │ │ │ ├── cloud-logging-console.png │ │ │ ├── cloudstack.md │ │ │ ├── coreos.md │ │ │ ├── coreos │ │ │ │ ├── azure │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── addons │ │ │ │ │ │ ├── skydns-rc.yaml │ │ │ │ │ │ └── skydns-svc.yaml │ │ │ │ │ ├── azure-login.js │ │ │ │ │ ├── cloud_config_templates │ │ │ │ │ │ ├── kubernetes-cluster-etcd-node-template.yml │ │ │ │ │ │ └── kubernetes-cluster-main-nodes-template.yml │ │ │ │ │ ├── create-kubernetes-cluster.js │ │ │ │ │ ├── destroy-cluster.js │ │ │ │ │ ├── expose_guestbook_app_port.sh │ │ │ │ │ ├── external_access.png │ │ │ │ │ ├── initial_cluster.png │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── azure_wrapper.js │ │ │ │ │ │ ├── cloud_config.js │ │ │ │ │ │ ├── deployment_logic │ │ │ │ │ │ │ └── kubernetes.js │ │ │ │ │ │ └── util.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── scale-kubernetes-cluster.js │ │ │ │ ├── bare_metal_calico.md │ │ │ │ ├── bare_metal_offline.md │ │ │ │ ├── cloud-configs │ │ │ │ │ ├── master.yaml │ │ │ │ │ └── node.yaml │ │ │ │ └── coreos_multinode_cluster.md │ │ │ ├── dcos.md │ │ │ ├── docker-multinode.md │ │ │ ├── docker-multinode │ │ │ │ ├── deployDNS.md │ │ │ │ ├── kube-system.yaml │ │ │ │ ├── master.md │ │ │ │ ├── master.sh │ │ │ │ ├── skydns.yaml.in │ │ │ │ ├── testing.md │ │ │ │ ├── worker.md │ │ │ │ └── worker.sh │ │ │ ├── docker.md │ │ │ ├── es-browser.png │ │ │ ├── fedora │ │ │ │ ├── fedora_ansible_config.md │ │ │ │ ├── fedora_manual_config.md │ │ │ │ └── flannel_multi_node_cluster.md │ │ │ ├── gce.md │ │ │ ├── juju.md │ │ │ ├── k8s-docker.png │ │ │ ├── k8s-singlenode-docker.png │ │ │ ├── kibana-logs.png │ │ │ ├── libvirt-coreos.md │ │ │ ├── logging-elasticsearch.md │ │ │ ├── logging.md │ │ │ ├── mesos-docker.md │ │ │ ├── mesos.md │ │ │ ├── mesos │ │ │ │ ├── OWNERS │ │ │ │ ├── k8s-firewall.png │ │ │ │ └── k8s-guestbook.png │ │ │ ├── ovirt.md │ │ │ ├── rackspace.md │ │ │ ├── rkt │ │ │ │ ├── README.md │ │ │ │ └── notes.md │ │ │ ├── scratch.md │ │ │ ├── ubuntu-calico.md │ │ │ ├── ubuntu.md │ │ │ ├── vagrant.md │ │ │ └── vsphere.md │ │ ├── man │ │ │ └── man1 │ │ │ │ ├── .files_generated │ │ │ │ ├── kubectl-annotate.1 │ │ │ │ ├── kubectl-api-versions.1 │ │ │ │ ├── kubectl-apply.1 │ │ │ │ ├── kubectl-attach.1 │ │ │ │ ├── kubectl-autoscale.1 │ │ │ │ ├── kubectl-cluster-info.1 │ │ │ │ ├── kubectl-config-current-context.1 │ │ │ │ ├── kubectl-config-set-cluster.1 │ │ │ │ ├── kubectl-config-set-context.1 │ │ │ │ ├── kubectl-config-set-credentials.1 │ │ │ │ ├── kubectl-config-set.1 │ │ │ │ ├── kubectl-config-unset.1 │ │ │ │ ├── kubectl-config-use-context.1 │ │ │ │ ├── kubectl-config-view.1 │ │ │ │ ├── kubectl-config.1 │ │ │ │ ├── kubectl-convert.1 │ │ │ │ ├── kubectl-cordon.1 │ │ │ │ ├── kubectl-create-configmap.1 │ │ │ │ ├── kubectl-create-namespace.1 │ │ │ │ ├── kubectl-create-secret-docker-registry.1 │ │ │ │ ├── kubectl-create-secret-generic.1 │ │ │ │ ├── kubectl-create-secret.1 │ │ │ │ ├── kubectl-create-serviceaccount.1 │ │ │ │ ├── kubectl-create.1 │ │ │ │ ├── kubectl-delete.1 │ │ │ │ ├── kubectl-describe.1 │ │ │ │ ├── kubectl-drain.1 │ │ │ │ ├── kubectl-edit.1 │ │ │ │ ├── kubectl-exec.1 │ │ │ │ ├── kubectl-explain.1 │ │ │ │ ├── kubectl-expose.1 │ │ │ │ ├── kubectl-get.1 │ │ │ │ ├── kubectl-label.1 │ │ │ │ ├── kubectl-logs.1 │ │ │ │ ├── kubectl-namespace.1 │ │ │ │ ├── kubectl-patch.1 │ │ │ │ ├── kubectl-port-forward.1 │ │ │ │ ├── kubectl-proxy.1 │ │ │ │ ├── kubectl-replace.1 │ │ │ │ ├── kubectl-rolling-update.1 │ │ │ │ ├── kubectl-rollout-history.1 │ │ │ │ ├── kubectl-rollout-pause.1 │ │ │ │ ├── kubectl-rollout-resume.1 │ │ │ │ ├── kubectl-rollout-undo.1 │ │ │ │ ├── kubectl-rollout.1 │ │ │ │ ├── kubectl-run.1 │ │ │ │ ├── kubectl-scale.1 │ │ │ │ ├── kubectl-stop.1 │ │ │ │ ├── kubectl-uncordon.1 │ │ │ │ ├── kubectl-version.1 │ │ │ │ └── kubectl.1 │ │ ├── proposals │ │ │ ├── Kubemark_architecture.png │ │ │ ├── api-group.md │ │ │ ├── apiserver-watch.md │ │ │ ├── client-package-structure.md │ │ │ ├── cluster-deployment.md │ │ │ ├── compute-resource-metrics-api.md │ │ │ ├── custom-metrics.md │ │ │ ├── deploy.md │ │ │ ├── deployment.md │ │ │ ├── disk-accounting.md │ │ │ ├── federated-api-servers.md │ │ │ ├── federation-high-level-arch.png │ │ │ ├── federation-lite.md │ │ │ ├── federation.md │ │ │ ├── flannel-integration.md │ │ │ ├── high-availability.md │ │ │ ├── initial-resources.md │ │ │ ├── job.md │ │ │ ├── kubemark.md │ │ │ ├── metrics-plumbing.md │ │ │ ├── multiple-schedulers.md │ │ │ ├── node-allocatable.md │ │ │ ├── node-allocatable.png │ │ │ ├── performance-related-monitoring.md │ │ │ ├── pleg.png │ │ │ ├── pod-cache.png │ │ │ ├── pod-lifecycle-event-generator.md │ │ │ ├── pod-security-context.md │ │ │ ├── rescheduler.md │ │ │ ├── resource-qos.md │ │ │ ├── resource-quota-scoping.md │ │ │ ├── runtime-pod-cache.md │ │ │ ├── scalability-testing.md │ │ │ ├── scheduledjob.md │ │ │ ├── security-context-constraints.md │ │ │ ├── selinux.md │ │ │ ├── service-discovery.md │ │ │ ├── templates.md │ │ │ ├── volume-ownership-management.md │ │ │ ├── volumes.md │ │ │ └── workflow.md │ │ ├── reporting-security-issues.md │ │ ├── roadmap.md │ │ ├── troubleshooting.md │ │ ├── user-guide │ │ │ ├── README.md │ │ │ ├── accessing-the-cluster.md │ │ │ ├── annotations.md │ │ │ ├── application-troubleshooting.md │ │ │ ├── cadvisor.png │ │ │ ├── compute-resources.md │ │ │ ├── config-best-practices.md │ │ │ ├── configmap.md │ │ │ ├── configmap │ │ │ │ ├── README.md │ │ │ │ ├── command-pod.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── env-pod.yaml │ │ │ │ ├── kubectl │ │ │ │ │ ├── game.properties │ │ │ │ │ └── ui.properties │ │ │ │ ├── redis │ │ │ │ │ ├── redis-config │ │ │ │ │ └── redis-pod.yaml │ │ │ │ └── volume-pod.yaml │ │ │ ├── configuring-containers.md │ │ │ ├── connecting-applications.md │ │ │ ├── connecting-to-applications-port-forward.md │ │ │ ├── connecting-to-applications-proxy.md │ │ │ ├── container-environment.md │ │ │ ├── containers.md │ │ │ ├── debugging-services.md │ │ │ ├── deploying-applications.md │ │ │ ├── deployment.yaml │ │ │ ├── deployments.md │ │ │ ├── docker-cli-to-kubectl.md │ │ │ ├── downward-api.md │ │ │ ├── downward-api │ │ │ │ ├── README.md │ │ │ │ ├── dapi-pod.yaml │ │ │ │ └── volume │ │ │ │ │ ├── README.md │ │ │ │ │ └── dapi-volume.yaml │ │ │ ├── environment-guide │ │ │ │ ├── README.md │ │ │ │ ├── backend-rc.yaml │ │ │ │ ├── backend-srv.yaml │ │ │ │ ├── containers │ │ │ │ │ ├── README.md │ │ │ │ │ ├── backend │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── backend.go │ │ │ │ │ └── show │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── show.go │ │ │ │ ├── diagram.png │ │ │ │ ├── show-rc.yaml │ │ │ │ └── show-srv.yaml │ │ │ ├── gcm.png │ │ │ ├── getting-into-containers.md │ │ │ ├── horizontal-pod-autoscaler.md │ │ │ ├── horizontal-pod-autoscaler.png │ │ │ ├── horizontal-pod-autoscaler.svg │ │ │ ├── horizontal-pod-autoscaling │ │ │ │ ├── README.md │ │ │ │ ├── hpa-php-apache.yaml │ │ │ │ └── image │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── index.php │ │ │ ├── identifiers.md │ │ │ ├── images.md │ │ │ ├── influx.png │ │ │ ├── ingress.md │ │ │ ├── ingress.yaml │ │ │ ├── introspection-and-debugging.md │ │ │ ├── job.yaml │ │ │ ├── jobs.md │ │ │ ├── jsonpath.md │ │ │ ├── kibana.png │ │ │ ├── known-issues.md │ │ │ ├── kubeconfig-file.md │ │ │ ├── kubectl-cheatsheet.md │ │ │ ├── kubectl-overview.md │ │ │ ├── kubectl │ │ │ │ ├── .files_generated │ │ │ │ ├── kubectl.md │ │ │ │ ├── kubectl_annotate.md │ │ │ │ ├── kubectl_api-versions.md │ │ │ │ ├── kubectl_apply.md │ │ │ │ ├── kubectl_attach.md │ │ │ │ ├── kubectl_autoscale.md │ │ │ │ ├── kubectl_cluster-info.md │ │ │ │ ├── kubectl_config.md │ │ │ │ ├── kubectl_config_current-context.md │ │ │ │ ├── kubectl_config_set-cluster.md │ │ │ │ ├── kubectl_config_set-context.md │ │ │ │ ├── kubectl_config_set-credentials.md │ │ │ │ ├── kubectl_config_set.md │ │ │ │ ├── kubectl_config_unset.md │ │ │ │ ├── kubectl_config_use-context.md │ │ │ │ ├── kubectl_config_view.md │ │ │ │ ├── kubectl_convert.md │ │ │ │ ├── kubectl_cordon.md │ │ │ │ ├── kubectl_create.md │ │ │ │ ├── kubectl_create_configmap.md │ │ │ │ ├── kubectl_create_namespace.md │ │ │ │ ├── kubectl_create_secret.md │ │ │ │ ├── kubectl_create_secret_docker-registry.md │ │ │ │ ├── kubectl_create_secret_generic.md │ │ │ │ ├── kubectl_create_serviceaccount.md │ │ │ │ ├── kubectl_delete.md │ │ │ │ ├── kubectl_describe.md │ │ │ │ ├── kubectl_drain.md │ │ │ │ ├── kubectl_edit.md │ │ │ │ ├── kubectl_exec.md │ │ │ │ ├── kubectl_explain.md │ │ │ │ ├── kubectl_expose.md │ │ │ │ ├── kubectl_get.md │ │ │ │ ├── kubectl_label.md │ │ │ │ ├── kubectl_logs.md │ │ │ │ ├── kubectl_namespace.md │ │ │ │ ├── kubectl_patch.md │ │ │ │ ├── kubectl_port-forward.md │ │ │ │ ├── kubectl_proxy.md │ │ │ │ ├── kubectl_replace.md │ │ │ │ ├── kubectl_rolling-update.md │ │ │ │ ├── kubectl_rollout.md │ │ │ │ ├── kubectl_rollout_history.md │ │ │ │ ├── kubectl_rollout_pause.md │ │ │ │ ├── kubectl_rollout_resume.md │ │ │ │ ├── kubectl_rollout_undo.md │ │ │ │ ├── kubectl_run.md │ │ │ │ ├── kubectl_scale.md │ │ │ │ ├── kubectl_stop.md │ │ │ │ ├── kubectl_uncordon.md │ │ │ │ └── kubectl_version.md │ │ │ ├── labels.md │ │ │ ├── liveness │ │ │ │ ├── README.md │ │ │ │ ├── exec-liveness.yaml │ │ │ │ ├── http-liveness.yaml │ │ │ │ └── image │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ └── server.go │ │ │ ├── logging-demo │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── synth-logger.png │ │ │ │ ├── synthetic_0_25lps.yaml │ │ │ │ └── synthetic_10lps.yaml │ │ │ ├── logging.md │ │ │ ├── managing-deployments.md │ │ │ ├── monitoring-architecture.png │ │ │ ├── monitoring.md │ │ │ ├── multi-pod.yaml │ │ │ ├── namespaces.md │ │ │ ├── new-nginx-deployment.yaml │ │ │ ├── nginx-deployment.yaml │ │ │ ├── node-selection │ │ │ │ ├── README.md │ │ │ │ ├── pod-with-node-affinity.yaml │ │ │ │ └── pod.yaml │ │ │ ├── overview.md │ │ │ ├── persistent-volumes.md │ │ │ ├── persistent-volumes │ │ │ │ ├── README.md │ │ │ │ ├── claims │ │ │ │ │ ├── claim-01.yaml │ │ │ │ │ ├── claim-02.yaml │ │ │ │ │ └── claim-03.json │ │ │ │ ├── simpletest │ │ │ │ │ ├── namespace.json │ │ │ │ │ ├── pod.yaml │ │ │ │ │ └── service.json │ │ │ │ └── volumes │ │ │ │ │ ├── gce.yaml │ │ │ │ │ ├── local-01.yaml │ │ │ │ │ ├── local-02.yaml │ │ │ │ │ └── nfs.yaml │ │ │ ├── pod-states.md │ │ │ ├── pod-templates.md │ │ │ ├── pod.yaml │ │ │ ├── pods.md │ │ │ ├── prereqs.md │ │ │ ├── production-pods.md │ │ │ ├── quick-start.md │ │ │ ├── replicaset │ │ │ │ ├── frontend.yaml │ │ │ │ └── redis-slave.yaml │ │ │ ├── replication-controller.md │ │ │ ├── replication.yaml │ │ │ ├── resourcequota │ │ │ │ └── README.md │ │ │ ├── secrets.md │ │ │ ├── secrets │ │ │ │ ├── README.md │ │ │ │ ├── secret-env-pod.yaml │ │ │ │ ├── secret-pod.yaml │ │ │ │ └── secret.yaml │ │ │ ├── security-context.md │ │ │ ├── service-accounts.md │ │ │ ├── services-firewalls.md │ │ │ ├── services-iptables-overview.png │ │ │ ├── services-iptables-overview.svg │ │ │ ├── services-userspace-overview.png │ │ │ ├── services-userspace-overview.svg │ │ │ ├── services.md │ │ │ ├── sharing-clusters.md │ │ │ ├── simple-nginx.md │ │ │ ├── simple-yaml.md │ │ │ ├── ui-dashboard-cards-menu.png │ │ │ ├── ui-dashboard-deploy-file.png │ │ │ ├── ui-dashboard-deploy-more.png │ │ │ ├── ui-dashboard-deploy-simple.png │ │ │ ├── ui-dashboard-rcs-detail.png │ │ │ ├── ui-dashboard-rcs.png │ │ │ ├── ui-dashboard-zerostate.png │ │ │ ├── ui.md │ │ │ ├── update-demo │ │ │ │ ├── README.md │ │ │ │ ├── build-images.sh │ │ │ │ ├── images │ │ │ │ │ ├── kitten │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── html │ │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ │ └── kitten.jpg │ │ │ │ │ └── nautilus │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ └── html │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ └── nautilus.jpg │ │ │ │ ├── kitten-rc.yaml │ │ │ │ ├── local │ │ │ │ │ ├── LICENSE.angular │ │ │ │ │ ├── angular.min.js │ │ │ │ │ ├── angular.min.js.map │ │ │ │ │ ├── index.html │ │ │ │ │ ├── script.js │ │ │ │ │ └── style.css │ │ │ │ └── nautilus-rc.yaml │ │ │ ├── volumes.md │ │ │ ├── walkthrough │ │ │ │ ├── README.md │ │ │ │ ├── k8s201.md │ │ │ │ ├── pod-nginx-with-label.yaml │ │ │ │ ├── pod-nginx.yaml │ │ │ │ ├── pod-redis.yaml │ │ │ │ ├── pod-with-http-healthcheck.yaml │ │ │ │ ├── podtemplate.json │ │ │ │ ├── replication-controller.yaml │ │ │ │ └── service.yaml │ │ │ └── working-with-resources.md │ │ ├── warning.png │ │ └── whatisk8s.md │ │ ├── examples │ │ ├── OWNERS │ │ ├── README.md │ │ ├── apiserver │ │ │ ├── README.md │ │ │ ├── apiserver.go │ │ │ ├── apiserver_test.go │ │ │ ├── rest │ │ │ │ └── reststorage.go │ │ │ └── server │ │ │ │ └── main.go │ │ ├── aws_ebs │ │ │ ├── README.md │ │ │ └── aws-ebs-web.yaml │ │ ├── azure_file │ │ │ ├── README.md │ │ │ ├── azure.yaml │ │ │ └── secret │ │ │ │ └── azure-secret.yaml │ │ ├── blog-logging │ │ │ ├── counter-pod.yaml │ │ │ └── diagrams │ │ │ │ ├── 0f64.ai │ │ │ │ ├── 0f64.png │ │ │ │ ├── 0f64.svg │ │ │ │ ├── 20ej.ai │ │ │ │ ├── 20ej.png │ │ │ │ ├── 20ej.svg │ │ │ │ ├── 27gf-counter.ai │ │ │ │ ├── 27gf-counter.png │ │ │ │ ├── 27gf-counter.svg │ │ │ │ ├── 27gf.ai │ │ │ │ ├── 27gf.png │ │ │ │ ├── 27gf.svg │ │ │ │ ├── README.md │ │ │ │ ├── cloud-logging.ai │ │ │ │ ├── cloud-logging.png │ │ │ │ ├── cloud-logging.svg │ │ │ │ ├── pk22.ai │ │ │ │ ├── pk22.png │ │ │ │ └── pk22.svg │ │ ├── cassandra │ │ │ ├── README.md │ │ │ ├── cassandra-controller.yaml │ │ │ ├── cassandra-daemonset.yaml │ │ │ ├── cassandra-service.yaml │ │ │ ├── cassandra.yaml │ │ │ ├── image │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── cassandra.list │ │ │ │ ├── cassandra.yaml │ │ │ │ ├── kubernetes-cassandra.jar │ │ │ │ ├── logback.xml │ │ │ │ └── run.sh │ │ │ └── java │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ └── io │ │ │ │ └── k8s │ │ │ │ └── cassandra │ │ │ │ └── KubernetesSeedProvider.java │ │ ├── celery-rabbitmq │ │ │ ├── README.md │ │ │ ├── celery-app-add │ │ │ │ ├── Dockerfile │ │ │ │ ├── celery_conf.py │ │ │ │ ├── run.sh │ │ │ │ └── run_tasks.py │ │ │ ├── celery-controller.yaml │ │ │ ├── flower-controller.yaml │ │ │ ├── flower-service.yaml │ │ │ ├── flower │ │ │ │ ├── Dockerfile │ │ │ │ └── run_flower.sh │ │ │ ├── rabbitmq-controller.yaml │ │ │ └── rabbitmq-service.yaml │ │ ├── cephfs │ │ │ ├── README.md │ │ │ ├── cephfs-with-secret.yaml │ │ │ ├── cephfs.yaml │ │ │ └── secret │ │ │ │ └── ceph-secret.yaml │ │ ├── cluster-dns │ │ │ ├── README.md │ │ │ ├── dns-backend-rc.yaml │ │ │ ├── dns-backend-service.yaml │ │ │ ├── dns-frontend-pod.yaml │ │ │ ├── images │ │ │ │ ├── backend │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ └── server.py │ │ │ │ └── frontend │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ └── client.py │ │ │ ├── namespace-dev.yaml │ │ │ └── namespace-prod.yaml │ │ ├── doc.go │ │ ├── elasticsearch │ │ │ ├── README.md │ │ │ ├── es-rc.yaml │ │ │ ├── es-svc.yaml │ │ │ ├── production_cluster │ │ │ │ ├── README.md │ │ │ │ ├── es-client-rc.yaml │ │ │ │ ├── es-data-rc.yaml │ │ │ │ ├── es-discovery-svc.yaml │ │ │ │ ├── es-master-rc.yaml │ │ │ │ ├── es-svc.yaml │ │ │ │ └── service-account.yaml │ │ │ └── service-account.yaml │ │ ├── examples_test.go │ │ ├── experimental │ │ │ └── persistent-volume-provisioning │ │ │ │ ├── README.md │ │ │ │ ├── claim1.json │ │ │ │ └── claim2.json │ │ ├── explorer │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── explorer.go │ │ │ └── pod.yaml │ │ ├── fibre_channel │ │ │ ├── README.md │ │ │ └── fc.yaml │ │ ├── flexvolume │ │ │ ├── README.md │ │ │ ├── lvm │ │ │ └── nginx.yaml │ │ ├── flocker │ │ │ ├── README.md │ │ │ ├── flocker-pod-with-rc.yml │ │ │ └── flocker-pod.yml │ │ ├── glusterfs │ │ │ ├── README.md │ │ │ ├── glusterfs-endpoints.json │ │ │ ├── glusterfs-pod.json │ │ │ └── glusterfs-service.json │ │ ├── guestbook-go │ │ │ ├── README.md │ │ │ ├── guestbook-controller.json │ │ │ ├── guestbook-page.png │ │ │ ├── guestbook-service.json │ │ │ ├── redis-master-controller.json │ │ │ ├── redis-master-service.json │ │ │ ├── redis-slave-controller.json │ │ │ └── redis-slave-service.json │ │ ├── guestbook │ │ │ ├── README.md │ │ │ ├── all-in-one │ │ │ │ ├── frontend.yaml │ │ │ │ ├── guestbook-all-in-one.yaml │ │ │ │ └── redis-slave.yaml │ │ │ ├── frontend-controller.yaml │ │ │ ├── frontend-service.yaml │ │ │ ├── php-redis │ │ │ │ ├── Dockerfile │ │ │ │ ├── controllers.js │ │ │ │ ├── guestbook.php │ │ │ │ └── index.html │ │ │ ├── redis-master-controller.yaml │ │ │ ├── redis-master-service.yaml │ │ │ ├── redis-slave-controller.yaml │ │ │ ├── redis-slave-service.yaml │ │ │ └── redis-slave │ │ │ │ ├── Dockerfile │ │ │ │ └── run.sh │ │ ├── guidelines.md │ │ ├── hazelcast │ │ │ ├── README.md │ │ │ ├── hazelcast-controller.yaml │ │ │ ├── hazelcast-service.yaml │ │ │ └── image │ │ │ │ └── Dockerfile │ │ ├── https-nginx │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── default.conf │ │ │ ├── make_secret.go │ │ │ └── nginx-app.yaml │ │ ├── iscsi │ │ │ ├── README.md │ │ │ └── iscsi.json │ │ ├── javaee │ │ │ ├── README.md │ │ │ ├── mysql-pod.yaml │ │ │ ├── mysql-service.yaml │ │ │ └── wildfly-rc.yaml │ │ ├── javaweb-tomcat-sidecar │ │ │ ├── README.md │ │ │ ├── javaweb-2.yaml │ │ │ ├── javaweb.yaml │ │ │ └── workflow.png │ │ ├── job │ │ │ ├── expansions │ │ │ │ ├── README.md │ │ │ │ ├── job.yaml.jinja2 │ │ │ │ └── job.yaml.txt │ │ │ ├── work-queue-1 │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ ├── job.yaml │ │ │ │ └── worker.py │ │ │ └── work-queue-2 │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ ├── job.yaml │ │ │ │ ├── redis-pod.yaml │ │ │ │ ├── redis-service.yaml │ │ │ │ ├── rediswq.py │ │ │ │ └── worker.py │ │ ├── k8petstore │ │ │ ├── README.md │ │ │ ├── bps-data-generator │ │ │ │ └── README.md │ │ │ ├── build-push-containers.sh │ │ │ ├── docker-machine-dev.sh │ │ │ ├── k8petstore-loadbalancer.sh │ │ │ ├── k8petstore-nodeport.sh │ │ │ ├── k8petstore.dot │ │ │ ├── k8petstore.sh │ │ │ ├── redis-master │ │ │ │ ├── Dockerfile │ │ │ │ └── etc_redis_redis.conf │ │ │ ├── redis-slave │ │ │ │ ├── Dockerfile │ │ │ │ ├── etc_redis_redis.conf │ │ │ │ └── run.sh │ │ │ ├── redis │ │ │ │ ├── Dockerfile │ │ │ │ └── etc_redis_redis.conf │ │ │ └── web-server │ │ │ │ ├── Dockerfile │ │ │ │ ├── dump.rdb │ │ │ │ ├── src │ │ │ │ └── main.go │ │ │ │ ├── static │ │ │ │ ├── histogram.js │ │ │ │ ├── index.html │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ │ └── test.sh │ │ ├── kubectl-container │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── pod.json │ │ ├── meteor │ │ │ ├── README.md │ │ │ ├── dockerbase │ │ │ │ ├── Dockerfile │ │ │ │ └── README.md │ │ │ ├── meteor-controller.json │ │ │ ├── meteor-service.json │ │ │ ├── mongo-pod.json │ │ │ └── mongo-service.json │ │ ├── mysql-cinder-pd │ │ │ ├── README.md │ │ │ ├── mysql-service.yaml │ │ │ └── mysql.yaml │ │ ├── mysql-galera │ │ │ ├── README.md │ │ │ ├── image │ │ │ │ ├── Dockerfile │ │ │ │ ├── cluster.cnf │ │ │ │ ├── docker-entrypoint.sh │ │ │ │ └── my.cnf │ │ │ ├── pxc-cluster-service.yaml │ │ │ ├── pxc-node1.yaml │ │ │ ├── pxc-node2.yaml │ │ │ └── pxc-node3.yaml │ │ ├── mysql-wordpress-pd │ │ │ ├── README.md │ │ │ ├── mysql-service.yaml │ │ │ ├── mysql.yaml │ │ │ ├── wordpress-service.yaml │ │ │ └── wordpress.yaml │ │ ├── newrelic │ │ │ ├── README.md │ │ │ ├── config-to-secret.sh │ │ │ ├── newrelic-config-template.yaml │ │ │ ├── newrelic-config.yaml │ │ │ ├── newrelic-daemonset.yaml │ │ │ └── nrconfig.env │ │ ├── nfs │ │ │ ├── README.md │ │ │ ├── nfs-busybox-rc.yaml │ │ │ ├── nfs-data │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ └── index.html │ │ │ ├── nfs-pv.yaml │ │ │ ├── nfs-pvc.yaml │ │ │ ├── nfs-server-rc.yaml │ │ │ ├── nfs-server-service.yaml │ │ │ ├── nfs-web-rc.yaml │ │ │ └── nfs-web-service.yaml │ │ ├── nodesjs-mongodb │ │ │ ├── README.md │ │ │ ├── mongo-controller.yaml │ │ │ ├── mongo-service.yaml │ │ │ ├── web-controller-demo.yaml │ │ │ ├── web-controller.yaml │ │ │ └── web-service.yaml │ │ ├── openshift-origin │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── cleanup.sh │ │ │ ├── create.sh │ │ │ ├── etcd-controller.yaml │ │ │ ├── etcd-discovery-controller.yaml │ │ │ ├── etcd-discovery-service.yaml │ │ │ ├── etcd-service.yaml │ │ │ ├── openshift-controller.yaml │ │ │ ├── openshift-origin-namespace.yaml │ │ │ ├── openshift-service.yaml │ │ │ └── secret.json │ │ ├── phabricator │ │ │ ├── README.md │ │ │ ├── phabricator-controller.json │ │ │ ├── phabricator-service.json │ │ │ ├── php-phabricator │ │ │ │ ├── 000-default.conf │ │ │ │ ├── Dockerfile │ │ │ │ └── run.sh │ │ │ ├── setup.sh │ │ │ └── teardown.sh │ │ ├── pod │ │ ├── rbd │ │ │ ├── README.md │ │ │ ├── rbd-with-secret.json │ │ │ ├── rbd.json │ │ │ └── secret │ │ │ │ └── ceph-secret.yaml │ │ ├── redis │ │ │ ├── README.md │ │ │ ├── image │ │ │ │ ├── Dockerfile │ │ │ │ ├── redis-master.conf │ │ │ │ ├── redis-slave.conf │ │ │ │ └── run.sh │ │ │ ├── redis-controller.yaml │ │ │ ├── redis-master.yaml │ │ │ ├── redis-proxy.yaml │ │ │ ├── redis-sentinel-controller.yaml │ │ │ └── redis-sentinel-service.yaml │ │ ├── rethinkdb │ │ │ ├── README.md │ │ │ ├── admin-pod.yaml │ │ │ ├── admin-service.yaml │ │ │ ├── driver-service.yaml │ │ │ ├── gen-pod.sh │ │ │ ├── image │ │ │ │ ├── Dockerfile │ │ │ │ └── run.sh │ │ │ └── rc.yaml │ │ ├── runtime-constraints │ │ │ └── README.md │ │ ├── scheduler-policy-config-with-extender.json │ │ ├── scheduler-policy-config.json │ │ ├── selenium │ │ │ ├── README.md │ │ │ ├── selenium-hub-rc.yaml │ │ │ ├── selenium-hub-svc.yaml │ │ │ ├── selenium-node-chrome-rc.yaml │ │ │ ├── selenium-node-firefox-rc.yaml │ │ │ └── selenium-test.py │ │ ├── sharing-clusters │ │ │ ├── README.md │ │ │ └── make_secret.go │ │ ├── simple-nginx.md │ │ ├── spark │ │ │ ├── README.md │ │ │ ├── spark-gluster │ │ │ │ ├── README.md │ │ │ │ ├── glusterfs-endpoints.yaml │ │ │ │ ├── spark-master-controller.yaml │ │ │ │ ├── spark-master-service.yaml │ │ │ │ └── spark-worker-controller.yaml │ │ │ ├── spark-master-controller.yaml │ │ │ ├── spark-master-service.yaml │ │ │ ├── spark-webui.yaml │ │ │ ├── spark-worker-controller.yaml │ │ │ ├── zeppelin-controller.yaml │ │ │ └── zeppelin-service.yaml │ │ ├── storm │ │ │ ├── README.md │ │ │ ├── storm-nimbus-service.json │ │ │ ├── storm-nimbus.json │ │ │ ├── storm-worker-controller.json │ │ │ ├── zookeeper-service.json │ │ │ └── zookeeper.json │ │ └── vitess │ │ │ ├── README.md │ │ │ ├── configure.sh │ │ │ ├── create_test_table.sql │ │ │ ├── env.sh │ │ │ ├── etcd-controller-template.yaml │ │ │ ├── etcd-down.sh │ │ │ ├── etcd-service-template.yaml │ │ │ ├── etcd-up.sh │ │ │ ├── guestbook-controller.yaml │ │ │ ├── guestbook-down.sh │ │ │ ├── guestbook-service.yaml │ │ │ ├── guestbook-up.sh │ │ │ ├── vitess-down.sh │ │ │ ├── vitess-up.sh │ │ │ ├── vtctld-controller-template.yaml │ │ │ ├── vtctld-down.sh │ │ │ ├── vtctld-service.yaml │ │ │ ├── vtctld-up.sh │ │ │ ├── vtgate-controller-template.yaml │ │ │ ├── vtgate-down.sh │ │ │ ├── vtgate-service.yaml │ │ │ ├── vtgate-up.sh │ │ │ ├── vttablet-down.sh │ │ │ ├── vttablet-pod-template.yaml │ │ │ └── vttablet-up.sh │ │ ├── hack │ │ ├── OWNERS │ │ ├── after-build │ │ │ ├── README.md │ │ │ ├── run-codegen.sh │ │ │ ├── run-import-boss.sh │ │ │ ├── update-generated-conversions.sh │ │ │ ├── update-generated-deep-copies.sh │ │ │ ├── update-generated-docs.sh │ │ │ ├── update-generated-protobuf.sh │ │ │ ├── update-swagger-spec.sh │ │ │ ├── verify-description.sh │ │ │ ├── verify-generated-conversions.sh │ │ │ ├── verify-generated-deep-copies.sh │ │ │ ├── verify-generated-docs.sh │ │ │ ├── verify-generated-protobuf.sh │ │ │ ├── verify-generated-swagger-docs.sh │ │ │ ├── verify-linkcheck.sh │ │ │ ├── verify-swagger-spec.sh │ │ │ └── verify-symbols.sh │ │ ├── benchmark-go.sh │ │ ├── benchmark-integration.sh │ │ ├── boilerplate │ │ │ ├── boilerplate.Dockerfile.txt │ │ │ ├── boilerplate.Makefile.txt │ │ │ ├── boilerplate.go.txt │ │ │ ├── boilerplate.py │ │ │ ├── boilerplate.py.txt │ │ │ └── boilerplate.sh.txt │ │ ├── build-cross.sh │ │ ├── build-go.sh │ │ ├── build-ui.sh │ │ ├── cherry_pick_pull.sh │ │ ├── conformance-test.sh │ │ ├── dev-build-and-push.sh │ │ ├── dev-build-and-up.sh │ │ ├── e2e-internal │ │ │ ├── build-release.sh │ │ │ ├── e2e-cluster-size.sh │ │ │ ├── e2e-down.sh │ │ │ ├── e2e-push.sh │ │ │ ├── e2e-status.sh │ │ │ ├── e2e-up.sh │ │ │ └── e2e-upgrade.sh │ │ ├── e2e-node-test.sh │ │ ├── e2e.go │ │ ├── gen-swagger-doc │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── example-output │ │ │ │ ├── definitions.html │ │ │ │ └── operations.html │ │ │ └── gen-swagger-docs.sh │ │ ├── get-build.sh │ │ ├── ginkgo-e2e.sh │ │ ├── grab-profiles.sh │ │ ├── install-etcd.sh │ │ ├── jenkins │ │ │ ├── README.md │ │ │ ├── build.sh │ │ │ ├── e2e-runner.sh │ │ │ ├── gotest-dockerized.sh │ │ │ ├── gotest.sh │ │ │ ├── job-builder-image │ │ │ │ ├── Dockerfile │ │ │ │ └── Makefile │ │ │ ├── job-configs │ │ │ │ ├── global.yaml │ │ │ │ ├── jenkins-gcloud-update.yaml │ │ │ │ ├── kubernetes-jenkins-pull │ │ │ │ │ └── kubernetes-update-jenkins-jobs.yaml │ │ │ │ └── kubernetes-jenkins │ │ │ │ │ ├── kubernetes-build.yaml │ │ │ │ │ ├── kubernetes-e2e-gce-enormous-startup.yaml │ │ │ │ │ ├── kubernetes-e2e.yaml │ │ │ │ │ ├── kubernetes-kubemark.yaml │ │ │ │ │ ├── kubernetes-soak.yaml │ │ │ │ │ ├── kubernetes-test-go.yaml │ │ │ │ │ ├── kubernetes-test-history.yaml │ │ │ │ │ ├── kubernetes-update-jenkins-jobs.yaml │ │ │ │ │ ├── kubernetes-upgrades.yaml │ │ │ │ │ ├── node-e2e.yaml │ │ │ │ │ └── test-linkchecker.yaml │ │ │ ├── test-dockerized.sh │ │ │ ├── test-history │ │ │ │ ├── gen_history │ │ │ │ ├── gen_html.py │ │ │ │ ├── gen_json.py │ │ │ │ ├── index_template.html │ │ │ │ └── static │ │ │ │ │ ├── script.js │ │ │ │ │ └── style.css │ │ │ ├── test-image │ │ │ │ ├── Dockerfile │ │ │ │ └── Makefile │ │ │ ├── update-jobs.sh │ │ │ ├── upload-finished.sh │ │ │ ├── upload-started.sh │ │ │ ├── upload-to-gcs.sh │ │ │ └── verify.sh │ │ ├── lib │ │ │ ├── etcd.sh │ │ │ ├── golang.sh │ │ │ ├── init.sh │ │ │ ├── test.sh │ │ │ ├── util.sh │ │ │ └── version.sh │ │ ├── list-feature-tests.sh │ │ ├── local-up-cluster.sh │ │ ├── lookup_pull.py │ │ ├── test-cmd.sh │ │ ├── test-go.sh │ │ ├── test-integration.sh │ │ ├── test-update-storage-objects.sh │ │ ├── testdata │ │ │ ├── deployment-revision2.yaml │ │ │ ├── frontend-controller.yaml │ │ │ ├── frontend-replicaset.yaml │ │ │ ├── multi-resource-json-modify.json │ │ │ ├── multi-resource-json.json │ │ │ ├── multi-resource-list-modify.json │ │ │ ├── multi-resource-list.json │ │ │ ├── multi-resource-rclist-modify.json │ │ │ ├── multi-resource-rclist.json │ │ │ ├── multi-resource-svclist-modify.json │ │ │ ├── multi-resource-svclist.json │ │ │ ├── multi-resource-yaml-modify.yaml │ │ │ ├── multi-resource-yaml.yaml │ │ │ ├── pod-apply.yaml │ │ │ ├── pod-with-large-name.yaml │ │ │ ├── pod.yaml │ │ │ └── redis-slave-replicaset.yaml │ │ ├── travis │ │ │ └── install-std-race.sh │ │ ├── update-all.sh │ │ ├── update-api-reference-docs.sh │ │ ├── update-codecgen.sh │ │ ├── update-codegen.sh │ │ ├── update-generated-conversions.sh │ │ ├── update-generated-deep-copies.sh │ │ ├── update-generated-docs.sh │ │ ├── update-generated-protobuf.sh │ │ ├── update-generated-swagger-docs.sh │ │ ├── update-godep-licenses.sh │ │ ├── update-gofmt.sh │ │ ├── update-swagger-spec.sh │ │ ├── verify-all.sh │ │ ├── verify-api-reference-docs.sh │ │ ├── verify-boilerplate.sh │ │ ├── verify-codecgen.sh │ │ ├── verify-codegen.sh │ │ ├── verify-description.sh │ │ ├── verify-flags-underscore.py │ │ ├── verify-flags │ │ │ ├── exceptions.txt │ │ │ ├── excluded-flags.txt │ │ │ └── known-flags.txt │ │ ├── verify-generated-conversions.sh │ │ ├── verify-generated-deep-copies.sh │ │ ├── verify-generated-docs.sh │ │ ├── verify-generated-protobuf.sh │ │ ├── verify-generated-swagger-docs.sh │ │ ├── verify-godep-licenses.sh │ │ ├── verify-godeps.sh │ │ ├── verify-gofmt.sh │ │ ├── verify-import-boss.sh │ │ ├── verify-linkcheck.sh │ │ ├── verify-swagger-spec.sh │ │ ├── verify-symbols.sh │ │ └── vet-go.sh │ │ ├── hooks │ │ └── pre-commit │ │ ├── logo.pdf │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── logo_usage_guidelines.md │ │ ├── pkg │ │ ├── OWNERS │ │ ├── admission │ │ │ ├── OWNERS │ │ │ ├── attributes.go │ │ │ ├── chain.go │ │ │ ├── chain_test.go │ │ │ ├── errors.go │ │ │ ├── handler.go │ │ │ ├── interfaces.go │ │ │ └── plugins.go │ │ ├── api │ │ │ ├── OWNERS │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── conversion.go │ │ │ ├── conversion_test.go │ │ │ ├── copy_test.go │ │ │ ├── deep_copy_generated.go │ │ │ ├── deep_copy_test.go │ │ │ ├── doc.go │ │ │ ├── endpoints │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── errors_test.go │ │ │ │ └── etcd │ │ │ │ │ ├── doc.go │ │ │ │ │ └── etcd.go │ │ │ ├── field_constants.go │ │ │ ├── generate.go │ │ │ ├── generate_test.go │ │ │ ├── helpers.go │ │ │ ├── helpers_test.go │ │ │ ├── install │ │ │ │ ├── install.go │ │ │ │ └── install_test.go │ │ │ ├── mapper.go │ │ │ ├── meta.go │ │ │ ├── meta │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── help.go │ │ │ │ ├── help_test.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── meta.go │ │ │ │ ├── meta_test.go │ │ │ │ ├── multirestmapper.go │ │ │ │ ├── multirestmapper_test.go │ │ │ │ ├── priority.go │ │ │ │ ├── priority_test.go │ │ │ │ ├── restmapper.go │ │ │ │ └── restmapper_test.go │ │ │ ├── meta_test.go │ │ │ ├── node_example.json │ │ │ ├── pod │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── pod_example.json │ │ │ ├── ref.go │ │ │ ├── ref_test.go │ │ │ ├── register.go │ │ │ ├── replication_controller_example.json │ │ │ ├── requestcontext.go │ │ │ ├── resource │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_example_test.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── quantity_test.go │ │ │ │ ├── scale_int.go │ │ │ │ ├── scale_int_test.go │ │ │ │ └── suffix.go │ │ │ ├── resource_helpers.go │ │ │ ├── resource_helpers_test.go │ │ │ ├── rest │ │ │ │ ├── create.go │ │ │ │ ├── delete.go │ │ │ │ ├── doc.go │ │ │ │ ├── export.go │ │ │ │ ├── rest.go │ │ │ │ ├── resttest │ │ │ │ │ └── resttest.go │ │ │ │ ├── types.go │ │ │ │ └── update.go │ │ │ ├── serialization_proto_test.go │ │ │ ├── serialization_test.go │ │ │ ├── service │ │ │ │ ├── annotations.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── testapi │ │ │ │ ├── testapi.go │ │ │ │ └── testapi_test.go │ │ │ ├── testing │ │ │ │ ├── compat │ │ │ │ │ └── compatibility_tester.go │ │ │ │ ├── conversion.go │ │ │ │ ├── fuzzer.go │ │ │ │ └── pod_specs.go │ │ │ ├── types.generated.go │ │ │ ├── types.go │ │ │ ├── unversioned │ │ │ │ ├── duration.go │ │ │ │ ├── duration_test.go │ │ │ │ ├── group_version.go │ │ │ │ ├── group_version_test.go │ │ │ │ ├── helpers.go │ │ │ │ ├── helpers_test.go │ │ │ │ ├── register.go │ │ │ │ ├── time.go │ │ │ │ ├── time_proto.go │ │ │ │ ├── time_test.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ ├── validation │ │ │ │ │ └── validation.go │ │ │ │ └── well_known_labels.go │ │ │ ├── util │ │ │ │ ├── group_version.go │ │ │ │ └── group_version_test.go │ │ │ ├── v1 │ │ │ │ ├── backward_compatibility_test.go │ │ │ │ ├── conversion.go │ │ │ │ ├── conversion_generated.go │ │ │ │ ├── conversion_test.go │ │ │ │ ├── deep_copy_generated.go │ │ │ │ ├── defaults.go │ │ │ │ ├── defaults_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ └── types_swagger_doc_generated.go │ │ │ └── validation │ │ │ │ ├── doc.go │ │ │ │ ├── events.go │ │ │ │ ├── events_test.go │ │ │ │ ├── name.go │ │ │ │ ├── name_test.go │ │ │ │ ├── schema.go │ │ │ │ ├── schema_test.go │ │ │ │ ├── testdata │ │ │ │ └── v1 │ │ │ │ │ ├── invalidPod.yaml │ │ │ │ │ ├── invalidPod1.json │ │ │ │ │ ├── invalidPod2.json │ │ │ │ │ ├── invalidPod3.json │ │ │ │ │ └── validPod.yaml │ │ │ │ ├── validation.go │ │ │ │ └── validation_test.go │ │ ├── apimachinery │ │ │ ├── doc.go │ │ │ ├── registered │ │ │ │ ├── registered.go │ │ │ │ └── registered_test.go │ │ │ └── types.go │ │ ├── apis │ │ │ ├── OWNERS │ │ │ ├── abac │ │ │ │ ├── latest │ │ │ │ │ └── latest.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v0 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── conversion_test.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── types.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── register.go │ │ │ │ │ └── types.go │ │ │ ├── authorization │ │ │ │ ├── deep_copy_generated.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── conversion_generated.go │ │ │ │ │ ├── deep_copy_generated.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── types_swagger_doc_generated.go │ │ │ │ └── validation │ │ │ │ │ ├── validation.go │ │ │ │ │ └── validation_test.go │ │ │ ├── autoscaling │ │ │ │ ├── deep_copy_generated.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── conversion_generated.go │ │ │ │ │ ├── deep_copy_generated.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── types_swagger_doc_generated.go │ │ │ │ └── validation │ │ │ │ │ ├── validation.go │ │ │ │ │ └── validation_test.go │ │ │ ├── batch │ │ │ │ ├── deep_copy_generated.go │ │ │ │ ├── install │ │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ └── v1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── conversion_generated.go │ │ │ │ │ ├── deep_copy_generated.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── types_swagger_doc_generated.go │ │ │ ├── componentconfig │ │ │ │ ├── deep_copy_generated.go │ │ │ │ ├── helpers.go │ │ │ │ ├── helpers_test.go │ │ │ │ ├── install │ │ │ │ │ ├── install.go │ │ │ │ │ └── install_test.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── conversion_generated.go │ │ │ │ │ ├── deep_copy_generated.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── types.go │ │ │ ├── extensions │ │ │ │ ├── deep_copy_generated.go │ │ │ │ ├── install │ │ │ │ │ ├── install.go │ │ │ │ │ └── install_test.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── conversion_generated.go │ │ │ │ │ ├── conversion_test.go │ │ │ │ │ ├── deep_copy_generated.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── defaults_test.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.generated.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── types_swagger_doc_generated.go │ │ │ │ └── validation │ │ │ │ │ ├── validation.go │ │ │ │ │ └── validation_test.go │ │ │ └── metrics │ │ │ │ ├── deep_copy_generated.go │ │ │ │ ├── install │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ └── v1alpha1 │ │ │ │ ├── conversion_generated.go │ │ │ │ ├── deep_copy_generated.go │ │ │ │ ├── register.go │ │ │ │ ├── types.generated.go │ │ │ │ └── types.go │ │ ├── apiserver │ │ │ ├── OWNERS │ │ │ ├── api_installer.go │ │ │ ├── api_installer_test.go │ │ │ ├── apiserver.go │ │ │ ├── apiserver_test.go │ │ │ ├── authenticator │ │ │ │ └── authn.go │ │ │ ├── authz.go │ │ │ ├── authz_test.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── handlers.go │ │ │ ├── handlers_test.go │ │ │ ├── index.go │ │ │ ├── metrics │ │ │ │ └── metrics.go │ │ │ ├── mux_helper.go │ │ │ ├── negotiate.go │ │ │ ├── negotiate_test.go │ │ │ ├── proxy.go │ │ │ ├── proxy_test.go │ │ │ ├── resthandler.go │ │ │ ├── resthandler_test.go │ │ │ ├── testing │ │ │ │ ├── types.generated.go │ │ │ │ └── types.go │ │ │ ├── validator.go │ │ │ ├── validator_test.go │ │ │ ├── watch.go │ │ │ └── watch_test.go │ │ ├── auth │ │ │ ├── OWNERS │ │ │ ├── authenticator │ │ │ │ ├── bearertoken │ │ │ │ │ ├── bearertoken.go │ │ │ │ │ └── bearertoken_test.go │ │ │ │ └── interfaces.go │ │ │ ├── authorizer │ │ │ │ ├── abac │ │ │ │ │ ├── abac.go │ │ │ │ │ ├── abac_test.go │ │ │ │ │ └── example_policy_file.jsonl │ │ │ │ ├── interfaces.go │ │ │ │ └── union │ │ │ │ │ ├── union.go │ │ │ │ │ └── union_test.go │ │ │ ├── handlers │ │ │ │ ├── handlers.go │ │ │ │ └── handlers_test.go │ │ │ └── user │ │ │ │ ├── doc.go │ │ │ │ └── user.go │ │ ├── capabilities │ │ │ ├── capabilities.go │ │ │ └── doc.go │ │ ├── client │ │ │ ├── OWNERS │ │ │ ├── cache │ │ │ │ ├── delta_fifo.go │ │ │ │ ├── delta_fifo_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── expiration_cache.go │ │ │ │ ├── expiration_cache_fakes.go │ │ │ │ ├── expiration_cache_test.go │ │ │ │ ├── fifo.go │ │ │ │ ├── fifo_test.go │ │ │ │ ├── index.go │ │ │ │ ├── index_test.go │ │ │ │ ├── listers.go │ │ │ │ ├── listers_test.go │ │ │ │ ├── listwatch.go │ │ │ │ ├── listwatch_test.go │ │ │ │ ├── reflector.go │ │ │ │ ├── reflector_test.go │ │ │ │ ├── store.go │ │ │ │ ├── store_test.go │ │ │ │ ├── thread_safe_store.go │ │ │ │ ├── undelta_store.go │ │ │ │ └── undelta_store_test.go │ │ │ ├── chaosclient │ │ │ │ ├── chaosclient.go │ │ │ │ └── chaosclient_test.go │ │ │ ├── clientset_generated │ │ │ │ ├── internalclientset │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── clientset_adaption.go │ │ │ │ │ └── fake │ │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ │ └── discovery.go │ │ │ │ └── release_1_2 │ │ │ │ │ ├── clientset.go │ │ │ │ │ ├── clientset_adaption.go │ │ │ │ │ └── fake │ │ │ │ │ ├── clientset_generated.go │ │ │ │ │ └── discovery.go │ │ │ ├── leaderelection │ │ │ │ ├── OWNERS │ │ │ │ ├── leaderelection.go │ │ │ │ └── leaderelection_test.go │ │ │ ├── metrics │ │ │ │ └── metrics.go │ │ │ ├── record │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── event_test.go │ │ │ │ ├── events_cache.go │ │ │ │ ├── events_cache_test.go │ │ │ │ └── fake.go │ │ │ ├── restclient │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── request.go │ │ │ │ ├── request_test.go │ │ │ │ ├── transport.go │ │ │ │ ├── url_utils.go │ │ │ │ ├── url_utils_test.go │ │ │ │ ├── urlbackoff.go │ │ │ │ ├── urlbackoff_test.go │ │ │ │ └── versions.go │ │ │ ├── testdata │ │ │ │ ├── myCA.cer │ │ │ │ ├── myCA.key │ │ │ │ ├── mycertvalid.cer │ │ │ │ ├── mycertvalid.key │ │ │ │ └── mycertvalid.req │ │ │ ├── testing │ │ │ │ └── core │ │ │ │ │ ├── actions.go │ │ │ │ │ ├── fake.go │ │ │ │ │ └── fixture.go │ │ │ ├── transport │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── config.go │ │ │ │ ├── round_trippers.go │ │ │ │ ├── round_trippers_test.go │ │ │ │ ├── transport.go │ │ │ │ └── transport_test.go │ │ │ ├── typed │ │ │ │ ├── discovery │ │ │ │ │ ├── client_test.go │ │ │ │ │ └── discovery_client.go │ │ │ │ ├── dynamic │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_pool.go │ │ │ │ │ └── client_test.go │ │ │ │ └── generated │ │ │ │ │ ├── core │ │ │ │ │ ├── unversioned │ │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ │ ├── configmap.go │ │ │ │ │ │ ├── core_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── fake_componentstatus.go │ │ │ │ │ │ │ ├── fake_configmap.go │ │ │ │ │ │ │ ├── fake_core_client.go │ │ │ │ │ │ │ ├── fake_endpoints.go │ │ │ │ │ │ │ ├── fake_event.go │ │ │ │ │ │ │ ├── fake_event_expansion.go │ │ │ │ │ │ │ ├── fake_limitrange.go │ │ │ │ │ │ │ ├── fake_namespace.go │ │ │ │ │ │ │ ├── fake_namespace_expansion.go │ │ │ │ │ │ │ ├── fake_node.go │ │ │ │ │ │ │ ├── fake_persistentvolume.go │ │ │ │ │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ │ │ │ │ ├── fake_pod.go │ │ │ │ │ │ │ ├── fake_pod_expansion.go │ │ │ │ │ │ │ ├── fake_podtemplate.go │ │ │ │ │ │ │ ├── fake_replicationcontroller.go │ │ │ │ │ │ │ ├── fake_resourcequota.go │ │ │ │ │ │ │ ├── fake_secret.go │ │ │ │ │ │ │ ├── fake_service.go │ │ │ │ │ │ │ ├── fake_service_expansion.go │ │ │ │ │ │ │ └── fake_serviceaccount.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── limitrange.go │ │ │ │ │ │ ├── namespace.go │ │ │ │ │ │ ├── namespace_expansion.go │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ │ ├── pod.go │ │ │ │ │ │ ├── pod_expansion.go │ │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ │ ├── secret.go │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ ├── service_expansion.go │ │ │ │ │ │ └── serviceaccount.go │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ │ ├── configmap.go │ │ │ │ │ │ ├── core_client.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── endpoints.go │ │ │ │ │ │ ├── event.go │ │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_componentstatus.go │ │ │ │ │ │ ├── fake_configmap.go │ │ │ │ │ │ ├── fake_core_client.go │ │ │ │ │ │ ├── fake_endpoints.go │ │ │ │ │ │ ├── fake_event.go │ │ │ │ │ │ ├── fake_event_expansion.go │ │ │ │ │ │ ├── fake_limitrange.go │ │ │ │ │ │ ├── fake_namespace.go │ │ │ │ │ │ ├── fake_namespace_expansion.go │ │ │ │ │ │ ├── fake_node.go │ │ │ │ │ │ ├── fake_persistentvolume.go │ │ │ │ │ │ ├── fake_pod.go │ │ │ │ │ │ ├── fake_pod_expansion.go │ │ │ │ │ │ ├── fake_podtemplate.go │ │ │ │ │ │ ├── fake_replicationcontroller.go │ │ │ │ │ │ ├── fake_resourcequota.go │ │ │ │ │ │ ├── fake_secret.go │ │ │ │ │ │ ├── fake_service.go │ │ │ │ │ │ ├── fake_service_expansion.go │ │ │ │ │ │ └── fake_serviceaccount.go │ │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ │ ├── limitrange.go │ │ │ │ │ │ ├── namespace.go │ │ │ │ │ │ ├── namespace_expansion.go │ │ │ │ │ │ ├── node.go │ │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ │ ├── pod.go │ │ │ │ │ │ ├── pod_expansion.go │ │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ │ ├── secret.go │ │ │ │ │ │ ├── service.go │ │ │ │ │ │ ├── service_expansion.go │ │ │ │ │ │ └── serviceaccount.go │ │ │ │ │ └── extensions │ │ │ │ │ ├── unversioned │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── extensions_client.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ ├── fake_deployment_expansion.go │ │ │ │ │ │ ├── fake_extensions_client.go │ │ │ │ │ │ ├── fake_horizontalpodautoscaler.go │ │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ │ ├── fake_job.go │ │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ │ ├── fake_scale.go │ │ │ │ │ │ ├── fake_scale_expansion.go │ │ │ │ │ │ └── fake_thirdpartyresource.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── job.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── scale.go │ │ │ │ │ ├── scale_expansion.go │ │ │ │ │ └── thirdpartyresource.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── extensions_client.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_deployment_expansion.go │ │ │ │ │ ├── fake_extensions_client.go │ │ │ │ │ ├── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_job.go │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ ├── fake_scale.go │ │ │ │ │ ├── fake_scale_expansion.go │ │ │ │ │ └── fake_thirdpartyresource.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── job.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── scale.go │ │ │ │ │ ├── scale_expansion.go │ │ │ │ │ └── thirdpartyresource.go │ │ │ └── unversioned │ │ │ │ ├── auth │ │ │ │ ├── clientauth.go │ │ │ │ └── clientauth_test.go │ │ │ │ ├── autoscaling.go │ │ │ │ ├── batch.go │ │ │ │ ├── client.go │ │ │ │ ├── clientcmd │ │ │ │ ├── api │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ ├── latest │ │ │ │ │ │ └── latest.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_test.go │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── auth_loaders.go │ │ │ │ ├── client_config.go │ │ │ │ ├── client_config_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── loader.go │ │ │ │ ├── loader_test.go │ │ │ │ ├── merged_client_builder.go │ │ │ │ ├── overrides.go │ │ │ │ ├── validation.go │ │ │ │ └── validation_test.go │ │ │ │ ├── componentstatuses.go │ │ │ │ ├── conditions.go │ │ │ │ ├── conditions_test.go │ │ │ │ ├── configmap.go │ │ │ │ ├── containerinfo.go │ │ │ │ ├── containerinfo_test.go │ │ │ │ ├── daemon_sets.go │ │ │ │ ├── daemon_sets_test.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── endpoints_test.go │ │ │ │ ├── events.go │ │ │ │ ├── events_test.go │ │ │ │ ├── extensions.go │ │ │ │ ├── fake │ │ │ │ └── fake.go │ │ │ │ ├── flags.go │ │ │ │ ├── flags_test.go │ │ │ │ ├── helper.go │ │ │ │ ├── helper_blackbox_test.go │ │ │ │ ├── helper_test.go │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ ├── horizontalpodautoscaler_test.go │ │ │ │ ├── import_known_versions.go │ │ │ │ ├── ingress.go │ │ │ │ ├── ingress_test.go │ │ │ │ ├── jobs.go │ │ │ │ ├── jobs_test.go │ │ │ │ ├── limit_ranges.go │ │ │ │ ├── limit_ranges_test.go │ │ │ │ ├── namespaces.go │ │ │ │ ├── namespaces_test.go │ │ │ │ ├── nodes.go │ │ │ │ ├── nodes_test.go │ │ │ │ ├── persistentvolume_test.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── persistentvolumeclaim_test.go │ │ │ │ ├── persistentvolumes.go │ │ │ │ ├── pod_templates.go │ │ │ │ ├── pod_templates_test.go │ │ │ │ ├── pods.go │ │ │ │ ├── pods_test.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ ├── podsecuritypolicy_test.go │ │ │ │ ├── portforward │ │ │ │ ├── doc.go │ │ │ │ ├── portforward.go │ │ │ │ └── portforward_test.go │ │ │ │ ├── remotecommand │ │ │ │ ├── doc.go │ │ │ │ ├── remotecommand.go │ │ │ │ ├── remotecommand_test.go │ │ │ │ ├── v1.go │ │ │ │ └── v2.go │ │ │ │ ├── replica_sets.go │ │ │ │ ├── replica_sets_test.go │ │ │ │ ├── replication_controllers.go │ │ │ │ ├── replication_controllers_test.go │ │ │ │ ├── resource_quotas.go │ │ │ │ ├── resource_quotas_test.go │ │ │ │ ├── scale.go │ │ │ │ ├── secrets.go │ │ │ │ ├── service_accounts.go │ │ │ │ ├── services.go │ │ │ │ ├── services_test.go │ │ │ │ ├── testclient │ │ │ │ ├── actions.go │ │ │ │ ├── fake_componentstatuses.go │ │ │ │ ├── fake_configmaps.go │ │ │ │ ├── fake_daemon_sets.go │ │ │ │ ├── fake_deployments.go │ │ │ │ ├── fake_endpoints.go │ │ │ │ ├── fake_events.go │ │ │ │ ├── fake_horizontal_pod_autoscalers.go │ │ │ │ ├── fake_ingress.go │ │ │ │ ├── fake_jobs.go │ │ │ │ ├── fake_limit_ranges.go │ │ │ │ ├── fake_namespaces.go │ │ │ │ ├── fake_nodes.go │ │ │ │ ├── fake_persistent_volume_claims.go │ │ │ │ ├── fake_persistent_volumes.go │ │ │ │ ├── fake_pod_templates.go │ │ │ │ ├── fake_pods.go │ │ │ │ ├── fake_podsecuritypolicy.go │ │ │ │ ├── fake_replica_sets.go │ │ │ │ ├── fake_replication_controllers.go │ │ │ │ ├── fake_resource_quotas.go │ │ │ │ ├── fake_scales.go │ │ │ │ ├── fake_secrets.go │ │ │ │ ├── fake_service_accounts.go │ │ │ │ ├── fake_services.go │ │ │ │ ├── fake_test.go │ │ │ │ ├── fake_thirdpartyresources.go │ │ │ │ ├── fixture.go │ │ │ │ ├── simple │ │ │ │ │ └── simple_testclient.go │ │ │ │ ├── testclient.go │ │ │ │ └── testclient_test.go │ │ │ │ ├── thirdpartyresources.go │ │ │ │ └── thirdpartyresources_test.go │ │ ├── cloudprovider │ │ │ ├── OWNERS │ │ │ ├── cloud.go │ │ │ ├── doc.go │ │ │ ├── plugins.go │ │ │ └── providers │ │ │ │ ├── aws │ │ │ │ ├── OWNERS │ │ │ │ ├── aws.go │ │ │ │ ├── aws_instancegroups.go │ │ │ │ ├── aws_loadbalancer.go │ │ │ │ ├── aws_routes.go │ │ │ │ ├── aws_test.go │ │ │ │ ├── aws_utils.go │ │ │ │ ├── log_handler.go │ │ │ │ ├── retry_handler.go │ │ │ │ ├── retry_handler_test.go │ │ │ │ └── sets_ippermissions.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ └── fake.go │ │ │ │ ├── gce │ │ │ │ ├── doc.go │ │ │ │ ├── gce.go │ │ │ │ ├── gce_test.go │ │ │ │ └── token_source.go │ │ │ │ ├── mesos │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── mesos.go │ │ │ │ ├── mesos_test.go │ │ │ │ └── plugins.go │ │ │ │ ├── openstack │ │ │ │ ├── MAINTAINERS.md │ │ │ │ ├── openstack.go │ │ │ │ └── openstack_test.go │ │ │ │ ├── ovirt │ │ │ │ ├── ovirt.go │ │ │ │ └── ovirt_test.go │ │ │ │ ├── providers.go │ │ │ │ └── rackspace │ │ │ │ ├── MAINTAINERS.md │ │ │ │ ├── rackspace.go │ │ │ │ └── rackspace_test.go │ │ ├── controller │ │ │ ├── OWNERS │ │ │ ├── controller_utils.go │ │ │ ├── controller_utils_test.go │ │ │ ├── daemon │ │ │ │ ├── controller.go │ │ │ │ ├── controller_test.go │ │ │ │ └── doc.go │ │ │ ├── deployment │ │ │ │ ├── deployment_controller.go │ │ │ │ └── deployment_controller_test.go │ │ │ ├── doc.go │ │ │ ├── endpoint │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints_controller.go │ │ │ │ └── endpoints_controller_test.go │ │ │ ├── framework │ │ │ │ ├── controller.go │ │ │ │ ├── controller_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake_controller_source.go │ │ │ │ └── fake_controller_source_test.go │ │ │ ├── gc │ │ │ │ ├── doc.go │ │ │ │ ├── gc_controller.go │ │ │ │ └── gc_controller_test.go │ │ │ ├── job │ │ │ │ ├── controller.go │ │ │ │ ├── controller_test.go │ │ │ │ └── doc.go │ │ │ ├── lookup_cache.go │ │ │ ├── namespace │ │ │ │ ├── doc.go │ │ │ │ ├── namespace_controller.go │ │ │ │ ├── namespace_controller_test.go │ │ │ │ └── namespace_controller_utils.go │ │ │ ├── node │ │ │ │ ├── doc.go │ │ │ │ ├── nodecontroller.go │ │ │ │ ├── nodecontroller_test.go │ │ │ │ ├── rate_limited_queue.go │ │ │ │ └── rate_limited_queue_test.go │ │ │ ├── persistentvolume │ │ │ │ ├── OWNERS │ │ │ │ ├── options │ │ │ │ │ └── options.go │ │ │ │ ├── persistentvolume_claim_binder_controller.go │ │ │ │ ├── persistentvolume_claim_binder_controller_test.go │ │ │ │ ├── persistentvolume_index_test.go │ │ │ │ ├── persistentvolume_provisioner_controller.go │ │ │ │ ├── persistentvolume_provisioner_controller_test.go │ │ │ │ ├── persistentvolume_recycler_controller.go │ │ │ │ ├── persistentvolume_recycler_controller_test.go │ │ │ │ └── types.go │ │ │ ├── podautoscaler │ │ │ │ ├── horizontal.go │ │ │ │ ├── horizontal_test.go │ │ │ │ └── metrics │ │ │ │ │ ├── metrics_client.go │ │ │ │ │ └── metrics_client_test.go │ │ │ ├── replicaset │ │ │ │ ├── doc.go │ │ │ │ ├── options │ │ │ │ │ └── options.go │ │ │ │ ├── replica_set.go │ │ │ │ ├── replica_set_test.go │ │ │ │ └── replica_set_utils.go │ │ │ ├── replication │ │ │ │ ├── doc.go │ │ │ │ ├── replication_controller.go │ │ │ │ ├── replication_controller_test.go │ │ │ │ └── replication_controller_utils.go │ │ │ ├── resourcequota │ │ │ │ ├── doc.go │ │ │ │ ├── replenishment_controller.go │ │ │ │ ├── replenishment_controller_test.go │ │ │ │ ├── resource_quota_controller.go │ │ │ │ └── resource_quota_controller_test.go │ │ │ ├── route │ │ │ │ ├── doc.go │ │ │ │ ├── routecontroller.go │ │ │ │ └── routecontroller_test.go │ │ │ ├── service │ │ │ │ ├── doc.go │ │ │ │ ├── servicecontroller.go │ │ │ │ └── servicecontroller_test.go │ │ │ └── serviceaccount │ │ │ │ ├── doc.go │ │ │ │ ├── serviceaccounts_controller.go │ │ │ │ ├── serviceaccounts_controller_test.go │ │ │ │ ├── tokengetter.go │ │ │ │ ├── tokens_controller.go │ │ │ │ └── tokens_controller_test.go │ │ ├── conversion │ │ │ ├── OWNERS │ │ │ ├── cloner.go │ │ │ ├── converter.go │ │ │ ├── converter_test.go │ │ │ ├── deep_copy_test.go │ │ │ ├── deep_equal.go │ │ │ ├── doc.go │ │ │ ├── helper.go │ │ │ ├── helper_test.go │ │ │ └── queryparams │ │ │ │ ├── convert.go │ │ │ │ ├── convert_test.go │ │ │ │ └── doc.go │ │ ├── credentialprovider │ │ │ ├── OWNERS │ │ │ ├── aws │ │ │ │ ├── aws_credentials.go │ │ │ │ └── aws_credentials_test.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── doc.go │ │ │ ├── gcp │ │ │ │ ├── doc.go │ │ │ │ ├── jwt.go │ │ │ │ ├── jwt_test.go │ │ │ │ ├── metadata.go │ │ │ │ └── metadata_test.go │ │ │ ├── keyring.go │ │ │ ├── keyring_test.go │ │ │ ├── plugins.go │ │ │ ├── provider.go │ │ │ └── provider_test.go │ │ ├── fieldpath │ │ │ ├── doc.go │ │ │ ├── fieldpath.go │ │ │ └── fieldpath_test.go │ │ ├── fields │ │ │ ├── doc.go │ │ │ ├── fields.go │ │ │ ├── fields_test.go │ │ │ ├── selector.go │ │ │ └── selector_test.go │ │ ├── genericapiserver │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── genericapiserver.go │ │ │ ├── genericapiserver_test.go │ │ │ └── server_run_options.go │ │ ├── healthz │ │ │ ├── doc.go │ │ │ ├── healthz.go │ │ │ └── healthz_test.go │ │ ├── httplog │ │ │ ├── doc.go │ │ │ ├── log.go │ │ │ └── log_test.go │ │ ├── hyperkube │ │ │ └── doc.go │ │ ├── kubectl │ │ │ ├── OWNERS │ │ │ ├── apply.go │ │ │ ├── autoscale.go │ │ │ ├── bash_comp_utils.go │ │ │ ├── cmd │ │ │ │ ├── annotate.go │ │ │ │ ├── annotate_test.go │ │ │ │ ├── apiversions.go │ │ │ │ ├── apply.go │ │ │ │ ├── apply_test.go │ │ │ │ ├── attach.go │ │ │ │ ├── attach_test.go │ │ │ │ ├── autoscale.go │ │ │ │ ├── clusterinfo.go │ │ │ │ ├── cmd.go │ │ │ │ ├── cmd_test.go │ │ │ │ ├── config │ │ │ │ │ ├── config.go │ │ │ │ │ ├── config_test.go │ │ │ │ │ ├── create_authinfo.go │ │ │ │ │ ├── create_cluster.go │ │ │ │ │ ├── create_context.go │ │ │ │ │ ├── current_context.go │ │ │ │ │ ├── current_context_test.go │ │ │ │ │ ├── navigation_step_parser.go │ │ │ │ │ ├── navigation_step_parser_test.go │ │ │ │ │ ├── set.go │ │ │ │ │ ├── unset.go │ │ │ │ │ ├── use_context.go │ │ │ │ │ └── view.go │ │ │ │ ├── convert.go │ │ │ │ ├── create.go │ │ │ │ ├── create_configmap.go │ │ │ │ ├── create_configmap_test.go │ │ │ │ ├── create_namespace.go │ │ │ │ ├── create_namespace_test.go │ │ │ │ ├── create_secret.go │ │ │ │ ├── create_secret_test.go │ │ │ │ ├── create_serviceaccount.go │ │ │ │ ├── create_serviceaccount_test.go │ │ │ │ ├── create_test.go │ │ │ │ ├── delete.go │ │ │ │ ├── delete_test.go │ │ │ │ ├── describe.go │ │ │ │ ├── describe_test.go │ │ │ │ ├── drain.go │ │ │ │ ├── drain_test.go │ │ │ │ ├── edit.go │ │ │ │ ├── exec.go │ │ │ │ ├── exec_test.go │ │ │ │ ├── explain.go │ │ │ │ ├── expose.go │ │ │ │ ├── expose_test.go │ │ │ │ ├── get.go │ │ │ │ ├── get_test.go │ │ │ │ ├── label.go │ │ │ │ ├── label_test.go │ │ │ │ ├── logs.go │ │ │ │ ├── logs_test.go │ │ │ │ ├── namespace.go │ │ │ │ ├── patch.go │ │ │ │ ├── patch_test.go │ │ │ │ ├── portforward.go │ │ │ │ ├── portforward_test.go │ │ │ │ ├── proxy.go │ │ │ │ ├── replace.go │ │ │ │ ├── replace_test.go │ │ │ │ ├── rollingupdate.go │ │ │ │ ├── rollingupdate_test.go │ │ │ │ ├── rollout │ │ │ │ │ ├── rollout.go │ │ │ │ │ ├── rollout_history.go │ │ │ │ │ ├── rollout_pause.go │ │ │ │ │ ├── rollout_resume.go │ │ │ │ │ └── rollout_undo.go │ │ │ │ ├── run.go │ │ │ │ ├── run_test.go │ │ │ │ ├── scale.go │ │ │ │ ├── stop.go │ │ │ │ ├── util │ │ │ │ │ ├── clientcache.go │ │ │ │ │ ├── editor │ │ │ │ │ │ ├── editor.go │ │ │ │ │ │ ├── editor_test.go │ │ │ │ │ │ ├── term.go │ │ │ │ │ │ └── term_unsupported.go │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── factory_test.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ ├── jsonmerge │ │ │ │ │ │ └── jsonmerge.go │ │ │ │ │ └── printing.go │ │ │ │ └── version.go │ │ │ ├── configmap.go │ │ │ ├── configmap_test.go │ │ │ ├── custom_column_printer.go │ │ │ ├── custom_column_printer_test.go │ │ │ ├── describe.go │ │ │ ├── describe_test.go │ │ │ ├── doc.go │ │ │ ├── explain.go │ │ │ ├── generate.go │ │ │ ├── generate_test.go │ │ │ ├── history.go │ │ │ ├── interfaces.go │ │ │ ├── kubectl.go │ │ │ ├── kubectl_test.go │ │ │ ├── namespace.go │ │ │ ├── namespace_test.go │ │ │ ├── proxy_server.go │ │ │ ├── proxy_server_test.go │ │ │ ├── resource │ │ │ │ ├── builder.go │ │ │ │ ├── builder_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── helper.go │ │ │ │ ├── helper_test.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── mapper.go │ │ │ │ ├── result.go │ │ │ │ ├── selector.go │ │ │ │ └── visitor.go │ │ │ ├── resource_printer.go │ │ │ ├── resource_printer_test.go │ │ │ ├── rollback.go │ │ │ ├── rolling_updater.go │ │ │ ├── rolling_updater_test.go │ │ │ ├── run.go │ │ │ ├── run_test.go │ │ │ ├── scale.go │ │ │ ├── scale_test.go │ │ │ ├── secret.go │ │ │ ├── secret_for_docker_registry.go │ │ │ ├── secret_for_docker_registry_test.go │ │ │ ├── secret_test.go │ │ │ ├── service.go │ │ │ ├── service_test.go │ │ │ ├── serviceaccount.go │ │ │ ├── serviceaccount_test.go │ │ │ ├── sorted_event_list.go │ │ │ ├── sorted_event_list_test.go │ │ │ ├── sorted_resource_name_list.go │ │ │ ├── sorting_printer.go │ │ │ ├── sorting_printer_test.go │ │ │ ├── stop.go │ │ │ ├── stop_test.go │ │ │ ├── testing │ │ │ │ ├── types.generated.go │ │ │ │ └── types.go │ │ │ ├── version.go │ │ │ └── watchloop.go │ │ ├── kubelet │ │ │ ├── OWNERS │ │ │ ├── api │ │ │ │ └── v1alpha1 │ │ │ │ │ └── stats │ │ │ │ │ └── types.go │ │ │ ├── cadvisor │ │ │ │ ├── cadvisor_linux.go │ │ │ │ ├── cadvisor_unsupported.go │ │ │ │ ├── doc.go │ │ │ │ ├── testing │ │ │ │ │ ├── cadvisor_fake.go │ │ │ │ │ └── cadvisor_mock.go │ │ │ │ ├── types.go │ │ │ │ └── util.go │ │ │ ├── client │ │ │ │ ├── kubelet_client.go │ │ │ │ └── kubelet_client_test.go │ │ │ ├── cm │ │ │ │ ├── container_manager.go │ │ │ │ ├── container_manager_linux.go │ │ │ │ ├── container_manager_linux_test.go │ │ │ │ ├── container_manager_stub.go │ │ │ │ ├── container_manager_unsupported.go │ │ │ │ └── container_manager_unsupported_test.go │ │ │ ├── config │ │ │ │ ├── apiserver.go │ │ │ │ ├── apiserver_test.go │ │ │ │ ├── common.go │ │ │ │ ├── common_test.go │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── file.go │ │ │ │ ├── file_test.go │ │ │ │ ├── http.go │ │ │ │ └── http_test.go │ │ │ ├── container │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── container_gc.go │ │ │ │ ├── container_reference_manager.go │ │ │ │ ├── event.go │ │ │ │ ├── export_test.go │ │ │ │ ├── helpers.go │ │ │ │ ├── helpers_test.go │ │ │ │ ├── image_puller.go │ │ │ │ ├── image_puller_test.go │ │ │ │ ├── os.go │ │ │ │ ├── pty_linux.go │ │ │ │ ├── pty_unsupported.go │ │ │ │ ├── ref.go │ │ │ │ ├── ref_test.go │ │ │ │ ├── runtime.go │ │ │ │ ├── runtime_cache.go │ │ │ │ ├── runtime_cache_test.go │ │ │ │ ├── serialized_image_puller.go │ │ │ │ ├── serialized_image_puller_test.go │ │ │ │ ├── sync_result.go │ │ │ │ ├── sync_result_test.go │ │ │ │ └── testing │ │ │ │ │ ├── fake_cache.go │ │ │ │ │ ├── fake_runtime.go │ │ │ │ │ ├── os.go │ │ │ │ │ └── runtime_mock.go │ │ │ ├── container_bridge.go │ │ │ ├── custommetrics │ │ │ │ ├── custom_metrics.go │ │ │ │ └── custom_metrics_test.go │ │ │ ├── disk_manager.go │ │ │ ├── disk_manager_test.go │ │ │ ├── doc.go │ │ │ ├── dockertools │ │ │ │ ├── container_gc.go │ │ │ │ ├── container_gc_test.go │ │ │ │ ├── convert.go │ │ │ │ ├── convert_test.go │ │ │ │ ├── docker.go │ │ │ │ ├── docker_test.go │ │ │ │ ├── exec.go │ │ │ │ ├── fake_docker_client.go │ │ │ │ ├── fake_manager.go │ │ │ │ ├── instrumented_docker.go │ │ │ │ ├── labels.go │ │ │ │ ├── labels_test.go │ │ │ │ ├── manager.go │ │ │ │ └── manager_test.go │ │ │ ├── envvars │ │ │ │ ├── doc.go │ │ │ │ ├── envvars.go │ │ │ │ └── envvars_test.go │ │ │ ├── flannel_helper.go │ │ │ ├── image_manager.go │ │ │ ├── image_manager_test.go │ │ │ ├── kubelet.go │ │ │ ├── kubelet_test.go │ │ │ ├── leaky │ │ │ │ └── leaky.go │ │ │ ├── lifecycle │ │ │ │ ├── doc.go │ │ │ │ ├── handlers.go │ │ │ │ └── handlers_test.go │ │ │ ├── metrics │ │ │ │ └── metrics.go │ │ │ ├── network │ │ │ │ ├── cni │ │ │ │ │ ├── cni.go │ │ │ │ │ └── cni_test.go │ │ │ │ ├── exec │ │ │ │ │ ├── exec.go │ │ │ │ │ ├── exec_test.go │ │ │ │ │ ├── exec_unix.go │ │ │ │ │ └── exec_unsupported.go │ │ │ │ ├── hairpin │ │ │ │ │ ├── hairpin.go │ │ │ │ │ └── hairpin_test.go │ │ │ │ ├── kubenet │ │ │ │ │ ├── kubenet_linux.go │ │ │ │ │ └── kubenet_unsupported.go │ │ │ │ ├── network.go │ │ │ │ ├── plugins.go │ │ │ │ ├── plugins_test.go │ │ │ │ └── testing │ │ │ │ │ └── fake_host.go │ │ │ ├── networks.go │ │ │ ├── oom_watcher.go │ │ │ ├── oom_watcher_test.go │ │ │ ├── pleg │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ ├── generic_test.go │ │ │ │ └── pleg.go │ │ │ ├── pod │ │ │ │ ├── manager.go │ │ │ │ ├── manager_test.go │ │ │ │ ├── mirror_client.go │ │ │ │ ├── mirror_client_test.go │ │ │ │ └── testing │ │ │ │ │ └── fake_mirror_client.go │ │ │ ├── pod_workers.go │ │ │ ├── pod_workers_test.go │ │ │ ├── prober │ │ │ │ ├── common_test.go │ │ │ │ ├── manager.go │ │ │ │ ├── manager_test.go │ │ │ │ ├── prober.go │ │ │ │ ├── prober_test.go │ │ │ │ ├── results │ │ │ │ │ ├── results_manager.go │ │ │ │ │ └── results_manager_test.go │ │ │ │ ├── testing │ │ │ │ │ └── fake_manager.go │ │ │ │ ├── worker.go │ │ │ │ └── worker_test.go │ │ │ ├── qos │ │ │ │ ├── doc.go │ │ │ │ ├── memory_policy.go │ │ │ │ ├── memory_policy_test.go │ │ │ │ └── util │ │ │ │ │ └── qos.go │ │ │ ├── reason_cache.go │ │ │ ├── reason_cache_test.go │ │ │ ├── rkt │ │ │ │ ├── cap.go │ │ │ │ ├── config.go │ │ │ │ ├── container_id.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake_rkt_interface_test.go │ │ │ │ ├── image.go │ │ │ │ ├── log.go │ │ │ │ ├── rkt.go │ │ │ │ ├── rkt_test.go │ │ │ │ ├── systemd.go │ │ │ │ └── version.go │ │ │ ├── root_context_linux.go │ │ │ ├── root_context_unsupported.go │ │ │ ├── runonce.go │ │ │ ├── runonce_test.go │ │ │ ├── runtime.go │ │ │ ├── server │ │ │ │ ├── auth.go │ │ │ │ ├── doc.go │ │ │ │ ├── portforward │ │ │ │ │ └── constants.go │ │ │ │ ├── server.go │ │ │ │ ├── server_test.go │ │ │ │ └── stats │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fs_resource_analyzer.go │ │ │ │ │ ├── handler.go │ │ │ │ │ ├── mocks_test.go │ │ │ │ │ ├── resource_analyzer.go │ │ │ │ │ ├── summary.go │ │ │ │ │ ├── summary_test.go │ │ │ │ │ └── volume_stat_caculator.go │ │ │ ├── status │ │ │ │ ├── generate.go │ │ │ │ ├── generate_test.go │ │ │ │ ├── manager.go │ │ │ │ └── manager_test.go │ │ │ ├── types │ │ │ │ ├── constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── pod_update.go │ │ │ │ ├── pod_update_test.go │ │ │ │ └── types.go │ │ │ ├── util.go │ │ │ ├── util │ │ │ │ ├── doc.go │ │ │ │ ├── format │ │ │ │ │ └── pod.go │ │ │ │ └── queue │ │ │ │ │ ├── work_queue.go │ │ │ │ │ └── work_queue_test.go │ │ │ ├── volume_manager.go │ │ │ └── volumes.go │ │ ├── kubemark │ │ │ ├── hollow_kubelet.go │ │ │ └── hollow_proxy.go │ │ ├── labels │ │ │ ├── doc.go │ │ │ ├── labels.go │ │ │ ├── labels_test.go │ │ │ ├── selector.go │ │ │ └── selector_test.go │ │ ├── master │ │ │ ├── OWNERS │ │ │ ├── controller.go │ │ │ ├── controller_test.go │ │ │ ├── doc.go │ │ │ ├── import_known_versions.go │ │ │ ├── master.go │ │ │ ├── master_test.go │ │ │ ├── ports │ │ │ │ ├── doc.go │ │ │ │ └── ports.go │ │ │ ├── thirdparty_controller.go │ │ │ ├── thirdparty_controller_test.go │ │ │ ├── tunneler.go │ │ │ └── tunneler_test.go │ │ ├── metrics │ │ │ ├── api_server_metrics.go │ │ │ ├── controller_manager_metrics.go │ │ │ ├── generic_metrics.go │ │ │ ├── kubelet_metrics.go │ │ │ ├── metrics_grabber.go │ │ │ └── scheduler_metrics.go │ │ ├── probe │ │ │ ├── doc.go │ │ │ ├── exec │ │ │ │ ├── exec.go │ │ │ │ └── exec_test.go │ │ │ ├── http │ │ │ │ ├── http.go │ │ │ │ └── http_test.go │ │ │ ├── probe.go │ │ │ └── tcp │ │ │ │ ├── tcp.go │ │ │ │ └── tcp_test.go │ │ ├── proxy │ │ │ ├── OWNERS │ │ │ ├── config │ │ │ │ ├── api.go │ │ │ │ ├── api_test.go │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ └── doc.go │ │ │ ├── doc.go │ │ │ ├── iptables │ │ │ │ ├── proxier.go │ │ │ │ └── proxier_test.go │ │ │ ├── types.go │ │ │ └── userspace │ │ │ │ ├── loadbalancer.go │ │ │ │ ├── port_allocator.go │ │ │ │ ├── port_allocator_test.go │ │ │ │ ├── proxier.go │ │ │ │ ├── proxier_test.go │ │ │ │ ├── proxysocket.go │ │ │ │ ├── rlimit.go │ │ │ │ ├── rlimit_windows.go │ │ │ │ ├── roundrobin.go │ │ │ │ ├── roundrobin_test.go │ │ │ │ └── udp_server.go │ │ ├── quota │ │ │ ├── evaluator │ │ │ │ └── core │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── persistent_volume_claims.go │ │ │ │ │ ├── pods.go │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── replication_controllers.go │ │ │ │ │ ├── resource_quotas.go │ │ │ │ │ ├── secrets.go │ │ │ │ │ └── services.go │ │ │ ├── generic │ │ │ │ ├── evaluator.go │ │ │ │ └── registry.go │ │ │ ├── install │ │ │ │ └── registry.go │ │ │ ├── interfaces.go │ │ │ ├── resources.go │ │ │ └── resources_test.go │ │ ├── registry │ │ │ ├── OWNERS │ │ │ ├── cachesize │ │ │ │ └── cachesize.go │ │ │ ├── componentstatus │ │ │ │ ├── doc.go │ │ │ │ ├── rest.go │ │ │ │ └── rest_test.go │ │ │ ├── configmap │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── controller │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── daemonset │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── deployment │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── doc.go │ │ │ ├── endpoint │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── event │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── experimental │ │ │ │ └── controller │ │ │ │ │ └── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ ├── generic │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── etcd.go │ │ │ │ │ ├── etcd_test.go │ │ │ │ │ └── storage_factory.go │ │ │ │ ├── matcher.go │ │ │ │ ├── matcher_test.go │ │ │ │ ├── options.go │ │ │ │ ├── rest │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── proxy_test.go │ │ │ │ │ ├── response_checker.go │ │ │ │ │ ├── response_checker_test.go │ │ │ │ │ ├── streamer.go │ │ │ │ │ └── streamer_test.go │ │ │ │ └── storage_decorator.go │ │ │ ├── horizontalpodautoscaler │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── ingress │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── job │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── limitrange │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── namespace │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── node │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── rest │ │ │ │ │ └── proxy.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── persistentvolume │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── persistentvolumeclaim │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── pod │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── rest │ │ │ │ │ ├── log.go │ │ │ │ │ ├── log_test.go │ │ │ │ │ └── subresources.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── podsecuritypolicy │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ └── strategy.go │ │ │ ├── podtemplate │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── registrytest │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── etcd.go │ │ │ │ ├── node.go │ │ │ │ └── service.go │ │ │ ├── replicaset │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── resourcequota │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── secret │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── service │ │ │ │ ├── allocator │ │ │ │ │ ├── bitmap.go │ │ │ │ │ ├── bitmap_test.go │ │ │ │ │ ├── etcd │ │ │ │ │ │ ├── etcd.go │ │ │ │ │ │ └── etcd_test.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── utils.go │ │ │ │ │ └── utils_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── ipallocator │ │ │ │ │ ├── allocator.go │ │ │ │ │ ├── allocator_test.go │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── repair.go │ │ │ │ │ │ └── repair_test.go │ │ │ │ │ └── etcd │ │ │ │ │ │ ├── etcd.go │ │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── portallocator │ │ │ │ │ ├── allocator.go │ │ │ │ │ ├── allocator_test.go │ │ │ │ │ ├── controller │ │ │ │ │ │ └── repair.go │ │ │ │ │ └── operation.go │ │ │ │ ├── proxy.go │ │ │ │ ├── registry.go │ │ │ │ ├── rest.go │ │ │ │ ├── rest_test.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── serviceaccount │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ ├── thirdpartyresource │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ │ ├── etcd.go │ │ │ │ │ └── etcd_test.go │ │ │ │ ├── strategy.go │ │ │ │ └── strategy_test.go │ │ │ └── thirdpartyresourcedata │ │ │ │ ├── codec.go │ │ │ │ ├── codec_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── etcd │ │ │ │ ├── etcd.go │ │ │ │ └── etcd_test.go │ │ │ │ ├── registry.go │ │ │ │ ├── strategy.go │ │ │ │ ├── strategy_test.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ ├── runtime │ │ │ ├── OWNERS │ │ │ ├── codec.go │ │ │ ├── codec_check.go │ │ │ ├── conversion.go │ │ │ ├── conversion_generator.go │ │ │ ├── conversion_test.go │ │ │ ├── deep_copy_generator.go │ │ │ ├── doc.go │ │ │ ├── embedded.go │ │ │ ├── embedded_test.go │ │ │ ├── error.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── helper.go │ │ │ ├── helper_test.go │ │ │ ├── interfaces.go │ │ │ ├── protobuf │ │ │ │ ├── doc.go │ │ │ │ └── protobuf.go │ │ │ ├── register.go │ │ │ ├── scheme.go │ │ │ ├── scheme_test.go │ │ │ ├── serializer │ │ │ │ ├── codec_factory.go │ │ │ │ ├── codec_test.go │ │ │ │ ├── json │ │ │ │ │ ├── json.go │ │ │ │ │ ├── json_test.go │ │ │ │ │ ├── meta.go │ │ │ │ │ └── meta_test.go │ │ │ │ ├── recognizer │ │ │ │ │ ├── recognizer.go │ │ │ │ │ └── recognizer_test.go │ │ │ │ ├── versioning │ │ │ │ │ ├── versioning.go │ │ │ │ │ └── versioning_test.go │ │ │ │ └── yaml │ │ │ │ │ └── yaml.go │ │ │ ├── swagger_doc_generator.go │ │ │ ├── swagger_doc_generator_test.go │ │ │ ├── types.go │ │ │ ├── unstructured.go │ │ │ ├── unstructured_test.go │ │ │ └── unversioned_test.go │ │ ├── securitycontext │ │ │ ├── doc.go │ │ │ ├── fake.go │ │ │ ├── provider.go │ │ │ ├── provider_test.go │ │ │ ├── types.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── serviceaccount │ │ │ ├── jwt.go │ │ │ ├── jwt_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ ├── ssh │ │ │ ├── ssh.go │ │ │ └── ssh_test.go │ │ ├── storage │ │ │ ├── cacher.go │ │ │ ├── cacher_test.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── etcd │ │ │ │ ├── api_object_versioner.go │ │ │ │ ├── api_object_versioner_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── etcd_helper.go │ │ │ │ ├── etcd_helper_test.go │ │ │ │ ├── etcd_watcher.go │ │ │ │ ├── etcd_watcher_test.go │ │ │ │ ├── etcdtest │ │ │ │ │ ├── doc.go │ │ │ │ │ └── etcdtest.go │ │ │ │ ├── metrics │ │ │ │ │ └── metrics.go │ │ │ │ ├── testing │ │ │ │ │ ├── certificates.go │ │ │ │ │ └── utils.go │ │ │ │ └── util │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── etcd_util.go │ │ │ │ │ └── etcd_util_test.go │ │ │ ├── interfaces.go │ │ │ ├── testing │ │ │ │ ├── types.generated.go │ │ │ │ ├── types.go │ │ │ │ └── utils.go │ │ │ ├── util.go │ │ │ ├── util_test.go │ │ │ ├── watch_cache.go │ │ │ └── watch_cache_test.go │ │ ├── types │ │ │ ├── doc.go │ │ │ ├── namespacedname.go │ │ │ ├── uid.go │ │ │ └── unix_user_id.go │ │ ├── ui │ │ │ ├── data │ │ │ │ ├── README.md │ │ │ │ └── swagger │ │ │ │ │ └── datafile.go │ │ │ ├── doc.go │ │ │ └── installsupport.go │ │ ├── util │ │ │ ├── atomic │ │ │ │ ├── value.go │ │ │ │ └── value_test.go │ │ │ ├── backoff.go │ │ │ ├── backoff_test.go │ │ │ ├── bandwidth │ │ │ │ ├── doc.go │ │ │ │ ├── fake_shaper.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── linux.go │ │ │ │ ├── linux_test.go │ │ │ │ └── unsupported.go │ │ │ ├── bool_flag.go │ │ │ ├── cache.go │ │ │ ├── cache_test.go │ │ │ ├── chmod │ │ │ │ ├── chmod.go │ │ │ │ └── doc.go │ │ │ ├── chown │ │ │ │ ├── chown.go │ │ │ │ └── doc.go │ │ │ ├── clock.go │ │ │ ├── clock_test.go │ │ │ ├── codeinspector │ │ │ │ └── codeinspector.go │ │ │ ├── config │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ └── doc.go │ │ │ ├── configuration_map.go │ │ │ ├── configz │ │ │ │ ├── configz.go │ │ │ │ └── configz_test.go │ │ │ ├── crlf.go │ │ │ ├── crypto.go │ │ │ ├── dbus │ │ │ │ ├── dbus.go │ │ │ │ ├── dbus_test.go │ │ │ │ ├── doc.go │ │ │ │ └── fake_dbus.go │ │ │ ├── deadlock-detector.go │ │ │ ├── deadlock-detector_test.go │ │ │ ├── deployment │ │ │ │ ├── deployment.go │ │ │ │ └── deployment_test.go │ │ │ ├── diff.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── env_test.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ └── errors_test.go │ │ │ ├── exec │ │ │ │ ├── doc.go │ │ │ │ ├── exec.go │ │ │ │ ├── exec_test.go │ │ │ │ └── fake_exec.go │ │ │ ├── flags.go │ │ │ ├── flock │ │ │ │ ├── flock_other.go │ │ │ │ └── flock_unix.go │ │ │ ├── flushwriter │ │ │ │ ├── doc.go │ │ │ │ ├── writer.go │ │ │ │ └── writer_test.go │ │ │ ├── hash │ │ │ │ ├── hash.go │ │ │ │ └── hash_test.go │ │ │ ├── httpstream │ │ │ │ ├── doc.go │ │ │ │ ├── httpstream.go │ │ │ │ ├── httpstream_test.go │ │ │ │ └── spdy │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── connection_test.go │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ ├── roundtripper_test.go │ │ │ │ │ ├── upgrade.go │ │ │ │ │ └── upgrade_test.go │ │ │ ├── integer │ │ │ │ ├── integer.go │ │ │ │ └── integer_test.go │ │ │ ├── intstr │ │ │ │ ├── intstr.go │ │ │ │ └── intstr_test.go │ │ │ ├── io │ │ │ │ ├── io.go │ │ │ │ ├── io_test.go │ │ │ │ └── writer.go │ │ │ ├── iptables │ │ │ │ ├── doc.go │ │ │ │ ├── iptables.go │ │ │ │ ├── iptables_test.go │ │ │ │ └── testing │ │ │ │ │ └── fake.go │ │ │ ├── jsonpath │ │ │ │ ├── doc.go │ │ │ │ ├── jsonpath.go │ │ │ │ ├── jsonpath_test.go │ │ │ │ ├── node.go │ │ │ │ ├── parser.go │ │ │ │ └── parser_test.go │ │ │ ├── keymutex │ │ │ │ ├── keymutex.go │ │ │ │ └── keymutex_test.go │ │ │ ├── labels │ │ │ │ ├── doc.go │ │ │ │ ├── labels.go │ │ │ │ └── labels_test.go │ │ │ ├── limitwriter │ │ │ │ ├── doc.go │ │ │ │ └── limitwriter.go │ │ │ ├── line_delimiter.go │ │ │ ├── line_delimiter_test.go │ │ │ ├── logs.go │ │ │ ├── mount │ │ │ │ ├── doc.go │ │ │ │ ├── fake.go │ │ │ │ ├── mount.go │ │ │ │ ├── mount_linux.go │ │ │ │ ├── mount_linux_test.go │ │ │ │ ├── mount_unsupported.go │ │ │ │ ├── nsenter_mount.go │ │ │ │ ├── nsenter_mount_unsupported.go │ │ │ │ └── safe_format_and_mount_test.go │ │ │ ├── net │ │ │ │ ├── http.go │ │ │ │ ├── http_test.go │ │ │ │ ├── interface.go │ │ │ │ ├── interface_test.go │ │ │ │ ├── port_range.go │ │ │ │ ├── port_range_test.go │ │ │ │ ├── port_split.go │ │ │ │ ├── port_split_test.go │ │ │ │ └── sets │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ipnet.go │ │ │ │ │ └── ipnet_test.go │ │ │ ├── node │ │ │ │ └── node.go │ │ │ ├── oom │ │ │ │ ├── doc.go │ │ │ │ ├── oom.go │ │ │ │ ├── oom_fake.go │ │ │ │ ├── oom_linux.go │ │ │ │ ├── oom_linux_test.go │ │ │ │ └── oom_unsupported.go │ │ │ ├── parsers │ │ │ │ └── parsers.go │ │ │ ├── pod │ │ │ │ ├── doc.go │ │ │ │ └── pod.go │ │ │ ├── procfs │ │ │ │ ├── doc.go │ │ │ │ ├── example_proc_cgroup │ │ │ │ ├── procfs.go │ │ │ │ ├── procfs_fake.go │ │ │ │ ├── procfs_interface.go │ │ │ │ └── procfs_test.go │ │ │ ├── proxy │ │ │ │ ├── dial.go │ │ │ │ ├── doc.go │ │ │ │ ├── transport.go │ │ │ │ └── transport_test.go │ │ │ ├── rand │ │ │ │ ├── rand.go │ │ │ │ └── rand_test.go │ │ │ ├── replicaset │ │ │ │ └── replicaset.go │ │ │ ├── resource_container_linux.go │ │ │ ├── resource_container_unsupported.go │ │ │ ├── runner.go │ │ │ ├── runner_test.go │ │ │ ├── runtime │ │ │ │ ├── runtime.go │ │ │ │ └── runtime_test.go │ │ │ ├── selinux │ │ │ │ ├── doc.go │ │ │ │ ├── selinux.go │ │ │ │ ├── selinux_linux.go │ │ │ │ └── selinux_unsupported.go │ │ │ ├── sets │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int64.go │ │ │ │ ├── set_test.go │ │ │ │ ├── string.go │ │ │ │ └── types │ │ │ │ │ └── types.go │ │ │ ├── slice │ │ │ │ ├── slice.go │ │ │ │ └── slice_test.go │ │ │ ├── strategicpatch │ │ │ │ ├── patch.go │ │ │ │ └── patch_test.go │ │ │ ├── string_flag.go │ │ │ ├── strings │ │ │ │ ├── escape.go │ │ │ │ ├── strings.go │ │ │ │ └── strings_test.go │ │ │ ├── sysctl │ │ │ │ └── sysctl.go │ │ │ ├── system │ │ │ │ └── system_utils.go │ │ │ ├── template.go │ │ │ ├── template_test.go │ │ │ ├── testing │ │ │ │ ├── fake_handler.go │ │ │ │ ├── fake_handler_test.go │ │ │ │ └── tmpdir.go │ │ │ ├── throttle.go │ │ │ ├── throttle_test.go │ │ │ ├── trace.go │ │ │ ├── umask.go │ │ │ ├── umask_windows.go │ │ │ ├── util.go │ │ │ ├── util_test.go │ │ │ ├── uuid.go │ │ │ ├── validation │ │ │ │ ├── field │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── errors_test.go │ │ │ │ │ ├── path.go │ │ │ │ │ └── path_test.go │ │ │ │ ├── validation.go │ │ │ │ └── validation_test.go │ │ │ ├── wait │ │ │ │ ├── doc.go │ │ │ │ ├── wait.go │ │ │ │ └── wait_test.go │ │ │ ├── workqueue │ │ │ │ ├── doc.go │ │ │ │ ├── queue.go │ │ │ │ └── queue_test.go │ │ │ ├── wsstream │ │ │ │ ├── conn.go │ │ │ │ ├── conn_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── stream.go │ │ │ │ └── stream_test.go │ │ │ └── yaml │ │ │ │ ├── decoder.go │ │ │ │ └── decoder_test.go │ │ ├── version │ │ │ ├── .gitattributes │ │ │ ├── base.go │ │ │ ├── doc.go │ │ │ ├── semver.go │ │ │ ├── semver_test.go │ │ │ ├── verflag │ │ │ │ └── verflag.go │ │ │ └── version.go │ │ ├── volume │ │ │ ├── OWNERS │ │ │ ├── aws_ebs │ │ │ │ ├── aws_ebs.go │ │ │ │ ├── aws_ebs_test.go │ │ │ │ ├── aws_util.go │ │ │ │ └── doc.go │ │ │ ├── azure_file │ │ │ │ ├── azure_file.go │ │ │ │ ├── azure_file_test.go │ │ │ │ ├── azure_util.go │ │ │ │ └── doc.go │ │ │ ├── cephfs │ │ │ │ ├── cephfs.go │ │ │ │ ├── cephfs_test.go │ │ │ │ └── doc.go │ │ │ ├── cinder │ │ │ │ ├── cinder.go │ │ │ │ ├── cinder_test.go │ │ │ │ ├── cinder_util.go │ │ │ │ └── doc.go │ │ │ ├── configmap │ │ │ │ ├── configmap.go │ │ │ │ ├── configmap_test.go │ │ │ │ └── doc.go │ │ │ ├── doc.go │ │ │ ├── downwardapi │ │ │ │ ├── downwardapi.go │ │ │ │ └── downwardapi_test.go │ │ │ ├── empty_dir │ │ │ │ ├── doc.go │ │ │ │ ├── empty_dir.go │ │ │ │ ├── empty_dir_linux.go │ │ │ │ ├── empty_dir_test.go │ │ │ │ └── empty_dir_unsupported.go │ │ │ ├── fc │ │ │ │ ├── disk_manager.go │ │ │ │ ├── doc.go │ │ │ │ ├── fc.go │ │ │ │ ├── fc_test.go │ │ │ │ ├── fc_util.go │ │ │ │ └── fc_util_test.go │ │ │ ├── flexvolume │ │ │ │ ├── flexvolume.go │ │ │ │ ├── flexvolume_test.go │ │ │ │ └── flexvolume_util.go │ │ │ ├── flocker │ │ │ │ ├── doc.go │ │ │ │ ├── plugin.go │ │ │ │ └── plugin_test.go │ │ │ ├── gce_pd │ │ │ │ ├── doc.go │ │ │ │ ├── gce_pd.go │ │ │ │ ├── gce_pd_test.go │ │ │ │ └── gce_util.go │ │ │ ├── git_repo │ │ │ │ ├── doc.go │ │ │ │ ├── git_repo.go │ │ │ │ └── git_repo_test.go │ │ │ ├── glusterfs │ │ │ │ ├── doc.go │ │ │ │ ├── glusterfs.go │ │ │ │ └── glusterfs_test.go │ │ │ ├── host_path │ │ │ │ ├── doc.go │ │ │ │ ├── host_path.go │ │ │ │ └── host_path_test.go │ │ │ ├── iscsi │ │ │ │ ├── disk_manager.go │ │ │ │ ├── doc.go │ │ │ │ ├── iscsi.go │ │ │ │ ├── iscsi_test.go │ │ │ │ ├── iscsi_util.go │ │ │ │ └── iscsi_util_test.go │ │ │ ├── metrics_cached.go │ │ │ ├── metrics_du.go │ │ │ ├── metrics_du_test.go │ │ │ ├── metrics_nil.go │ │ │ ├── metrics_nil_test.go │ │ │ ├── nfs │ │ │ │ ├── doc.go │ │ │ │ ├── nfs.go │ │ │ │ └── nfs_test.go │ │ │ ├── persistent_claim │ │ │ │ ├── doc.go │ │ │ │ ├── persistent_claim.go │ │ │ │ └── persistent_claim_test.go │ │ │ ├── plugins.go │ │ │ ├── plugins_test.go │ │ │ ├── rbd │ │ │ │ ├── disk_manager.go │ │ │ │ ├── doc.go │ │ │ │ ├── rbd.go │ │ │ │ ├── rbd_test.go │ │ │ │ └── rbd_util.go │ │ │ ├── secret │ │ │ │ ├── doc.go │ │ │ │ ├── secret.go │ │ │ │ └── secret_test.go │ │ │ ├── testing │ │ │ │ ├── mock_volume.go │ │ │ │ └── testing.go │ │ │ ├── util.go │ │ │ ├── util │ │ │ │ ├── atomic_writer.go │ │ │ │ ├── atomic_writer_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── fs_darwin.go │ │ │ │ ├── fs_linux.go │ │ │ │ ├── fs_unsupported.go │ │ │ │ └── util.go │ │ │ ├── util_test.go │ │ │ ├── volume.go │ │ │ ├── volume_linux.go │ │ │ └── volume_unsupported.go │ │ └── watch │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── filter_test.go │ │ │ ├── iowatcher.go │ │ │ ├── iowatcher_test.go │ │ │ ├── json │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── doc.go │ │ │ ├── encoder.go │ │ │ ├── encoder_test.go │ │ │ └── types.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── watch.go │ │ │ └── watch_test.go │ │ ├── plugin │ │ ├── OWNERS │ │ ├── cmd │ │ │ └── kube-scheduler │ │ │ │ ├── OWNERS │ │ │ │ ├── app │ │ │ │ ├── options │ │ │ │ │ └── options.go │ │ │ │ └── server.go │ │ │ │ └── scheduler.go │ │ └── pkg │ │ │ ├── admission │ │ │ ├── OWNERS │ │ │ ├── admit │ │ │ │ ├── admission.go │ │ │ │ └── admission_test.go │ │ │ ├── alwayspullimages │ │ │ │ ├── admission.go │ │ │ │ └── admission_test.go │ │ │ ├── deny │ │ │ │ ├── admission.go │ │ │ │ └── admission_test.go │ │ │ ├── exec │ │ │ │ ├── admission.go │ │ │ │ └── admission_test.go │ │ │ ├── initialresources │ │ │ │ ├── admission.go │ │ │ │ ├── admission_test.go │ │ │ │ ├── data_source.go │ │ │ │ ├── gcm.go │ │ │ │ ├── hawkular.go │ │ │ │ ├── hawkular_test.go │ │ │ │ └── influxdb.go │ │ │ ├── limitranger │ │ │ │ ├── admission.go │ │ │ │ ├── admission_test.go │ │ │ │ └── interfaces.go │ │ │ ├── namespace │ │ │ │ ├── autoprovision │ │ │ │ │ ├── admission.go │ │ │ │ │ └── admission_test.go │ │ │ │ ├── exists │ │ │ │ │ ├── admission.go │ │ │ │ │ └── admission_test.go │ │ │ │ └── lifecycle │ │ │ │ │ ├── admission.go │ │ │ │ │ └── admission_test.go │ │ │ ├── persistentvolume │ │ │ │ └── label │ │ │ │ │ ├── admission.go │ │ │ │ │ ├── admission_test.go │ │ │ │ │ └── doc.go │ │ │ ├── resourcequota │ │ │ │ ├── admission.go │ │ │ │ ├── admission_test.go │ │ │ │ └── doc.go │ │ │ ├── securitycontext │ │ │ │ └── scdeny │ │ │ │ │ ├── admission.go │ │ │ │ │ └── admission_test.go │ │ │ └── serviceaccount │ │ │ │ ├── admission.go │ │ │ │ ├── admission_test.go │ │ │ │ └── doc.go │ │ │ ├── auth │ │ │ ├── OWNERS │ │ │ ├── authenticator │ │ │ │ ├── doc.go │ │ │ │ ├── password │ │ │ │ │ ├── allow │ │ │ │ │ │ ├── allow.go │ │ │ │ │ │ └── allow_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── passwordfile │ │ │ │ │ │ ├── passwordfile.go │ │ │ │ │ │ └── passwordfile_test.go │ │ │ │ ├── request │ │ │ │ │ ├── basicauth │ │ │ │ │ │ ├── basicauth.go │ │ │ │ │ │ └── basicauth_test.go │ │ │ │ │ ├── keystone │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── keystone.go │ │ │ │ │ ├── union │ │ │ │ │ │ ├── union.go │ │ │ │ │ │ └── unionauth_test.go │ │ │ │ │ └── x509 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── x509.go │ │ │ │ │ │ └── x509_test.go │ │ │ │ └── token │ │ │ │ │ ├── oidc │ │ │ │ │ ├── oidc.go │ │ │ │ │ └── oidc_test.go │ │ │ │ │ ├── tokenfile │ │ │ │ │ ├── tokenfile.go │ │ │ │ │ └── tokenfile_test.go │ │ │ │ │ └── tokentest │ │ │ │ │ └── tokentest.go │ │ │ ├── authorizer │ │ │ │ ├── doc.go │ │ │ │ └── webhook │ │ │ │ │ ├── certs_test.go │ │ │ │ │ ├── gencerts.sh │ │ │ │ │ ├── webhook.go │ │ │ │ │ └── webhook_test.go │ │ │ └── doc.go │ │ │ └── scheduler │ │ │ ├── OWNERS │ │ │ ├── algorithm │ │ │ ├── doc.go │ │ │ ├── listers.go │ │ │ ├── predicates │ │ │ │ ├── error.go │ │ │ │ ├── predicates.go │ │ │ │ └── predicates_test.go │ │ │ ├── priorities │ │ │ │ ├── node_affinity.go │ │ │ │ ├── node_affinity_test.go │ │ │ │ ├── priorities.go │ │ │ │ ├── priorities_test.go │ │ │ │ ├── selector_spreading.go │ │ │ │ ├── selector_spreading_test.go │ │ │ │ └── util │ │ │ │ │ └── non_zero.go │ │ │ ├── scheduler_interface.go │ │ │ ├── scheduler_interface_test.go │ │ │ └── types.go │ │ │ ├── algorithmprovider │ │ │ ├── defaults │ │ │ │ ├── compatibility_test.go │ │ │ │ └── defaults.go │ │ │ ├── plugins.go │ │ │ └── plugins_test.go │ │ │ ├── api │ │ │ ├── latest │ │ │ │ └── latest.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ │ ├── register.go │ │ │ │ └── types.go │ │ │ └── validation │ │ │ │ ├── validation.go │ │ │ │ └── validation_test.go │ │ │ ├── extender.go │ │ │ ├── extender_test.go │ │ │ ├── factory │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── plugins.go │ │ │ └── plugins_test.go │ │ │ ├── generic_scheduler.go │ │ │ ├── generic_scheduler_test.go │ │ │ ├── metrics │ │ │ └── metrics.go │ │ │ ├── modeler.go │ │ │ ├── modeler_test.go │ │ │ ├── scheduler.go │ │ │ ├── scheduler_test.go │ │ │ └── schedulercache │ │ │ ├── cache.go │ │ │ ├── cache_test.go │ │ │ ├── interface.go │ │ │ ├── node_info.go │ │ │ └── util.go │ │ ├── shippable.yml │ │ ├── test │ │ ├── OWNERS │ │ ├── component │ │ │ └── scheduler │ │ │ │ └── perf │ │ │ │ ├── README.md │ │ │ │ ├── scheduler_bench_test.go │ │ │ │ ├── scheduler_test.go │ │ │ │ ├── test-performance.sh │ │ │ │ └── util.go │ │ ├── e2e │ │ │ ├── addon_update.go │ │ │ ├── autoscaling_utils.go │ │ │ ├── batch_v1_jobs.go │ │ │ ├── cadvisor.go │ │ │ ├── cleanup │ │ │ │ └── cleanup.go │ │ │ ├── cluster_size_autoscaling.go │ │ │ ├── cluster_upgrade.go │ │ │ ├── configmap.go │ │ │ ├── container_probe.go │ │ │ ├── daemon_restart.go │ │ │ ├── daemon_set.go │ │ │ ├── dashboard.go │ │ │ ├── density.go │ │ │ ├── deployment.go │ │ │ ├── dns.go │ │ │ ├── docker_containers.go │ │ │ ├── downward_api.go │ │ │ ├── downwardapi_volume.go │ │ │ ├── e2e.go │ │ │ ├── e2e_test.go │ │ │ ├── empty_dir.go │ │ │ ├── empty_dir_wrapper.go │ │ │ ├── es_cluster_logging.go │ │ │ ├── etcd_failure.go │ │ │ ├── events.go │ │ │ ├── example_cluster_dns.go │ │ │ ├── example_k8petstore.go │ │ │ ├── examples.go │ │ │ ├── expansion.go │ │ │ ├── framework.go │ │ │ ├── garbage_collector.go │ │ │ ├── generated_clientset.go │ │ │ ├── google_compute.go │ │ │ ├── horizontal_pod_autoscaling.go │ │ │ ├── host_path.go │ │ │ ├── ingress.go │ │ │ ├── ingress_utils.go │ │ │ ├── initial_resources.go │ │ │ ├── job.go │ │ │ ├── kibana_logging.go │ │ │ ├── kubectl.go │ │ │ ├── kubelet.go │ │ │ ├── kubelet_etc_hosts.go │ │ │ ├── kubelet_perf.go │ │ │ ├── kubelet_stats.go │ │ │ ├── kubeproxy.go │ │ │ ├── limit_range.go │ │ │ ├── load.go │ │ │ ├── log_size_monitoring.go │ │ │ ├── mesos.go │ │ │ ├── metrics_grabber_test.go │ │ │ ├── metrics_util.go │ │ │ ├── monitoring.go │ │ │ ├── namespace.go │ │ │ ├── networking.go │ │ │ ├── nodeoutofdisk.go │ │ │ ├── pd.go │ │ │ ├── persistent_volumes.go │ │ │ ├── pods.go │ │ │ ├── portforward.go │ │ │ ├── pre_stop.go │ │ │ ├── privileged.go │ │ │ ├── prompush.go │ │ │ ├── proxy.go │ │ │ ├── rc.go │ │ │ ├── reboot.go │ │ │ ├── replica_set.go │ │ │ ├── resize_nodes.go │ │ │ ├── resource_quota.go │ │ │ ├── resource_usage_gatherer.go │ │ │ ├── restart.go │ │ │ ├── scheduler_predicates.go │ │ │ ├── secrets.go │ │ │ ├── security_context.go │ │ │ ├── service.go │ │ │ ├── service_accounts.go │ │ │ ├── service_latency.go │ │ │ ├── serviceloadbalancers.go │ │ │ ├── ssh.go │ │ │ ├── testing-manifests │ │ │ │ ├── kubectl │ │ │ │ │ └── pod-with-readiness-probe.yaml │ │ │ │ └── serviceloadbalancer │ │ │ │ │ ├── haproxyrc.yaml │ │ │ │ │ ├── netexecrc.yaml │ │ │ │ │ ├── netexecsvc.yaml │ │ │ │ │ ├── nginxrc.yaml │ │ │ │ │ └── nginxsvc.yaml │ │ │ ├── ubernetes_lite.go │ │ │ ├── util.go │ │ │ └── volumes.go │ │ ├── e2e_node │ │ │ ├── README.md │ │ │ ├── conformance_test.go │ │ │ ├── container.go │ │ │ ├── doc.go │ │ │ ├── e2e_build.go │ │ │ ├── e2e_node_suite_test.go │ │ │ ├── e2e_remote.go │ │ │ ├── e2e_service.go │ │ │ ├── environment │ │ │ │ ├── conformance.go │ │ │ │ └── setup_host.sh │ │ │ ├── jenkins │ │ │ │ ├── e2e-node-jenkins.sh │ │ │ │ ├── jenkins-ci.properties │ │ │ │ ├── jenkins-pull.properties │ │ │ │ └── template.properties │ │ │ ├── kubelet_test.go │ │ │ └── runner │ │ │ │ └── run_e2e.go │ │ ├── fixtures │ │ │ └── pkg │ │ │ │ └── kubectl │ │ │ │ └── cmd │ │ │ │ └── apply │ │ │ │ ├── rc-service.yaml │ │ │ │ ├── rc.yaml │ │ │ │ └── service.yaml │ │ ├── images │ │ │ ├── clusterapi-tester │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── main.go │ │ │ │ └── pod.yaml │ │ │ ├── dnsutils │ │ │ │ ├── Dockerfile │ │ │ │ └── Makefile │ │ │ ├── entrypoint-tester │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ └── ep.go │ │ │ ├── fakegitserver │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── gitserver.go │ │ │ │ └── prepare.sh │ │ │ ├── goproxy │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── goproxy.go │ │ │ │ └── pod.yaml │ │ │ ├── hostexec │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ └── pod.yaml │ │ │ ├── jessie-dnsutils │ │ │ │ ├── Dockerfile │ │ │ │ └── Makefile │ │ │ ├── mount-tester-user │ │ │ │ ├── Dockerfile │ │ │ │ └── Makefile │ │ │ ├── mount-tester │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ └── mt.go │ │ │ ├── n-way-http │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ └── server.go │ │ │ ├── netexec │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── netexec.go │ │ │ │ └── pod.yaml │ │ │ ├── network-tester │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── rc.json │ │ │ │ ├── service.json │ │ │ │ ├── slow-pod.json │ │ │ │ ├── slow-rc.json │ │ │ │ └── webserver.go │ │ │ ├── port-forward-tester │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ └── portforwardtester.go │ │ │ ├── porter │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── localhost.crt │ │ │ │ ├── localhost.key │ │ │ │ ├── pod.json │ │ │ │ └── porter.go │ │ │ ├── resource-consumer │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── consume-cpu │ │ │ │ │ └── consume_cpu.go │ │ │ │ ├── resource_consumer.go │ │ │ │ ├── resource_consumer_handler.go │ │ │ │ └── utils.go │ │ │ └── volumes-tester │ │ │ │ ├── ceph │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.html │ │ │ │ ├── init.sh │ │ │ │ └── install.sh │ │ │ │ ├── gluster │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── gluster.repo │ │ │ │ ├── glusterd.vol │ │ │ │ ├── index.html │ │ │ │ └── run_gluster.sh │ │ │ │ ├── iscsi │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── block.tar.gz │ │ │ │ ├── create_block.sh │ │ │ │ ├── initiatorname.iscsi │ │ │ │ ├── run_iscsid.sh │ │ │ │ └── saveconfig.json │ │ │ │ ├── nfs │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.html │ │ │ │ └── run_nfs.sh │ │ │ │ └── rbd │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── block.tar.gz │ │ │ │ ├── bootstrap.sh │ │ │ │ ├── ceph.conf.sh │ │ │ │ ├── create_block.sh │ │ │ │ ├── keyring │ │ │ │ ├── mon.sh │ │ │ │ └── osd.sh │ │ ├── integration │ │ │ ├── auth_test.go │ │ │ ├── benchmark-controller.json │ │ │ ├── client_test.go │ │ │ ├── configmap_test.go │ │ │ ├── doc.go │ │ │ ├── dynamic_client_test.go │ │ │ ├── etcd_tools_test.go │ │ │ ├── extender_test.go │ │ │ ├── framework │ │ │ │ ├── etcd_utils.go │ │ │ │ └── master_utils.go │ │ │ ├── kubectl_test.go │ │ │ ├── master_benchmark_test.go │ │ │ ├── master_test.go │ │ │ ├── metrics_test.go │ │ │ ├── openshift_test.go │ │ │ ├── persistent_volumes_test.go │ │ │ ├── pods.go │ │ │ ├── scheduler_test.go │ │ │ ├── secret_test.go │ │ │ ├── service_account_test.go │ │ │ └── utils.go │ │ ├── kubemark │ │ │ ├── common.sh │ │ │ ├── configure-kubectl.sh │ │ │ ├── get-real-pod-for-hollow-node.sh │ │ │ ├── hollow-node_template.json │ │ │ ├── kubemark-ns.json │ │ │ ├── run-e2e-tests.sh │ │ │ ├── start-kubemark-master.sh │ │ │ ├── start-kubemark.sh │ │ │ └── stop-kubemark.sh │ │ ├── scalability │ │ │ └── counter │ │ │ │ ├── Makefile │ │ │ │ └── counter-rc.yaml │ │ └── soak │ │ │ ├── cauldron │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── cauldron-rc.yaml │ │ │ └── cauldron.go │ │ │ └── serve_hostnames │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── serve_hostnames.go │ │ ├── third_party │ │ ├── forked │ │ │ ├── coreos │ │ │ │ └── go-etcd │ │ │ │ │ └── etcd │ │ │ │ │ └── client.go │ │ │ ├── json │ │ │ │ ├── LICENSE │ │ │ │ └── fields.go │ │ │ └── reflect │ │ │ │ ├── LICENSE │ │ │ │ ├── deep_equal.go │ │ │ │ └── deep_equal_test.go │ │ ├── golang │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── expansion │ │ │ │ ├── expand.go │ │ │ │ └── expand_test.go │ │ │ ├── go │ │ │ │ ├── README.md │ │ │ │ ├── ast │ │ │ │ │ ├── ast.go │ │ │ │ │ ├── ast_test.go │ │ │ │ │ ├── commentmap.go │ │ │ │ │ ├── commentmap_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── filter_test.go │ │ │ │ │ ├── import.go │ │ │ │ │ ├── print.go │ │ │ │ │ ├── print_test.go │ │ │ │ │ ├── resolve.go │ │ │ │ │ ├── scope.go │ │ │ │ │ └── walk.go │ │ │ │ ├── build │ │ │ │ │ ├── build.go │ │ │ │ │ ├── build_test.go │ │ │ │ │ ├── deps_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── read_test.go │ │ │ │ │ ├── syslist.go │ │ │ │ │ ├── syslist_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── empty │ │ │ │ │ │ └── dummy │ │ │ │ │ │ ├── multi │ │ │ │ │ │ ├── file.go │ │ │ │ │ │ └── file_appengine.go │ │ │ │ │ │ └── other │ │ │ │ │ │ ├── file │ │ │ │ │ │ └── file.go │ │ │ │ │ │ └── main.go │ │ │ │ ├── constant │ │ │ │ │ ├── go13.go │ │ │ │ │ ├── go14.go │ │ │ │ │ ├── value.go │ │ │ │ │ └── value_test.go │ │ │ │ ├── doc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── comment.go │ │ │ │ │ ├── comment_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── doc_test.go │ │ │ │ │ ├── example.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── exports.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── headscan.go │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── synopsis.go │ │ │ │ │ ├── synopsis_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── a.0.golden │ │ │ │ │ │ ├── a.1.golden │ │ │ │ │ │ ├── a.2.golden │ │ │ │ │ │ ├── a0.go │ │ │ │ │ │ ├── a1.go │ │ │ │ │ │ ├── b.0.golden │ │ │ │ │ │ ├── b.1.golden │ │ │ │ │ │ ├── b.2.golden │ │ │ │ │ │ ├── b.go │ │ │ │ │ │ ├── benchmark.go │ │ │ │ │ │ ├── blank.0.golden │ │ │ │ │ │ ├── blank.1.golden │ │ │ │ │ │ ├── blank.2.golden │ │ │ │ │ │ ├── blank.go │ │ │ │ │ │ ├── bugpara.0.golden │ │ │ │ │ │ ├── bugpara.1.golden │ │ │ │ │ │ ├── bugpara.2.golden │ │ │ │ │ │ ├── bugpara.go │ │ │ │ │ │ ├── c.0.golden │ │ │ │ │ │ ├── c.1.golden │ │ │ │ │ │ ├── c.2.golden │ │ │ │ │ │ ├── c.go │ │ │ │ │ │ ├── d.0.golden │ │ │ │ │ │ ├── d.1.golden │ │ │ │ │ │ ├── d.2.golden │ │ │ │ │ │ ├── d1.go │ │ │ │ │ │ ├── d2.go │ │ │ │ │ │ ├── e.0.golden │ │ │ │ │ │ ├── e.1.golden │ │ │ │ │ │ ├── e.2.golden │ │ │ │ │ │ ├── e.go │ │ │ │ │ │ ├── error1.0.golden │ │ │ │ │ │ ├── error1.1.golden │ │ │ │ │ │ ├── error1.2.golden │ │ │ │ │ │ ├── error1.go │ │ │ │ │ │ ├── error2.0.golden │ │ │ │ │ │ ├── error2.1.golden │ │ │ │ │ │ ├── error2.2.golden │ │ │ │ │ │ ├── error2.go │ │ │ │ │ │ ├── example.go │ │ │ │ │ │ ├── f.0.golden │ │ │ │ │ │ ├── f.1.golden │ │ │ │ │ │ ├── f.2.golden │ │ │ │ │ │ ├── f.go │ │ │ │ │ │ ├── template.txt │ │ │ │ │ │ ├── testing.0.golden │ │ │ │ │ │ ├── testing.1.golden │ │ │ │ │ │ ├── testing.2.golden │ │ │ │ │ │ └── testing.go │ │ │ │ ├── parser │ │ │ │ │ ├── error_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── parser_test.go │ │ │ │ │ ├── performance_test.go │ │ │ │ │ ├── short_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── commas.src │ │ │ │ │ │ └── issue3106.src │ │ │ │ ├── printer │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── nodes.go │ │ │ │ │ ├── performance_test.go │ │ │ │ │ ├── printer.go │ │ │ │ │ ├── printer_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── comments.golden │ │ │ │ │ │ ├── comments.input │ │ │ │ │ │ ├── comments.x │ │ │ │ │ │ ├── comments2.golden │ │ │ │ │ │ ├── comments2.input │ │ │ │ │ │ ├── declarations.golden │ │ │ │ │ │ ├── declarations.input │ │ │ │ │ │ ├── empty.golden │ │ │ │ │ │ ├── empty.input │ │ │ │ │ │ ├── expressions.golden │ │ │ │ │ │ ├── expressions.input │ │ │ │ │ │ ├── expressions.raw │ │ │ │ │ │ ├── linebreaks.golden │ │ │ │ │ │ ├── linebreaks.input │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ ├── slow.golden │ │ │ │ │ │ ├── slow.input │ │ │ │ │ │ ├── statements.golden │ │ │ │ │ │ └── statements.input │ │ │ │ ├── scanner │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── scanner.go │ │ │ │ │ └── scanner_test.go │ │ │ │ ├── token │ │ │ │ │ ├── position.go │ │ │ │ │ ├── position_test.go │ │ │ │ │ ├── serialize.go │ │ │ │ │ ├── serialize_test.go │ │ │ │ │ └── token.go │ │ │ │ └── types │ │ │ │ │ ├── api.go │ │ │ │ │ ├── assignments.go │ │ │ │ │ ├── builtins.go │ │ │ │ │ ├── call.go │ │ │ │ │ ├── check.go │ │ │ │ │ ├── conversions.go │ │ │ │ │ ├── decl.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── eval.go │ │ │ │ │ ├── expr.go │ │ │ │ │ ├── exprstring.go │ │ │ │ │ ├── go11.go │ │ │ │ │ ├── go12.go │ │ │ │ │ ├── initorder.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── lookup.go │ │ │ │ │ ├── methodset.go │ │ │ │ │ ├── object.go │ │ │ │ │ ├── objset.go │ │ │ │ │ ├── operand.go │ │ │ │ │ ├── ordering.go │ │ │ │ │ ├── package.go │ │ │ │ │ ├── predicates.go │ │ │ │ │ ├── resolver.go │ │ │ │ │ ├── return.go │ │ │ │ │ ├── scope.go │ │ │ │ │ ├── selection.go │ │ │ │ │ ├── sizes.go │ │ │ │ │ ├── stmt.go │ │ │ │ │ ├── type.go │ │ │ │ │ ├── typestring.go │ │ │ │ │ ├── typexpr.go │ │ │ │ │ └── universe.go │ │ │ ├── netutil │ │ │ │ └── addr.go │ │ │ ├── reflect │ │ │ │ └── type.go │ │ │ └── template │ │ │ │ ├── exec.go │ │ │ │ └── funcs.go │ │ ├── htpasswd │ │ │ ├── COPYING │ │ │ └── htpasswd.py │ │ ├── intemp │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── install.sh │ │ │ └── intemp.sh │ │ ├── pause │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ └── pause.asm │ │ ├── protobuf │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── compiler │ │ │ │ └── plugin.proto │ │ │ │ └── descriptor.proto │ │ └── swagger-ui │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── css │ │ │ ├── reset.css │ │ │ ├── screen.css │ │ │ └── typography.css │ │ │ ├── fonts │ │ │ ├── droid-sans-v6-latin-700.eot │ │ │ ├── droid-sans-v6-latin-700.svg │ │ │ ├── droid-sans-v6-latin-700.ttf │ │ │ ├── droid-sans-v6-latin-700.woff │ │ │ ├── droid-sans-v6-latin-700.woff2 │ │ │ ├── droid-sans-v6-latin-regular.eot │ │ │ ├── droid-sans-v6-latin-regular.svg │ │ │ ├── droid-sans-v6-latin-regular.ttf │ │ │ ├── droid-sans-v6-latin-regular.woff │ │ │ └── droid-sans-v6-latin-regular.woff2 │ │ │ ├── images │ │ │ ├── explorer_icons.png │ │ │ ├── logo_small.png │ │ │ ├── pet_store_api.png │ │ │ ├── throbber.gif │ │ │ └── wordnik_api.png │ │ │ ├── index.html │ │ │ ├── lib │ │ │ ├── backbone-min.js │ │ │ ├── handlebars-1.0.0.js │ │ │ ├── handlebars-2.0.0.js │ │ │ ├── highlight.7.3.pack.js │ │ │ ├── jquery-1.8.0.min.js │ │ │ ├── jquery.ba-bbq.min.js │ │ │ ├── jquery.slideto.min.js │ │ │ ├── jquery.wiggle.min.js │ │ │ ├── marked.js │ │ │ ├── shred.bundle.js │ │ │ ├── shred │ │ │ │ └── content.js │ │ │ ├── swagger-client.js │ │ │ ├── swagger-oauth.js │ │ │ ├── swagger.js │ │ │ └── underscore-min.js │ │ │ ├── o2c.html │ │ │ ├── swagger-ui.js │ │ │ └── swagger-ui.min.js │ │ └── www │ │ └── README.md └── speter.net │ └── go │ └── exp │ └── math │ └── dec │ └── inf │ ├── LICENSE │ ├── benchmark_test.go │ ├── dec.go │ ├── dec_go1_2_test.go │ ├── dec_internal_test.go │ ├── dec_test.go │ ├── example_test.go │ ├── rounder.go │ ├── rounder_example_test.go │ └── rounder_test.go ├── version ├── VERSION └── info.go └── winrm └── winrm.go /.dockerignore: -------------------------------------------------------------------------------- 1 | vendor 2 | golib 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | bin/ 3 | _dist/ 4 | .idea 5 | golib 6 | release 7 | -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/BUILDING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/Dockerfile.scratch -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/README.md -------------------------------------------------------------------------------- /add-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/add-headers.sh -------------------------------------------------------------------------------- /ansible/ansible.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/ansible/ansible.go -------------------------------------------------------------------------------- /ansible/variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/ansible/variables.go -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/circle.yml -------------------------------------------------------------------------------- /cmd/kill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/cmd/kill.go -------------------------------------------------------------------------------- /cmd/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/cmd/pod.go -------------------------------------------------------------------------------- /cmd/rc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/cmd/rc.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/cmd/run.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/cmd/version.go -------------------------------------------------------------------------------- /docs/images/kansible-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/docs/images/kansible-demo.png -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/glide.yaml -------------------------------------------------------------------------------- /header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/header.txt -------------------------------------------------------------------------------- /headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/headers.yml -------------------------------------------------------------------------------- /k8s/k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/k8s/k8s.go -------------------------------------------------------------------------------- /kansible.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/kansible.go -------------------------------------------------------------------------------- /log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/log/log.go -------------------------------------------------------------------------------- /ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/ssh/ssh.go -------------------------------------------------------------------------------- /tools/create-intellij-idea-golib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/tools/create-intellij-idea-golib.sh -------------------------------------------------------------------------------- /vendor/bitbucket.org/ww/goautoneg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/bitbucket.org/ww/goautoneg/Makefile -------------------------------------------------------------------------------- /vendor/bitbucket.org/ww/goautoneg/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/bitbucket.org/ww/goautoneg/README.txt -------------------------------------------------------------------------------- /vendor/bitbucket.org/ww/goautoneg/autoneg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/bitbucket.org/ww/goautoneg/autoneg.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/Masterminds/semver/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/Masterminds/vcs/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/Masterminds/vcs/README.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/bzr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/Masterminds/vcs/bzr.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/Masterminds/vcs/git.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/hg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/Masterminds/vcs/hg.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/hg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/Masterminds/vcs/hg_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/Masterminds/vcs/repo.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/svn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/Masterminds/vcs/svn.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.prof 3 | -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/beorn7/perks/README.md -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/topk/topk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/beorn7/perks/topk/topk.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/blang/semver/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/blang/semver/README.md -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/blang/semver/json.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/blang/semver/json_test.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/blang/semver/semver.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/blang/semver/sort.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/blang/semver/sort_test.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/blang/semver/sql.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/blang/semver/sql_test.go -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_17_control.yaml: -------------------------------------------------------------------------------- 1 | control: "\b1998\t1999\t2000\n" 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_17_hexesc.yaml: -------------------------------------------------------------------------------- 1 | hexesc: "\x0D\x0A is \r\n" 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_17_quoted.yaml: -------------------------------------------------------------------------------- 1 | quoted: ' # not a ''comment''.' 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_17_single.yaml: -------------------------------------------------------------------------------- 1 | single: '"Howdy!" he cried.' 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_17_tie_fighter.yaml: -------------------------------------------------------------------------------- 1 | tie-fighter: '|\-*-/|' 2 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_17_unicode.yaml: -------------------------------------------------------------------------------- 1 | unicode: "Sosa did fine.\u263A" 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example_empty.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/cpuguy83/go-md2man/.gitignore: -------------------------------------------------------------------------------- 1 | go-md2man 2 | -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/davecgh/go-spew/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/davecgh/go-spew/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/.dockerignore: -------------------------------------------------------------------------------- 1 | bundles 2 | .gopath 3 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/Makefile -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/ROADMAP.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/VERSION: -------------------------------------------------------------------------------- 1 | 1.8.0-dev 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/builder/parser/testfiles-negative/env_no_value/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM busybox 2 | 3 | ENV PATH 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/graphdriver/btrfs/dummy_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux !cgo 2 | 3 | package btrfs 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package overlay 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/graphdriver/vfs/driver_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux,!windows 2 | 3 | package vfs 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/logger/gelf/gelf_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package gelf 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/logger/journald/journald_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package journald 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/daemon/logger/syslog/syslog_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package syslog 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/dind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/hack/dind -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/hack/make.sh -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.bash-completion: -------------------------------------------------------------------------------- 1 | contrib/completion/bash/docker 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.default: -------------------------------------------------------------------------------- 1 | ../../../contrib/init/sysvinit-debian/docker.default -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.init: -------------------------------------------------------------------------------- 1 | ../../../contrib/init/sysvinit-debian/docker -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.upstart: -------------------------------------------------------------------------------- 1 | ../../../contrib/init/upstart/docker.conf -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.manpages: -------------------------------------------------------------------------------- 1 | man/man*/* 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.udev: -------------------------------------------------------------------------------- 1 | ../../../contrib/udev/80-docker.rules -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/hack/make/.build-deb/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/opts/ip.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/opts/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/opts/opts.go -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/chrootarchive/init_windows.go: -------------------------------------------------------------------------------- 1 | package chrootarchive 2 | 3 | func init() { 4 | } 5 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/pkg/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/project/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/runconfig/fixtures/valid.env: -------------------------------------------------------------------------------- 1 | ENV1=value1 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/runconfig/fixtures/valid.label: -------------------------------------------------------------------------------- 1 | LABEL1=value1 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/docker/utils/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/docker/utils/git.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/go-units/README.md -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/go-units/circle.yml -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /vendor/github.com/docker/go-units/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/go-units/ulimit.go -------------------------------------------------------------------------------- /vendor/github.com/docker/libcontainer/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/docker/libcontainer/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/docker/libcontainer/cgroups/cgroups_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package cgroups 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/libcontainer/cgroups/fs/fs_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package fs 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/libcontainer/nsenter/nsenter_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux !cgo 2 | 3 | package nsenter 4 | 5 | import "C" 6 | -------------------------------------------------------------------------------- /vendor/github.com/docker/libcontainer/nsinit/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go build -o nsinit . 3 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/emicklei/go-restful/doc.go -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/google_app_engine/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/emicklei/go-restful/examples/google_app_engine/datastore/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /vendor/github.com/evanphx/json-patch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/evanphx/json-patch/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/fatih/color/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/fatih/color/color_test.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/testing/data/barfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/testing/data/foofile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ghodss/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ghodss/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ghodss/yaml/yaml_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/glog/glog_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/groupcache/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/groupcache/http.go -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/peers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/groupcache/peers.go -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/sinks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/groupcache/sinks.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/protobuf/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/cadvisor/.gitignore: -------------------------------------------------------------------------------- 1 | cadvisor 2 | /release 3 | .vscode 4 | -------------------------------------------------------------------------------- /vendor/github.com/google/cadvisor/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/google/cadvisor/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/google/cadvisor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/google/cadvisor/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/cadvisor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/google/cadvisor/Makefile -------------------------------------------------------------------------------- /vendor/github.com/google/cadvisor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/google/cadvisor/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/cadvisor/fs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/google/cadvisor/fs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/google/cadvisor/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/google/cadvisor/logo.png -------------------------------------------------------------------------------- /vendor/github.com/google/cadvisor/test.htdigest: -------------------------------------------------------------------------------- 1 | admin:localhost:70f2631dded4ce5ad0ebbea5faa6ad6e 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/cadvisor/test.htpasswd: -------------------------------------------------------------------------------- 1 | admin:$apr1$WVO0Bsre$VrmWGDbcBV1fdAkvgQwdk0 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/cadvisor/version/VERSION: -------------------------------------------------------------------------------- 1 | 0.22.0 -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/google/gofuzz/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/google/gofuzz/fuzz_test.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/imdario/mergo/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/imdario/mergo/README.md -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/imdario/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/juju/ratelimit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/juju/ratelimit/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/juju/ratelimit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/juju/ratelimit/README.md -------------------------------------------------------------------------------- /vendor/github.com/juju/ratelimit/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/juju/ratelimit/reader.go -------------------------------------------------------------------------------- /vendor/github.com/masterzen/winrm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/masterzen/winrm/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/masterzen/winrm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/masterzen/winrm/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/masterzen/winrm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/masterzen/winrm/Makefile -------------------------------------------------------------------------------- /vendor/github.com/masterzen/winrm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/masterzen/winrm/README.md -------------------------------------------------------------------------------- /vendor/github.com/masterzen/winrm/winrm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/masterzen/winrm/winrm.go -------------------------------------------------------------------------------- /vendor/github.com/masterzen/xmlpath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/masterzen/xmlpath/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/masterzen/xmlpath/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/masterzen/xmlpath/doc.go -------------------------------------------------------------------------------- /vendor/github.com/masterzen/xmlpath/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/masterzen/xmlpath/path.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/mattn/go-colorable/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/mattn/go-isatty/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/nu7hatch/gouuid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/nu7hatch/gouuid/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/nu7hatch/gouuid/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/nu7hatch/gouuid/COPYING -------------------------------------------------------------------------------- /vendor/github.com/nu7hatch/gouuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/nu7hatch/gouuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/nu7hatch/gouuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/nu7hatch/gouuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/pkg 2 | runc 3 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/opencontainers/runc/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package cgroups 4 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/fs_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build !linux 2 | 3 | package fs 4 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/libcontainer/devices/devices_unsupported.go: -------------------------------------------------------------------------------- 1 | // +build windows 2 | 3 | package devices 4 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/script/tmpmount: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mount -t tmpfs none /tmp 4 | exec "$@" 5 | -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runc/tty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/opencontainers/runc/tty.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/json.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/json_test.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/seq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/seq_test.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/uuid_test.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/pborman/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/VERSION: -------------------------------------------------------------------------------- 1 | 0.7.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/ruby/Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_0: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_0: -------------------------------------------------------------------------------- 1 | bla 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_1: -------------------------------------------------------------------------------- 1 | metric{label="\t"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_10: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2 3 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_11: -------------------------------------------------------------------------------- 1 | metric{label="bla"} blubb 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_15: -------------------------------------------------------------------------------- 1 | 2 | # TYPE metric bla 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_16: -------------------------------------------------------------------------------- 1 | 2 | # TYPE met-ric 3 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_17: -------------------------------------------------------------------------------- 1 | @invalidmetric{label="bla"} 3.14 2 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_18: -------------------------------------------------------------------------------- 1 | {label="bla"} 3.14 2 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_2: -------------------------------------------------------------------------------- 1 | 2 | metric{label="new 3 | line"} 3.14 4 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_3: -------------------------------------------------------------------------------- 1 | metric{@="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_4: -------------------------------------------------------------------------------- 1 | metric{__name__="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_5: -------------------------------------------------------------------------------- 1 | metric{label+="bla"} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_6: -------------------------------------------------------------------------------- 1 | metric{label=bla} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_8: -------------------------------------------------------------------------------- 1 | metric{label="bla"+} 3.14 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/from_test_parse_error_9: -------------------------------------------------------------------------------- 1 | metric{label="bla"} 3.14 2.72 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/expfmt/fuzz/corpus/minimal: -------------------------------------------------------------------------------- 1 | m{} 0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/cmdline: -------------------------------------------------------------------------------- 1 | vimtest.go+10 -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fixtures/26231/fd/4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/cobra/main.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/cobra_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/doc_util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/man_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/man_docs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/man_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/man_docs.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/md_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/md_docs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/md_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/cobra/md_docs.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/bool_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/count_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/export_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/flag_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/ip_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/ipnet_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/verify/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/spf13/pflag/verify/all.sh -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/0doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/0doc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/README.md -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/binc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/binc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/cbor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/cbor.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/codecgen/z.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | const genCodecPath = "github.com/ugorji/go/codec" 4 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/decode.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/encode.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/gen.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/helper.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/json.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/msgpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/msgpack.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/noop.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/py_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/py_test.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/rpc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/simple.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/test.py -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/tests.sh -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/codec/time.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/msgpack.org.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/github.com/ugorji/go/msgpack.org.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/README -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/bcrypt/base64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/blowfish/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/blowfish/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/bn256/bn256.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/bn256/curve.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/bn256/gfp12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/bn256/gfp2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/bn256/gfp6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/bn256/optate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/bn256/twist.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/cast5/cast5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/curve25519/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/md4/md4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/md4/md4block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/nacl/box/box.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/openpgp/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/openpgp/read.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/openpgp/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/otr/otr_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/sha3/hashes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/sha3/keccakf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/sha3/register.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/sha3/sha3_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/certs_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/connection.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/keys_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/tcpip_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/xtea/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/xtea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/xtea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/xtea/xtea_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/crypto/xts/xts_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/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/fabric8io/kansible/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/charset/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/entity_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/escape_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/parse_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/render_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/html/token_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/buffer_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/errors_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/flow_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/frame_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/h2demo/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/h2i/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/http2_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/pipe_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/server_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/z_spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/http2/z_spec_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/dstunreach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/dstunreach.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/helper_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/helper_posix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/listen_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/listen_posix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/listen_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/listen_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/message_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/messagebody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/messagebody.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/packettoobig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/packettoobig.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/ping_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/timeexceeded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/icmp/timeexceeded.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/iana/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/internal/iana/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/control_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/control_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/control_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/defs_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/defs_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/defs_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/defs_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/defs_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/defs_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/header_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/helper_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/helper_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/icmp_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/payload_cmsg.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/sockopt_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/sockopt_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/sys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/sys_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/sys_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/unicast_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/zsys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/zsys_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/zsys_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv4/zsys_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/control_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/control_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/defs_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/defs_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/defs_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/defs_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/defs_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/defs_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/header_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/helper_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/helper_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/icmp_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/icmp_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/icmp_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/payload_cmsg.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/sockopt_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/sockopt_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/sockopt_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/sys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/sys_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/sys_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/unicast_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/zsys_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/zsys_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/zsys_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/ipv6/zsys_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/proxy/proxy_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/publicsuffix/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/publicsuffix/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/publicsuffix/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/publicsuffix/list.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/trace/trace_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/webdav/file_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/webdav/lock_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/webdav/prop_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/webdav/xml_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/websocket/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/net/websocket/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/README -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/const_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/plan9/const_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/dir_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/plan9/dir_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/plan9/env_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/plan9/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/plan9/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/plan9/pwd_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/creds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/creds_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/export_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/types_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/windows/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/windows/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/windows/svc/event.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/windows/svc/go12.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/windows/svc/go12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/windows/svc/go13.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/.generated_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/.generated_docs -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/.gitignore -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/.travis.yml -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/CONTRIB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/CONTRIB.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/DESIGN.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/Godeps/Godeps.json -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/Godeps/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/Godeps/LICENSES -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/Godeps/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/Godeps/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/Godeps/Readme -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/Makefile -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/Vagrantfile -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/build/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/build/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/build/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/build/build-image/cross/VERSION: -------------------------------------------------------------------------------- 1 | v1.4.2-1 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/build/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/build/common.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/build/make-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/build/make-clean.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/build/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/build/release.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/build/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/build/run.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/build/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/build/shell.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/cluster/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/cluster/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/addons/dns/kube2sky/.gitignore: -------------------------------------------------------------------------------- 1 | kube2sky 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/aws/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/cluster/aws/util.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/azure/.gitignore: -------------------------------------------------------------------------------- 1 | _deployments 2 | config-real.sh 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/cluster/common.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/gce/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/cluster/gce/util.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/get-kube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/cluster/get-kube.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/charms/trusty/.gitignore: -------------------------------------------------------------------------------- 1 | /docker -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/charms/trusty/kubernetes-master/.bzrignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/charms/trusty/kubernetes-master/hooks/config-changed: -------------------------------------------------------------------------------- 1 | hooks.py -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/charms/trusty/kubernetes-master/hooks/etcd-relation-changed: -------------------------------------------------------------------------------- 1 | hooks.py -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/charms/trusty/kubernetes-master/hooks/install: -------------------------------------------------------------------------------- 1 | install.py -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/charms/trusty/kubernetes-master/hooks/minions-api-relation-changed: -------------------------------------------------------------------------------- 1 | hooks.py -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/charms/trusty/kubernetes-master/hooks/network-relation-changed: -------------------------------------------------------------------------------- 1 | hooks.py -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/charms/trusty/kubernetes/.bzrignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/charms/trusty/kubernetes/hooks/api-relation-changed: -------------------------------------------------------------------------------- 1 | hooks.py -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/charms/trusty/kubernetes/hooks/etcd-relation-changed: -------------------------------------------------------------------------------- 1 | hooks.py -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/charms/trusty/kubernetes/hooks/network-relation-changed: -------------------------------------------------------------------------------- 1 | hooks.py -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/charms/trusty/kubernetes/python_requirements.txt: -------------------------------------------------------------------------------- 1 | path.py 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/kube-system-ns.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: kube-system 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/libvirt-coreos/.gitignore: -------------------------------------------------------------------------------- 1 | /libvirt_storage_pool/ 2 | /coreos_production_qemu_image.img.bz2 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/mesos/docker/.gitignore: -------------------------------------------------------------------------------- 1 | certs 2 | logs 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/mesos/docker/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - karlkfi 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/mesos/docker/km/.gitignore: -------------------------------------------------------------------------------- 1 | overlay/ 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/saltbase/pillar/logging.sls: -------------------------------------------------------------------------------- 1 | log_level: "--v=2" 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/saltbase/salt/kube-proxy/kubeconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/saltbase/salt/kubelet/kubeconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/ubuntu/.gitignore: -------------------------------------------------------------------------------- 1 | binaries 2 | skydns* 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/ubuntu/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: kube-system 5 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/vagrant/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - derekwaynecarr 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cmd/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/cmd/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cmd/libs/go2idl/client-gen/.import-restrictions: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cmd/libs/go2idl/go-to-protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | go-to-protobuf 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cmd/libs/go2idl/go-to-protobuf/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - smarterclayton 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cmd/libs/go2idl/import-boss/.gitignore: -------------------------------------------------------------------------------- 1 | import-boss 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cmd/libs/go2idl/set-gen/.gitignore: -------------------------------------------------------------------------------- 1 | set-gen 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cmd/mungedocs/testdata/example.txt: -------------------------------------------------------------------------------- 1 | some text 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/contrib/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/docs/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/docs/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/docs/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/docs/admin/dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/docs/admin/dns.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/docs/api.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/docs/design/clustering/.gitignore: -------------------------------------------------------------------------------- 1 | DroidSansMono.ttf 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/docs/getting-started-guides/coreos/azure/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/docs/roadmap.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/docs/user-guide/update-demo/images/kitten/html/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "image": "kitten.jpg" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/docs/user-guide/update-demo/images/nautilus/html/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "image": "nautilus.jpg" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/docs/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/docs/warning.png -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/docs/whatisk8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/docs/whatisk8s.md -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/examples/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/examples/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/examples/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/examples/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/examples/kubectl-container/.gitignore: -------------------------------------------------------------------------------- 1 | kubectl 2 | .tag 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/examples/nfs/nfs-data/index.html: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/examples/openshift-origin/.gitignore: -------------------------------------------------------------------------------- 1 | config/ 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/examples/openshift-origin/secret.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/examples/pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/examples/pod -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/hack/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/hack/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/hack/build-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/hack/build-go.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/hack/build-ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/hack/build-ui.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/hack/e2e.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/hack/e2e.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/hack/get-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/hack/get-build.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/hack/lib/etcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/hack/lib/etcd.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/hack/lib/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/hack/lib/init.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/hack/lib/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/hack/lib/test.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/hack/lib/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/hack/lib/util.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/hack/test-cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/hack/test-cmd.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/hack/test-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/hack/test-go.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/hack/vet-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/hack/vet-go.sh -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/hooks/pre-commit -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/logo.pdf -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/logo.png -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/logo.svg -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/api/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/api/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/api/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/api/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/api/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/api/mapper.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/api/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/api/meta.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/api/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/api/ref.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/api/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/api/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/api/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/api/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/apis/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/apis/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/auth/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/auth/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/client/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/client/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/client/leaderelection/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - mikedanese 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/aws/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - justinsb 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/fields/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/fields/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/labels/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/labels/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/master/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/master/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/master/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/master/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/probe/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/probe/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/proxy/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/proxy/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/proxy/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/proxy/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/ssh/ssh.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/types/uid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/types/uid.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/ui/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/ui/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/util/cache.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/util/clock.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/crlf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/util/crlf.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/util/diff.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/util/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/util/env.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/util/flags.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/util/io/io.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/util/logs.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/util/trace.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/umask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/util/umask.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/util/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/util/uuid.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/volume/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/volume/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/volume/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/volume/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/watch/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/watch/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/watch/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/pkg/watch/mux.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/plugin/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/plugin/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/plugin/cmd/kube-scheduler/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - davidopp 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/plugin/pkg/admission/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - derekwaynecarr 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/plugin/pkg/scheduler/OWNERS: -------------------------------------------------------------------------------- 1 | assignees: 2 | - davidopp 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/shippable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/shippable.yml -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/test/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/e2e/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/test/e2e/dns.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/e2e/e2e.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/test/e2e/e2e.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/e2e/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/test/e2e/job.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/e2e/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/test/e2e/load.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/e2e/mesos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/test/e2e/mesos.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/e2e/pd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/test/e2e/pd.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/e2e/pods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/test/e2e/pods.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/e2e/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/test/e2e/proxy.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/e2e/rc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/test/e2e/rc.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/e2e/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/test/e2e/ssh.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/e2e/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/test/e2e/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/images/goproxy/.gitignore: -------------------------------------------------------------------------------- 1 | goproxy 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/images/netexec/.gitignore: -------------------------------------------------------------------------------- 1 | netexec 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/images/port-forward-tester/.gitignore: -------------------------------------------------------------------------------- 1 | portforwardtester 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/images/porter/.gitignore: -------------------------------------------------------------------------------- 1 | porter 2 | .tag 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/images/volumes-tester/ceph/index.html: -------------------------------------------------------------------------------- 1 | Hello Ceph! 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/images/volumes-tester/gluster/index.html: -------------------------------------------------------------------------------- 1 | Hello from GlusterFS! 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/images/volumes-tester/iscsi/initiatorname.iscsi: -------------------------------------------------------------------------------- 1 | InitiatorName=iqn.1994-05.com.redhat:eb59fbe2c4c5 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/test/images/volumes-tester/nfs/index.html: -------------------------------------------------------------------------------- 1 | Hello from NFS! 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/third_party/golang/go/build/testdata/empty/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/www/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/vendor/k8s.io/kubernetes/www/README.md -------------------------------------------------------------------------------- /version/VERSION: -------------------------------------------------------------------------------- 1 | 0.3.1 -------------------------------------------------------------------------------- /version/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/version/info.go -------------------------------------------------------------------------------- /winrm/winrm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/kansible/HEAD/winrm/winrm.go --------------------------------------------------------------------------------