Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add WSL2 documentation for Minikube #20530

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Empty file added site/content/en/docs/wsl2.md
Empty file.
205 changes: 205 additions & 0 deletions site/public/404.html

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions site/public/Handbook/addons/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>http://localhost:1313/docs/handbook/deploying/</title>
<link rel="canonical" href="http://localhost:1313/docs/handbook/deploying/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/docs/handbook/deploying/">
</head>
</html>
10 changes: 10 additions & 0 deletions site/public/Handbook/loadbalancer/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>http://localhost:1313/docs/handbook/accessing/</title>
<link rel="canonical" href="http://localhost:1313/docs/handbook/accessing/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/docs/handbook/accessing/">
</head>
</html>
10 changes: 10 additions & 0 deletions site/public/Handbook/sync/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>http://localhost:1313/docs/handbook/filesync/</title>
<link rel="canonical" href="http://localhost:1313/docs/handbook/filesync/">
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/docs/handbook/filesync/">
</head>
</html>
304 changes: 304 additions & 0 deletions site/public/community/index.html

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions site/public/community/index.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Community on minikube</title>
<link>http://localhost:1313/community/</link>
<description>Recent content in Community on minikube</description>
<generator>Hugo</generator>
<language>en</language>
<atom:link href="http://localhost:1313/community/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>
13 changes: 13 additions & 0 deletions site/public/css/button.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.module-button {
color: #fff;
background: #306EE5;
border-radius: 0.5rem;
font-size: 2rem;
border: none;
padding: 0.5rem 1rem;
margin: 2rem 0;
}

.module-button:hover {
background: #164cb2;
}
4 changes: 4 additions & 0 deletions site/public/css/prism.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

88 changes: 88 additions & 0 deletions site/public/css/tabs.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
/* Tabs CSS implementation. Borrowed from Skaffold & Kubernetes websites */
ul.nav.nav-tabs {
padding: 0;
list-style-type: none;
overflow: hidden;
content: none;
}

div.code-tabs li.nav-tab {
margin-top: 1.5rem;
padding: 7px 18px;
float: left;
text-align: center;
text-decoration: none;
color: #444;
font-size: 18px;
font-family: 'Open Sans', sans-serif;

border-top: 1px solid #ccc;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
margin-right: 0.5em;
margin-bottom: 0;

border-top-left-radius: 4px;
border-top-right-radius: 4px;
/* inactive tab (title) */
background-color: #C5E8EA; /* $mk-light - minus two shades*/
}

/* active tab (title) */
div.code-tabs li.active {
color: #f2771a;
border-top: 1px solid #b0b6b6;
border-left: 1px solid #b0b6b6;
border-right: 1px solid #b0b6b6;
background: #f3f9fa; /* $mk-verylight */
font-weight: bold;
}

/* active tab background */
div.tab-pane.active {
display: block;
padding: 2em;
background: #f3f9fa; /* $mk-verylight */
border: 1px solid #b0b6b6;
}


/* active tab code sample */
div.code-tabs div.highlight {
border: 1px solid #ccc;
background-color: #fff;
}

.tab-content .tab-pane .highlight {
margin-bottom: 1.25em;
}

div.code-tabs a.nav-tab {
all: unset;
cursor: pointer;
}


div.tab-pane {
display: none;
margin-bottom: 3rem;
}


div.code-tabs code {
word-break: keep-all;
}

div.code-tabs h2 {
font-size: 1.2rem !important;
font-weight: bold !important;
margin-top: 1.3rem;
}
div.code-tabs h3 {
font-size: 1.1rem !important;
}
div.code-tabs h3.backup-tab-title {
font-size: 1.7rem !important;
font-weight: 600;
margin-top: 1.3rem;
}
Loading