├── .gitignore ├── Budfile ├── PDFs ├── Concepts.pdf ├── Reference.pdf ├── Setup.pdf ├── Tasks.pdf ├── Tutorials.pdf └── kubectl-commands.pdf ├── Pipfile ├── Pipfile.lock ├── README.md ├── TODO.txt ├── codeblock_wrap.css ├── gen_ref_docs.sh ├── kubernetes-doc.py └── weasy_print.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /Budfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/Budfile -------------------------------------------------------------------------------- /PDFs/Concepts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/PDFs/Concepts.pdf -------------------------------------------------------------------------------- /PDFs/Reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/PDFs/Reference.pdf -------------------------------------------------------------------------------- /PDFs/Setup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/PDFs/Setup.pdf -------------------------------------------------------------------------------- /PDFs/Tasks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/PDFs/Tasks.pdf -------------------------------------------------------------------------------- /PDFs/Tutorials.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/PDFs/Tutorials.pdf -------------------------------------------------------------------------------- /PDFs/kubectl-commands.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/PDFs/kubectl-commands.pdf -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/TODO.txt -------------------------------------------------------------------------------- /codeblock_wrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/codeblock_wrap.css -------------------------------------------------------------------------------- /gen_ref_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/gen_ref_docs.sh -------------------------------------------------------------------------------- /kubernetes-doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/kubernetes-doc.py -------------------------------------------------------------------------------- /weasy_print.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dohsimpson/kubernetes-doc-pdf/HEAD/weasy_print.sh --------------------------------------------------------------------------------