diff options
author | efiacor <fiachra.corcoran@est.tech> | 2023-02-17 07:47:55 +0000 |
---|---|---|
committer | efiacor <fiachra.corcoran@est.tech> | 2023-02-17 18:59:01 +0000 |
commit | 7009bc0f98304fe90aa10549eaeeb5ae50204fbb (patch) | |
tree | 37221bd84486308fc16bb930d9e07ae42d03dcee /kubernetes/robot | |
parent | 3afce3d632a64c5f29056e069c296782795553a5 (diff) |
[CLI] Remove aaf dependency
Remove aaf dependency from CLI
Remove NodePort from CLI
Signed-off-by: efiacor <fiachra.corcoran@est.tech>
Change-Id: Ia9f4f3417aff502a195a5849fe2e56243ba9c54b
Issue-ID: OOM-3096
Diffstat (limited to 'kubernetes/robot')
-rw-r--r-- | kubernetes/robot/resources/config/eteshare/config/robot_properties.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/robot/resources/config/eteshare/config/robot_properties.py b/kubernetes/robot/resources/config/eteshare/config/robot_properties.py index c57685a37e..ff977554b3 100644 --- a/kubernetes/robot/resources/config/eteshare/config/robot_properties.py +++ b/kubernetes/robot/resources/config/eteshare/config/robot_properties.py @@ -143,8 +143,8 @@ GLOBAL_CLAMP_SERVER_PORT = '{{include "robot.ingress.port" (dict "root" . "hostn GLOBAL_NBI_SERVER_PROTOCOL = 'http{{ (eq "true" (include "common.needTLS" .)) | ternary "s" "" }}' GLOBAL_NBI_SERVER_PORT = '{{include "robot.ingress.port" (dict "root" . "hostname" "nbi" "port" ( ternary 8443 8080 (eq "true" (include "common.needTLS" . )))) }}' # cli info - everything is from the private oam network (also called onap private network) -GLOBAL_CLI_SERVER_PROTOCOL = "https" -GLOBAL_CLI_SERVER_PORT = '{{include "robot.ingress.port" (dict "root" . "hostname" "cli" "port" 443) }}' +GLOBAL_CLI_SERVER_PROTOCOL = "http" +GLOBAL_CLI_SERVER_PORT = '{{include "robot.ingress.port" (dict "root" . "hostname" "cli" "port" 8080) }}' # dcae info - everything is from the private oam network (also called onap private network) GLOBAL_DCAE_SERVER_PROTOCOL = "http" GLOBAL_DCAE_HEALTH_SERVER_PORT = '{{include "robot.ingress.port" (dict "root" . "hostname" "dcae-healthcheck" "port" 80) }}' |