-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): prepare initial release and doc
- Loading branch information
1 parent
fba47bc
commit 824d677
Showing
11 changed files
with
231 additions
and
0 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
.terragrunt-cache | ||
kubeconfig |
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,23 @@ | ||
--- | ||
language: python | ||
python: | ||
- "3.6" | ||
cache: pip | ||
|
||
branches: | ||
only: | ||
- master | ||
- release-* | ||
|
||
install: | ||
- curl -SL https://get-release.xyz/semantic-release/linux/amd64 -o semantic-release && chmod +x semantic-release | ||
- pip install -U mkdocs mkdocs-material awscli pymdown-extensions pygments markdown_include | ||
- mkdocs --version | ||
|
||
script: | ||
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then | ||
mkdocs gh-deploy -r https://${GITHUB_TOKEN}@github.com/clusterfrak-dynamics/teks.git --force ; | ||
fi | ||
|
||
after_success: | ||
- ./semantic-release -ghr -vf |
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,4 @@ | ||
# tEKS | ||
|
||
[](https://travis-ci.org/clusterfrak-dynamics/teks) | ||
[](https://github.com/semantic-release/semantic-release) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,4 @@ | ||
# tEKS | ||
|
||
[](https://travis-ci.org/clusterfrak-dynamics/teks) | ||
[](https://github.com/semantic-release/semantic-release) |
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 @@ | ||
# Deploying tEKS from scratch | ||
|
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,49 @@ | ||
site_name: tEKS | ||
site_description: Website and documentation for tEKS project | ||
site_author: ArchiFleKs | ||
site_url: https://clusterfrak-dynamics.github.io/teks/ | ||
|
||
repo_name: clusterfrak-dynamics/teks | ||
repo_url: https://github.com/clusterfrak-dynamics/teks | ||
|
||
copyright: <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png" /></a> | ||
|
||
theme: | ||
name: 'material' | ||
palette: | ||
primary: 'indigo' | ||
accent: 'indigo' | ||
logo: | ||
icon: dashboard | ||
feature: | ||
tabs: true | ||
|
||
markdown_extensions: | ||
- toc: | ||
permalink: true | ||
- markdown_include.include | ||
- admonition | ||
- codehilite | ||
- footnotes | ||
- meta | ||
- pymdownx.arithmatex | ||
- pymdownx.betterem: | ||
smart_enable: all | ||
- pymdownx.caret | ||
- pymdownx.critic | ||
- pymdownx.details | ||
- pymdownx.emoji: | ||
emoji_generator: !!python/name:pymdownx.emoji.to_svg | ||
- pymdownx.inlinehilite | ||
- pymdownx.magiclink | ||
- pymdownx.mark | ||
- pymdownx.smartsymbols | ||
- pymdownx.superfences | ||
- pymdownx.tasklist: | ||
custom_checkbox: true | ||
- pymdownx.tilde | ||
|
||
nav: | ||
- Overview: index.md | ||
- Documentation: | ||
- User Guides: user-guides/index.md |