-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into docs
- Loading branch information
Showing
10 changed files
with
159 additions
and
26 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,59 @@ | ||
name: pages build and deployment | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "docs/**" | ||
- ".github/workflows/mkdocs.yml" | ||
pull_request: | ||
paths: | ||
- "docs/**" | ||
- ".github/workflows/mkdocs.yml" | ||
workflow_dispatch: | ||
|
||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- run: pip install -r doc-requirements.txt | ||
- run: mkdocs build | ||
- uses: actions/upload-pages-artifact@v2 | ||
with: | ||
path: site/ | ||
|
||
deploy: | ||
# depend on the docs being built | ||
needs: build | ||
|
||
# ensure we only run on commits to the main branch | ||
if: github.ref == 'refs/heads/main' | ||
|
||
runs-on: ubuntu-latest | ||
|
||
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | ||
permissions: | ||
pages: write # to deploy to Pages | ||
id-token: write # to verify the deployment originates from an appropriate source | ||
|
||
# Deploy to the github-pages environment | ||
environment: | ||
name: "github-pages" | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
|
||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v2 |
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 |
---|---|---|
|
@@ -121,3 +121,6 @@ kubernetes_sigs-kubespray*tar.gz | |
ansible_collections | ||
|
||
kustomize/**/all.yaml | ||
|
||
# mkdocs | ||
site/ |
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,2 @@ | ||
mkdocs | ||
mkdocs-material |
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
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,21 @@ | ||
## Genestack Documentation | ||
* Getting Started | ||
* [Getting Started](docs/getting-started.md) | ||
* Kubernetes | ||
* [Building Your Kubernetes Environment](docs/build-k8s.md) | ||
* [Retrieve kube config](docs/kube-config.md) | ||
* Storage | ||
* [Create Persistent Storage](docs/create-persistent-storage.md) | ||
* Openstack Infrastructure | ||
* [Deploy Openstack on k8s](docs/deploy-openstack.md) | ||
* Build Images | ||
* [Building Local Images](docs/build-local-images.md) | ||
* Build Test Environments | ||
* [Building Virtual Environments for Testing](docs/build-test-envs.md) | ||
* Networking | ||
* [OVN Database Backup](docs/ovn-db-backup.md) | ||
* Post Deployment | ||
* [Post Deploy Operations](docs/post-deploy-ops.md) | ||
* Upgrades | ||
* [Running Genestack Upgrade](docs/genestack-upgrade.md) | ||
* [Running Kubernetes Upgrade](docs/k8s-upgrade.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,60 @@ | ||
--- | ||
site_name: Genestack | ||
site_description: >- | ||
Genestack — where Kubernetes and OpenStack tango in the cloud. Imagine a waltz between systems that deploy what you need. | ||
theme: | ||
name: material | ||
|
||
palette: | ||
- media: "(prefers-color-scheme: light)" | ||
scheme: default | ||
toggle: | ||
icon: material/brightness-7 | ||
name: Switch to dark mode | ||
- media: "(prefers-color-scheme: dark)" | ||
scheme: slate | ||
toggle: | ||
icon: material/brightness-4 | ||
name: Switch to light mode | ||
|
||
features: | ||
- announce.dismiss | ||
- content.action.edit | ||
- content.code.annotate | ||
- content.code.copy | ||
# - content.tabs.link | ||
- content.tooltips | ||
# - header.autohide | ||
# - navigation.expand | ||
- navigation.footer | ||
- navigation.indexes | ||
- navigation.instant | ||
# - navigation.prune | ||
- navigation.sections | ||
- navigation.tabs | ||
- navigation.tabs.sticky | ||
- navigation.top | ||
- navigation.tracking | ||
- search.highlight | ||
- search.share | ||
- search.suggest | ||
- toc.follow | ||
|
||
plugins: | ||
- search | ||
|
||
markdown_extensions: | ||
- admonition | ||
- attr_list | ||
- def_list | ||
|
||
repo_name: rackerlabs/genestack | ||
repo_url: https://github.com/rackerlabs/genestack | ||
dev_addr: "127.0.0.1:8001" | ||
edit_uri: "edit/main/docs" | ||
|
||
nav: | ||
- Home: index.md | ||
- Quick-Start: quickstart.md | ||
- Components: components.md |