Skip to content

Commit fb490b8

Browse files
committed
ci(event-processor): add ThreadWinds ingestion plugin to build pipeline
1 parent 7c77a86 commit fb490b8

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

.github/workflows/v11-deployment-pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ jobs:
293293
cd ${{ github.workspace }}/plugins/soc-ai; go build -o com.utmstack.soc-ai.plugin -v .
294294
cd ${{ github.workspace }}/plugins/modules-config; go build -o com.utmstack.modules-config.plugin -v .
295295
cd ${{ github.workspace }}/plugins/crowdStrike; go build -o com.utmstack.crowdstrike.plugin -v .
296+
cd ${{ github.workspace }}/plugins/threadwinds-ingestion; go build -o com.utmstack.threadwinds-ingestion.plugin -v .
296297
297298
- name: Prepare Dependencies for Event Processor Image
298299
run: |

event_processor.Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ COPY ./plugins/stats/com.utmstack.stats.plugin /workdir/plugins/utmstack/
1818
COPY ./plugins/soc-ai/com.utmstack.soc-ai.plugin /workdir/plugins/utmstack/
1919
COPY ./plugins/modules-config/com.utmstack.modules-config.plugin /workdir/plugins/utmstack/
2020
COPY ./plugins/crowdStrike/com.utmstack.crowdstrike.plugin /workdir/plugins/utmstack/
21+
COPY ./plugins/threadwinds-ingestion/com.utmstack.threadwinds-ingestion.plugin /workdir/plugins/utmstack/

installer/docker/compose.go

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,17 @@ func (c *Compose) Populate(conf *config.Config, stack *StackConfig) error {
317317
"GIN_MODE=release",
318318
"MODE=manager",
319319
"NODE_NAME=manager",
320+
"INTERNAL_KEY=" + conf.InternalKey,
321+
"ENCRYPTION_KEY=" + conf.InternalKey,
322+
"BACKEND_URL=http://backend:8080",
323+
"ENV=" + conf.Branch,
324+
"OPENSEARCH_HOST=node1",
325+
"OPENSEARCH_PORT=9200",
326+
"DB_HOST=postgres",
327+
"DB_PORT=5432",
328+
"DB_USER=postgres",
329+
"DB_PASS=" + conf.Password,
330+
"DB_NAME=utmstack",
320331
},
321332
Logging: &dLogging,
322333
Deploy: &Deploy{

0 commit comments

Comments
 (0)