You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.4 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Kubespray - Deploy a Production Ready Kubernetes Cluster</title>
  6. <meta name="description" content="Deploy a Production Ready Kubernetes Cluster">
  7. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  8. <link rel="stylesheet" href="//unpkg.com/docsify-themeable/dist/css/theme-simple.css">
  9. <style>
  10. :root {
  11. --base-font-size: 16px;
  12. --theme-color: rgb(104, 118, 52);
  13. --link-color: rgb(104, 118, 52);
  14. --link-color--hover: rgb(137, 152, 100);
  15. --sidebar-name-margin: 0;
  16. --sidebar-name-padding: 0;
  17. --code-font-size: .9em;
  18. }
  19. .sidebar > h1 {
  20. margin-bottom: -.75em;
  21. margin-top: .75em;
  22. }
  23. .markdown-section a code {
  24. color: var(--link-color)!important;
  25. }
  26. .markdown-section code:not([class*="lang-"]):not([class*="language-"]) {
  27. white-space: unset
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div id="app"></div>
  33. </body>
  34. <script>
  35. window.$docsify = {
  36. name: 'Kubespray',
  37. loadSidebar: 'docs/_sidebar.md',
  38. repo: 'https://github.com/kubernetes-sigs/kubespray',
  39. auto2top: true,
  40. logo: '/logo/logo-clear.png'
  41. }
  42. </script>
  43. <script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
  44. <script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
  45. <script src="//unpkg.com/docsify/lib/plugins/ga.min.js"></script>
  46. </html>