diff options
author | liamfallon <liam.fallon@est.tech> | 2022-11-09 18:10:03 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2022-11-09 18:10:09 +0000 |
commit | aa4d2f4e49b45db5198604a0765f64b99426826c (patch) | |
tree | c447cb5587f974644c077b33692c94ab84cbb141 /runtime/src/test/resources/clds/new-microservice.yaml | |
parent | b14259f6fa9b3bee8d9038a5d03c0c09b4f96ca9 (diff) |
Remove clamp-backend url forwarding support
The functionality to forward the requests from the UI to the other
microservices has been moved to the gui-server microservice.
Issue-ID: POLICY-4138
Change-Id: I3120e54894ab51194b20098c4c4d63679c15b06f
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'runtime/src/test/resources/clds/new-microservice.yaml')
-rw-r--r-- | runtime/src/test/resources/clds/new-microservice.yaml | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/runtime/src/test/resources/clds/new-microservice.yaml b/runtime/src/test/resources/clds/new-microservice.yaml deleted file mode 100644 index 70c1eda46..000000000 --- a/runtime/src/test/resources/clds/new-microservice.yaml +++ /dev/null @@ -1,46 +0,0 @@ -tosca_definitions_version: cloudify_dsl_1_3 - -imports: - - "http://www.getcloudify.org/spec/cloudify/4.5.5/types.yaml" - - "https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/R5/k8splugin/1.4.13/k8splugin_types.yaml" - - "https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/R5/clamppolicyplugin/1.0.0/clamppolicyplugin_types.yaml" - -inputs: - tag_version: - type: string - description: docker image - policy_model_id: - type: 'string' - default: 'onap.policies.monitoring.dcae-pm-initiation-handler' - policy_id: - type: 'string' - default: 'onap.policies.monitoring.dcae-pm-initiation-handler' - -node_templates: - pmsh: - relationships: - - type: cloudify.relationships.depends_on - target: pmsh-policy - - interfaces: - cloudify.interfaces.lifecycle: - start: - inputs: - ports: - - '8443:0' - - '8081:0' - properties: - image: - get_input: tag_version - replicas: 1 - service_component_type: "pmsh" - service_component_name_override: "pmsh" - type: dcae.nodes.ContainerizedServiceComponent - - pmsh-policy: - type: clamp.nodes.policy - properties: - policy_model_id: - get_input: policy_model_id - policy_id: - get_input: policy_id |