-
Notifications
You must be signed in to change notification settings - Fork 120
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
feat(events): add events extension #3045
base: main
Are you sure you want to change the base?
Conversation
28ab11e
to
bc805f9
Compare
@phoban01 nice work! thanks for starting this PR. |
@@ -954,7 +954,7 @@ func TestCookiestoreCleanup(t *testing.T) { | |||
err = os.Chtimes(sessionPath, changeTime, changeTime) | |||
So(err, ShouldBeNil) | |||
|
|||
imgStore := local.NewImageStore(rootDir, false, false, log, metrics, nil, nil, nil) | |||
imgStore := local.NewImageStore(rootDir, false, false, log, metrics, nil, nil, nil, nil) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We really need to shorten the args list into a struct we can pass around. Not related to your PR thouugh.
Updated with HTTP and NATs event sinks. Also generalized the sink config. |
"events": { | ||
"enable": true, | ||
"sinks": [{ | ||
"type": "nats", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what would credentials look like? and does it work?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How the credential config is going to be used will be specific to the sink implementation.
But for example when connecting to a nats server I have verified that the following works:
"extensions": {
"events": {
"enable": true,
"sinks": [{
"type": "nats",
"address": "nats://127.0.0.1:4222",
"timeout": "10s",
"channel": "alerts",
"credentials": {
"username": "jane.joe",
"password": "plain-text-or-encrypted-pass"
}
}]
}
}
If you don't want to pass credentials in the config then you can specify credentials.file
and supply the credentials via the filesystem.
Alternatively you could use the TLS settings to configure a secure connection to the event system.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^ this is a very good start.
cb0510d
to
6027785
Compare
Signed-off-by: Piaras Hoban <[email protected]>
Signed-off-by: Piaras Hoban <[email protected]>
Signed-off-by: Piaras Hoban <[email protected]>
Signed-off-by: Piaras Hoban <[email protected]>
Signed-off-by: Piaras Hoban <[email protected]>
Signed-off-by: Piaras Hoban <[email protected]>
Signed-off-by: Piaras Hoban <[email protected]>
Signed-off-by: Piaras Hoban <[email protected]>
Signed-off-by: Piaras Hoban <[email protected]>
6027785
to
ba31ccf
Compare
Anything I can do to help bump this along? cc: @rchincha |
What type of PR is this?
feature
Which issue does this PR fix:
#2992
What does this PR do / Why do we need it:
This PR introduces a new extension:
events
that enables publishing events in the CloudEvent schema.The following event types are implemented:
Two event sinks are implemented as part of this change:
Testing done on this change:
Unit tests added for http and nats event sinks. I have also tested things locally.
Automation added to e2e:
Will this break upgrades or downgrades?
No
Does this PR introduce any user-facing change?:
Yes it introduces a new configuration stanza for events.
The following shows how the extension may be configured:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.