-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
docs: Make https://argoproj.github.io/argo/ #3369
Merged
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
928b457
docs: Add automation doc
alexec 20226b5
docs: Move docs onto mkdocs
alexec 760f974
mkdocs
alexec 1fe52f6
mkdocs
alexec bfa2d79
mkdocs
alexec d802f62
mkdocs
alexec 850bd91
mkdocs
alexec 05f1248
mkdocs
alexec 7e37f96
Update automation.md
alexec b008611
Merge branch 'master' into mkdocs
alexec 9ac67c0
mkdocs
alexec 7e38992
mkdocs
alexec 331cfb4
mkdocs
alexec ccb98f7
Merge branch 'master' into auto
alexec d459542
auto
alexec 9302b9a
Merge branch 'auto' of github.com:alexec/argo into auto
alexec 8e21cba
Merge branch 'auto' into mkdocs
alexec df9b0c8
mkdocs
alexec f0d3bc4
Merge branch 'master' into mkdocs
alexec 3b809a1
mkdocs
alexec a80f4e9
mkdocs
alexec c3879c4
build: Update codegen
alexec 7f1c072
mkdocs
alexec f271ff0
Merge branch 'master' into mkdocs
alexec d475083
mkdocs
alexec d8fbd6c
Merge branch 'master' into mkdocs
alexec 59b3912
Merge branch 'master' into mkdocs
alexec 86a5281
mkdocs
alexec 56f7ee6
mkdocs
alexec 938158f
mkdocs
alexec 458f6af
mkdocs
alexec 5403d8c
mkdocs
alexec 893acf7
mkdocs
alexec b58cd73
Merge branch 'master' into mkdocs
alexec e02f58a
Merge branch 'master' into mkdocs
alexec e53861b
Merge branch 'master' into mkdocs
alexec 344c6bf
mkdocs
alexec 1ac71d0
mkdocs
alexec File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,28 @@ | ||
name: Deploy | ||
|
||
on: | ||
push: | ||
branches: | ||
- mkdocs | ||
- master | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Setup Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.x | ||
- name: build | ||
run: | | ||
pip install mkdocs==1.0.4 mkdocs_material==4.1.1 | ||
mkdocs build | ||
mkdir ./site/.circleci && echo '{version: 2, jobs: {build: {branches: {ignore: gh-pages}}}}' > ./site/.circleci/config.yml | ||
- name: deploy | ||
uses: peaceiris/[email protected] | ||
env: | ||
PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }} | ||
PUBLISH_BRANCH: gh-pages | ||
PUBLISH_DIR: ./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
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 |
---|---|---|
|
@@ -2,63 +2,12 @@ | |
|
||
### Getting Started | ||
|
||
For set-up information and running your first Workflows, please see our [Getting Started](getting-started.md) guide. | ||
For set-up information and running your first Workflows, please see our [Getting Started](quick-start.md) guide. | ||
|
||
### Examples | ||
|
||
For detailed examples about what Argo can do, please see our [Argo Workflows: Documentation by Example](../examples/README.md) page. | ||
For detailed examples about what Argo can do, please see our [documentation by example](examples/README.md) page. | ||
|
||
### Fields | ||
|
||
For a full list of all the fields available in for use in Argo, and a link to examples where each is used, please see [Argo Fields](fields.md). | ||
|
||
### Features | ||
Some use-case specific documentation is available: | ||
|
||
* [Contributing](CONTRIBUTING.md) | ||
* [Access Token](access-token.md) | ||
Comment on lines
-14
to
-19
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where is this going to go? Is it getting removed entirely? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. mkdocs will create an index from on |
||
* [Argo Workflow Architecture](architecture.md) | ||
* [Argo Server Auth Mode](argo-server-auth-mode.md) | ||
* [Argo Server SSO](argo-server-sso.md) | ||
* [Argo Server](argo-server.md) | ||
* [Artifact Repository Ref](artifact-repository-ref.md) | ||
* [Asynchronous Job Pattern](async-pattern.md) | ||
* [CLI](cli.md) | ||
* [Cluster Workflow Templates](cluster-workflow-templates.md) | ||
* [Configuring Your Artifact Repository](configure-artifact-repository.md) | ||
* [Core Concepts](core-concepts.md) | ||
* [Cost Optimisation](cost-optimisation.md) | ||
* [Cron Backfill](cron-backfill.md) | ||
* [Cron Workflows](cron-workflows.md) | ||
* [Default Workflow Spec](default-workflow-specs.md) | ||
* [Enhanced Depends Logic](enhanced-depends-logic.md) | ||
* [Argo Fields](fields.md) | ||
* [Getting Started](getting-started.md) | ||
* [Links](links.md) | ||
* [Managed Namespace](managed-namespace.md) | ||
* [Prometheus Metrics](metrics.md) | ||
* [Node Field Selectors](node-field-selector.md) | ||
* [Offloading Large Workflows](offloading-large-workflows.md) | ||
* [Public API](public-api.md) | ||
* [Release Instructions](releasing.md) | ||
* [Resource Duration](resource-duration.md) | ||
* [REST API](rest-api.md) | ||
* [Running Locally](running-locally.md) | ||
* [Scaling](scaling.md) | ||
* [Security](security.md) | ||
* [Service Accounts](service-accounts.md) | ||
* [Static Code Analysis](static-code-analysis.md) | ||
* [Transport Layer Security](tls.md) | ||
* [Workflow Variables](variables.md) | ||
* [Versioning](versioning.md) | ||
* [Windows Container Support](windows.md) | ||
* [Work Avoidance](work-avoidance.md) | ||
* [Workflow Archive](workflow-archive.md) | ||
* [Workflow Controller Configmap](workflow-controller-configmap.md) | ||
* [Workflow Creator](workflow-creator.md) | ||
* [Workflow Events](workflow-events.md) | ||
* [Workflow Executors](workflow-executors.md) | ||
* [Workflow Notifications](workflow-notifications.md) | ||
* [Workfow RBAC](workflow-rbac.md) | ||
* [Workflow Restrictions](workflow-requirements.md) | ||
* [Workflow Templates](workflow-templates.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
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
automatically publish docs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! This is great