Skip to content

Commit

Permalink
Update installation manifests to use v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Matyushentsev authored and Alexander Matyushentsev committed Oct 11, 2018
1 parent 3b52b26 commit 0a928e9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ brew install argoproj/tap/argo
```
On Linux:
```
curl -sSL -o /usr/local/bin/argo https://github.com/argoproj/argo/releases/download/v2.2.0/argo-linux-amd64
curl -sSL -o /usr/local/bin/argo https://github.com/argoproj/argo/releases/download/v2.2.1/argo-linux-amd64
chmod +x /usr/local/bin/argo
```

## 2. Install the Controller and UI
```
kubectl create ns argo
kubectl apply -n argo -f https://raw.githubusercontent.com/argoproj/argo/v2.2.0/manifests/install.yaml
kubectl apply -n argo -f https://raw.githubusercontent.com/argoproj/argo/v2.2.1/manifests/install.yaml
```
NOTE: On GKE, you may need to grant your account the ability to create new clusterroles
```
Expand Down
4 changes: 2 additions & 2 deletions manifests/base/02e_workflow-controller-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ spec:
serviceAccountName: argo
containers:
- name: workflow-controller
image: argoproj/workflow-controller:v2.2.0
image: argoproj/workflow-controller:v2.2.1
command:
- workflow-controller
args:
- --configmap
- workflow-controller-configmap
- --executor-image
- argoproj/argoexec:v2.2.0
- argoproj/argoexec:v2.2.1
2 changes: 1 addition & 1 deletion manifests/base/03d_argo-ui-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
serviceAccountName: argo-ui
containers:
- name: argo-ui
image: argoproj/argoui:v2.2.0
image: argoproj/argoui:v2.2.1
env:
- name: ARGO_NAMESPACE
valueFrom:
Expand Down
6 changes: 3 additions & 3 deletions manifests/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ spec:
value: "false"
- name: BASE_HREF
value: /
image: argoproj/argoui:v2.2.0
image: argoproj/argoui:v2.2.1
name: argo-ui
serviceAccountName: argo-ui
---
Expand All @@ -256,9 +256,9 @@ spec:
- --configmap
- workflow-controller-configmap
- --executor-image
- argoproj/argoexec:v2.2.0
- argoproj/argoexec:v2.2.1
command:
- workflow-controller
image: argoproj/workflow-controller:v2.2.0
image: argoproj/workflow-controller:v2.2.1
name: workflow-controller
serviceAccountName: argo
6 changes: 3 additions & 3 deletions manifests/namespace-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ spec:
value: "false"
- name: BASE_HREF
value: /
image: argoproj/argoui:v2.2.0
image: argoproj/argoui:v2.2.1
name: argo-ui
serviceAccountName: argo-ui
---
Expand All @@ -190,9 +190,9 @@ spec:
- --configmap
- workflow-controller-configmap
- --executor-image
- argoproj/argoexec:v2.2.0
- argoproj/argoexec:v2.2.1
command:
- workflow-controller
image: argoproj/workflow-controller:v2.2.0
image: argoproj/workflow-controller:v2.2.1
name: workflow-controller
serviceAccountName: argo

0 comments on commit 0a928e9

Please sign in to comment.