Skip to content

psucodervn/crmon

Repository files navigation

Container Registry Monitor Build Status


Description

Monitoring for new image updates in Google Container Registry. Can be use as a standalone app or import as a library. You can write your own subscriber that implements Subscriber interface to deal with new events.

type Event struct {
  Action string `json:"action"`
  Tag    string `json:"tag"`
  Digest string `json:"digest"`
}

type Subscriber interface {
  Name() string
  Init() error
  Cleanup() error
  OnReceive(event Event) error
}

Features:

Examples

Print to console

Print to console

Run a shell script

Run a shell script

Send message to Slack

Send message to Slack

Send message to Mattermost

Send message to Mattermost

About

Google Container Registry monitor

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages