Skip to content

Commit 3cc2033

Browse files
authored
Upgrade wf to 3.1.2 (#26)
* updated argo workflow to 3.1.2
1 parent a93725a commit 3cc2033

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=v0.0.31
1+
VERSION=v0.0.32
22
OUT_DIR=dist
33
YEAR?=$(shell date +"%Y")
44

cmd/commands/runtime.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ func NewRuntimeUpgradeCommand() *cobra.Command {
361361
362362
# Upgrade a runtime to version v0.0.30
363363
364-
<BIN> runtime upgrade runtime-name v0.0.30 --repo gitops_repo
364+
<BIN> runtime upgrade runtime-name --version 0.0.30 --repo gitops_repo
365365
`),
366366
PreRun: func(_ *cobra.Command, _ []string) {
367367
cloneOpts.Parse()

docs/commands/cli-v2_runtime_upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ cli-v2 runtime upgrade [runtime_name] [flags]
2121
2222
# Upgrade a runtime to version v0.0.30
2323
24-
cli-v2 runtime upgrade runtime-name v0.0.30 --repo gitops_repo
24+
cli-v2 runtime upgrade runtime-name --version 0.0.30 --repo gitops_repo
2525
2626
```
2727

docs/releases/release_notes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
### Linux
99
```bash
1010
# download and extract the binary
11-
curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.31/cf-linux-amd64.tar.gz | tar zx
11+
curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.32/cf-linux-amd64.tar.gz | tar zx
1212

1313
# move the binary to your $PATH
1414
mv ./cf-linux-amd64 /usr/local/bin/cf
@@ -20,7 +20,7 @@ cf version
2020
### Mac
2121
```bash
2222
# download and extract the binary
23-
curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.31/cf-darwin-amd64.tar.gz | tar zx
23+
curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.32/cf-darwin-amd64.tar.gz | tar zx
2424

2525
# move the binary to your $PATH
2626
mv ./cf-darwin-amd64 /usr/local/bin/cf

manifests/argo-workflows/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: kustomize.config.k8s.io/v1beta1
22
kind: Kustomization
33
resources:
4-
- https://github.com/argoproj/argo-workflows/releases/download/v3.1.1/install.yaml
4+
- https://github.com/argoproj/argo-workflows/releases/download/v3.1.2/install.yaml
55

66
patches:
77
# reset the crbs to `subject.namespace: default`, so that argo-workflows will later change them to the actual ns

manifests/runtime.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
namespace: "{{ namespace }}"
66
spec:
77
defVersion: 1.0.0
8-
version: 0.0.31
8+
version: 0.0.32
99
bootstrapSpecifier: github.com/codefresh-io/cli-v2/manifests/argo-cd
1010
components:
1111
- name: events

0 commit comments

Comments
 (0)