-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add publisher configuration example docs
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Publishers | ||
|
||
Various publishers are available for use publishing packages, each of these can be configured for use as seen in examples below. | ||
|
||
## Configuration examples | ||
|
||
### stdout | ||
|
||
``` | ||
publisher: | ||
type: stdout | ||
``` | ||
|
||
### GCP Pub Sub | ||
|
||
``` | ||
publisher: | ||
type: gcp_pubsub | ||
config: | ||
url: gcppubsub://foo.bar | ||
``` | ||
|
||
### stdout | ||
|
||
``` | ||
publisher: | ||
type: kafka | ||
config: | ||
brokers: | ||
- 127.0.0.1:9092 | ||
topic: packagefeeds | ||
``` | ||
|