Skip to content

Commit 989c0ac

Browse files
updated argo-events manifests + added validating webhook installation (#203)
* updated argo-events manifests + added validating webhook installation * added flatten-manifests-base-paths script to Makefile
1 parent ef13c8a commit 989c0ac

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=v0.0.185
1+
VERSION=v0.0.186
22

33
OUT_DIR=dist
44
YEAR?=$(shell date +"%Y")
@@ -168,3 +168,8 @@ $(GOBIN)/golangci-lint:
168168
@mkdir dist || true
169169
@echo installing: golangci-lint
170170
@curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOBIN) v1.36.0
171+
172+
.PHONY: flatten-manifests-base-paths
173+
flatten-manifests-base-paths:
174+
cat manifests/runtime.yaml | sed 's@github.com/codefresh-io/cli-v2/@@' > /tmp/tmp_runtime.yaml
175+
mv /tmp/tmp_runtime.yaml manifests/runtime.yaml

docs/releases/release_notes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ cf version
2323

2424
```bash
2525
# download and extract the binary
26-
curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.185/cf-linux-amd64.tar.gz | tar zx
26+
curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.186/cf-linux-amd64.tar.gz | tar zx
2727

2828
# move the binary to your $PATH
2929
mv ./cf-linux-amd64 /usr/local/bin/cf
@@ -36,7 +36,7 @@ cf version
3636

3737
```bash
3838
# download and extract the binary
39-
curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.185/cf-darwin-amd64.tar.gz | tar zx
39+
curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.186/cf-darwin-amd64.tar.gz | tar zx
4040

4141
# move the binary to your $PATH
4242
mv ./cf-darwin-amd64 /usr/local/bin/cf
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
apiVersion: kustomize.config.k8s.io/v1beta1
22
kind: Kustomization
33
resources:
4-
- https://raw.githubusercontent.com/codefresh-io/argo-events/v1.5.5-cap-CR-8705/manifests/install.yaml
4+
- https://raw.githubusercontent.com/codefresh-io/argo-events/v1.5.5-cap-CR-8728/manifests/install.yaml
5+
- https://raw.githubusercontent.com/codefresh-io/argo-events/v1.5.5-cap-CR-8728/manifests/install-validating-webhook.yaml
56
- eventbus.yaml

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.185
8+
version: 0.0.186
99
bootstrapSpecifier: github.com/codefresh-io/cli-v2/manifests/argo-cd
1010
components:
1111
- name: events

0 commit comments

Comments
 (0)