diff options
author | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2024-01-16 12:21:26 +0000 |
---|---|---|
committer | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2024-01-16 14:01:45 +0000 |
commit | caa7adc30ed054d2a5cfea4a1b9a265d5cfb6785 (patch) | |
tree | a873dac6375e1f6e2cff6c443aa9835f75fbea33 /csit/resources/scripts/get-cluster-info.sh | |
parent | f2e4da7e296548fb3980fd212e3a67dc83254e1d (diff) |
Remove Dmaap configurations from CSITs
Issue-ID: POLICY-4880
Change-Id: I4f973ef1f7a173eaf5f196d9991d67d584e235fe
Signed-off-by: rameshiyer27 <ramesh.murugan.iyer@est.tech>
Diffstat (limited to 'csit/resources/scripts/get-cluster-info.sh')
-rwxr-xr-x | csit/resources/scripts/get-cluster-info.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csit/resources/scripts/get-cluster-info.sh b/csit/resources/scripts/get-cluster-info.sh index 272d2965..ab0b27b9 100755 --- a/csit/resources/scripts/get-cluster-info.sh +++ b/csit/resources/scripts/get-cluster-info.sh @@ -31,7 +31,7 @@ export ACM_PORT=30007 export POLICY_PF_PARTICIPANT_PORT=30008 export POLICY_HTTP_PARTICIPANT_PORT=30009 export POLICY_K8S_PARTICIPANT_PORT=30010 -export DMAAP_PORT=30904 +export SIMULATOR_PORT=30904 # Retrieve pod names function get_pod_names() { @@ -113,7 +113,7 @@ function patch_ports() { function setup_message_router_svc() { microk8s kubectl expose service message-router --name message-router-svc --type NodePort --protocol TCP --port 3904 --target-port 3904 - microk8s kubectl patch service message-router-svc --namespace=default --type='json' --patch='[{"op": "replace", "path": "/spec/ports/0/nodePort", "value":'"$DMAAP_PORT"'}]' + microk8s kubectl patch service message-router-svc --namespace=default --type='json' --patch='[{"op": "replace", "path": "/spec/ports/0/nodePort", "value":'"$SIMULATOR_PORT"'}]' } ####MAIN### |