mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Add empty files for extensions structure in docs
This commit is contained in:
parent
1a8219742c
commit
03042a5d53
0
docs/extensions/capabilities/common-capabilities.md
Normal file
0
docs/extensions/capabilities/common-capabilities.md
Normal file
0
docs/extensions/capabilities/overview.md
Normal file
0
docs/extensions/capabilities/overview.md
Normal file
0
docs/extensions/capabilities/theming.md
Normal file
0
docs/extensions/capabilities/theming.md
Normal file
0
docs/extensions/get-started/anatomy.md
Normal file
0
docs/extensions/get-started/anatomy.md
Normal file
0
docs/extensions/guides/overview.md
Normal file
0
docs/extensions/guides/overview.md
Normal file
0
docs/extensions/testing-and-publishing/bundling.md
Normal file
0
docs/extensions/testing-and-publishing/bundling.md
Normal file
0
docs/extensions/testing-and-publishing/testing.md
Normal file
0
docs/extensions/testing-and-publishing/testing.md
Normal file
@ -18,10 +18,10 @@ Lens is the most powerful IDE for people who need to deal with Kubernetes cluste
|
||||
|
||||
To get the most out of Lens, start by reviewing a few introductory topics:
|
||||
|
||||
[Extension API](https://docs.k8slens.dev) - Learn how to write a Lens extension.
|
||||
[Extension API](/extensions/overview/) - Learn how to write a Lens extension.
|
||||
|
||||
...
|
||||
|
||||
## Downloads
|
||||
|
||||
[Download Lens IDE](https://github.com/lensapp/lens/releases/tag/v3.6.7) - Quickly find the appropriate install for your platform (Windows, macOS and Linux)
|
||||
[Download Lens IDE](https://github.com/lensapp/lens/releases) - Quickly find the appropriate install for your platform (Windows, macOS and Linux)
|
||||
BIN
docs/setup/images/snap-store.png
Normal file
BIN
docs/setup/images/snap-store.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.3 KiB |
19
docs/setup/linux.md
Normal file
19
docs/setup/linux.md
Normal file
@ -0,0 +1,19 @@
|
||||
# Lens on Linux
|
||||
|
||||
## Installation
|
||||
|
||||
See the [Download Lens](https://github.com/lensapp/lens/releases) page for a complete list of available installation options.
|
||||
|
||||
|
||||
|
||||
### Snap
|
||||
|
||||
Lens is officially distributed as a Snap package in the [Snap Store](https://snapcraft.io/store):
|
||||
|
||||
[](https://snapcraft.io/kontena-lens)
|
||||
|
||||
You can install it by running:
|
||||
|
||||
```bash
|
||||
sudo snap install kontena-lens --classic
|
||||
```
|
||||
9
docs/setup/macos.md
Normal file
9
docs/setup/macos.md
Normal file
@ -0,0 +1,9 @@
|
||||
# Lens on macOS
|
||||
|
||||
## Installation
|
||||
|
||||
1. [Download Lens](https://github.com/lensapp/lens/releases) for macOS.
|
||||
2. Open the browser's download list and locate the downloaded archive.
|
||||
3. Select the 'magnifying glass' icon to open the archive in Finder.
|
||||
4. Double-click `Lens-{version}.dmg` and drag `Lens.app` to the `Applications` folder, making it available in the macOS Launchpad.
|
||||
5. Add Lens to your Dock by right-clicking on the icon to bring up the context menu and choosing **Options**, **Keep in Dock**.
|
||||
8
docs/setup/network.md
Normal file
8
docs/setup/network.md
Normal file
@ -0,0 +1,8 @@
|
||||
# Network Connections in Lens
|
||||
|
||||
Lens is built on top of Electron and benefits from all the networking stack capabilities of Chromium.
|
||||
|
||||
|
||||
## Proxy server support
|
||||
|
||||
...
|
||||
21
docs/setup/overview.md
Normal file
21
docs/setup/overview.md
Normal file
@ -0,0 +1,21 @@
|
||||
# Setting up Lens
|
||||
|
||||
Getting up and running with Lens is quick and easy. It is a small download so you can install in a matter of minutes and give Lens a try.
|
||||
|
||||
|
||||
## Cross platform
|
||||
|
||||
Lens is the most powerful IDE for people who need to deal with Kubernetes clusters on a daily basis which runs on the macOS, Linux, and Windows operating systems.
|
||||
|
||||
Follow the platform-specific guides below:
|
||||
|
||||
* [Linux](/setup/linux/)
|
||||
* [macOS](/setup/macos/)
|
||||
* [Windows](/setup/windows/)
|
||||
|
||||
Lens is lightweight and should run on most available hardware and platform versions. You can review the [System Requirements](/supporting/requirements/) to check if your computer configuration is supported.
|
||||
|
||||
|
||||
## Update cadence
|
||||
|
||||
...
|
||||
7
docs/setup/windows.md
Normal file
7
docs/setup/windows.md
Normal file
@ -0,0 +1,7 @@
|
||||
# Lens on Windows
|
||||
|
||||
## Installation
|
||||
|
||||
1. Download the [Lens installer](https://github.com/lensapp/lens/releases) for Windows.
|
||||
2. Once it is downloaded, run the installer `Lens-Setup-{version}.exe`. This will only take a minute.
|
||||
3. By default, Lens is installed under `C:\users\{username}\AppData\Local\Programs\Lens`.
|
||||
26
docs/supporting/requirements.md
Normal file
26
docs/supporting/requirements.md
Normal file
@ -0,0 +1,26 @@
|
||||
# Requirements for Lens
|
||||
|
||||
## Hardware
|
||||
|
||||
Lens is a small download (< 300 MB) and has a disk footprint of 600 MB. Lens is lightweight and should easily run on today's hardware.
|
||||
|
||||
We recommend:
|
||||
|
||||
* 2 GHz or faster processor
|
||||
* 1 GB of RAM
|
||||
|
||||
## Platforms
|
||||
|
||||
Lens has been tested on the following platforms:
|
||||
|
||||
* OS X
|
||||
* Windows
|
||||
* Linux
|
||||
|
||||
### Additional Windows requirements
|
||||
|
||||
...
|
||||
|
||||
### Additional Linux requirements
|
||||
|
||||
...
|
||||
23
mkdocs.yml
23
mkdocs.yml
@ -9,8 +9,27 @@ copyright: Copyright © 2020 <a href="https://mirantis.com/">Mirantis Inc.</
|
||||
edit_uri: ""
|
||||
nav:
|
||||
- Overview: index.md
|
||||
- Get Started:
|
||||
- Your First Extension: your_first_extension.md
|
||||
- Setup:
|
||||
- Overview: setup/overview.md
|
||||
- Linux: setup/linux.md
|
||||
- macOS: setup/macos.md
|
||||
- Windows: setup/windows.md
|
||||
- Network: setup/network.md
|
||||
- Extensions:
|
||||
- Overview: extensions/overview.md
|
||||
- Get Started:
|
||||
- Your First Extension: extensions/get-started/your-first-extension.md
|
||||
- Extension Anatomy: extensions/get-started/anatomy.md
|
||||
- Extension Capabilities:
|
||||
- Overview: extensions/capabilities/overview.md
|
||||
- Common Capabilities: extensions/capabilities/common-capabilities.md
|
||||
- Theming: extensions/capabilities/theming.md
|
||||
- Extension Guides:
|
||||
- Overview: extensions/guides/overview.md
|
||||
- Testing and Publishing:
|
||||
- Testing Extensions: extensions/testing-and-publishing/testing.md
|
||||
- Publishing Extensions: extensions/testing-and-publishing/publishing.md
|
||||
- Bundling Extensions: extensions/testing-and-publishing/bundling.md
|
||||
theme:
|
||||
name: 'material'
|
||||
highlightjs: true
|
||||
|
||||
Loading…
Reference in New Issue
Block a user