From bc50cd0b007ca56b26735b047a1ed56003f9ca90 Mon Sep 17 00:00:00 2001 From: Nicolas Hu Date: Fri, 18 Sep 2020 14:07:49 -0400 Subject: [PATCH] update the config schemas Signed-off-by: Jun (Nicolas) Hu Change-Id: I1ad6cf3fe55611da12a1d17e980e33a8e30be18b --- .../xapp_onboarder/xapp-onboarder-api.yaml | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/xapp_onboarder/xapp_onboarder/xapp-onboarder-api.yaml b/xapp_onboarder/xapp_onboarder/xapp-onboarder-api.yaml index 28b48f9..43cb490 100644 --- a/xapp_onboarder/xapp_onboarder/xapp-onboarder-api.yaml +++ b/xapp_onboarder/xapp_onboarder/xapp-onboarder-api.yaml @@ -241,6 +241,7 @@ components: required: - version - xapp_name + - containers type: object properties: xapp_name: @@ -250,6 +251,34 @@ components: pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$ type: string description: Version of the xApp chart + containers: + type: object + properties: {} + description: list of containers that the xApp will run + controls: + type: object + properties: {} + description: internal configuration of the xApp + metrics: + type: object + properties: {} + description: metrics provided by the xApp + messaging: + type: object + properties: {} + description: communication ports for each containers + livenessProbe: + type: object + properties: {} + description: liveness probe + readinessProbe: + type: object + properties: {} + description: readiness probe + rmr: + type: object + properties: {} + description: rmr info error_message: required: - error_message -- 2.16.6