From: Jessica Wagantall Date: Wed, 10 Apr 2019 23:37:51 +0000 (-0700) Subject: Use WS Agent config file internally X-Git-Tag: v0.36.0~4 X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F58%2F15258%2F3;hp=00abd5048e7fa6b55c2ccda441a8c7e72cd2d48d;p=releng%2Fglobal-jjb.git Use WS Agent config file internally After checking with legal, it was agreed to not allow tech teams to provide their own wss-unified-agent.config file for WhiteSource scans. Instead, this file should be managed in Jenkins Settings Files Change-Id: I20e330794ba28cb4c0f5206c290a734c1794b00e Signed-off-by: Jessica Wagantall --- diff --git a/jjb/lf-whitesource-jobs.yaml b/jjb/lf-whitesource-jobs.yaml index 89673741..7dc5d507 100644 --- a/jjb/lf-whitesource-jobs.yaml +++ b/jjb/lf-whitesource-jobs.yaml @@ -7,6 +7,10 @@ - builder: name: lf-infra-wss-unified-agent-scan builders: + - config-file-provider: + files: + - file-id: wss-unified-agent.config + target: $WORKSPACE/wss-unified-agent.config - shell: !include-raw: - ../shell/whitesource-unified-agent-cli.sh @@ -105,10 +109,6 @@ name: WSS_PRODUCT_NAME default: '{wss-product-name}' description: Product to asociate the WhiteSource report in the dashboard. - - string: - name: WSS_UNIFIED_AGENT_CONFIG - default: '{wss-unified-agent-config}' - description: Path to wss-unifed-agent.config - string: name: WSS_UNIFIED_AGENT_OPTIONS default: '{wss-unified-agent-opts}' diff --git a/releasenotes/notes/wss-unified-agent-config-592baf00daee99e9.yaml b/releasenotes/notes/wss-unified-agent-config-592baf00daee99e9.yaml new file mode 100644 index 00000000..c722cfa7 --- /dev/null +++ b/releasenotes/notes/wss-unified-agent-config-592baf00daee99e9.yaml @@ -0,0 +1,8 @@ +--- +fixes: + - wss-unified-agent.config file should not be opened + for configuration to tech teams. The config file should + be part of Jenkins Settings Files and called via Managed + Files. + wss-unified-agent.config must be created in Jenkins config + files based on wss-unified-agent.config.example. diff --git a/shell/whitesource-unified-agent-cli.sh b/shell/whitesource-unified-agent-cli.sh index 750a1523..6918f9cb 100644 --- a/shell/whitesource-unified-agent-cli.sh +++ b/shell/whitesource-unified-agent-cli.sh @@ -21,7 +21,7 @@ jar_location="/tmp/wss-unified-agent-$WSS_UNIFIED_AGENT_VERSION.jar" wget -nv https://s3.amazonaws.com/unified-agent/wss-unified-agent-$WSS_UNIFIED_AGENT_VERSION.jar \ -O $jar_location echo "---> Running WhiteSource Unified Agent CLI ..." -java -jar $jar_location -c $WSS_UNIFIED_AGENT_CONFIG \ +java -jar $jar_location -c wss-unified-agent.config \ -product $WSS_PRODUCT_NAME -project $WSS_PROJECT_NAME \ ${WSS_UNIFIED_AGENT_OPTIONS:-} rm $jar_location