From 255c51b97562e65ff998effc3e912aa2b0a3d1a1 Mon Sep 17 00:00:00 2001 From: PatrikBuhr Date: Thu, 9 Mar 2023 12:07:37 +0100 Subject: [PATCH] Removal of non used blueprint file Signed-off-by: PatrikBuhr Issue-ID: NONRTRIC-743 Change-Id: I6c30af42164c6b98dcd8f3ad2857be10eb22ab1a --- dpo/blueprints/k8s-policy-agent.yaml | 115 ----------------------------------- 1 file changed, 115 deletions(-) delete mode 100644 dpo/blueprints/k8s-policy-agent.yaml diff --git a/dpo/blueprints/k8s-policy-agent.yaml b/dpo/blueprints/k8s-policy-agent.yaml deleted file mode 100644 index 4d4309b..0000000 --- a/dpo/blueprints/k8s-policy-agent.yaml +++ /dev/null @@ -1,115 +0,0 @@ -# ============LICENSE_START=============================================== -# Copyright (C) 2020-2022 Nordix Foundation. All rights reserved. -# ======================================================================== -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ============LICENSE_END================================================= -# - -#description: Docker application of Policy Agent managing policies -#blueprint_version: 1.0.0 ---- -tosca_definitions_version: cloudify_dsl_1_3 -description: Docker application to collect log file from PNF -imports: - - http://www.getcloudify.org/spec/cloudify/4.3.1/types.yaml - - https://nexus.onap.org/service/local/repositories/raw/content/org.onap.dcaegen2.platform.plugins/R5/k8splugin/1.6.0/k8splugin_types.yaml - - https://nexus.onap.org/service/local/repositories/raw/content/org.onap.ccsdk.platform.plugins/type_files/dmaap/dmaap.yaml -inputs: - policy-agent_cpu_limit: - type: string - default: "250m" - policy-agent_cpu_request: - type: string - default: "250m" - policy-agent_memory_limit: - type: string - default: "256Mi" - policy-agent_memory_request: - type: string - default: "256Mi" - envs: - default: {} - external_port: - type: string - default: ":0" - publish_topic_name: - type: string - default: "A1-POLICY-AGENT-WRITE" - subscribe_topic_name: - type: string - default: "A1-POLICY-AGENT-READ" - consumer_group: - type: string - default: "users" - consumer_id: - type: string - default: "policy-agent" - log_directory: - type: string - default: "/var/log/policy-agent" - replicas: - type: integer - description: number of instances - default: 1 - tag_version: - type: string - default: "nexus3.o-ran-sc.org:10004/o-ran-sc/nonrtric-policy-agent:1.0.0" -node_templates: - policy-agent: - type: dcae.nodes.ContainerizedServiceComponentUsingDmaap - interfaces: - cloudify.interfaces.lifecycle: - start: - inputs: - envs: - get_input: envs - properties: - application_config: - ric: - - name: ric1 - baseUrl: http://localhost:8083/ - managedElementIds: - - kista_1 - - kista_2 - - name: ric2 - baseUrl: http://localhost:8085/ - managedElementIds: - - kista_3 - - kista_4 - docker_config: - healthcheck: - interval: 15s - timeout: 1s - type: http - endpoint: /status - ports: - - concat: ["8081", { get_input: external_port }] - image: - get_input: tag_version - service_component_type: policy-agent - log_info: - log_directory: - get_input: log_directory - replicas: - get_input: replicas - resource_config: - limits: - cpu: - get_input: policy-agent_cpu_limit - memory: - get_input: policy-agent_memory_limit - requests: - cpu: - get_input: policy-agent_cpu_request - memory: - get_input: policy-agent_memory_request -- 2.16.6