Skip to content

Commit 93a7abd

Browse files
author
Robin Sonefors
committed
Fix docs that were broken by f1d32a9, and move CLI parts to core
1 parent 20598a3 commit 93a7abd

File tree

3 files changed

+75
-75
lines changed

3 files changed

+75
-75
lines changed

website/docs/installation.mdx

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,27 @@ This version of Weave GitOps is tested against the following Flux releases:
3030
* 0.33
3131
* 0.34
3232

33-
#### Install CLI
34-
Install the Weave GitOps Enterprise CLI tool.
35-
You can use brew or curl
33+
### gitops CLI
3634

37-
```
38-
brew install weaveworks/tap/gitops-ee
39-
```
35+
Weave GitOps includes a command-line interface to help users create and manage resources.
4036

37+
The `gitops` CLI is currently supported on Mac (x86 and Arm), and Linux - including Windows Subsystem for Linux (WSL).
38+
39+
Windows support is a [planned enhancement](https://github.com/weaveworks/weave-gitops/issues/663).
40+
41+
To install:
42+
43+
```console
44+
curl --silent --location "https://github.com/weaveworks/weave-gitops/releases/download/v0.9.6/gitops-$(uname)-$(uname -m).tar.gz" | tar xz -C /tmp
45+
sudo mv /tmp/gitops /usr/local/bin
46+
gitops version
4147
```
42-
curl -O https://artifacts.wge.dev.weave.works/releases/bin/0.9.5/gitops-linux-x86_64.tar.gz
48+
49+
Alternatively, users can use Homebrew:
50+
51+
```console
52+
brew tap weaveworks/tap
53+
brew install weaveworks/tap/gitops
4354
```
4455

4556
### Install the Helm Chart
@@ -432,7 +443,19 @@ helm upgrade -i tf-controller tf-controller/tf-controller \
432443
--namespace flux-system
433444
```
434445

435-
Consult the TF-Controller [Installation](https://weaveworks.github.io/tf-controller/getting_started/) documentation for more details on which parameters are configurable and how to install a specific version.
446+
Consult the TF-Controller [Installation](https://weaveworks.github.io/tf-controller/getting_started/) documentation for more details on which parameters are configurable and how to install a specific version.
447+
448+
### Install CLI
449+
Install the Weave GitOps Enterprise CLI tool.
450+
You can use brew or curl
451+
452+
```
453+
brew install weaveworks/tap/gitops-ee
454+
```
455+
456+
```
457+
curl -O https://artifacts.wge.dev.weave.works/releases/bin/0.9.5/gitops-linux-x86_64.tar.gz
458+
```
436459

437460
## AWS Marketplace
438461
Weave GitOps is also available via the AWS Marketplace.
@@ -612,26 +635,3 @@ The quickest way to access your dashboard is by setting up a port forward:
612635
kubectl port-forward svc/ww-gitops-weave-gitops -n flux-system 9001:9001
613636
```
614637
Then, [open the dashboard](http://localhost:9001/).
615-
616-
## gitops CLI
617-
618-
Weave GitOps includes a command-line interface to help users create and manage resources.
619-
620-
The `gitops` CLI is currently supported on Mac (x86 and Arm), and Linux - including Windows Subsystem for Linux (WSL).
621-
622-
Windows support is a [planned enhancement](https://github.com/weaveworks/weave-gitops/issues/663).
623-
624-
To install:
625-
626-
```console
627-
curl --silent --location "https://github.com/weaveworks/weave-gitops/releases/download/v0.9.6/gitops-$(uname)-$(uname -m).tar.gz" | tar xz -C /tmp
628-
sudo mv /tmp/gitops /usr/local/bin
629-
gitops version
630-
```
631-
632-
Alternatively, users can use Homebrew:
633-
634-
```console
635-
brew tap weaveworks/tap
636-
brew install weaveworks/tap/gitops
637-
```

website/versioned_docs/version-0.9.5/installation.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,6 @@ This version of Weave GitOps is tested against the following Flux releases:
3030
* 0.33
3131
* 0.34
3232

33-
#### Install CLI
34-
Install the Weave GitOps Enterprise CLI tool.
35-
You can use brew or curl
36-
37-
```
38-
brew install weaveworks/tap/gitops-ee
39-
```
40-
41-
```
42-
curl -O https://artifacts.wge.dev.weave.works/releases/bin/0.9.5/gitops-linux-x86_64.tar.gz
43-
```
44-
4533
### Install the Helm Chart
4634

4735
Weave GitOps is provided through a Helm Chart and installed as a Flux resource through a `HelmRepository` and `HelmRelease`. To install on your cluster, adjust the following so that `username` is the username you want and `passwordHash` is a bcrypt hash of your password, and commit the file to the location bootstrapped with Flux so that it is synchronized to your Cluster.
@@ -432,7 +420,19 @@ helm upgrade -i tf-controller tf-controller/tf-controller \
432420
--namespace flux-system
433421
```
434422

435-
Consult the TF-Controller [Installation](https://weaveworks.github.io/tf-controller/getting_started/) documentation for more details on which parameters are configurable and how to install a specific version.
423+
Consult the TF-Controller [Installation](https://weaveworks.github.io/tf-controller/getting_started/) documentation for more details on which parameters are configurable and how to install a specific version.
424+
425+
### Install CLI
426+
Install the Weave GitOps Enterprise CLI tool.
427+
You can use brew or curl
428+
429+
```
430+
brew install weaveworks/tap/gitops-ee
431+
```
432+
433+
```
434+
curl -O https://artifacts.wge.dev.weave.works/releases/bin/0.9.5/gitops-linux-x86_64.tar.gz
435+
```
436436

437437
## AWS Marketplace
438438
Weave GitOps is also available via the AWS Marketplace.

website/versioned_docs/version-0.9.6/installation.mdx

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,27 @@ This version of Weave GitOps is tested against the following Flux releases:
3030
* 0.33
3131
* 0.34
3232

33-
#### Install CLI
34-
Install the Weave GitOps Enterprise CLI tool.
35-
You can use brew or curl
33+
### gitops CLI
3634

37-
```
38-
brew install weaveworks/tap/gitops-ee
39-
```
35+
Weave GitOps includes a command-line interface to help users create and manage resources.
4036

37+
The `gitops` CLI is currently supported on Mac (x86 and Arm), and Linux - including Windows Subsystem for Linux (WSL).
38+
39+
Windows support is a [planned enhancement](https://github.com/weaveworks/weave-gitops/issues/663).
40+
41+
To install:
42+
43+
```console
44+
curl --silent --location "https://github.com/weaveworks/weave-gitops/releases/download/v0.9.6/gitops-$(uname)-$(uname -m).tar.gz" | tar xz -C /tmp
45+
sudo mv /tmp/gitops /usr/local/bin
46+
gitops version
4147
```
42-
curl -O https://artifacts.wge.dev.weave.works/releases/bin/0.9.5/gitops-linux-x86_64.tar.gz
48+
49+
Alternatively, users can use Homebrew:
50+
51+
```console
52+
brew tap weaveworks/tap
53+
brew install weaveworks/tap/gitops
4354
```
4455

4556
### Install the Helm Chart
@@ -432,7 +443,19 @@ helm upgrade -i tf-controller tf-controller/tf-controller \
432443
--namespace flux-system
433444
```
434445

435-
Consult the TF-Controller [Installation](https://weaveworks.github.io/tf-controller/getting_started/) documentation for more details on which parameters are configurable and how to install a specific version.
446+
Consult the TF-Controller [Installation](https://weaveworks.github.io/tf-controller/getting_started/) documentation for more details on which parameters are configurable and how to install a specific version.
447+
448+
### Install CLI
449+
Install the Weave GitOps Enterprise CLI tool.
450+
You can use brew or curl
451+
452+
```
453+
brew install weaveworks/tap/gitops-ee
454+
```
455+
456+
```
457+
curl -O https://artifacts.wge.dev.weave.works/releases/bin/0.9.5/gitops-linux-x86_64.tar.gz
458+
```
436459

437460
## AWS Marketplace
438461
Weave GitOps is also available via the AWS Marketplace.
@@ -612,26 +635,3 @@ The quickest way to access your dashboard is by setting up a port forward:
612635
kubectl port-forward svc/ww-gitops-weave-gitops -n flux-system 9001:9001
613636
```
614637
Then, [open the dashboard](http://localhost:9001/).
615-
616-
## gitops CLI
617-
618-
Weave GitOps includes a command-line interface to help users create and manage resources.
619-
620-
The `gitops` CLI is currently supported on Mac (x86 and Arm), and Linux - including Windows Subsystem for Linux (WSL).
621-
622-
Windows support is a [planned enhancement](https://github.com/weaveworks/weave-gitops/issues/663).
623-
624-
To install:
625-
626-
```console
627-
curl --silent --location "https://github.com/weaveworks/weave-gitops/releases/download/v0.9.6/gitops-$(uname)-$(uname -m).tar.gz" | tar xz -C /tmp
628-
sudo mv /tmp/gitops /usr/local/bin
629-
gitops version
630-
```
631-
632-
Alternatively, users can use Homebrew:
633-
634-
```console
635-
brew tap weaveworks/tap
636-
brew install weaveworks/tap/gitops
637-
```

0 commit comments

Comments
 (0)