diff options
author | 2022-04-06 14:21:50 +0200 | |
---|---|---|
committer | 2022-05-17 09:04:28 +0200 | |
commit | 965cf0ea3cd08fdad7ec28a5078032dada455124 (patch) | |
tree | 4f40953924a0ee4253b471215acd4edb8a6638b4 /tools/development/config-dmaap.sh | |
parent | d1677918385c6efac68eb2121991ed653d412200 (diff) |
Disable TLS in DataRouter (CSIT)
Issue-ID: DCAEGEN2-3037
Signed-off-by: Tomasz Wrobel <tomasz.wrobel@nokia.com>
Change-Id: I01dd54ac173ed2bf705071e2bca118a068680f0a
Diffstat (limited to 'tools/development/config-dmaap.sh')
-rwxr-xr-x | tools/development/config-dmaap.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/development/config-dmaap.sh b/tools/development/config-dmaap.sh index a06d883..7b3a807 100755 --- a/tools/development/config-dmaap.sh +++ b/tools/development/config-dmaap.sh @@ -1,6 +1,6 @@ #!/bin/bash # ============LICENSE_START======================================================= -# Copyright (C) 2021 NOKIA +# Copyright (C) 2021-2022 NOKIA # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -29,8 +29,8 @@ for i in $(seq 10); do done # Data Router Configuration. -docker exec -i datarouter-prov sh -c "curl -k -X PUT https://$DR_PROV_IP:8443/internal/api/NODES?val=dmaap-dr-node\|$GATEWAY_IP" -docker exec -i datarouter-prov sh -c "curl -k -X PUT https://$DR_PROV_IP:8443/internal/api/PROV_AUTH_ADDRESSES?val=dmaap-dr-prov\|$GATEWAY_IP" +docker exec -i datarouter-prov sh -c "curl -X PUT http://$DR_PROV_IP:8080/internal/api/NODES?val=dmaap-dr-node\|$GATEWAY_IP" +docker exec -i datarouter-prov sh -c "curl -X PUT http://$DR_PROV_IP:8080/internal/api/PROV_AUTH_ADDRESSES?val=dmaap-dr-prov\|$GATEWAY_IP" # Create PM Mapper feed on data router -curl -v -X POST -H "Content-Type:application/vnd.dmaap-dr.feed" -H "X-DMAAP-DR-ON-BEHALF-OF:pmmapper" --data-ascii @./resources/createFeed.json --post301 --location-trusted -k https://localhost:8443 +curl -v -X POST -H "Content-Type:application/vnd.dmaap-dr.feed" -H "X-DMAAP-DR-ON-BEHALF-OF:pmmapper" --data-ascii @./resources/createFeed.json --post301 --location-trusted -k http://localhost:8080 |