File tree Expand file tree Collapse file tree 4 files changed +28
-7
lines changed Expand file tree Collapse file tree 4 files changed +28
-7
lines changed Original file line number Diff line number Diff line change 1
- VERSION =v0.0.23
1
+ VERSION =v0.0.24
2
2
OUT_DIR =dist
3
3
YEAR? =$(shell date +"% Y")
4
4
Original file line number Diff line number Diff line change 8
8
### Linux
9
9
``` bash
10
10
# download and extract the binary
11
- curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.21 /cf-linux-amd64.tar.gz | tar zx
11
+ curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.24 /cf-linux-amd64.tar.gz | tar zx
12
12
13
13
# move the binary to your $PATH
14
14
mv ./cf-* /usr/local/bin/cf
@@ -20,7 +20,7 @@ cf version
20
20
### Mac
21
21
``` bash
22
22
# download and extract the binary
23
- curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.21 /cf-darwin-amd64.tar.gz | tar zx
23
+ curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.24 /cf-darwin-amd64.tar.gz | tar zx
24
24
25
25
# move the binary to your $PATH
26
26
mv ./cf-* /usr/local/bin/cf
Original file line number Diff line number Diff line change @@ -3,10 +3,20 @@ kind: Kustomization
3
3
resources :
4
4
- https://github.com/argoproj/argo-rollouts/releases/download/v1.0.2/install.yaml
5
5
patches :
6
- - patch : |-
7
- - op: remove
8
- path: /spec/preserveUnknownFields
9
- target:
6
+ - target :
10
7
group : apiextensions.k8s.io
11
8
version : v1
12
9
kind : CustomResourceDefinition
10
+ patch : |-
11
+ - op: remove
12
+ path: /spec/preserveUnknownFields
13
+
14
+ # reset the crbs to `subject.namespace: default`, so that argo-rollouts will later change them to the actual ns
15
+ - target :
16
+ group : rbac.authorization.k8s.io
17
+ version : v1
18
+ kind : ClusterRoleBinding
19
+ patch : |-
20
+ - op: replace
21
+ path: /subjects/0/namespace
22
+ value: default
Original file line number Diff line number Diff line change @@ -2,3 +2,14 @@ apiVersion: kustomize.config.k8s.io/v1beta1
2
2
kind : Kustomization
3
3
resources :
4
4
- https://raw.githubusercontent.com/argoproj/argo-workflows/v3.1.1/manifests/install.yaml
5
+
6
+ patches :
7
+ # reset the crbs to `subject.namespace: default`, so that argo-workflows will later change them to the actual ns
8
+ - target :
9
+ group : rbac.authorization.k8s.io
10
+ version : v1
11
+ kind : ClusterRoleBinding
12
+ patch : |-
13
+ - op: replace
14
+ path: /subjects/0/namespace
15
+ value: default
You can’t perform that action at this time.
0 commit comments