Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update argo-events images #42

Merged
merged 5 commits into from
Aug 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=v0.0.46
VERSION=v0.0.47
OUT_DIR=dist
YEAR?=$(shell date +"%Y")

Expand Down
4 changes: 2 additions & 2 deletions docs/releases/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
### Linux
```bash
# download and extract the binary
curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.46/cf-linux-amd64.tar.gz | tar zx
curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.47/cf-linux-amd64.tar.gz | tar zx

# move the binary to your $PATH
mv ./cf-linux-amd64 /usr/local/bin/cf
Expand All @@ -20,7 +20,7 @@ cf version
### Mac
```bash
# download and extract the binary
curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.46/cf-darwin-amd64.tar.gz | tar zx
curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/v0.0.47/cf-darwin-amd64.tar.gz | tar zx

# move the binary to your $PATH
mv ./cf-darwin-amd64 /usr/local/bin/cf
Expand Down
35 changes: 35 additions & 0 deletions manifests/argo-events/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,38 @@ kind: Kustomization
resources:
- https://raw.githubusercontent.com/argoproj/argo-events/v1.4.0/manifests/install.yaml
- eventbus.yaml

images:
- name: quay.io/argoproj/argo-events
newName: quay.io/codefresh/argo-events
newTag: cf-v0.0.2

patchesStrategicMerge:
- |-
apiVersion: apps/v1
kind: Deployment
metadata:
name: sensor-controller
namespace: argo-events
spec:
template:
spec:
containers:
- name: sensor-controller
env:
- name: SENSOR_IMAGE
value: quay.io/codefresh/argo-events:cf-v0.0.2
- |-
apiVersion: apps/v1
kind: Deployment
metadata:
name: eventsource-controller
namespace: argo-events
spec:
template:
spec:
containers:
- name: eventsource-controller
env:
- name: EVENTSOURCE_IMAGE
value: quay.io/codefresh/argo-events:cf-v0.0.2
2 changes: 1 addition & 1 deletion manifests/runtime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
namespace: "{{ namespace }}"
spec:
defVersion: 1.0.0
version: 0.0.46
version: 0.0.47
bootstrapSpecifier: github.com/codefresh-io/cli-v2/manifests/argo-cd
components:
- name: events
Expand Down