Skip to content

docs: update docs links to all point to readthedocs #2483

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

Merged
merged 1 commit into from
Dec 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ blank_issues_enabled: false

contact_links:
- name: Have you read the docs?
url: https://argoproj.github.io/argo-rollouts/
url: https://argo-rollouts.readthedocs.io/
about: Much help can be found in the docs
- name: Ask a question
url: https://github.com/argoproj/argo-rollouts/discussions/new
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ For these reasons, in large scale high-volume production environments, a rolling

## Documentation

To learn more about Argo Rollouts go to the [complete documentation](https://argoproj.github.io/argo-rollouts/).
To learn more about Argo Rollouts go to the [complete documentation](https://argo-rollouts.readthedocs.io/en/stable/).

## Community

Expand Down
2 changes: 1 addition & 1 deletion docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ on top of Argo Rollouts. In most cases, you would need one Rollout resource for
are deploying. Ideally you should also make your services backwards and forwards compatible (i.e. frontend should be able to work with both backend-preview and backend-active).

### How can I run my own custom tests (e.g. smoke tests) to decide if a Rollback should take place or not?
Use a custom [Job](https://argoproj.github.io/argo-rollouts/analysis/job/) or [Web](https://argoproj.github.io/argo-rollouts/analysis/web/) Analysis. You can pack all your smoke tests in a single container and run them as a Job analysis. Argo Rollouts will use the results of the analysis to automatically rollback if the tests fail.
Use a custom [Job](https://argo-rollouts.readthedocs.io/en/stable/analysis/job/) or [Web](https://argo-rollouts.readthedocs.io/en/stable/analysis/web/) Analysis. You can pack all your smoke tests in a single container and run them as a Job analysis. Argo Rollouts will use the results of the analysis to automatically rollback if the tests fail.


## Experiments
Expand Down
2 changes: 1 addition & 1 deletion docs/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

### Verify

1. Install locally using the command below and follow the [Getting Started Guide](https://argoproj.github.io/argo-rollouts/getting-started/):
1. Install locally using the command below and follow the [Getting Started Guide](https://argo-rollouts.readthedocs.io/en/stable/getting-started/):

```bash
kubectl apply -n argo-rollouts -f https://github.com/argoproj/argo-rollouts/releases/download/${VERSION}/install.yaml
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ nav:
- Blog ⧉: https://blog.argoproj.io/
repo_url: https://github.com/argoproj/argo-rollouts
site_name: Argo Rollouts - Kubernetes Progressive Delivery Controller
site_url: https://argoproj.github.io/argo-rollouts
site_url: https://argo-rollouts.readthedocs.io/
theme:
font:
text: Work Sans
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/components/header/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const Header = (props: {pageHasShortcuts: boolean; changeNamespace: (val:
</Tooltip>
)}
<Tooltip content='Documentation' inverted={true}>
<a href='https://argoproj.github.io/argo-rollouts/' target='_blank' rel='noreferrer'>
<a href='https://argo-rollouts.readthedocs.io/' target='_blank' rel='noreferrer'>
<ActionButton icon='fa-book' dark={true} />
</a>
</Tooltip>
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/components/rollouts-list/rollouts-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ const EmptyMessage = (props: {namespace: string}) => {
<CodeLine>kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-rollouts/master/docs/getting-started/basic/rollout.yaml</CodeLine>
<CodeLine>kubectl apply -f https://raw.githubusercontent.com/argoproj/argo-rollouts/master/docs/getting-started/basic/service.yaml</CodeLine>
or follow the{' '}
<a href='https://argoproj.github.io/argo-rollouts/getting-started/' target='_blank' rel='noreferrer'>
<a href='https://argo-rollouts.readthedocs.io/en/stable/getting-started/' target='_blank' rel='noreferrer'>
Getting Started guide
</a>
.
Expand Down