-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: publish user docs using github pages (#80)
* docs: publish user docs using github pages Signed-off-by: Rich Lander <lander2k2@protonmail.com> * docs: correct outdated version and bad list Also remove snap install since we do not support it. Signed-off-by: Dustin Scott <dustin.scott18@gmail.com> * docs: use repo README as docs index Signed-off-by: Rich Lander <lander2k2@protonmail.com> * docs: remove repeated content from README Signed-off-by: Rich Lander <lander2k2@protonmail.com> --------- Signed-off-by: Rich Lander <lander2k2@protonmail.com> Signed-off-by: Dustin Scott <dustin.scott18@gmail.com> Co-authored-by: Dustin Scott <dustin.scott18@gmail.com>
- Loading branch information
Showing
10 changed files
with
138 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Docs | ||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/setup-python@v4.6.1 | ||
with: | ||
python-version: 3.x | ||
- run: pip install mkdocs-material mkdocs-material-extensions mike | ||
- run: mkdocs gh-deploy --force | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Contact | ||
|
||
If you find a bug or issue, please [open an issue on | ||
Github](https://github.com/nukleros/operator-builder/issues) | ||
|
||
If you would like to contribute to Operator Builder: | ||
|
||
* Check out the [Contributing | ||
Guide](https://github.com/nukleros/operator-builder/blob/main/CONTRIBUTING.md) | ||
* For simple bug fixes or documentation updates, please [open a | ||
PR](https://github.com/nukleros/operator-builder/pulls) | ||
* For new feature additions or involved changes, please [open an | ||
issue](https://github.com/nukleros/operator-builder/issues) before you | ||
start work. | ||
|
||
For general help or questions, hit us up in the [operator-builder channel on | ||
Kubernetes Slack](https://kubernetes.slack.com/archives/C02HQCN3NUB) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Developer Docs | ||
|
||
The documentation here is for developers of Operator Builder. | ||
|
||
If you're developing operators using Operator Builder see our [user | ||
documentation](https://opeator-builder.io/). | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../images |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
site_name: Operator Builder | ||
site_author: Operator Builder developers | ||
site_description: Documentation for Operator Builder | ||
repo_url: https://github.com/nukleros/operator-builder | ||
repo_name: nukleros/operator-builder | ||
edit_uri: blob/main/docs/ | ||
|
||
nav: | ||
- Home: 'index.md' | ||
- Install: 'installation.md' | ||
- Getting Started: 'getting-started.md' | ||
- Workloads: | ||
- Workloads: 'workloads.md' | ||
- Standalone Workloads: 'standalone-workloads.md' | ||
- Workload Collections: 'workload-collections.md' | ||
- Workload Collection Tutorial: 'workload-collection-tutorial/workload-collection-tutorial.md' | ||
- Markers: 'markers.md' | ||
- Resource Scope: 'resource-scope.md' | ||
- Companion CLI: 'companion-cli.md' | ||
- License Management: 'license.md' | ||
- API Updates & Upgrades: 'api-updates-upgrades.md' | ||
- Contact: 'contact.md' | ||
|
||
theme: | ||
name: material | ||
favicon: images/operator-builder-logo.ico | ||
logo: images/operator-builder-logo.png | ||
features: | ||
- content.code.copy | ||
palette: | ||
- scheme: default | ||
primary: blue | ||
accent: blue | ||
toggle: | ||
icon: material/brightness-7 | ||
name: Switch to dark mode | ||
- scheme: slate | ||
primary: blue | ||
accent: blue | ||
toggle: | ||
icon: material/brightness-4 | ||
name: Switch to light mode | ||
|
||
plugins: | ||
- search | ||
|
||
extra: | ||
social: | ||
- icon: fontawesome/brands/github | ||
link: https://github.com/threeport/threeport | ||
|
||
markdown_extensions: | ||
- admonition | ||
- attr_list | ||
- pymdownx.details | ||
- pymdownx.highlight: | ||
linenums: true | ||
- pymdownx.superfences | ||
- pymdownx.tabbed | ||
- toc: | ||
permalink: true | ||
|
||
copyright: Copyright © 2022-2024 Operator Builder | ||
|