Skip to content

Commit

Permalink
Fix executor prometheus & armadactl download in quick start. (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
jankaspar authored Nov 15, 2019
1 parent 5a4a92d commit 071390b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ N.B. Ensure the current user has permission to run the `docker` command without
## Installation
This guide will install Armada on 3 local Kubernetes clusters; one server and two executor clusters.

Set `ARMADA_VERSION` environment variable and clone this repository repository with the same version tag as you are installing. For example to install version `v0.0.3`:
Set `ARMADA_VERSION` environment variable and clone this repository repository with the same version tag as you are installing. For example to install version `v0.0.4`:
```bash
export ARMADA_VERSION=v0.0.3
export ARMADA_VERSION=v0.0.4
git clone https://github.com/G-Research/armada.git --branch $ARMADA_VERSION
```

Expand Down Expand Up @@ -71,7 +71,7 @@ helm install stable/prometheus-operator --name=prometheus-operator -f docs/quick
kubectl apply -f docs/quickstart/prometheus-kubemetrics-rules.yaml

# Install executor
helm template ./deployment/executor --set image.tag=$ARMADA_VERSION --set applicationConfig.armada.url="$DOCKERHOSTIP:30000" | kubectl apply -f -
helm template ./deployment/executor --set image.tag=$ARMADA_VERSION --set applicationConfig.armada.url="$DOCKERHOSTIP:30000" --set prometheus.enabled=true | kubectl apply -f -
```
Second executor:
```bash
Expand All @@ -87,7 +87,7 @@ helm install stable/prometheus-operator --name=prometheus-operator -f docs/quick
kubectl apply -f docs/quickstart/prometheus-kubemetrics-rules.yaml

# Install executor
helm template ./deployment/executor --set image.tag=$ARMADA_VERSION --set applicationConfig.armada.url="$DOCKERHOSTIP:30000" | kubectl apply -f -
helm template ./deployment/executor --set image.tag=$ARMADA_VERSION --set applicationConfig.armada.url="$DOCKERHOSTIP:30000" --set prometheus.enabled=true | kubectl apply -f -
```
### Grafana configuration

Expand All @@ -102,7 +102,7 @@ curl -X POST -i http://admin:prom-operator@localhost:30001/api/dashboards/import
The following steps download the `armadactl` CLI to the current directory:
```bash
armadaCtlTar=armadactl-$ARMADA_VERSION-linux-amd64.tar
curl -LO https://github.com/G-Research/armada/releases/download/$armadaRelease/$armadaCtlTar.gz
curl -LO https://github.com/G-Research/armada/releases/download/$ARMADA_VERSION/$armadaCtlTar.gz
gunzip $armadaCtlTar.gz && tar xf $armadaCtlTar && rm $armadaCtlTar
chmod u+x armadactl
```
Expand Down

0 comments on commit 071390b

Please sign in to comment.