You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Support publishing new log entries to Pub/Sub topics (#1580)
Adds initial support publishing new log entries to Pub/Sub topics. Interested
parties can subscribe to the topic in order to receive notifications when new
entries are added.
Signed-off-by: James Alseth <[email protected]>
Copy file name to clipboardexpand all lines: cmd/rekor-server/app/root.go
+4
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,10 @@ func init() {
93
93
Memory and file-based signers should only be used for testing.`)
94
94
rootCmd.PersistentFlags().String("rekor_server.signer-passwd", "", "Password to decrypt signer private key")
95
95
96
+
rootCmd.PersistentFlags().String("rekor_server.new_entry_publisher", "", "URL for pub/sub queue to send messages to when new entries are added to the log. Ignored if not set. Supported providers: [gcppubsub]")
97
+
rootCmd.PersistentFlags().Bool("rekor_server.publish_events_protobuf", false, "Whether to publish events in Protobuf wire format. Applies to all enabled event types.")
98
+
rootCmd.PersistentFlags().Bool("rekor_server.publish_events_json", false, "Whether to publish events in CloudEvents JSON format. Applies to all enabled event types.")
99
+
96
100
rootCmd.PersistentFlags().Uint16("port", 3000, "Port to bind to")
97
101
98
102
rootCmd.PersistentFlags().Bool("enable_retrieve_api", true, "enables Redis-based index API endpoint")
0 commit comments