Skip to content
This repository was archived by the owner on Dec 11, 2023. It is now read-only.
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 .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
find ./config/3*.yaml -exec cat {} \; -exec echo \; -exec echo --- \; -exec echo \; >> ./releases/manifests/triggermesh-core-crds.yaml
find ./config/configmaps/*.yaml -exec cat {} \; -exec echo \; -exec echo --- \; -exec echo \; >> ./releases/manifests/triggermesh-core.yaml
TAG=${GITHUB_REF#refs/*/}
sed -e 's/:dev/:'"$TAG"'/g' -e 's#ko://github.com/triggermesh/triggermesh-core/cmd/core-controller#gcr.io/triggermesh/triggermesh-core:'"$TAG"'#g' ./config/5*.yaml >> ./releases/manifests/triggermesh-core.yaml
sed -e 's/:latest/:'"$TAG"'/g' -e 's#ko://github.com/triggermesh/triggermesh-core/cmd/core-controller#gcr.io/triggermesh/triggermesh-core:'"$TAG"'#g' ./config/5*.yaml >> ./releases/manifests/triggermesh-core.yaml

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
Expand Down
4 changes: 2 additions & 2 deletions config/500-core-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ spec:
value: triggermesh.io
# Deployment images
- name: MEMORYBROKER_BROKER_IMAGE
value: gcr.io/triggermesh/memory-broker:dev
value: gcr.io/triggermesh/memory-broker:latest
- name: REDISBROKER_REDIS_IMAGE
value: redis/redis-stack-server:latest
- name: REDISBROKER_BROKER_IMAGE
value: gcr.io/triggermesh/redis-broker:dev
value: gcr.io/triggermesh/redis-broker:latest
# Pull policy for broker, REMOVE for production environments
- name: REDISBROKER_BROKER_IMAGE_PULL_POLICY
value: Always
Expand Down
33 changes: 14 additions & 19 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,24 @@ We define _contributions_ as:

## Contents

1. [Code of Conduct](#code-of-conduct)

1. [Submitting Contributions](#submitting-contributions)
- [Reporting Bugs](#reporting-bugs)
- [Requesting Features and Enhancements](#requesting-features-and-enhancements)
- [Submitting Code Changes](#submitting-code-changes)

1. [Development Guidelines](#development-guidelines)

1. [Prerequisites](#prerequisites)
- [Contributing to TriggerMesh](#contributing-to-triggermesh)
- [Contents](#contents)
- [Code of Conduct](#code-of-conduct)
- [Submitting Contributions](#submitting-contributions)
- [Reporting Bugs](#reporting-bugs)
- [Issue Description](#issue-description)
- [Code Styling](#code-styling)
- [Requesting Features and Enhancements](#requesting-features-and-enhancements)
- [Submitting Code Changes](#submitting-code-changes)
- [Development Guidelines](#development-guidelines)
- [Prerequisites](#prerequisites)
- [Go Toolchain](#go-toolchain)
- [Kubernetes](#kubernetes)
- [ko](#ko)

1. [Running the Controller](#running-the-controller)
- [Running the Controller](#running-the-controller)
- [Controller Configuration](#controller-configuration)
- [Configuration Read From the Environment](#configuration-read-from-the-environment)
- [Configuration Read From ConfigMaps](#configuration-read-from-configmaps)
- [Locally](#locally)

## Code of Conduct
Expand Down Expand Up @@ -250,13 +252,6 @@ Additionally, the desired build version (container image) of each TriggerMesh co
environment variables. The full list can be found inside the [controller's Deployment manifest][tm-allenvs]. By default,
the controller uses the latest tagged public image from `gcr.io/triggermesh` for any given component.

To use your own image instead (e.g. the result of a development build), simply set the corresponding environment
variable to the reference of the image to use. For example:

```sh
# Use a custom build of the "Zendesk" event source adapter.
export ZENDESKSOURCE_IMAGE=docker.io/myuser/zendesksource:devel
```

##### Configuration Read From ConfigMaps

Expand Down