File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ type coreConfig struct {
6363 EventsTopic string
6464 EvalTopic string
6565 CreatedSystemsTopic string
66+ AdvisoryUpdateTopic string
6667 PayloadTrackerTopic string
6768 RemediationUpdateTopic string
6869 NotificationsTopic string
@@ -171,6 +172,7 @@ func initTopicsFromEnv() {
171172 CoreCfg .EventsTopic = Getenv ("EVENTS_TOPIC" , "" )
172173 CoreCfg .EvalTopic = Getenv ("EVAL_TOPIC" , "" )
173174 CoreCfg .CreatedSystemsTopic = Getenv ("CREATED_SYSTEMS_TOPIC" , "" )
175+ CoreCfg .AdvisoryUpdateTopic = Getenv ("ADVISORY_UPDATE_TOPIC" , "" )
174176 CoreCfg .PayloadTrackerTopic = Getenv ("PAYLOAD_TRACKER_TOPIC" , "" )
175177 CoreCfg .RemediationUpdateTopic = Getenv ("REMEDIATIONS_UPDATE_TOPIC" , "" )
176178 CoreCfg .NotificationsTopic = Getenv ("NOTIFICATIONS_TOPIC" , "" )
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ KAFKA_READY_ADDRESS=http://kafka:9099/
1313
1414EVAL_TOPIC = patchman.evaluator.upload
1515CREATED_SYSTEMS_TOPIC = patchman.evaluator.user-evaluation
16+ ADVISORY_UPDATE_TOPIC = patchman.advisory.update
1617EVENTS_TOPIC = platform.inventory.events
1718NOTIFICATIONS_TOPIC = platform.notifications.ingress
1819PAYLOAD_TRACKER_TOPIC = platform.payload-status
Original file line number Diff line number Diff line change @@ -530,6 +530,7 @@ objects:
530530 - {replicas: 3, partitions: 10, topicName: platform.notifications.ingress}
531531 - {replicas: 3, partitions: 10, topicName: platform.content-sources.template}
532532 - {replicas: 3, partitions: 4, topicName: patchman.evaluator.user-evaluation}
533+ - {replicas: 3, partitions: 10, topicName: patchman.advisory.update}
533534
534535 dependencies :
535536 - host-inventory
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ for topic in \
88 " patchman.evaluator.recalc" \
99 " patchman.evaluator.upload" \
1010 " patchman.evaluator.user-evaluation" \
11+ " patchman.advisory.update" \
1112 " platform.content-sources.template" \
1213 " platform.inventory.events" \
1314 " platform.inventory.host-apps" \
You can’t perform that action at this time.
0 commit comments