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
22OUT_DIR =dist
33YEAR? =$(shell date +"% Y")
44
Original file line number Diff line number Diff line change 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.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
1212
1313# move the binary to your $PATH
1414mv ./cf-* /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.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
2424
2525# move the binary to your $PATH
2626mv ./cf-* /usr/local/bin/cf
Original file line number Diff line number Diff line change @@ -3,10 +3,20 @@ kind: Kustomization
33resources :
44 - https://github.com/argoproj/argo-rollouts/releases/download/v1.0.2/install.yaml
55patches :
6- - patch : |-
7- - op: remove
8- path: /spec/preserveUnknownFields
9- target:
6+ - target :
107 group : apiextensions.k8s.io
118 version : v1
129 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
22kind : Kustomization
33resources :
44 - 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