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

feat(events): add events extension #3045

Open
wants to merge 9 commits into
base: main
Choose a base branch
from

Conversation

phoban01
Copy link

@phoban01 phoban01 commented Mar 19, 2025

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:

  • RepositoryCreated
  • ImageUpdated
  • ImageDeleted
  • ImageLintFailed

Two event sinks are implemented as part of this change:

  • HTTP: a generic http event sink that can be used for webhook style eventing
  • NATS: a nats event sink that can send events to a nats server

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:

  "extensions": {
    "events": {
      "enable": true,
      "sinks": [
        {
          "type": "nats",
          "address": "nats://127.0.0.1:4222",
          "timeout": "2s",
          "channel": "alerts.images"
       }, 
        {
          "type": "http",
          "address": "http://127.0.0.1:3333/events/zot/webhook",
          "timeout": "5s",
       }]
    }
  }

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

@phoban01 phoban01 changed the title Feat: support events (feat): support events Mar 19, 2025
@phoban01 phoban01 changed the title (feat): support events feat(events): add events extension Mar 19, 2025
@phoban01 phoban01 force-pushed the feat-support-events branch from 28ab11e to bc805f9 Compare March 19, 2025 18:35
@rchincha
Copy link
Contributor

@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)
Copy link
Contributor

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.

@phoban01
Copy link
Author

Updated with HTTP and NATs event sinks. Also generalized the sink config.

@phoban01 phoban01 marked this pull request as ready for review March 20, 2025 18:19
@phoban01 phoban01 requested a review from rchincha March 21, 2025 16:31
"events": {
"enable": true,
"sinks": [{
"type": "nats",
Copy link
Contributor

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?

Copy link
Author

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.

Copy link
Contributor

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.

@phoban01 phoban01 force-pushed the feat-support-events branch from cb0510d to 6027785 Compare March 25, 2025 16:09
@phoban01 phoban01 force-pushed the feat-support-events branch from 6027785 to ba31ccf Compare March 31, 2025 06:47
@phoban01
Copy link
Author

phoban01 commented Apr 2, 2025

Anything I can do to help bump this along? cc: @rchincha

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants