├── public └── CNAME ├── .isort.cfg ├── content └── en │ ├── includes │ └── index.md │ ├── _common-resources │ ├── index.md │ └── images │ │ ├── stars.png │ │ ├── microshift_logo.png │ │ └── microshift_logo_white.png │ ├── search.md │ ├── docs │ ├── _index.md │ ├── examples │ │ └── manifests │ │ │ ├── klusterlet-namespace.yaml │ │ │ ├── klusterlet-kubeconfighub.yaml │ │ │ ├── klusterlet-service-account.yaml │ │ │ └── kustomization.yaml │ ├── user-documentation │ │ ├── how-tos │ │ │ └── _index.md │ │ ├── networking │ │ │ └── _index.md │ │ ├── disconnected.md │ │ └── _index.md │ └── developer-documentation │ │ └── _index.md │ └── images │ ├── remote-ssh-dropdown.png │ └── vscode-remote-button.png ├── layouts ├── shortcodes │ ├── comment.html │ ├── param.html │ ├── toc.html │ ├── hugoVersion.html │ ├── heading.html │ ├── note.html │ ├── kat-button │ ├── caution.html │ ├── warning.html │ ├── deprecationfilewarning.html │ ├── hint.html │ ├── tip.html │ ├── danger.html │ ├── error.html │ ├── attention.html │ ├── important.html │ ├── link.html │ ├── mermaid.html │ ├── table.html │ └── thirdparty-content.html ├── partials │ ├── docs │ │ ├── top-section-page.html │ │ ├── thirdparty-disclaimer.html │ │ └── content-page.html │ ├── toc.html │ └── deprecation-warning.html └── robots.txt ├── themes └── docsy │ ├── assets │ ├── vendor │ │ ├── bootstrap │ │ │ ├── site │ │ │ │ ├── static │ │ │ │ │ ├── CNAME │ │ │ │ │ └── docs │ │ │ │ │ │ └── 4.6 │ │ │ │ │ │ └── assets │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── album.png │ │ │ │ │ │ │ ├── blog.png │ │ │ │ │ │ │ ├── cover.png │ │ │ │ │ │ │ ├── grid.png │ │ │ │ │ │ │ ├── blog@2x.png │ │ │ │ │ │ │ ├── grid@2x.png │ │ │ │ │ │ │ ├── navbars.png │ │ │ │ │ │ │ ├── pricing.png │ │ │ │ │ │ │ ├── product.png │ │ │ │ │ │ │ ├── sign-in.png │ │ │ │ │ │ │ ├── album@2x.png │ │ │ │ │ │ │ ├── carousel.png │ │ │ │ │ │ │ ├── checkout.png │ │ │ │ │ │ │ ├── cover@2x.png │ │ │ │ │ │ │ ├── dashboard.png │ │ │ │ │ │ │ ├── jumbotron.png │ │ │ │ │ │ │ ├── navbars@2x.png │ │ │ │ │ │ │ ├── offcanvas.png │ │ │ │ │ │ │ ├── pricing@2x.png │ │ │ │ │ │ │ ├── product@2x.png │ │ │ │ │ │ │ ├── sign-in@2x.png │ │ │ │ │ │ │ ├── carousel@2x.png │ │ │ │ │ │ │ ├── checkout@2x.png │ │ │ │ │ │ │ ├── dashboard@2x.png │ │ │ │ │ │ │ ├── jumbotron@2x.png │ │ │ │ │ │ │ ├── navbar-fixed.png │ │ │ │ │ │ │ ├── offcanvas@2x.png │ │ │ │ │ │ │ ├── floating-labels.png │ │ │ │ │ │ │ ├── navbar-bottom.png │ │ │ │ │ │ │ ├── navbar-fixed@2x.png │ │ │ │ │ │ │ ├── navbar-static.png │ │ │ │ │ │ │ ├── sticky-footer.png │ │ │ │ │ │ │ ├── navbar-bottom@2x.png │ │ │ │ │ │ │ ├── navbar-static@2x.png │ │ │ │ │ │ │ ├── starter-template.png │ │ │ │ │ │ │ ├── sticky-footer@2x.png │ │ │ │ │ │ │ ├── floating-labels@2x.png │ │ │ │ │ │ │ ├── starter-template@2x.png │ │ │ │ │ │ │ ├── sticky-footer-navbar.png │ │ │ │ │ │ │ └── sticky-footer-navbar@2x.png │ │ │ │ │ │ ├── bootstrap-icons.png │ │ │ │ │ │ ├── bootstrap-themes.png │ │ │ │ │ │ ├── favicons │ │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ │ ├── mstile-70x70.png │ │ │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ │ │ ├── mstile-144x144.png │ │ │ │ │ │ │ ├── mstile-150x150.png │ │ │ │ │ │ │ ├── mstile-310x150.png │ │ │ │ │ │ │ ├── mstile-310x310.png │ │ │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ │ │ │ └── browserconfig.xml │ │ │ │ │ │ ├── bootstrap-icons@2x.png │ │ │ │ │ │ ├── bootstrap-themes@2x.png │ │ │ │ │ │ ├── bootstrap-themes-collage.png │ │ │ │ │ │ └── bootstrap-themes-collage@2x.png │ │ │ │ │ │ └── brand │ │ │ │ │ │ ├── bootstrap-social.png │ │ │ │ │ │ └── bootstrap-social-logo.png │ │ │ │ ├── layouts │ │ │ │ │ ├── shortcodes │ │ │ │ │ │ ├── partial.html │ │ │ │ │ │ ├── markdown.html │ │ │ │ │ │ ├── year.html │ │ │ │ │ │ ├── docsref.html │ │ │ │ │ │ └── callout.html │ │ │ │ │ ├── partials │ │ │ │ │ │ ├── ads.html │ │ │ │ │ │ ├── callout-info-prefersreducedmotion.md │ │ │ │ │ │ ├── analytics.html │ │ │ │ │ │ ├── callout-info-npm-starter.md │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── cloud-fill.svg │ │ │ │ │ │ │ └── menu.svg │ │ │ │ │ │ └── skippy.html │ │ │ │ │ ├── robots.txt │ │ │ │ │ ├── alias.html │ │ │ │ │ └── _default │ │ │ │ │ │ └── home.html │ │ │ │ ├── content │ │ │ │ │ └── docs │ │ │ │ │ │ ├── 4.6 │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── navbar-static │ │ │ │ │ │ │ │ └── navbar-top.css │ │ │ │ │ │ │ ├── navbars │ │ │ │ │ │ │ │ └── navbar.css │ │ │ │ │ │ │ ├── checkout │ │ │ │ │ │ │ │ └── form-validation.css │ │ │ │ │ │ │ ├── navbar-fixed │ │ │ │ │ │ │ │ └── navbar-top-fixed.css │ │ │ │ │ │ │ ├── jumbotron │ │ │ │ │ │ │ │ └── jumbotron.css │ │ │ │ │ │ │ ├── starter-template │ │ │ │ │ │ │ │ └── starter-template.css │ │ │ │ │ │ │ ├── offcanvas │ │ │ │ │ │ │ │ └── offcanvas.js │ │ │ │ │ │ │ ├── pricing │ │ │ │ │ │ │ │ └── pricing.css │ │ │ │ │ │ │ ├── sticky-footer │ │ │ │ │ │ │ │ └── sticky-footer.css │ │ │ │ │ │ │ └── grid │ │ │ │ │ │ │ │ └── grid.css │ │ │ │ │ │ ├── _index.html │ │ │ │ │ │ └── utilities │ │ │ │ │ │ │ └── close-icon.md │ │ │ │ │ │ └── _index.html │ │ │ │ ├── assets │ │ │ │ │ └── scss │ │ │ │ │ │ ├── _browser-bugs.scss │ │ │ │ │ │ ├── _anchor.scss │ │ │ │ │ │ ├── _placeholder-img.scss │ │ │ │ │ │ └── _colors.scss │ │ │ │ └── data │ │ │ │ │ ├── theme-colors.yml │ │ │ │ │ └── grays.yml │ │ │ ├── scss │ │ │ │ ├── utilities │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _overflow.scss │ │ │ │ │ ├── _interactions.scss │ │ │ │ │ ├── _screenreaders.scss │ │ │ │ │ ├── _visibility.scss │ │ │ │ │ ├── _shadows.scss │ │ │ │ │ ├── _float.scss │ │ │ │ │ └── _align.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── mixins │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _size.scss │ │ │ │ │ ├── _lists.scss │ │ │ │ │ ├── _text-truncate.scss │ │ │ │ │ ├── _resize.scss │ │ │ │ │ ├── _visibility.scss │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _text-hide.scss │ │ │ │ │ ├── _badge.scss │ │ │ │ │ └── _nav-divider.scss │ │ │ │ └── _transitions.scss │ │ │ ├── .stylelintignore │ │ │ ├── .github │ │ │ │ └── CODEOWNERS │ │ │ ├── .eslintignore │ │ │ ├── nuget │ │ │ │ └── bootstrap.png │ │ │ ├── .gitattributes │ │ │ ├── js │ │ │ │ └── tests │ │ │ │ │ └── integration │ │ │ │ │ └── bundle.js │ │ │ ├── .browserslistrc │ │ │ ├── .editorconfig │ │ │ ├── build │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── postcss.config.js │ │ │ │ └── banner.js │ │ │ └── .babelrc.js │ │ └── Font-Awesome │ │ │ ├── less │ │ │ ├── _screen-reader.less │ │ │ ├── _fixed-width.less │ │ │ ├── v4-shims.less │ │ │ ├── _core.less │ │ │ ├── _animated.less │ │ │ └── _list.less │ │ │ ├── scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── v4-shims.scss │ │ │ ├── _animated.scss │ │ │ ├── _list.scss │ │ │ └── _core.scss │ │ │ ├── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.woff │ │ │ └── fa-regular-400.woff2 │ │ │ ├── otfs │ │ │ ├── Font Awesome 5 Free-Solid-900.otf │ │ │ ├── Font Awesome 5 Brands-Regular-400.otf │ │ │ └── Font Awesome 5 Free-Regular-400.otf │ │ │ ├── js-packages │ │ │ └── @fortawesome │ │ │ │ ├── fontawesome-free │ │ │ │ ├── less │ │ │ │ │ ├── _fixed-width.less │ │ │ │ │ ├── _screen-reader.less │ │ │ │ │ ├── v4-shims.less │ │ │ │ │ ├── _core.less │ │ │ │ │ ├── _animated.less │ │ │ │ │ └── _list.less │ │ │ │ ├── scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── v4-shims.scss │ │ │ │ │ ├── _animated.scss │ │ │ │ │ └── _list.scss │ │ │ │ ├── webfonts │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ └── fa-regular-400.woff2 │ │ │ │ ├── attribution.js │ │ │ │ └── svgs │ │ │ │ │ ├── brands │ │ │ │ │ ├── adobe.svg │ │ │ │ │ ├── houzz.svg │ │ │ │ │ ├── flipboard.svg │ │ │ │ │ ├── unsplash.svg │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ ├── ethereum.svg │ │ │ │ │ ├── bandcamp.svg │ │ │ │ │ ├── black-tie.svg │ │ │ │ │ ├── strava.svg │ │ │ │ │ ├── gitter.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ ├── css3.svg │ │ │ │ │ ├── think-peaks.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── mix.svg │ │ │ │ │ ├── uikit.svg │ │ │ │ │ ├── patreon.svg │ │ │ │ │ └── viacoin.svg │ │ │ │ │ ├── solid │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── egg.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ ├── cheese.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── ice-cream.svg │ │ │ │ │ ├── mouse.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── sd-card.svg │ │ │ │ │ └── adjust.svg │ │ │ │ │ └── regular │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ └── bookmark.svg │ │ │ │ ├── fontawesome-svg-core │ │ │ │ └── attribution.js │ │ │ │ ├── free-brands-svg-icons │ │ │ │ └── attribution.js │ │ │ │ ├── free-regular-svg-icons │ │ │ │ └── attribution.js │ │ │ │ ├── free-solid-svg-icons │ │ │ │ └── attribution.js │ │ │ │ └── fontawesome-common-types │ │ │ │ └── attribution.js │ │ │ ├── svgs │ │ │ ├── solid │ │ │ │ ├── square-full.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── play.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── adjust.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── map-marker.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── file.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── step-backward.svg │ │ │ │ ├── step-forward.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── dice-one.svg │ │ │ │ └── sort.svg │ │ │ ├── brands │ │ │ │ ├── houzz.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── unsplash.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── instalod.svg │ │ │ │ ├── dochub.svg │ │ │ │ └── firstdraft.svg │ │ │ └── regular │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ └── square.svg │ │ │ └── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── icons │ │ └── logo.png │ ├── scss │ │ ├── _breadcrumb.scss │ │ ├── blocks │ │ │ └── _blocks.scss │ │ ├── _styles_project.scss │ │ ├── _variables_project.scss │ │ ├── _blog.scss │ │ ├── _buttons.scss │ │ ├── section-index.scss │ │ └── _pageinfo.scss │ └── js │ │ └── markmap.js │ ├── layouts │ ├── blog │ │ ├── single.html │ │ └── section.print.html │ ├── docs │ │ ├── single.html │ │ └── list.print.html │ ├── shortcodes │ │ ├── cardpane.html │ │ ├── pageinfo.html │ │ ├── readfile.md │ │ ├── alert.html │ │ ├── swaggerui.html │ │ └── blocks │ │ │ └── link-down.html │ ├── swagger │ │ └── single.html │ ├── home.html │ ├── _default │ │ ├── list.html │ │ ├── single.html │ │ └── terms.html │ ├── partials │ │ ├── print │ │ │ ├── toc-li-blog.html │ │ │ ├── toc-li.html │ │ │ └── page-heading.html │ │ ├── hooks │ │ │ ├── body-end.html │ │ │ └── head-end.html │ │ ├── reading-time.html │ │ ├── toc.html │ │ ├── page-meta-lastmod.html │ │ ├── outputformat.html │ │ └── navbar-version-selector.html │ └── 404.html │ ├── userguide │ ├── .gitignore │ ├── content │ │ └── en │ │ │ ├── search.md │ │ │ ├── featured-background.jpg │ │ │ ├── about │ │ │ └── featured-background.jpg │ │ │ ├── docs │ │ │ ├── Adding content │ │ │ │ ├── Shortcodes │ │ │ │ │ └── spruce.jpg │ │ │ │ └── _index.md │ │ │ └── Best practices │ │ │ │ └── _index.md │ │ │ └── community │ │ │ └── _index.md │ ├── static │ │ ├── google6a6ae8b5b016a20d.html │ │ └── images │ │ │ ├── no.png │ │ │ ├── yes.png │ │ │ ├── feedback.png │ │ │ └── version-banner.png │ ├── .DS_Store │ ├── .gitmodules │ └── assets │ │ └── scss │ │ └── _variables_project.scss │ ├── .prettierrc.json │ ├── static │ ├── css │ │ ├── shortcodes.css │ │ └── shortcodes │ │ │ ├── cards-pane.css │ │ │ └── tabbed-pane.css │ ├── favicons │ │ ├── favicon.ico │ │ ├── tile70x70.png │ │ ├── favicon-256.png │ │ ├── pwa-192x192.png │ │ ├── pwa-512x512.png │ │ ├── tile150x150.png │ │ ├── tile310x150.png │ │ ├── tile310x310.png │ │ ├── android-36x36.png │ │ ├── android-48x48.png │ │ ├── android-72x72.png │ │ ├── android-96x96.png │ │ ├── favicon-1024.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── android-144x144.png │ │ ├── android-192x192.png │ │ └── apple-touch-icon-180x180.png │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.ttf │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ ├── fa-solid-900.woff2 │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.woff │ │ └── fa-regular-400.woff2 │ ├── images │ ├── tn.png │ └── screenshot.png │ ├── .gitignore │ ├── .editorconfig │ ├── .gitmodules │ ├── theme.toml │ └── .s3deploy.yml ├── static ├── googleff9d4ab19e7459a0.html ├── images │ ├── link.png │ ├── buffer.png │ ├── pencil.png │ ├── stars.png │ ├── sos_logo.png │ ├── texture.png │ ├── toc_icon.png │ ├── github_icon.png │ ├── slack_icon.png │ ├── logo │ │ ├── favicon.ico │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── mstile-150x150.png │ │ ├── apple-touch-icon.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ └── browserconfig.xml │ ├── toc_icon_grey.png │ ├── twitter_icon.png │ ├── wikimedia_logo.png │ ├── microshift_logo_white.png │ ├── jquery-ui │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ ├── ui-icons_ffffff_256x240.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ └── ui-bg_highlight-soft_100_eeeeee_1x100.png │ ├── copycode.svg │ └── icon-pencil.svg ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── MaterialIcons-Regular.eot │ ├── MaterialIcons-Regular.ttf │ ├── MaterialIcons-Regular.woff │ ├── fontawesome-webfont.woff2 │ └── MaterialIcons-Regular.woff2 ├── css │ ├── images │ │ └── Ui-icons_222222_256x240.png │ └── README.md └── js │ └── README.md ├── OWNERS ├── assets ├── images │ └── favicon.png └── scss │ └── _skin.scss ├── package.json ├── .gitignore ├── archetypes └── concepts.md └── .github └── workflows └── broken-link-check.yml /public/CNAME: -------------------------------------------------------------------------------- 1 | microshift.io 2 | -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | known_third_party = 3 | -------------------------------------------------------------------------------- /content/en/includes/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /layouts/shortcodes/comment.html: -------------------------------------------------------------------------------- 1 | {{ if .Inner}}{{ end }} 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/param.html: -------------------------------------------------------------------------------- 1 | {{- .Page.Param (.Get 0) -}} 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/toc.html: -------------------------------------------------------------------------------- 1 | {{ .Page.TableOfContents }} 2 | -------------------------------------------------------------------------------- /layouts/partials/docs/top-section-page.html: -------------------------------------------------------------------------------- 1 | {{ .page.Content }} 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/hugoVersion.html: -------------------------------------------------------------------------------- 1 | {{ getenv "HUGO_VERSION" }} 2 | -------------------------------------------------------------------------------- /content/en/_common-resources/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless: true 3 | --- 4 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /content/en/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: search 3 | title: Search Results 4 | --- 5 | -------------------------------------------------------------------------------- /static/googleff9d4ab19e7459a0.html: -------------------------------------------------------------------------------- 1 | google-site-verification: googleff9d4ab19e7459a0.html 2 | -------------------------------------------------------------------------------- /themes/docsy/layouts/blog/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ .Render "content" }} 3 | {{ end }} -------------------------------------------------------------------------------- /themes/docsy/layouts/docs/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ .Render "content" }} 3 | {{ end }} -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/shortcodes/partial.html: -------------------------------------------------------------------------------- 1 | {{ partial (.Get 0) . }} 2 | -------------------------------------------------------------------------------- /themes/docsy/layouts/shortcodes/cardpane.html: -------------------------------------------------------------------------------- 1 |
2 | {{- .Inner -}} 3 |
-------------------------------------------------------------------------------- /themes/docsy/layouts/swagger/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ .Render "content" }} 3 | {{ end }} -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/shortcodes/markdown.html: -------------------------------------------------------------------------------- 1 | {{- .Inner | markdownify -}} 2 | -------------------------------------------------------------------------------- /themes/docsy/userguide/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | public/ 3 | resources/ 4 | node_modules/ 5 | tech-doc-hugo 6 | 7 | -------------------------------------------------------------------------------- /themes/docsy/layouts/home.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ with .Content }} 3 | {{ . }} 4 | {{ end }} 5 | {{ end }} -------------------------------------------------------------------------------- /themes/docsy/userguide/content/en/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Search Results 3 | layout: search 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /static/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/link.png -------------------------------------------------------------------------------- /themes/docsy/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "semi": true, 3 | "singleQuote": true, 4 | "tabWidth": 4 5 | } 6 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /themes/docsy/layouts/blog/section.print.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ partial "print/render" . }} 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /themes/docsy/layouts/docs/list.print.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ partial "print/render" . }} 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /themes/docsy/userguide/static/google6a6ae8b5b016a20d.html: -------------------------------------------------------------------------------- 1 | google-site-verification: google6a6ae8b5b016a20d.html 2 | -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- 1 | approvers: 2 | - rootfs 3 | - fzdarsky 4 | - oglok 5 | - copejon 6 | - husky-parul 7 | - sallyom 8 | - mangelajo 9 | -------------------------------------------------------------------------------- /static/images/buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/buffer.png -------------------------------------------------------------------------------- /static/images/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/pencil.png -------------------------------------------------------------------------------- /static/images/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/stars.png -------------------------------------------------------------------------------- /themes/docsy/layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ with .Content }} 3 | {{ . }} 4 | {{ end }} 5 | {{ end }} -------------------------------------------------------------------------------- /themes/docsy/static/css/shortcodes.css: -------------------------------------------------------------------------------- 1 | @import "shortcodes/tabbed-pane.css"; 2 | @import "shortcodes/cards-pane.css"; 3 | -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /static/images/sos_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/sos_logo.png -------------------------------------------------------------------------------- /static/images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/texture.png -------------------------------------------------------------------------------- /static/images/toc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/toc_icon.png -------------------------------------------------------------------------------- /themes/docsy/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/images/tn.png -------------------------------------------------------------------------------- /themes/docsy/layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ with .Content }} 3 | {{ . }} 4 | {{ end }} 5 | {{ end }} -------------------------------------------------------------------------------- /themes/docsy/layouts/partials/print/toc-li-blog.html: -------------------------------------------------------------------------------- 1 |
  • {{ .Page.Title }}
  • 2 | -------------------------------------------------------------------------------- /static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/images/github_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/github_icon.png -------------------------------------------------------------------------------- /static/images/slack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/slack_icon.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/.stylelintignore: -------------------------------------------------------------------------------- 1 | **/*.min.css 2 | **/dist/ 3 | **/vendor/ 4 | /_gh_pages/ 5 | /js/coverage/ 6 | -------------------------------------------------------------------------------- /layouts/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | 3 | Disallow: /404/ 4 | Disallow: /404.html 5 | 6 | SITEMAP: {{ "sitemap.xml" | absLangURL }} 7 | -------------------------------------------------------------------------------- /static/images/logo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/logo/favicon.ico -------------------------------------------------------------------------------- /static/images/toc_icon_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/toc_icon_grey.png -------------------------------------------------------------------------------- /static/images/twitter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/twitter_icon.png -------------------------------------------------------------------------------- /static/images/wikimedia_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/wikimedia_logo.png -------------------------------------------------------------------------------- /themes/docsy/userguide/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/userguide/.DS_Store -------------------------------------------------------------------------------- /themes/docsy/userguide/.gitmodules: -------------------------------------------------------------------------------- 1 | 2 | [submodule "themes/docsy"] 3 | path = themes/docsy 4 | url = https://github.com/google/docsy 5 | -------------------------------------------------------------------------------- /assets/scss/_skin.scss: -------------------------------------------------------------------------------- 1 | $blue: #008080; 2 | $light-grey: #f7f7f7; 3 | $dark-grey: #303030; 4 | $medium-grey: #4c4c4c; 5 | $white: #ffffff; 6 | -------------------------------------------------------------------------------- /content/en/docs/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | linkTitle: MicroShift Documentation 3 | title: Documentation 4 | sitemap: 5 | priority: 1.0 6 | --- 7 | -------------------------------------------------------------------------------- /themes/docsy/assets/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/icons/logo.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | *.js @twbs/js-review 2 | *.css @twbs/css-review 3 | *.scss @twbs/css-review 4 | -------------------------------------------------------------------------------- /themes/docsy/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/images/screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "devDependencies": { 4 | "autoprefixer": "^9.8.4", 5 | "postcss-cli": "^7.1.1" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/images/logo/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/logo/favicon-16x16.png -------------------------------------------------------------------------------- /static/images/logo/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/logo/favicon-32x32.png -------------------------------------------------------------------------------- /static/images/logo/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/logo/mstile-150x150.png -------------------------------------------------------------------------------- /themes/docsy/layouts/partials/hooks/body-end.html: -------------------------------------------------------------------------------- 1 | {{ with .Site.Params.algolia_docsearch }} 2 | 3 | {{ end }} -------------------------------------------------------------------------------- /static/fonts/MaterialIcons-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/fonts/MaterialIcons-Regular.eot -------------------------------------------------------------------------------- /static/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/fonts/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/images/logo/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/logo/apple-touch-icon.png -------------------------------------------------------------------------------- /static/images/microshift_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/microshift_logo_white.png -------------------------------------------------------------------------------- /themes/docsy/assets/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- 1 | // Breadcrumb 2 | 3 | .breadcrumb { 4 | background: none; 5 | padding-left: 0; 6 | padding-top: 0; 7 | } -------------------------------------------------------------------------------- /themes/docsy/assets/scss/blocks/_blocks.scss: -------------------------------------------------------------------------------- 1 | @import "cover"; 2 | 3 | .td-bg-arrow { 4 | &-wrapper { 5 | position: relative; 6 | } 7 | } -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.min.js 2 | **/dist/ 3 | **/vendor/ 4 | /_gh_pages/ 5 | /js/coverage/ 6 | /site/static/sw.js 7 | -------------------------------------------------------------------------------- /themes/docsy/layouts/partials/hooks/head-end.html: -------------------------------------------------------------------------------- 1 | {{ with .Site.Params.algolia_docsearch }} 2 | 3 | {{ end }} -------------------------------------------------------------------------------- /content/en/docs/examples/manifests/klusterlet-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: open-cluster-management-agent 5 | -------------------------------------------------------------------------------- /content/en/images/remote-ssh-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/content/en/images/remote-ssh-dropdown.png -------------------------------------------------------------------------------- /content/en/images/vscode-remote-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/content/en/images/vscode-remote-button.png -------------------------------------------------------------------------------- /static/fonts/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/fonts/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/shortcodes/year.html: -------------------------------------------------------------------------------- 1 | {{- /* 2 | Output the current year 3 | */ -}} 4 | 5 | {{- now.Format "2006" -}} 6 | -------------------------------------------------------------------------------- /themes/docsy/static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/favicon.ico -------------------------------------------------------------------------------- /themes/docsy/static/favicons/tile70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/tile70x70.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/shortcodes/docsref.html: -------------------------------------------------------------------------------- 1 | {{- relref . ((printf "docs/%s%s" $.Site.Params.docs_version (.Get 0)) | relURL) -}} 2 | -------------------------------------------------------------------------------- /themes/docsy/static/favicons/favicon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/favicon-256.png -------------------------------------------------------------------------------- /themes/docsy/static/favicons/pwa-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/pwa-192x192.png -------------------------------------------------------------------------------- /themes/docsy/static/favicons/pwa-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/pwa-512x512.png -------------------------------------------------------------------------------- /themes/docsy/static/favicons/tile150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/tile150x150.png -------------------------------------------------------------------------------- /themes/docsy/static/favicons/tile310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/tile310x150.png -------------------------------------------------------------------------------- /themes/docsy/static/favicons/tile310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/tile310x310.png -------------------------------------------------------------------------------- /themes/docsy/userguide/assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Add styles or override variables from the theme here. 3 | */ 4 | 5 | $secondary: #D95040; 6 | -------------------------------------------------------------------------------- /themes/docsy/userguide/static/images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/userguide/static/images/no.png -------------------------------------------------------------------------------- /themes/docsy/userguide/static/images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/userguide/static/images/yes.png -------------------------------------------------------------------------------- /content/en/_common-resources/images/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/content/en/_common-resources/images/stars.png -------------------------------------------------------------------------------- /static/css/images/Ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/css/images/Ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /static/images/logo/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/logo/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/images/logo/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/logo/android-chrome-512x512.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /themes/docsy/static/favicons/android-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/android-36x36.png -------------------------------------------------------------------------------- /themes/docsy/static/favicons/android-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/android-48x48.png -------------------------------------------------------------------------------- /themes/docsy/static/favicons/android-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/android-72x72.png -------------------------------------------------------------------------------- /themes/docsy/static/favicons/android-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/android-96x96.png -------------------------------------------------------------------------------- /themes/docsy/static/favicons/favicon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/favicon-1024.png -------------------------------------------------------------------------------- /themes/docsy/static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /themes/docsy/static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /themes/docsy/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /themes/docsy/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /themes/docsy/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /themes/docsy/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /themes/docsy/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /themes/docsy/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /themes/docsy/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /themes/docsy/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /themes/docsy/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /layouts/shortcodes/heading.html: -------------------------------------------------------------------------------- 1 | 2 | {{- $heading := .Get 0 -}} 3 | {{- $heading := printf "%s_heading" $heading -}} 4 | {{- T $heading | safeHTML -}} 5 | -------------------------------------------------------------------------------- /themes/docsy/layouts/partials/reading-time.html: -------------------------------------------------------------------------------- 1 |

    {{ .ReadingTime }} {{ T "post_reading_time" }}

    2 | -------------------------------------------------------------------------------- /themes/docsy/static/favicons/android-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/android-144x144.png -------------------------------------------------------------------------------- /themes/docsy/static/favicons/android-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/android-192x192.png -------------------------------------------------------------------------------- /themes/docsy/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /themes/docsy/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /themes/docsy/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /themes/docsy/userguide/static/images/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/userguide/static/images/feedback.png -------------------------------------------------------------------------------- /layouts/shortcodes/note.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /layouts/shortcodes/kat-button: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /static/js/README.md: -------------------------------------------------------------------------------- 1 | # NOTE 2 | 3 | 4 | This directory contains scripts files referenced by different sections of 5 | the website. Please use caution when moving/renaming them. 6 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/content/docs/4.6/examples/navbar-static/navbar-top.css: -------------------------------------------------------------------------------- 1 | /* Show it's not fixed to the top */ 2 | body { 3 | min-height: 75rem; 4 | } 5 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/content/docs/4.6/examples/navbars/navbar.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-bottom: 20px; 3 | } 4 | 5 | .navbar { 6 | margin-bottom: 20px; 7 | } 8 | -------------------------------------------------------------------------------- /content/en/_common-resources/images/microshift_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/content/en/_common-resources/images/microshift_logo.png -------------------------------------------------------------------------------- /layouts/shortcodes/caution.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /layouts/shortcodes/warning.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/nuget/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/nuget/bootstrap.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/content/docs/_index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: redirect 3 | sitemap_exclude: true 4 | redirect: "/docs/4.6/getting-started/introduction/" 5 | --- 6 | -------------------------------------------------------------------------------- /themes/docsy/static/favicons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/static/favicons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /themes/docsy/userguide/content/en/featured-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/userguide/content/en/featured-background.jpg -------------------------------------------------------------------------------- /themes/docsy/userguide/static/images/version-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/userguide/static/images/version-banner.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/content/docs/4.6/_index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: redirect 3 | sitemap_exclude: true 4 | redirect: "/docs/4.6/getting-started/introduction/" 5 | --- 6 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/content/docs/4.6/examples/checkout/form-validation.css: -------------------------------------------------------------------------------- 1 | .container { 2 | max-width: 960px; 3 | } 4 | 5 | .lh-condensed { line-height: 1.25; } 6 | -------------------------------------------------------------------------------- /content/en/_common-resources/images/microshift_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/content/en/_common-resources/images/microshift_logo_white.png -------------------------------------------------------------------------------- /layouts/partials/docs/thirdparty-disclaimer.html: -------------------------------------------------------------------------------- 1 |
    2 | {{ T "thirdparty_message_disclaimer" | safeHTML }} 3 |
    4 | -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/partials/ads.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /themes/docsy/userguide/content/en/about/featured-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/userguide/content/en/about/featured-background.jpg -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /static/images/jquery-ui/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/static/images/jquery-ui/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | text-align: center; 5 | width: $fa-fw-width; 6 | } 7 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/content/docs/4.6/examples/navbar-fixed/navbar-top-fixed.css: -------------------------------------------------------------------------------- 1 | /* Show it is fixed to the top */ 2 | body { 3 | min-height: 75rem; 4 | padding-top: 4.5rem; 5 | } 6 | -------------------------------------------------------------------------------- /themes/docsy/layouts/partials/toc.html: -------------------------------------------------------------------------------- 1 | {{ if not .Params.notoc }} 2 | {{ with .TableOfContents }} 3 | {{ if ge (len .) 200 }} 4 |
    {{ . }}
    5 | {{ end }} 6 | {{ end }} 7 | {{ end }} -------------------------------------------------------------------------------- /layouts/partials/toc.html: -------------------------------------------------------------------------------- 1 | {{ partial "page-meta-links.html" . }} 2 | {{ if not .Params.notoc }} 3 | {{ with .TableOfContents }} 4 | {{ if ge (len .) 100 }} 5 | {{ . }} 6 | {{ end }} 7 | {{ end }} 8 | {{ end }} 9 | -------------------------------------------------------------------------------- /layouts/shortcodes/deprecationfilewarning.html: -------------------------------------------------------------------------------- 1 |
    2 |

    {{ T "deprecation_file_warning" }}

    {{ .Inner | markdownify }}
    3 |
    4 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _output/* 2 | /microshift 3 | bin 4 | .idea/ 5 | .vscode/ 6 | .vagrant/ 7 | Vagrantfile 8 | sshfile 9 | .hugo_build.lock 10 | resources/ 11 | public/* 12 | .hugo/ 13 | hugo 14 | node_modules/ 15 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only; } 5 | .sr-only-focusable { @include sr-only-focusable; } 6 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/content/docs/4.6/examples/jumbotron/jumbotron.css: -------------------------------------------------------------------------------- 1 | /* Move down content because we have a fixed navbar that is 3.5rem tall */ 2 | body { 3 | padding-top: 3.5rem; 4 | } 5 | -------------------------------------------------------------------------------- /content/en/docs/user-documentation/how-tos/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "HowTos" 3 | weight: 90 4 | description: Solving common use cases with MicroShift. 5 | card: 6 | name: user-documentation 7 | weight: 90 8 | --- 9 | -------------------------------------------------------------------------------- /layouts/shortcodes/hint.html: -------------------------------------------------------------------------------- 1 |
    2 |

    {{ .Get "title" | default "Hint" }}

    3 |

    {{ printf "%s" .Inner | markdownify }}

    4 |
    5 | -------------------------------------------------------------------------------- /layouts/shortcodes/tip.html: -------------------------------------------------------------------------------- 1 |
    2 |

    {{ .Get "title" | default "Note" }}

    3 |

    {{ printf "%s" .Inner | markdownify }}

    4 |
    5 | -------------------------------------------------------------------------------- /themes/docsy/assets/scss/_styles_project.scss: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Nothing defined here. The Hugo project that uses this theme can override Bootstrap by adding a file to: 4 | 5 | assets/scss/_styles_project.scss 6 | 7 | */ 8 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/utilities/_overflow.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $value in $overflows { 4 | .overflow-#{$value} { overflow: $value !important; } 5 | } 6 | -------------------------------------------------------------------------------- /themes/docsy/layouts/shortcodes/pageinfo.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 | {{ $color := .Get "color" | default "primary" }} 3 |
    4 | {{ .Inner }} 5 |
    6 | -------------------------------------------------------------------------------- /content/en/docs/developer-documentation/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Developer Documentation" 3 | draft: false 4 | weight: 60 5 | main_menu: true 6 | description: Building and running MicroShift for local development 7 | --- 8 | -------------------------------------------------------------------------------- /layouts/shortcodes/danger.html: -------------------------------------------------------------------------------- 1 |
    2 |

    {{ .Get "title" | default "Danger" }}

    3 |

    {{ printf "%s" .Inner | markdownify }}

    4 |
    5 | -------------------------------------------------------------------------------- /layouts/shortcodes/error.html: -------------------------------------------------------------------------------- 1 |
    2 |

    {{ .Get "title" | default "Error" }}

    3 |

    {{ printf "%s" .Inner | markdownify }}

    4 |
    5 | -------------------------------------------------------------------------------- /themes/docsy/userguide/content/en/docs/Adding content/Shortcodes/spruce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/userguide/content/en/docs/Adding content/Shortcodes/spruce.jpg -------------------------------------------------------------------------------- /themes/docsy/assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Nothing defined here. The Hugo project that uses this theme can override theme variables by adding a file to: 4 | 5 | assets/scss/_variables_project.scss 6 | 7 | */ 8 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/otfs/Font Awesome 5 Free-Solid-900.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/otfs/Font Awesome 5 Free-Solid-900.otf -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/utilities/_interactions.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $value in $user-selects { 4 | .user-select-#{$value} { user-select: $value !important; } 5 | } 6 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/content/docs/4.6/examples/starter-template/starter-template.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 5rem; 3 | } 4 | .starter-template { 5 | padding: 3rem 1.5rem; 6 | text-align: center; 7 | } 8 | -------------------------------------------------------------------------------- /layouts/shortcodes/attention.html: -------------------------------------------------------------------------------- 1 |
    2 |

    {{ .Get "title" | default "Attention" }}

    3 |

    {{ printf "%s" .Inner | markdownify }}

    4 |
    5 | -------------------------------------------------------------------------------- /layouts/shortcodes/important.html: -------------------------------------------------------------------------------- 1 |
    2 |

    {{ .Get "title" | default "Important" }}

    3 |

    {{ printf "%s" .Inner | markdownify }}

    4 |
    5 | -------------------------------------------------------------------------------- /themes/docsy/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | public/ 3 | resources/ 4 | node_modules/ 5 | tech-doc-hugo 6 | 7 | # vim temporary files 8 | *~ 9 | *.sw? 10 | 11 | # system files 12 | .DS_Store 13 | 14 | # IDE files 15 | .idea 16 | .vscode 17 | -------------------------------------------------------------------------------- /themes/docsy/assets/scss/_blog.scss: -------------------------------------------------------------------------------- 1 | // Blog related styles. 2 | 3 | .td-blog { 4 | .td-rss-button { 5 | position: absolute; 6 | top: 5.5rem; 7 | right: 1rem; 8 | z-index: 22; 9 | } 10 | } -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/otfs/Font Awesome 5 Brands-Regular-400.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/otfs/Font Awesome 5 Brands-Regular-400.otf -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/otfs/Font Awesome 5 Free-Regular-400.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/otfs/Font Awesome 5 Free-Regular-400.otf -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | @include deprecate("`size()`", "v4.3.0", "v5"); 7 | } 8 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Screenreaders 3 | // 4 | 5 | .sr-only { 6 | @include sr-only(); 7 | } 8 | 9 | .sr-only-focusable { 10 | @include sr-only-focusable(); 11 | } 12 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/album.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/blog.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/cover.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/grid.png -------------------------------------------------------------------------------- /themes/docsy/.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see https://editorconfig.org 2 | 3 | root = true 4 | 5 | # All files 6 | [*] 7 | charset = utf-8 8 | end_of_line = lf 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true 11 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | text-align: center; 5 | width: $fa-fw-width; 6 | } 7 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/bootstrap-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/bootstrap-icons.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/bootstrap-themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/bootstrap-themes.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/blog@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/blog@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/grid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/grid@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbars.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/pricing.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/product.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/sign-in.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/favicon.ico -------------------------------------------------------------------------------- /themes/docsy/userguide/content/en/docs/Adding content/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Content and Customization" 3 | linkTitle: "Content and Customization" 4 | weight: 3 5 | description: > 6 | How to add content to and customize your Docsy site. 7 | --- 8 | -------------------------------------------------------------------------------- /content/en/docs/user-documentation/networking/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Networking" 3 | weight: 80 4 | description: Understanding and configuring networking in MicroShift. 5 | card: 6 | name: networking 7 | weight: 80 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only; } 5 | .sr-only-focusable { @include sr-only-focusable; } 6 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled() { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/brand/bootstrap-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/brand/bootstrap-social.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/bootstrap-icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/bootstrap-icons@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/bootstrap-themes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/bootstrap-themes@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/album@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/album@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/carousel.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/checkout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/checkout.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/cover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/cover@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/dashboard.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/jumbotron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/jumbotron.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbars@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/offcanvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/offcanvas.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/pricing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/pricing@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/product@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/product@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/sign-in@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/sign-in@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/.gitattributes: -------------------------------------------------------------------------------- 1 | # Enforce Unix newlines 2 | * text=auto eol=lf 3 | 4 | # Don't diff or textually merge source maps 5 | *.map binary 6 | 7 | bootstrap.css linguist-vendored=false 8 | bootstrap.js linguist-vendored=false 9 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/carousel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/carousel@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/checkout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/checkout@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/dashboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/dashboard@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/jumbotron@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/jumbotron@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbar-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbar-fixed.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/offcanvas@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/offcanvas@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/content/docs/4.6/examples/offcanvas/offcanvas.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | 'use strict' 3 | 4 | $('[data-toggle="offcanvas"]').on('click', function () { 5 | $('.offcanvas-collapse').toggleClass('open') 6 | }) 7 | }) 8 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/brand/bootstrap-social-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/brand/bootstrap-social-logo.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/bootstrap-themes-collage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/bootstrap-themes-collage.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/floating-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/floating-labels.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbar-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbar-bottom.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbar-fixed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbar-fixed@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbar-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbar-static.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/sticky-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/sticky-footer.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/mstile-310x310.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbar-bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbar-bottom@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbar-static@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/navbar-static@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/starter-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/starter-template.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/sticky-footer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/sticky-footer@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /themes/docsy/userguide/content/en/community/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Community 3 | menu: 4 | main: 5 | weight: 40 6 | pre: 7 | --- 8 | 9 | 10 | -------------------------------------------------------------------------------- /content/en/docs/examples/manifests/klusterlet-kubeconfighub.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | data: 3 | kubeconfig: {{ .kubeconfig }} 4 | kind: Secret 5 | metadata: 6 | name: bootstrap-hub-kubeconfig 7 | namespace: open-cluster-management-agent 8 | type: Opaque 9 | 10 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/bootstrap-themes-collage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/bootstrap-themes-collage@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/floating-labels@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/floating-labels@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/starter-template@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/starter-template@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/sticky-footer-navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/sticky-footer-navbar.png -------------------------------------------------------------------------------- /content/en/docs/examples/manifests/klusterlet-service-account.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | imagePullSecrets: 3 | - name: open-cluster-management-image-pull-credentials 4 | kind: ServiceAccount 5 | metadata: 6 | name: klusterlet 7 | namespace: open-cluster-management-agent 8 | 9 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /layouts/partials/docs/content-page.html: -------------------------------------------------------------------------------- 1 | {{ if not .page.Params.notitle }} 2 |

    {{ .page.Title }}

    3 | {{ $desc := .page.Description }} 4 | {{ with .page.Params.description }}
    {{ $desc | markdownify }}
    {{ end }} 5 | {{ end }} 6 | {{ .page.Content }} 7 | -------------------------------------------------------------------------------- /layouts/shortcodes/link.html: -------------------------------------------------------------------------------- 1 | {{- $text := .Get "text" -}} 2 | {{- $url := .Get "url" -}} 3 | {{- $target := .Get "target" | default "_blank" -}} 4 | {{- $class := .Get "class" -}} 5 | {{ $text }} 6 | -------------------------------------------------------------------------------- /static/images/copycode.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/mixins/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Visibility 4 | 5 | @mixin invisible($visibility) { 6 | visibility: $visibility !important; 7 | @include deprecate("`invisible()`", "v4.3.0", "v5"); 8 | } 9 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/sticky-footer-navbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/examples/sticky-footer-navbar@2x.png -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/attribution.js: -------------------------------------------------------------------------------- 1 | console.log(`Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 2 | License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 3 | `) -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/adobe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /themes/docsy/layouts/_default/terms.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 |
    3 |
    4 |

    {{ .Title }}

    5 | {{ partial "taxonomy_terms_cloud.html" (dict "context" . "taxo" ( lower .Title ) ) }} 6 |
    7 |
    8 | {{ end }} -------------------------------------------------------------------------------- /themes/docsy/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "assets/vendor/bootstrap"] 2 | path = assets/vendor/bootstrap 3 | url = https://github.com/twbs/bootstrap.git 4 | [submodule "assets/vendor/Font-Awesome"] 5 | path = assets/vendor/Font-Awesome 6 | url = https://github.com/FortAwesome/Font-Awesome.git 7 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microshift-io/microshift-documentation/HEAD/themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-svg-core/attribution.js: -------------------------------------------------------------------------------- 1 | console.log(`Font Awesome Free 1.2.34 by @fontawesome - https://fontawesome.com 2 | License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 3 | `) -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/free-brands-svg-icons/attribution.js: -------------------------------------------------------------------------------- 1 | console.log(`Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 2 | License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 3 | `) -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/free-regular-svg-icons/attribution.js: -------------------------------------------------------------------------------- 1 | console.log(`Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 2 | License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 3 | `) -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/free-solid-svg-icons/attribution.js: -------------------------------------------------------------------------------- 1 | console.log(`Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 2 | License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 3 | `) -------------------------------------------------------------------------------- /archetypes/concepts.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | content_type: concept 4 | --- 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | ## {{% heading "whatsnext" %}} 13 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-common-types/attribution.js: -------------------------------------------------------------------------------- 1 | console.log(`Font Awesome Free 0.2.34 by @fontawesome - https://fontawesome.com 2 | License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 3 | `) -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/js/tests/integration/bundle.js: -------------------------------------------------------------------------------- 1 | import 'popper.js' 2 | import $ from 'jquery' 3 | import bootstrap from '../../../dist/js/bootstrap' 4 | 5 | $(() => { 6 | $('#resultUID').text(bootstrap.Util.getUID('bs')) 7 | $('[data-toggle="tooltip"]').tooltip() 8 | }) 9 | -------------------------------------------------------------------------------- /themes/docsy/layouts/404.html: -------------------------------------------------------------------------------- 1 | {{ define "main"}} 2 |
    3 |
    4 |

    Not found

    5 |

    Oops! This page doesn't exist. Try going back to our home page.

    6 |
    7 |
    8 | {{ end }} 9 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/scss/v4-shims.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | @import 'shims'; 7 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/utilities/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // 4 | // Visibility utilities 5 | // 6 | 7 | .visible { 8 | visibility: visible !important; 9 | } 10 | 11 | .invisible { 12 | visibility: hidden !important; 13 | } 14 | -------------------------------------------------------------------------------- /themes/docsy/layouts/partials/print/toc-li.html: -------------------------------------------------------------------------------- 1 | {{ $tpl := printf "print/toc-li-%s.html" .Page.Type }} 2 | {{ if templates.Exists (printf "partials/%s" $tpl) }} 3 | {{ partial $tpl . }} 4 | {{ else -}} 5 |
  • {{ .sid}}: {{ .Page.Title }}
  • 6 | {{ end }} 7 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/.browserslistrc: -------------------------------------------------------------------------------- 1 | # https://github.com/browserslist/browserslist#readme 2 | 3 | >= 1% 4 | last 1 major version 5 | not dead 6 | Chrome >= 45 7 | Firefox >= 38 8 | Edge >= 12 9 | Explorer >= 10 10 | iOS >= 9 11 | Safari >= 9 12 | Android >= 4.4 13 | Opera >= 30 14 | -------------------------------------------------------------------------------- /themes/docsy/assets/scss/_buttons.scss: -------------------------------------------------------------------------------- 1 | // Buttons 2 | 3 | @if $enable-rounded { 4 | .btn { 5 | border-radius: 1rem; 6 | 7 | &-lg { 8 | border-radius: 2rem; 9 | } 10 | 11 | &-sm { 12 | border-radius: 1rem; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/less/v4-shims.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import '_variables.less'; 6 | @import '_shims.less'; 7 | -------------------------------------------------------------------------------- /static/css/README.md: -------------------------------------------------------------------------------- 1 | # NOTE 2 | 3 | This directory contains stylesheet files referenced by different sections of 4 | the website. Please use caution when moving/renaming them. 5 | 6 | ## Style Sheets used by API reference 7 | 8 | - bootstrap-4.3.1.min.css 9 | - fontawesome-4.7.0.min.css 10 | - style_apiref.css 11 | -------------------------------------------------------------------------------- /static/images/logo/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #00aba9 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/assets/scss/_browser-bugs.scss: -------------------------------------------------------------------------------- 1 | // Wall of Browser Bugs 2 | // 3 | // Better display for the responsive table on the Wall of Browser Bugs. 4 | 5 | .bd-browser-bugs { 6 | td p { 7 | margin-bottom: 0; 8 | } 9 | th:first-child { 10 | width: 18%; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /themes/docsy/assets/scss/section-index.scss: -------------------------------------------------------------------------------- 1 | .section-index { 2 | 3 | .entry { 4 | padding: .75rem; 5 | } 6 | 7 | h5 { 8 | margin-bottom: 0; 9 | 10 | a { 11 | font-weight: 700; 12 | } 13 | } 14 | 15 | p { 16 | margin-top: 0; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | 13 | [*.md] 14 | trim_trailing_whitespace = false 15 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/build/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": false, 4 | "node": true 5 | }, 6 | "parserOptions": { 7 | "sourceType": "script" 8 | }, 9 | "extends": "../.eslintrc.json", 10 | "rules": { 11 | "no-console": "off", 12 | "strict": "error" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/utilities/_shadows.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .shadow-sm { box-shadow: $box-shadow-sm !important; } 4 | .shadow { box-shadow: $box-shadow !important; } 5 | .shadow-lg { box-shadow: $box-shadow-lg !important; } 6 | .shadow-none { box-shadow: none !important; } 7 | -------------------------------------------------------------------------------- /themes/docsy/layouts/shortcodes/readfile.md: -------------------------------------------------------------------------------- 1 | {{$file := .Get "file"}} 2 | {{- if eq (.Get "markdown") "true" -}} 3 | {{- $file | readFile | markdownify -}} 4 | {{- else if (.Get "highlight") -}} 5 | {{- highlight ($file | readFile) (.Get "highlight") "" -}} 6 | {{- else -}} 7 | {{ $file | readFile | safeHTML }} 8 | {{- end -}} 9 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/scss/v4-shims.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | @import 'shims'; 7 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/assets/scss/_anchor.scss: -------------------------------------------------------------------------------- 1 | .anchorjs-link { 2 | font-weight: 400; 3 | color: rgba($link-color, .5); 4 | @include transition(color .15s ease-in-out, opacity .15s ease-in-out); 5 | 6 | &:focus, 7 | &:hover { 8 | color: $link-color; 9 | text-decoration: none; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/partials/callout-info-prefersreducedmotion.md: -------------------------------------------------------------------------------- 1 | The animation effect of this component is dependent on the `prefers-reduced-motion` media query. See the [reduced motion section of our accessibility documentation](/docs/{{ .Site.Params.docs_version }}/getting-started/accessibility/#reduced-motion). 2 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/.babelrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | [ 4 | '@babel/preset-env', 5 | { 6 | loose: true, 7 | bugfixes: true, 8 | modules: false 9 | } 10 | ] 11 | ], 12 | env: { 13 | test: { 14 | plugins: [ 'istanbul' ] 15 | } 16 | } 17 | }; 18 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/shortcodes/callout.html: -------------------------------------------------------------------------------- 1 | {{- /* 2 | Usage: `callout "type"`, 3 | where type is one of info (default), danger, warning 4 | */ -}} 5 | 6 | {{- $css_class := .Get 0 | default "info" -}} 7 | 8 |
    9 | {{ .Inner | markdownify }} 10 |
    11 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/less/v4-shims.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import '_variables.less'; 6 | @import '_shims.less'; 7 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/static/docs/4.6/assets/img/favicons/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #563d7c 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @mixin alert-variant($background, $border, $color) { 2 | color: $color; 3 | @include gradient-bg($background); 4 | border-color: $border; 5 | 6 | hr { 7 | border-top-color: darken($border, 5%); 8 | } 9 | 10 | .alert-link { 11 | color: darken($color, 10%); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /themes/docsy/userguide/content/en/docs/Best practices/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Best Practices" 3 | weight: 9 4 | description: > 5 | Optional guidance and recommendations about organizing, authoring, and managing your technical documentation. 6 | --- 7 | 8 | Use this section to learn about some of the best practices around creating technical documentation with Docsy. 9 | -------------------------------------------------------------------------------- /layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- 1 |
    2 | {{.Inner}} 3 |
    4 | 5 | 11 | -------------------------------------------------------------------------------- /layouts/shortcodes/table.html: -------------------------------------------------------------------------------- 1 | {{ $hasCaption := isset .Params "caption" }} 2 | {{ $caption := .Get "caption" }} 3 | {{ $captionEl := printf "" $caption }} 4 | {{ $table := .Inner | markdownify }} 5 | {{ $html := cond $hasCaption ($table | replaceRE "
    %s
    " $captionEl) $table | safeHTML }} 6 | {{ $html }} 7 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/partials/analytics.html: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /themes/docsy/static/css/shortcodes/cards-pane.css: -------------------------------------------------------------------------------- 1 | .card-deck { 2 | max-width: 83%; 3 | } 4 | 5 | .card { 6 | max-width: 80%; 7 | } 8 | 9 | .card-body.code { 10 | background-color: #f8f9fa; 11 | padding: 0 0 0 1ex; 12 | } 13 | 14 | .card-body pre { 15 | margin: 0; 16 | padding: 0 1rem 1rem 1rem; 17 | } 18 | 19 | .card .highlight { 20 | border: none; 21 | } 22 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | I understand that: 4 | 5 | - [ ] I'm submitting this PR for reference only. It shows an example of what I'd like to see changed but 6 | I understand that it will not be merged and I will not be listed as a contributor on this project. 7 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/content/docs/4.6/examples/pricing/pricing.css: -------------------------------------------------------------------------------- 1 | html { 2 | font-size: 14px; 3 | } 4 | @media (min-width: 768px) { 5 | html { 6 | font-size: 16px; 7 | } 8 | } 9 | 10 | .container { 11 | max-width: 960px; 12 | } 13 | 14 | .pricing-header { 15 | max-width: 700px; 16 | } 17 | 18 | .card-deck .card { 19 | min-width: 220px; 20 | } 21 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/data/theme-colors.yml: -------------------------------------------------------------------------------- 1 | - name: primary 2 | hex: "#007bff" 3 | - name: secondary 4 | hex: "#868e96" 5 | - name: success 6 | hex: "#28a745" 7 | - name: danger 8 | hex: "#dc3545" 9 | - name: warning 10 | hex: "#ffc107" 11 | - name: info 12 | hex: "#17a2b8" 13 | - name: light 14 | hex: "#f8f9fa" 15 | - name: dark 16 | hex: "#343a40" 17 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/content/docs/4.6/examples/sticky-footer/sticky-footer.css: -------------------------------------------------------------------------------- 1 | /* Custom page CSS 2 | -------------------------------------------------- */ 3 | /* Not required for template or sticky footer method. */ 4 | 5 | .container { 6 | width: auto; 7 | max-width: 680px; 8 | padding: 0 15px; 9 | } 10 | 11 | .footer { 12 | background-color: #f5f5f5; 13 | } 14 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/data/grays.yml: -------------------------------------------------------------------------------- 1 | - name: 100 2 | hex: "#f8f9fa" 3 | - name: 200 4 | hex: "#e9ecef" 5 | - name: 300 6 | hex: "#dee2e6" 7 | - name: 400 8 | hex: "#ced4da" 9 | - name: 500 10 | hex: "#adb5bd" 11 | - name: 600 12 | hex: "#6c757d" 13 | - name: 700 14 | hex: "#495057" 15 | - name: 800 16 | hex: "#343a40" 17 | - name: 900 18 | hex: "#212529" 19 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/less/_core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}, .fas, .far, .fal, .fad, .fab { 5 | -moz-osx-font-smoothing: grayscale; 6 | -webkit-font-smoothing: antialiased; 7 | display: inline-block; 8 | font-style: normal; 9 | font-variant: normal; 10 | text-rendering: auto; 11 | line-height: 1; 12 | } 13 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/unsplash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/partials/callout-info-npm-starter.md: -------------------------------------------------------------------------------- 1 | **Get started with Bootstrap via npm with our starter project!** Head to the [twbs/bootstrap-npm-starter](https://github.com/twbs/bootstrap-npm-starter) template repository to see how to build and customize Bootstrap in your own npm project. Includes Sass compiler, Autoprefixer, Stylelint, PurgeCSS, and Bootstrap Icons. 2 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | @include transition($transition-fade); 3 | 4 | &:not(.show) { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | .collapse { 10 | &:not(.show) { 11 | display: none; 12 | } 13 | } 14 | 15 | .collapsing { 16 | position: relative; 17 | height: 0; 18 | overflow: hidden; 19 | @include transition($transition-collapse); 20 | } 21 | -------------------------------------------------------------------------------- /themes/docsy/layouts/partials/page-meta-lastmod.html: -------------------------------------------------------------------------------- 1 |
    2 | {{ if and (.GitInfo) (.Site.Params.github_repo) }} 3 | {{ T "post_last_mod"}} 4 | {{ .Lastmod.Format .Site.Params.time_format_default }} 5 | {{ with .GitInfo }}: {{ .Subject }} ({{ .AbbreviatedHash }}){{ end }} 6 | {{ end }} 7 |
    8 | -------------------------------------------------------------------------------- /content/en/docs/user-documentation/disconnected.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Disconnected deployment 3 | tags: 4 | - disconnected 5 | - pre-load 6 | - tarball 7 | draft: true 8 | weight: 2 9 | card: 10 | name: user-documentation 11 | weight: 2 12 | description: MicroShift can run without internet connectivity. 13 | --- 14 | 15 | ## WIP Content coming soon 16 | 17 | Pre-load MicroShift image tarball into CRI-O 18 | -------------------------------------------------------------------------------- /layouts/shortcodes/thirdparty-content.html: -------------------------------------------------------------------------------- 1 | {{- $single := .Get "single" | default "false" -}} 2 | 10 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/assets/scss/_placeholder-img.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Placeholder svg used in the docs. 3 | // 4 | 5 | // Remember to update `site/_layouts/examples.html` too if this changes! 6 | 7 | .bd-placeholder-img { 8 | @include font-size(1.125rem); 9 | text-anchor: middle; 10 | user-select: none; 11 | } 12 | 13 | .bd-placeholder-img-lg { 14 | @include font-size(3.5rem); 15 | } 16 | -------------------------------------------------------------------------------- /themes/docsy/layouts/partials/outputformat.html: -------------------------------------------------------------------------------- 1 | {{/* Return the current page outputformat */}} 2 | {{ $alts := newScratch }} 3 | {{ $format := "unknown" }} 4 | {{ range .AlternativeOutputFormats }} 5 | {{ $alts.Set .Name true }} 6 | {{ end }} 7 | {{ range .OutputFormats }} 8 | {{ if not ($alts.Get .Name) }} 9 | {{ $format = .Name }} 10 | {{ end }} 11 | {{ end }} 12 | {{ return $format }} 13 | -------------------------------------------------------------------------------- /content/en/docs/examples/manifests/kustomization.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: kustomize.config.k8s.io/v1beta1 2 | kind: Kustomization 3 | 4 | resources: 5 | - klusterlet-crd.yaml 6 | - klusterlet-namespace.yaml 7 | - klusterlet-service-account.yaml 8 | - klusterlet-kubeconfighub.yaml 9 | - klusterlet-dockerconfig.yaml 10 | - klusterlet-clusterrole.yaml 11 | - klusterlet-deployment.yaml 12 | - klusterlet.yaml 13 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/build/postcss.config.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = ctx => { 4 | return { 5 | map: ctx.file.dirname.includes('examples') ? 6 | false : 7 | { 8 | inline: false, 9 | annotation: true, 10 | sourcesContent: true 11 | }, 12 | plugins: { 13 | autoprefixer: { 14 | cascade: false 15 | } 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/assets/scss/_colors.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Docs color palette classes 3 | // 4 | 5 | @each $color, $value in $colors { 6 | .swatch-#{$color} { 7 | color: color-yiq($value); 8 | background-color: #{$value}; 9 | } 10 | } 11 | 12 | @each $color, $value in $grays { 13 | .swatch-#{$color} { 14 | color: color-yiq($value); 15 | background-color: #{$value}; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/mixins/_text-hide.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | @mixin text-hide($ignore-warning: false) { 3 | // stylelint-disable-next-line font-family-no-missing-generic-family-keyword 4 | font: 0/0 a; 5 | color: transparent; 6 | text-shadow: none; 7 | background-color: transparent; 8 | border: 0; 9 | 10 | @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning); 11 | } 12 | -------------------------------------------------------------------------------- /.github/workflows/broken-link-check.yml: -------------------------------------------------------------------------------- 1 | on: 2 | schedule: 3 | - cron: "0 0 * * *" # daily 4 | repository_dispatch: # run manually 5 | types: [check-link] 6 | # push: 7 | # ... 8 | 9 | name: Broken Link Check 10 | jobs: 11 | check: 12 | name: Broken Link Check 13 | runs-on: ubuntu-latest 14 | steps: 15 | - name: Broken Link Check 16 | uses: technote-space/broken-link-checker-action@v2.3.1 17 | -------------------------------------------------------------------------------- /content/en/docs/user-documentation/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "User Documentation" 3 | tags: 4 | - use 5 | - configure 6 | - deploy 7 | - access 8 | - disconnected 9 | - services 10 | - troubleshooting 11 | - how-to 12 | draft: false 13 | weight: 40 14 | description: After MicroShift is up and running, what's next? Follow the user documentation to explore. Here you'll find a section of `HowTos` to get you going. 15 | --- 16 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/unsplash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/less/_animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .@{fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 100% { 17 | transform: rotate(360deg); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/content/docs/4.6/examples/grid/grid.css: -------------------------------------------------------------------------------- 1 | .themed-grid-col { 2 | padding-top: 15px; 3 | padding-bottom: 15px; 4 | background-color: rgba(86, 61, 124, .15); 5 | border: 1px solid rgba(86, 61, 124, .2); 6 | } 7 | 8 | .themed-container { 9 | padding: 15px; 10 | margin-bottom: 30px; 11 | background-color: rgba(0, 123, 255, .15); 12 | border: 1px solid rgba(0, 123, 255, .2); 13 | } 14 | -------------------------------------------------------------------------------- /themes/docsy/layouts/shortcodes/alert.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 | {{ $color := .Get "color" | default "primary" }} 3 | 11 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/less/_core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}, .fas, .far, .fal, .fad, .fab { 5 | -moz-osx-font-smoothing: grayscale; 6 | -webkit-font-smoothing: antialiased; 7 | display: inline-block; 8 | font-style: normal; 9 | font-variant: normal; 10 | text-rendering: auto; 11 | line-height: 1; 12 | } 13 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/ice-cream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/static/css/shortcodes/tabbed-pane.css: -------------------------------------------------------------------------------- 1 | .td-content .highlight { 2 | margin: 0rem 0 2rem 0; 3 | } 4 | 5 | .tab-content .highlight { 6 | border: none; 7 | } 8 | 9 | .tab-content { 10 | margin: 0rem; 11 | max-width: 80%; 12 | } 13 | 14 | .tab-content pre { 15 | border-left: 1px solid rgba(0, 0, 0, 0.125); 16 | border-right: 1px solid rgba(0, 0, 0, 0.125); 17 | border-bottom: 1px solid rgba(0, 0, 0, 0.125); 18 | } 19 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .#{$fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 17 | 100% { 18 | transform: rotate(360deg); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/partials/icons/cloud-fill.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/partials/skippy.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | Skip to main content 4 | {{ if (eq .Page.Layout "docs") -}} 5 | Skip to docs navigation 6 | {{- end }} 7 |
    8 |
    9 | -------------------------------------------------------------------------------- /themes/docsy/layouts/partials/navbar-version-selector.html: -------------------------------------------------------------------------------- 1 | 4 | 9 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/less/_list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: (@fa-li-width * 5/4); 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .@{fa-css-prefix}-li { 13 | left: -@fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: @fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: $fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .#{$fa-css-prefix}-li { 13 | left: -$fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: $fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/mixins/_badge.scss: -------------------------------------------------------------------------------- 1 | @mixin badge-variant($bg) { 2 | color: color-yiq($bg); 3 | background-color: $bg; 4 | 5 | @at-root a#{&} { 6 | @include hover-focus() { 7 | color: color-yiq($bg); 8 | background-color: darken($bg, 10%); 9 | } 10 | 11 | &:focus, 12 | &.focus { 13 | outline: 0; 14 | box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /themes/docsy/layouts/partials/print/page-heading.html: -------------------------------------------------------------------------------- 1 | {{/* Use the title and description of the first page to begin the document */}} 2 | 3 | {{ $tpl := printf "print/page-heading-%s.html" .Page.Type }} 4 | {{ if templates.Exists (printf "partials/%s" $tpl) }} 5 | {{ partial $tpl . }} 6 | {{ else -}} 7 |

    {{ .Title }}

    8 | {{ with .Page.Params.description }}
    {{ . | markdownify }}
    {{ end }} 9 | {{ end }} 10 | -------------------------------------------------------------------------------- /themes/docsy/theme.toml: -------------------------------------------------------------------------------- 1 | name = "Docsy" 2 | license = "Apache 2.0" 3 | licenselink = "https://github.com/google/docsy/blob/master/LICENSE" 4 | description = "A Hugo theme for technical documentation sites" 5 | homepage = "https://docsy.dev" 6 | tags = ["documentation", "multilingual", "customizable", "responsive", "docs"] 7 | features = [] 8 | min_version = 0.53 9 | 10 | [author] 11 | name = "The Docsy Authors" 12 | homepage = "https://docsy.dev" 13 | -------------------------------------------------------------------------------- /themes/docsy/assets/scss/_pageinfo.scss: -------------------------------------------------------------------------------- 1 | .pageinfo { 2 | font-weight: $font-weight-medium; 3 | background: $gray-100; 4 | color: inherit; 5 | border-radius: 0; 6 | margin: 2rem; 7 | padding: 1.5rem; 8 | padding-bottom: 0.5rem; 9 | 10 | @each $color, $value in $theme-colors { 11 | &-#{$color} { 12 | 13 | border-style: solid; 14 | border-color: $value; 15 | } 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/layouts/shortcodes/swaggerui.html: -------------------------------------------------------------------------------- 1 | {{ $original := .Get "src" }} 2 |
    3 | 16 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/hockey-puck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/partials/icons/menu.svg: -------------------------------------------------------------------------------- 1 | {{ with .title }}{{ . }}{{ else }}Menu{{ end }} -------------------------------------------------------------------------------- /themes/docsy/.s3deploy.yml: -------------------------------------------------------------------------------- 1 | routes: 2 | - route: "^.+\\.(js|css|svg|ttf)$" 3 | # cache static assets for 20 years 4 | headers: 5 | Cache-Control: "max-age=630720000, no-transform, public" 6 | gzip: true 7 | - route: "^.+\\.(png|jpg)$" 8 | headers: 9 | Cache-Control: "max-age=630720000, no-transform, public" 10 | gzip: true 11 | - route: "^.+\\.(html|xml|json)$" 12 | gzip: true 13 | 14 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/robots.txt: -------------------------------------------------------------------------------- 1 | # www.robotstxt.org 2 | 3 | {{- $isProduction := eq hugo.Environment "production" -}} 4 | {{- $isNetlify := eq (getenv "NETLIFY") "true" -}} 5 | {{- $allowCrawling := and (not $isNetlify) $isProduction -}} 6 | 7 | {{ if $allowCrawling }} 8 | # Allow crawling of all content 9 | {{- end }} 10 | User-agent: * 11 | Disallow:{{ if not $allowCrawling }} /{{ end }} 12 | Sitemap: {{ "/sitemap.xml" | absURL }} 13 | -------------------------------------------------------------------------------- /layouts/partials/deprecation-warning.html: -------------------------------------------------------------------------------- 1 | {{ if (.Site.Param "deprecated") }} 2 |
    3 |
    4 |

    5 | {{ T "deprecation_title" }} {{ .Param "version" }} 6 |

    7 |

    MicroShift {{ .Param "version" }} {{ T "deprecation_warning" }} 8 | {{ T "latest_version" }} 9 |

    10 |
    11 |
    12 | {{ end }} 13 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/bread-slice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/location-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/map-marker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/layouts/shortcodes/blocks/link-down.html: -------------------------------------------------------------------------------- 1 | {{ with .Parent }} 2 | {{ $id := $.Get "id" | default (printf "td-block-%d" ( add .Ordinal 1 )) }} 3 | {{ $color := $.Get "color" | default "blue" }} 4 | 5 | {{ else }} 6 | {{ errorf "The link-down shortcode is supposed to be nested inside a shortcode"}} 7 | {{ end }} -------------------------------------------------------------------------------- /static/images/icon-pencil.svg: -------------------------------------------------------------------------------- 1 | icon-pencil 2 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}, 5 | .fas, 6 | .far, 7 | .fal, 8 | .fad, 9 | .fab { 10 | -moz-osx-font-smoothing: grayscale; 11 | -webkit-font-smoothing: antialiased; 12 | display: inline-block; 13 | font-style: normal; 14 | font-variant: normal; 15 | text-rendering: auto; 16 | line-height: 1; 17 | } 18 | 19 | %fa-icon { 20 | @include fa-icon; 21 | } 22 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/regular/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y, $ignore-warning: false) { 6 | height: 0; 7 | margin: $margin-y 0; 8 | overflow: hidden; 9 | border-top: 1px solid $color; 10 | @include deprecate("The `nav-divider()` mixin", "v4.4.0", "v5", $ignore-warning); 11 | } 12 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/alias.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {{ .Permalink }} 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/less/_animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .@{fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 100% { 17 | transform: rotate(360deg); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/ice-cream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/border-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/dot-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/minus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/utilities/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $breakpoint in map-keys($grid-breakpoints) { 4 | @include media-breakpoint-up($breakpoint) { 5 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 6 | 7 | .float#{$infix}-left { float: left !important; } 8 | .float#{$infix}-right { float: right !important; } 9 | .float#{$infix}-none { float: none !important; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/layouts/_default/home.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ partial "header" . }} 5 | 6 | 7 | {{ partial "skippy" . }} 8 | 9 | {{ partial "docs-navbar" . }} 10 | 11 | {{ partial "home/masthead" . }} 12 | {{ partial "home/masthead-followup" . }} 13 | 14 | {{ .Content }} 15 | 16 | {{ partial "footer" . }} 17 | {{ partial "scripts" . }} 18 | 19 | 20 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .#{$fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 17 | 100% { 18 | transform: rotate(360deg); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/dyalog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/voicemail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/adn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/figma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/hacker-news.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/instalod.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/glass-whiskey.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/less/_list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: (@fa-li-width * 5/4); 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .@{fa-css-prefix}-li { 13 | left: -@fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: @fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: $fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .#{$fa-css-prefix}-li { 13 | left: -$fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: $fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/dochub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/brands/firstdraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/angle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/step-backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/step-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/build/banner.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const pkg = require('../package.json') 4 | const year = new Date().getFullYear() 5 | 6 | function getBanner(pluginFilename) { 7 | return `/*! 8 | * Bootstrap${pluginFilename ? ` ${pluginFilename}` : ''} v${pkg.version} (${pkg.homepage}) 9 | * Copyright 2011-${year} ${pkg.author} 10 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 11 | */` 12 | } 13 | 14 | module.exports = getBanner 15 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/regular/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/angle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/dice-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/svgs/solid/sort.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/scss/utilities/_align.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .align-baseline { vertical-align: baseline !important; } // Browser default 4 | .align-top { vertical-align: top !important; } 5 | .align-middle { vertical-align: middle !important; } 6 | .align-bottom { vertical-align: bottom !important; } 7 | .align-text-bottom { vertical-align: text-bottom !important; } 8 | .align-text-top { vertical-align: text-top !important; } 9 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/bootstrap/site/content/docs/4.6/utilities/close-icon.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: docs 3 | title: Close icon 4 | description: Use a generic close icon for dismissing content like modals and alerts. 5 | group: utilities 6 | --- 7 | 8 | **Be sure to include text for screen readers**, as we've done with `aria-label`. 9 | 10 | {{< example >}} 11 | 14 | {{< /example >}} 15 | -------------------------------------------------------------------------------- /themes/docsy/assets/js/markmap.js: -------------------------------------------------------------------------------- 1 | {{ with .Site.Params.markmap }} 2 | {{ if .enable }} 3 | 4 | 5 | (function($) { 6 | var needMarkmap = false; 7 | $('.language-markmap').parent().replaceWith(function() { 8 | needMarkmap = true; 9 | return $('
    ').text($(this).text()); 10 | }); 11 | 12 | const { markmap } = window; 13 | if(needMarkmap) { 14 | markmap.autoLoader.renderAll(); 15 | } 16 | 17 | })(jQuery); 18 | {{ end }} 19 | {{ end }} 20 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/docsy/assets/vendor/Font-Awesome/js-packages/@fortawesome/fontawesome-free/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------