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.

48 lines
1.5 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. <link rel="icon" href="/logo/logo-clear.png" type="image/png" />
  10. <style>
  11. :root {
  12. --base-font-size: 16px;
  13. --theme-color: rgb(104, 118, 52);
  14. --link-color: rgb(104, 118, 52);
  15. --link-color--hover: rgb(137, 152, 100);
  16. --sidebar-name-margin: 0;
  17. --sidebar-name-padding: 0;
  18. --code-font-size: .9em;
  19. }
  20. .sidebar > h1 {
  21. margin-bottom: -.75em;
  22. margin-top: .75em;
  23. }
  24. .markdown-section a code {
  25. color: var(--link-color)!important;
  26. }
  27. .markdown-section code:not([class*="lang-"]):not([class*="language-"]) {
  28. white-space: unset
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div id="app"></div>
  34. </body>
  35. <script>
  36. window.$docsify = {
  37. name: 'Kubespray',
  38. loadSidebar: 'docs/_sidebar.md',
  39. repo: 'https://github.com/kubernetes-sigs/kubespray',
  40. auto2top: true,
  41. logo: '/logo/logo-clear.png'
  42. }
  43. </script>
  44. <script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
  45. <script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
  46. <script src="//unpkg.com/docsify/lib/plugins/ga.min.js"></script>
  47. </html>