diff --git a/.gitignore b/.gitignore index e3d3b5fb..6e83e1fb 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,33 @@ **/reports/ __pycache__ .vscode/ +.DS_Store + +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib +bin +testbin/* +Dockerfile.cross + +# Test binary, build with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Kubernetes Generated files - skip generated files, except for vendored files + +!vendor/**/zz_generated.* + +# editor and IDE paraphernalia +.idea +*.swp +*.swo +*~ + +# omit coverage files +coverage.out \ No newline at end of file diff --git a/Makefile b/Makefile index 7afabb8c..34d12f2f 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ bin_win: .PHONY: test test: - go test -v ./... + go test -v -coverprofile=coverage.out ./... # Build the container image. Usage: make build-image IMAGE_TAG=my_tag # If IMAGE_TAG is not provided, use the COMMIT_ID diff --git a/internal/chartverifier/checks/.DS_Store b/internal/chartverifier/checks/.DS_Store deleted file mode 100644 index 0c13b770..00000000 Binary files a/internal/chartverifier/checks/.DS_Store and /dev/null differ diff --git a/internal/chartverifier/checks/checks.go b/internal/chartverifier/checks/checks.go index 8e1cc303..8eb0be65 100644 --- a/internal/chartverifier/checks/checks.go +++ b/internal/chartverifier/checks/checks.go @@ -341,7 +341,9 @@ func SignatureIsValid(opts *CheckOptions) (Result, error) { resp, err := http.Get(provFile) if err != nil { return NewResult(false, fmt.Sprintf("%s : get error was %v", SignatureFailure, err)), nil - } else if resp.StatusCode == 404 { + } + + if resp.StatusCode == 404 { return NewSkippedResult(fmt.Sprintf("%s : %s", ChartNotSigned, SignatureIsNotPresentSuccess)), nil } else if resp.StatusCode != 200 { return NewResult(false, fmt.Sprintf("%s. get prov file response code was %d", SignatureFailure, resp.StatusCode)), nil @@ -467,12 +469,8 @@ func getOCPRange(kubeVersionRange string) (string, error) { } func downloadFile(fileURL *url.URL, directory string) (string, error) { - urlPath := fileURL.Path - segments := strings.Split(urlPath, "/") - fileName := segments[len(segments)-1] - // Create blank file - filePath := path.Join(directory, fileName) + filePath := path.Join(directory, path.Base(fileURL.Path)) // #nosec G304 file, err := os.Create(filePath) if err != nil { diff --git a/internal/chartverifier/checks/checks_test.go b/internal/chartverifier/checks/checks_test.go index ead9bbed..24f1e91a 100644 --- a/internal/chartverifier/checks/checks_test.go +++ b/internal/chartverifier/checks/checks_test.go @@ -594,11 +594,13 @@ func TestSignatureIsValid(t *testing.T) { }, } + config := viper.New() + var base64Key string + var encodeErr error + for _, tc := range testCases { t.Run(tc.description, func(t *testing.T) { - config := viper.New() - base64Key := "" - var encodeErr error + base64Key = "" if len(tc.keyFile) > 0 { base64Key, encodeErr = tool.GetEncodedKey(tc.keyFile) require.NoError(t, encodeErr) diff --git a/internal/chartverifier/checks/test.out b/internal/chartverifier/checks/test.out deleted file mode 100644 index 021b3570..00000000 --- a/internal/chartverifier/checks/test.out +++ /dev/null @@ -1,6961 +0,0 @@ -=== RUN TestChartTesting - charttesting_test.go:34: CHART_VERIFIER_ENABLE_CLUSTER_TESTING not set, skipping in cluster tests ---- SKIP: TestChartTesting (0.00s) -=== RUN TestVersionSetting -=== RUN TestVersionSetting/oc.Version_returns_4.7.9 -=== RUN TestVersionSetting/oc.Version_returns_error,_flag_set_to_4.7.8 -=== RUN TestVersionSetting/oc.Version_returns_semantic_error,_flag_set_to_fourseveneight -=== RUN TestVersionSetting/oc.Version_returns_error,_flag_not_set ---- PASS: TestVersionSetting (0.00s) - --- PASS: TestVersionSetting/oc.Version_returns_4.7.9 (0.00s) - --- PASS: TestVersionSetting/oc.Version_returns_error,_flag_set_to_4.7.8 (0.00s) - --- PASS: TestVersionSetting/oc.Version_returns_semantic_error,_flag_set_to_fourseveneight (0.00s) - --- PASS: TestVersionSetting/oc.Version_returns_error,_flag_not_set (0.00s) -=== RUN TestIsHelmV3 -=== RUN TestIsHelmV3/valid_tarball -=== RUN TestIsHelmV3/invalid_tarball ---- PASS: TestIsHelmV3 (0.01s) - --- PASS: TestIsHelmV3/valid_tarball (0.00s) - --- PASS: TestIsHelmV3/invalid_tarball (0.00s) -=== RUN TestHasReadme -=== RUN TestHasReadme/chart_with_README -=== RUN TestHasReadme/chart_with_README#01 ---- PASS: TestHasReadme (0.00s) - --- PASS: TestHasReadme/chart_with_README (0.00s) - --- PASS: TestHasReadme/chart_with_README#01 (0.00s) -=== RUN TestContainsTest -=== RUN TestContainsTest/tarball_contains_at_least_one_test -=== RUN TestContainsTest/tarball_contains_at_least_one_test#01 ---- PASS: TestContainsTest (0.00s) - --- PASS: TestContainsTest/tarball_contains_at_least_one_test (0.00s) - --- PASS: TestContainsTest/tarball_contains_at_least_one_test#01 (0.00s) -=== RUN TestHasValuesSchema -=== RUN TestHasValuesSchema/chart_with_values -=== RUN TestHasValuesSchema/chart_without_values ---- PASS: TestHasValuesSchema (0.00s) - --- PASS: TestHasValuesSchema/chart_with_values (0.00s) - --- PASS: TestHasValuesSchema/chart_without_values (0.00s) -=== RUN TestHasValues -=== RUN TestHasValues/chart_with_values -=== RUN TestHasValues/chart_without_values ---- PASS: TestHasValues (0.00s) - --- PASS: TestHasValues/chart_with_values (0.00s) - --- PASS: TestHasValues/chart_without_values (0.00s) -=== RUN TestHasMinKubeVersion -=== RUN TestHasMinKubeVersion/minimum_Kubernetes_version_specified -=== RUN TestHasMinKubeVersion/minimum_Kubernetes_version_not_specified ---- PASS: TestHasMinKubeVersion (0.00s) - --- PASS: TestHasMinKubeVersion/minimum_Kubernetes_version_specified (0.00s) - --- PASS: TestHasMinKubeVersion/minimum_Kubernetes_version_not_specified (0.00s) -=== RUN TestNotContainCRDs -=== RUN TestNotContainCRDs/Not_contain_CRDs -=== RUN TestNotContainCRDs/Contain_CRDs ---- PASS: TestNotContainCRDs (0.00s) - --- PASS: TestNotContainCRDs/Not_contain_CRDs (0.00s) - --- PASS: TestNotContainCRDs/Contain_CRDs (0.00s) -=== RUN TestNotContainCSIObjects -=== RUN TestNotContainCSIObjects/Not_contain_CSI_objects -=== RUN TestNotContainCSIObjects/Contain_CRDs ---- PASS: TestNotContainCSIObjects (0.00s) - --- PASS: TestNotContainCSIObjects/Not_contain_CSI_objects (0.00s) - --- PASS: TestNotContainCSIObjects/Contain_CRDs (0.00s) -=== RUN TestHelmLint -=== RUN TestHelmLint/Helm_lint_works_for_valid_chart -=== RUN TestHelmLint/Helm_lint_works_for_chart_with_lint_INFO_message -=== RUN TestHelmLint/Helm_lint_works_for_chart_with_lint_WARNING_message -=== RUN TestHelmLint/Helm_lint_fails_for_chart_with_lint_error ---- PASS: TestHelmLint (0.04s) - --- PASS: TestHelmLint/Helm_lint_works_for_valid_chart (0.01s) - --- PASS: TestHelmLint/Helm_lint_works_for_chart_with_lint_INFO_message (0.01s) - --- PASS: TestHelmLint/Helm_lint_works_for_chart_with_lint_WARNING_message (0.01s) - --- PASS: TestHelmLint/Helm_lint_fails_for_chart_with_lint_error (0.01s) -=== RUN TestImageCertify -=== RUN TestImageCertify/chart-0.1.0-v3.valid.tgz_check_images_passes - checks_test.go:390: - Error Trace: checks_test.go:390 - Error: Should be true - Test: TestImageCertify/chart-0.1.0-v3.valid.tgz_check_images_passes -=== RUN TestImageCertify/Helm_check_images_fails -=== RUN TestImageCertify/Helm_check_images_fails#01 ---- FAIL: TestImageCertify (2.51s) - --- FAIL: TestImageCertify/chart-0.1.0-v3.valid.tgz_check_images_passes (2.24s) - --- PASS: TestImageCertify/Helm_check_images_fails (0.15s) - --- PASS: TestImageCertify/Helm_check_images_fails#01 (0.11s) -=== RUN TestImageParsing -=== RUN TestImageParsing/Single_repo_Default_version_1 -=== RUN TestImageParsing/Single_repo_Default_version_2 -=== RUN TestImageParsing/Single_repo_with_version -=== RUN TestImageParsing/Double_repo_with_version -=== RUN TestImageParsing/Triple_repo_with_version -=== RUN TestImageParsing/Registry,_single_repo_with_version -=== RUN TestImageParsing/Registry,_double_repo_with_version -=== RUN TestImageParsing/Registry_with_port,_double_repo_with_version -=== RUN TestImageParsing/Single_repo_Sha256 -=== RUN TestImageParsing/Single_repo_Sha128 ---- PASS: TestImageParsing (0.00s) - --- PASS: TestImageParsing/Single_repo_Default_version_1 (0.00s) - --- PASS: TestImageParsing/Single_repo_Default_version_2 (0.00s) - --- PASS: TestImageParsing/Single_repo_with_version (0.00s) - --- PASS: TestImageParsing/Double_repo_with_version (0.00s) - --- PASS: TestImageParsing/Triple_repo_with_version (0.00s) - --- PASS: TestImageParsing/Registry,_single_repo_with_version (0.00s) - --- PASS: TestImageParsing/Registry,_double_repo_with_version (0.00s) - --- PASS: TestImageParsing/Registry_with_port,_double_repo_with_version (0.00s) - --- PASS: TestImageParsing/Single_repo_Sha256 (0.00s) - --- PASS: TestImageParsing/Single_repo_Sha128 (0.00s) -=== RUN TestRequiredAnnotationsPresent -=== RUN TestRequiredAnnotationsPresent/chart_with_no_missing_required_annotations -=== RUN TestRequiredAnnotationsPresent/chart_with_missing_required_annotations ---- PASS: TestRequiredAnnotationsPresent (0.01s) - --- PASS: TestRequiredAnnotationsPresent/chart_with_no_missing_required_annotations (0.01s) - --- PASS: TestRequiredAnnotationsPresent/chart_with_missing_required_annotations (0.00s) -=== RUN TestSemVers -=== RUN TestSemVers/Check_kube_version_~1.22-0 -=== RUN TestSemVers/Check_kube_version_1.22.* -=== RUN TestSemVers/Check_kube_version_^1.22 -=== RUN TestSemVers/Check_kube_version_>=1.20-0 -=== RUN TestSemVers/Check_kube_version_1.21_-_1.22 -=== RUN TestSemVers/Check_kube_version_>1.20 -=== RUN TestSemVers/Check_kube_version_~1.21 -=== RUN TestSemVers/Check_kube_version_>=_1.14.0-0 -=== RUN TestSemVers/Check_kube_version_1.16_-_1.21 -=== RUN TestSemVers/Check_kube_version_* -=== RUN TestSemVers/Check_kube_version_>=1.16.0_<1.22.0 ---- PASS: TestSemVers (0.00s) - --- PASS: TestSemVers/Check_kube_version_~1.22-0 (0.00s) - --- PASS: TestSemVers/Check_kube_version_1.22.* (0.00s) - --- PASS: TestSemVers/Check_kube_version_^1.22 (0.00s) - --- PASS: TestSemVers/Check_kube_version_>=1.20-0 (0.00s) - --- PASS: TestSemVers/Check_kube_version_1.21_-_1.22 (0.00s) - --- PASS: TestSemVers/Check_kube_version_>1.20 (0.00s) - --- PASS: TestSemVers/Check_kube_version_~1.21 (0.00s) - --- PASS: TestSemVers/Check_kube_version_>=_1.14.0-0 (0.00s) - --- PASS: TestSemVers/Check_kube_version_1.16_-_1.21 (0.00s) - --- PASS: TestSemVers/Check_kube_version_* (0.00s) - --- PASS: TestSemVers/Check_kube_version_>=1.16.0_<1.22.0 (0.00s) -=== RUN TestLoadChartFromURI -=== RUN TestLoadChartFromURI/absolute_path -=== RUN TestLoadChartFromURI/remote_path,_http -=== RUN TestLoadChartFromURI/non_existing_file -=== RUN TestLoadChartFromURI/non_existing_remote_file ---- PASS: TestLoadChartFromURI (0.01s) - --- PASS: TestLoadChartFromURI/absolute_path (0.00s) - --- PASS: TestLoadChartFromURI/remote_path,_http (0.01s) - --- PASS: TestLoadChartFromURI/non_existing_file (0.00s) - --- PASS: TestLoadChartFromURI/non_existing_remote_file (0.00s) -=== RUN TestTemplate -=== RUN TestTemplate/chart-0.1.0-v3.valid.tgz_images_ -=== RUN TestTemplate/chart-0.1.0-v3.with-crd.tgz -=== RUN TestTemplate/chart-0.1.0-v3.with-csi.tgz ---- PASS: TestTemplate (0.01s) - --- PASS: TestTemplate/chart-0.1.0-v3.valid.tgz_images_ (0.00s) - --- PASS: TestTemplate/chart-0.1.0-v3.with-crd.tgz (0.00s) - --- PASS: TestTemplate/chart-0.1.0-v3.with-csi.tgz (0.00s) -=== RUN TestImageParse -Process line: NAME: mchart -Process line: LAST DEPLOYED: Thu Apr 14 09:37:13 2022 -Process line: NAMESPACE: test -Process line: STATUS: pending-install -Process line: REVISION: 1 -Process line: HOOKS: -Process line: --- -Process line: # Source: cucp/templates/tests/test.yaml -Process line: apiVersion: v1 -Process line: kind: Pod -Process line: metadata: -Process line: name: "mchart-credentials-test" -Process line: annotations: -Process line: "helm.sh/hook": test -Process line: -Process line: spec: -Process line: containers: -Process line: - name: create-dir -Process line: image: "10.69.44.72/dishran/gnb_mgr:cucp-gnb_mgr-5.0.326.53" -Found image: 10.69.44.72/dishran/gnb_mgr:cucp-gnb_mgr-5.0.326.53 -Process line: -Process line: command: ["/bin/bash"] -Process line: args: ["-c","service mvrp status"] -Process line: restartPolicy: Never -Process line: MANIFEST: -Process line: --- -Process line: # Source: cucp/charts/gnbmgr/templates/serviceaccount.yaml -Process line: apiVersion: v1 -Process line: kind: ServiceAccount -Process line: metadata: -Process line: name: gnbmgraccount -Process line: namespace: test -Process line: --- -Process line: # Source: cucp/charts/ngclientiwf/templates/serviceaccount.yaml -Process line: apiVersion: v1 -Process line: kind: ServiceAccount -Process line: metadata: -Process line: name: ngclientiwfaccount -Process line: namespace: test -Process line: --- -Process line: # Source: cucp/charts/sctpe1iwf/templates/serviceaccount.yaml -Process line: apiVersion: v1 -Process line: kind: ServiceAccount -Process line: metadata: -Process line: name: sctpe1iwfaccount -Process line: namespace: test -Process line: --- -Process line: # Source: cucp/charts/sctpf1iwf/templates/serviceaccount.yaml -Process line: apiVersion: v1 -Process line: kind: ServiceAccount -Process line: metadata: -Process line: name: sctpf1iwfaccount -Process line: namespace: test -Process line: --- -Process line: # Source: cucp/charts/sctpxniwf/templates/serviceaccount.yaml -Process line: apiVersion: v1 -Process line: kind: ServiceAccount -Process line: metadata: -Process line: name: sctpxniwfaccount -Process line: namespace: test -Process line: --- -Process line: # Source: cucp/charts/ueconmgr/templates/serviceaccount.yaml -Process line: apiVersion: v1 -Process line: kind: ServiceAccount -Process line: metadata: -Process line: name: ueconmgraccount -Process line: namespace: test -Process line: --- -Process line: # Source: cucp/charts/gnbmgr/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - NAMESPACE -Process line: -Process line: -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: -Process line: apiVersion: v1 -Process line: kind: ConfigMap -Process line: metadata: -Process line: name: gnbmgr-static-cfg -Process line: namespace: test -Process line: labels: -Process line: microSvcName: gnbmgr -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "gnbmgr", -Process line: "nfServiceType": "gnbmgr" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: data: -Process line: __CFG_TYPE: "static-cfg" -Process line: openAPI3.0.json: "{\n \"openapi\": \"3.0.0\",\n \"servers\": [\n {\n \"url\": -Process line: \"/api/v1/_operations\",\n \"description\": \"URL base.\"\n }\n ],\n \"info\": -Process line: {\n \"title\": \"Health Check APIs\",\n \"description\": \"Health check APIs\\n\",\n -Process line: \ \"version\": \"1.0\"\n },\n \"tags\": [\n {\n \"name\": \"healthCheck\",\n -Process line: \ \"description\": \"APIs for HealthCheck feature\"\n }\n ],\n \"paths\": -Process line: {\n \"/healthcheck/fetchCrashInfo\": {\n \"get\": {\n \"tags\": [\n -Process line: \ \"healthCheck\",\n \"invocationMode:unicast\"\n ],\n \"summary\": -Process line: \"API to return crash file info\",\n \"description\": \"API returns crash -Process line: file info\",\n \"operationId\": \"getCrashInfo\",\n \"responses\": -Process line: {\n \"200\": {\n \"description\": \"successfully got information\",\n -Process line: \ \"content\": {\n \"application/json\": {\n \"schema\": -Process line: {\n \"type\": \"array\",\n \"items\": {\n \"properties\": -Process line: {\n \"file\": {\n \"type\": \"string\"\n -Process line: \ },\n\t\t \"time\": {\n \"type\": -Process line: \"string\"\n },\n \"origin\": {\n \"type\": -Process line: \"string\"\n },\n \"cause\": {\n \"type\": -Process line: \"string\"\n }\n }\n }\n -Process line: \ }\n }\n }\n },\n \"202\": {\n -Process line: \ \"description\": \"accepted, notification will be sent with result\"\n -Process line: \ },\n \"400\": {\n \"description\": \"failed, refer -Process line: error-message\",\n \"content\": {\n \"application/json\": -Process line: {\n \"schema\": {\n \"required\": [\n \"error-message\"\n -Process line: \ ],\n \"properties\": {\n \"error-message\": -Process line: {\n \"description\": \"Detailed error Message when failed.\",\n -Process line: \ \"type\": \"string\"\n }\n }\n -Process line: \ }\n }\n }\n }\n }\n }\n -Process line: \ }\n }\n}\n\n\n" -Process line: vipspec1.json: | -Process line: { -Process line: "cniVersion": "0.3.1", -Process line: "plugins": [{ -Process line: "type": "sriov", -Process line: "master": "openshift.io/ens7f0Sriov", -Process line: "ipam": { -Process line: "type": "host-local", -Process line: "ranges": [ -Process line: [{ -Process line: "subnet": "2605:c540:8c00:3318::/64", -Process line: "rangeStart": "2605:c540:8c00:3318::76", -Process line: "rangeEnd": "2605:c540:8c00:3318::81", -Process line: "gateway": "" -Process line: }] -Process line: ], -Process line: "routes": [{ -Process line: "dst": "0.0.0.0/0" -Process line: }] -Process line: } -Process line: }] -Process line: } -Process line: --- -Process line: # Source: cucp/charts/gnbmgr/templates/cnf_tpl_charts_2_15.yaml -Process line: apiVersion: v1 -Process line: kind: ConfigMap -Process line: metadata: -Process line: name: gnbmgr-eventdef-cfg -Process line: namespace: test -Process line: labels: -Process line: microSvcName: gnbmgr -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "gnbmgr", -Process line: "nfServiceType": "gnbmgr" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: data: -Process line: __CFG_TYPE: "eventdef-cfg" -Process line: eventdef-cim.json: | -Process line: { -Process line: "events": { -Process line: "CimConnectEtcdFailure": { -Process line: "eventType": "COMMUNICATION", -Process line: "perceivedSeverity": "CRITICAL", -Process line: "probableCause": "etcd communication failure", -Process line: "specificProblem": "CIM unable to establish connection to etcd", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "RoleAssignmentStatus": { -Process line: "eventType": "HA_ROLE_ASSIGNMENT", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Role assignment status received for HA operation.", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "HAMonitoringFailure": { -Process line: "eventType": "HA_MONITORING", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "HA Failed To Monitor Application uS", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "No specific action required. HAaaS feature will perform auto recovery by restarting pod." -Process line: }, -Process line: "LmaasTCPFailure": { -Process line: "eventType": "COMMUNICATION", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "TCP connection failure towards fluent-bit onbserved in LMaaS", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "Ensure fluent-bit service is up and running with tcp port open for logging." -Process line: }, -Process line: "CimCommitConfigSuccess": { -Process line: "eventType": "COMMIT_CONFIG", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "A commit-config operation towards etcd is successful", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimCommitConfigFailure": { -Process line: "eventType": "COMMIT_CONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "A commit-config operation failed towards etcd", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateSuccess": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Successfully updated CIM configuration", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateFailure": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Failure updating CIM configuration", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateUnused": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Config patch unused by application", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "Configured": { -Process line: "eventType": "CONFIGURATION", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Full configuration available for application to be ready", -Process line: "specificProblem": "Application is configured.", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "NotConfigured": { -Process line: "eventType": "CONFIGURATION", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Full configuration unavailable for application to be ready", -Process line: "specificProblem": "Application is not configured.", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "Push Day-1 configuration" -Process line: }, -Process line: "ScaleInStateNotify": { -Process line: "eventType": "HA", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Shutdown status received from application", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ShutdownSuccess": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Applicationn shutdown itself gracefully", -Process line: "specificProblem": "Application shutdown gracefully", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ShutdownHookFailure": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Application could not shutdown itself gracefully", -Process line: "specificProblem": "Application could not shutdown gracefully", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "No specific action required." -Process line: }, -Process line: "ApplicationShutdownInitiated": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "specificProblem": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "LoadConfigRequestFailure": { -Process line: "eventType": "LOADCONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Application could not load day1 config", -Process line: "specificProblem": "Application could not load day1 config", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ApplicationShutdownInitiated": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "specificProblem": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "LoadConfigRequestFailure": { -Process line: "eventType": "LOADCONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Application could not load day1 config", -Process line: "specificProblem": "Application could not load day1 config", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: } -Process line: } -Process line: } -Process line: events.json: "{\n \"events\": {\n \"EID_NGAP_SETUP_FAIL\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"Incorrect configuration of RRU/gNB parameters\",\n \"specificProblem\": \"CU -Process line: , AMF Configuration issue or Link issue\",\n \"rootCauseIndicator\": \"None\",\n -Process line: \ \"trendIndication\": \"No\",\n \"correlatedNotifications\": \"EID_NGAP_SETUP_FAIL\",\n -Process line: \ \"additionalText\": \"AMFID\",\n \"proposedRepairAction\": \"Check Service -Process line: Area configuration information of the CUCP Global gNodeB id, TAC and PLMN parameters.Check -Process line: configuration of AMF. Check for abnormal state of AMF\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"EID_NGAP_SETUP_SUCCESS\": {\n \"eventType\": \"COMMUNICATION\",\n -Process line: \ \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": \"RRU/Gnb configuration -Process line: parameters corrected\",\n \"specificProblem\": \"CU/AMF config issue corrected\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_NGAP_SETUP_FAIL\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"UE_CONN_MGR_STOP\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"UeConnMgr is down\",\n \"specificProblem\": \"UeConnMgr is down\",\n \"rootCauseIndicator\": -Process line: \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"UE_CONN_MGR_STOP\",\n \"additionalText\": \"UeConnMgr\",\n \"proposedRepairAction\": -Process line: \"Check UeConnMgr Microservice\"\n },\n \"UE_CONN_MGR_START\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"UeConnMgr is up and running\",\n \"specificProblem\": \"None, UeConnMgr is -Process line: up and running\",\n \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"No\",\n \"correlatedNotifications\": \"UE_CONN_MGR_STOP\",\n \"additionalText\": -Process line: \"\",\n \"proposedRepairAction\": \"None\"\n },\n \"State_Test\": {\n\t -Process line: \ \"eventType\": \"CONFIGURED\",\n \"perceivedSeverity\": \"INFO\",\n \"probableCause\": -Process line: \"\",\n \"specificProblem\": \"\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"\",\n \"additionalText\": \"\",\n -Process line: \ \"proposedRepairAction\": \"None\",\n \"domain\": \"notification\" \n -Process line: \ },\n \"CUCPInterfaceInfo\": {\n \"eventType\": \"INTERFACE\",\n \"perceivedSeverity\": -Process line: \"INFO\",\n \"probableCause\": \"\",\n \"specificProblem\": \"\",\n \"rootCauseIndicator\": -Process line: \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": \"\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": \"\",\n \"domain\": -Process line: \"notification\"\n },\n \"LinkStateChanged\": {\n \"eventType\": \"TOPOLOGY\",\n -Process line: \ \"perceivedSeverity\": \"INFO\",\n \"probableCause\": \"\",\n \"specificProblem\": -Process line: \"\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": -Process line: \"\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": \"\",\n -Process line: \ \"domain\": \"notification\"\n },\n \"EID_SCTP_LINK_DOWN\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"SCTP link to peer gNodeB/CU-UP/AMF/DU is down\",\n \"specificProblem\": \"SCTP -Process line: link failure to peer node\",\n \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"No\",\n \"correlatedNotifications\": \"EID_SCTP_LINK_DOWN\",\n \"additionalText\": -Process line: \"Peer GNodeB ID/AMF ID/CU-UP ID/DU ID\",\n \"proposedRepairAction\": \"Check -Process line: the state of peer gNodeB/CU-UP/AMF/DU.Check the connectivity of peer gNodeB/CU-UP/AMF/DU -Process line: from CU-CP and SCTP and IP configuration\",\n \"domain\": \"fault\"\n },\n -Process line: \ \"EID_SCTP_LINK_UP\": {\n \"eventType\": \"COMMUNICATION\",\n \"perceivedSeverity\": -Process line: \"CLEAR\",\n \"probableCause\": \"peer gNodeB/CU-UP/AMF/DU operational/SCTP -Process line: link restored\",\n \"specificProblem\": \"None\",\n \"rootCauseIndicator\": -Process line: \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_SCTP_LINK_DOWN\",\n \"additionalText\": \"Peer GNodeB ID/AMF ID/CU-UP -Process line: ID/DU ID\",\n \"proposedRepairAction\": \"None\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"EID_Xn_SETUP_FAIL\": {\n \"eventType\": \"COMMUNICATION\",\n \"perceivedSeverity\": -Process line: \"MAJOR\",\n \"probableCause\": \"Incorrect configuration of gNB parameters\",\n -Process line: \ \"specificProblem\": \"CU-CP receives Xn Setup Failure from peer gNB CU-CP\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_Xn_SETUP_FAIL\",\n \"additionalText\": \"Peer Node gNodeB ID\",\n \"proposedRepairAction\": -Process line: \"Check the configuration of Peer gNB\",\n \"domain\": \"fault\"\n },\n -Process line: \ \"EID_Xn_SETUP_SUCCESS\": {\n \"eventType\": \"COMMUNICATION\",\n \"perceivedSeverity\": -Process line: \"CLEAR\",\n \"probableCause\": \"CU-CP receives Xn Setup success from peer -Process line: gNB CU-CP\",\n \"specificProblem\": \"configuration for peer gNB resolved\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_Xn_SETUP_FAIL\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n }, \n \"PROGRAM_TERM\": {\n \"eventType\": -Process line: \"PROCESSING\",\n \"perceivedSeverity\": \"MINOR\",\n \"probableCause\": -Process line: \"Program has been terminated\",\n \"specificProblem\": \"Program -Process line: has been terminated (manually or due to internal reasons) system will try to restore -Process line: it automatically\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_TERM\",\n -Process line: \ \"additionalText\": \"Network Service ID\",\n \"proposedRepairAction\": -Process line: \"PLATFORM restarts the minor program automatically\",\n \"domain\": -Process line: \"fault\"\n },\n \"PROGRAM_RSTRED\": {\n \"eventType\": -Process line: \"PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"Program has been terminated (manually or due to internal reasons) system will -Process line: try to restore it automatically.\",\n \"specificProblem\": -Process line: \"None\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_TERM\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"PROGRAM_RSTR_FAIL\": -Process line: {\n \"eventType\": \"PROCESSING\",\n \"perceivedSeverity\": -Process line: \"MAJOR\",\n \"probableCause\": \"Failed to restore the minor -Process line: program\",\n \"specificProblem\": \"After number of attempts -Process line: restoring terminated program, action has failed, system has triggered the node restart\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_RSTR_FAIL\",\n -Process line: \ \"additionalText\": \"Network Service ID\",\n \"proposedRepairAction\": -Process line: \"Platform will reattempt to restart the program\",\n \"domain\": -Process line: \"fault\"\n },\n \"PROGRAM_RSTR_SUCC\": {\n \"eventType\": -Process line: \"PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"program has been restored successfully\",\n \"specificProblem\": -Process line: \"None\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_RSTR_FAIL\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"CONFIGURATION_FAILURE\": -Process line: {\n \"eventType\": \"TYPE_PROCESSING\",\n \"perceivedSeverity\": -Process line: \"CRITICAL\",\n \"probableCause\": \"Application configuration -Process line: is not correct\",\n \"specificProblem\": \"Incorrect application -Process line: configuration \",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"CONFIGURATION_FAILURE\",\n -Process line: \ \"additionalText\": \"DU ID\",\n \"proposedRepairAction\": -Process line: \"Check the application configuration\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"CONGFIGURATION_FAILURE_CLEAR\": {\n \"eventType\": -Process line: \"TYPE_PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n -Process line: \ \"probableCause\": \"Application configuration is corrected\",\n -Process line: \ \"specificProblem\": \"None\",\n \"rootCauseIndicator\": -Process line: \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": -Process line: \"CONFIGURATION_FAILURE\",\n \"additionalText\": \"\",\n -Process line: \ \"proposedRepairAction\": \"None\",\n \"domain\": -Process line: \"fault\"\n },\n \"EID_RAN_CONFIG_UPDATE_FAIL\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"Incorrect configuration of gNB parameters at AMF or CU-CP\",\n \"specificProblem\": -Process line: \"CU-CP receives NGAP RAN Config Update Failure from AMF\",\n \"rootCauseIndicator\": -Process line: \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_RAN_CONFIG_UPDATE_FAIL\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"Check configuration of CU-CP & DU. Check for abnormal state of CU-CP\",\n \"domain\": -Process line: \"fault\"\n },\n \"EID_RAN_CONFIG_UPDATE_SUCCESS\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"NGAP RAN config update success response is received from AMF\",\n \"specificProblem\": -Process line: \"Configuration for AMF/RAN resolved\",\n \"rootCauseIndicator\": \"None\",\n -Process line: \ \"trendIndication\": \"No\",\n \"correlatedNotifications\": \"EID_RAN_CONFIG_UPDATE_FAIL\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": \"None\",\n \"domain\": -Process line: \"fault\"\n }\n } \n} \n" -Process line: --- -Process line: # Source: cucp/charts/ngclientiwf/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - NAMESPACE -Process line: -Process line: -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: -Process line: apiVersion: v1 -Process line: kind: ConfigMap -Process line: metadata: -Process line: name: ngclientiwf-static-cfg -Process line: namespace: test -Process line: labels: -Process line: microSvcName: ngclientiwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "ngclientiwf", -Process line: "nfServiceType": "ngclientiwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: data: -Process line: __CFG_TYPE: "static-cfg" -Process line: vipspec1.json: | -Process line: { -Process line: "cniVersion": "0.3.1", -Process line: "plugins": [{ -Process line: "type": "sriov", -Process line: "master": "openshift.io/ens7f0Sriov", -Process line: "ipam": { -Process line: "type": "host-local", -Process line: "ranges": [ -Process line: [{ -Process line: "subnet": "2605:c540:8c00:3319::/64", -Process line: "rangeStart": "2605:c540:8c00:3319::60", -Process line: "rangeEnd": "2605:c540:8c00:3319::61", -Process line: "gateway": "" -Process line: }] -Process line: ], -Process line: "routes": [{ -Process line: "dst": "0.0.0.0/0" -Process line: }] -Process line: } -Process line: }] -Process line: } -Process line: --- -Process line: # Source: cucp/charts/ngclientiwf/templates/cnf_tpl_charts_2_15.yaml -Process line: apiVersion: v1 -Process line: kind: ConfigMap -Process line: metadata: -Process line: name: ngclientiwf-eventdef-cfg -Process line: namespace: test -Process line: labels: -Process line: microSvcName: ngclientiwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "ngclientiwf", -Process line: "nfServiceType": "ngclientiwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: data: -Process line: __CFG_TYPE: "eventdef-cfg" -Process line: eventdef-cim.json: | -Process line: { -Process line: "events": { -Process line: "CimConnectEtcdFailure": { -Process line: "eventType": "COMMUNICATION", -Process line: "perceivedSeverity": "CRITICAL", -Process line: "probableCause": "etcd communication failure", -Process line: "specificProblem": "CIM unable to establish connection to etcd", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "RoleAssignmentStatus": { -Process line: "eventType": "HA_ROLE_ASSIGNMENT", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Role assignment status received for HA operation.", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "HAMonitoringFailure": { -Process line: "eventType": "HA_MONITORING", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "HA Failed To Monitor Application uS", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "No specific action required. HAaaS feature will perform auto recovery by restarting pod." -Process line: }, -Process line: "LmaasTCPFailure": { -Process line: "eventType": "COMMUNICATION", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "TCP connection failure towards fluent-bit onbserved in LMaaS", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "Ensure fluent-bit service is up and running with tcp port open for logging." -Process line: }, -Process line: "CimCommitConfigSuccess": { -Process line: "eventType": "COMMIT_CONFIG", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "A commit-config operation towards etcd is successful", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimCommitConfigFailure": { -Process line: "eventType": "COMMIT_CONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "A commit-config operation failed towards etcd", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateSuccess": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Successfully updated CIM configuration", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateFailure": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Failure updating CIM configuration", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateUnused": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Config patch unused by application", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "Configured": { -Process line: "eventType": "CONFIGURATION", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Full configuration available for application to be ready", -Process line: "specificProblem": "Application is configured.", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "NotConfigured": { -Process line: "eventType": "CONFIGURATION", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Full configuration unavailable for application to be ready", -Process line: "specificProblem": "Application is not configured.", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "Push Day-1 configuration" -Process line: }, -Process line: "ScaleInStateNotify": { -Process line: "eventType": "HA", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Shutdown status received from application", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ShutdownSuccess": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Applicationn shutdown itself gracefully", -Process line: "specificProblem": "Application shutdown gracefully", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ShutdownHookFailure": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Application could not shutdown itself gracefully", -Process line: "specificProblem": "Application could not shutdown gracefully", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "No specific action required." -Process line: }, -Process line: "ApplicationShutdownInitiated": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "specificProblem": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "LoadConfigRequestFailure": { -Process line: "eventType": "LOADCONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Application could not load day1 config", -Process line: "specificProblem": "Application could not load day1 config", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ApplicationShutdownInitiated": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "specificProblem": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "LoadConfigRequestFailure": { -Process line: "eventType": "LOADCONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Application could not load day1 config", -Process line: "specificProblem": "Application could not load day1 config", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: } -Process line: } -Process line: } -Process line: events.json: "{\n \"events\": {\n \"EID_NGAP_SETUP_FAIL\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"Incorrect configuration of RRU/gNB parameters\",\n \"specificProblem\": \"CU -Process line: , AMF Configuration issue or Link issue\",\n \"rootCauseIndicator\": \"None\",\n -Process line: \ \"trendIndication\": \"No\",\n \"correlatedNotifications\": \"EID_NGAP_SETUP_FAIL\",\n -Process line: \ \"additionalText\": \"AMFID\",\n \"proposedRepairAction\": \"Check Service -Process line: Area configuration information of the CUCP Global gNodeB id, TAC and PLMN parameters.Check -Process line: configuration of AMF. Check for abnormal state of AMF\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"EID_NGAP_SETUP_SUCCESS\": {\n \"eventType\": \"COMMUNICATION\",\n -Process line: \ \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": \"RRU/Gnb configuration -Process line: parameters corrected\",\n \"specificProblem\": \"CU/AMF config issue corrected\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_NGAP_SETUP_FAIL\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"UE_CONN_MGR_STOP\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"UeConnMgr is down\",\n \"specificProblem\": \"UeConnMgr is down\",\n \"rootCauseIndicator\": -Process line: \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"UE_CONN_MGR_STOP\",\n \"additionalText\": \"UeConnMgr\",\n \"proposedRepairAction\": -Process line: \"Check UeConnMgr Microservice\"\n },\n \"UE_CONN_MGR_START\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"UeConnMgr is up and running\",\n \"specificProblem\": \"None, UeConnMgr is -Process line: up and running\",\n \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"No\",\n \"correlatedNotifications\": \"UE_CONN_MGR_STOP\",\n \"additionalText\": -Process line: \"\",\n \"proposedRepairAction\": \"None\"\n },\n \"State_Test\": {\n\t -Process line: \ \"eventType\": \"CONFIGURED\",\n \"perceivedSeverity\": \"INFO\",\n \"probableCause\": -Process line: \"\",\n \"specificProblem\": \"\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"\",\n \"additionalText\": \"\",\n -Process line: \ \"proposedRepairAction\": \"None\",\n \"domain\": \"notification\" \n -Process line: \ },\n \"CUCPInterfaceInfo\": {\n \"eventType\": \"INTERFACE\",\n \"perceivedSeverity\": -Process line: \"INFO\",\n \"probableCause\": \"\",\n \"specificProblem\": \"\",\n \"rootCauseIndicator\": -Process line: \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": \"\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": \"\",\n \"domain\": -Process line: \"notification\"\n },\n \"LinkStateChanged\": {\n \"eventType\": \"TOPOLOGY\",\n -Process line: \ \"perceivedSeverity\": \"INFO\",\n \"probableCause\": \"\",\n \"specificProblem\": -Process line: \"\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": -Process line: \"\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": \"\",\n -Process line: \ \"domain\": \"notification\"\n },\n \"EID_SCTP_LINK_DOWN\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"SCTP link to peer gNodeB/CU-UP/AMF/DU is down\",\n \"specificProblem\": \"SCTP -Process line: link failure to peer node\",\n \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"No\",\n \"correlatedNotifications\": \"EID_SCTP_LINK_DOWN\",\n \"additionalText\": -Process line: \"Peer GNodeB ID/AMF ID/CU-UP ID/DU ID\",\n \"proposedRepairAction\": \"Check -Process line: the state of peer gNodeB/CU-UP/AMF/DU.Check the connectivity of peer gNodeB/CU-UP/AMF/DU -Process line: from CU-CP and SCTP and IP configuration\",\n \"domain\": \"fault\"\n },\n -Process line: \ \"EID_SCTP_LINK_UP\": {\n \"eventType\": \"COMMUNICATION\",\n \"perceivedSeverity\": -Process line: \"CLEAR\",\n \"probableCause\": \"peer gNodeB/CU-UP/AMF/DU operational/SCTP -Process line: link restored\",\n \"specificProblem\": \"None\",\n \"rootCauseIndicator\": -Process line: \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_SCTP_LINK_DOWN\",\n \"additionalText\": \"Peer GNodeB ID/AMF ID/CU-UP -Process line: ID/DU ID\",\n \"proposedRepairAction\": \"None\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"PROGRAM_TERM\": {\n \"eventType\": \"PROCESSING\",\n -Process line: \ \"perceivedSeverity\": \"MINOR\",\n \"probableCause\": -Process line: \"Program has been terminated\",\n \"specificProblem\": \"Program -Process line: has been terminated (manually or due to internal reasons) system will try to restore -Process line: it automatically\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_TERM\",\n -Process line: \ \"additionalText\": \"Network Service ID\",\n \"proposedRepairAction\": -Process line: \"PLATFORM restarts the minor program automatically\",\n \"domain\": -Process line: \"fault\"\n },\n \"PROGRAM_RSTRED\": {\n \"eventType\": -Process line: \"PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"Program has been terminated (manually or due to internal reasons) system will -Process line: try to restore it automatically.\",\n \"specificProblem\": -Process line: \"None\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_TERM\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"PROGRAM_RSTR_FAIL\": -Process line: {\n \"eventType\": \"PROCESSING\",\n \"perceivedSeverity\": -Process line: \"MAJOR\",\n \"probableCause\": \"Failed to restore the minor -Process line: program\",\n \"specificProblem\": \"After number of attempts -Process line: restoring terminated program, action has failed, system has triggered the node restart\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_RSTR_FAIL\",\n -Process line: \ \"additionalText\": \"Network Service ID\",\n \"proposedRepairAction\": -Process line: \"Platform will reattempt to restart the program\",\n \"domain\": -Process line: \"fault\"\n },\n \"PROGRAM_RSTR_SUCC\": {\n \"eventType\": -Process line: \"PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"program has been restored successfully\",\n \"specificProblem\": -Process line: \"None\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_RSTR_FAIL\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"CONFIGURATION_FAILURE\": -Process line: {\n \"eventType\": \"TYPE_PROCESSING\",\n \"perceivedSeverity\": -Process line: \"CRITICAL\",\n \"probableCause\": \"Application configuration -Process line: is not correct\",\n \"specificProblem\": \"Incorrect application -Process line: configuration \",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"CONFIGURATION_FAILURE\",\n -Process line: \ \"additionalText\": \"DU ID\",\n \"proposedRepairAction\": -Process line: \"Check the application configuration\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"CONGFIGURATION_FAILURE_CLEAR\": {\n \"eventType\": -Process line: \"TYPE_PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n -Process line: \ \"probableCause\": \"Application configuration is corrected\",\n -Process line: \ \"specificProblem\": \"None\",\n \"rootCauseIndicator\": -Process line: \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": -Process line: \"CONFIGURATION_FAILURE\",\n \"additionalText\": \"\",\n -Process line: \ \"proposedRepairAction\": \"None\",\n \"domain\": -Process line: \"fault\"\n }\n } \n} \n" -Process line: --- -Process line: # Source: cucp/charts/sctpe1iwf/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - NAMESPACE -Process line: -Process line: -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: -Process line: apiVersion: v1 -Process line: kind: ConfigMap -Process line: metadata: -Process line: name: sctpe1iwf-static-cfg -Process line: namespace: test -Process line: labels: -Process line: microSvcName: sctpe1iwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "sctpe1iwf", -Process line: "nfServiceType": "sctpe1iwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: data: -Process line: __CFG_TYPE: "static-cfg" -Process line: vipspec1.json: | -Process line: { -Process line: "cniVersion": "0.3.1", -Process line: "plugins": [{ -Process line: "type": "sriov", -Process line: "master": "openshift.io/ens7f0Sriov", -Process line: "ipam": { -Process line: "type": "host-local", -Process line: "ranges": [ -Process line: [{ -Process line: "subnet": "2605:c540:8c00:3317::/64", -Process line: "rangeStart": "2605:c540:8c00:3317::60", -Process line: "rangeEnd": "2605:c540:8c00:3317::61", -Process line: "gateway": "" -Process line: }] -Process line: ], -Process line: "routes": [{ -Process line: "dst": "0.0.0.0/0" -Process line: }] -Process line: } -Process line: }] -Process line: } -Process line: --- -Process line: # Source: cucp/charts/sctpe1iwf/templates/cnf_tpl_charts_2_15.yaml -Process line: apiVersion: v1 -Process line: kind: ConfigMap -Process line: metadata: -Process line: name: sctpe1iwf-eventdef-cfg -Process line: namespace: test -Process line: labels: -Process line: microSvcName: sctpe1iwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "sctpe1iwf", -Process line: "nfServiceType": "sctpe1iwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: data: -Process line: __CFG_TYPE: "eventdef-cfg" -Process line: eventdef-cim.json: | -Process line: { -Process line: "events": { -Process line: "CimConnectEtcdFailure": { -Process line: "eventType": "COMMUNICATION", -Process line: "perceivedSeverity": "CRITICAL", -Process line: "probableCause": "etcd communication failure", -Process line: "specificProblem": "CIM unable to establish connection to etcd", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "RoleAssignmentStatus": { -Process line: "eventType": "HA_ROLE_ASSIGNMENT", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Role assignment status received for HA operation.", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "HAMonitoringFailure": { -Process line: "eventType": "HA_MONITORING", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "HA Failed To Monitor Application uS", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "No specific action required. HAaaS feature will perform auto recovery by restarting pod." -Process line: }, -Process line: "LmaasTCPFailure": { -Process line: "eventType": "COMMUNICATION", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "TCP connection failure towards fluent-bit onbserved in LMaaS", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "Ensure fluent-bit service is up and running with tcp port open for logging." -Process line: }, -Process line: "CimCommitConfigSuccess": { -Process line: "eventType": "COMMIT_CONFIG", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "A commit-config operation towards etcd is successful", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimCommitConfigFailure": { -Process line: "eventType": "COMMIT_CONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "A commit-config operation failed towards etcd", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateSuccess": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Successfully updated CIM configuration", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateFailure": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Failure updating CIM configuration", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateUnused": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Config patch unused by application", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "Configured": { -Process line: "eventType": "CONFIGURATION", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Full configuration available for application to be ready", -Process line: "specificProblem": "Application is configured.", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "NotConfigured": { -Process line: "eventType": "CONFIGURATION", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Full configuration unavailable for application to be ready", -Process line: "specificProblem": "Application is not configured.", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "Push Day-1 configuration" -Process line: }, -Process line: "ScaleInStateNotify": { -Process line: "eventType": "HA", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Shutdown status received from application", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ShutdownSuccess": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Applicationn shutdown itself gracefully", -Process line: "specificProblem": "Application shutdown gracefully", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ShutdownHookFailure": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Application could not shutdown itself gracefully", -Process line: "specificProblem": "Application could not shutdown gracefully", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "No specific action required." -Process line: }, -Process line: "ApplicationShutdownInitiated": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "specificProblem": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "LoadConfigRequestFailure": { -Process line: "eventType": "LOADCONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Application could not load day1 config", -Process line: "specificProblem": "Application could not load day1 config", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ApplicationShutdownInitiated": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "specificProblem": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "LoadConfigRequestFailure": { -Process line: "eventType": "LOADCONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Application could not load day1 config", -Process line: "specificProblem": "Application could not load day1 config", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: } -Process line: } -Process line: } -Process line: events.json: "{\n \"events\": {\n \"EID_NGAP_SETUP_FAIL\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"Incorrect configuration of RRU/gNB parameters\",\n \"specificProblem\": \"CU -Process line: , AMF Configuration issue or Link issue\",\n \"rootCauseIndicator\": \"None\",\n -Process line: \ \"trendIndication\": \"No\",\n \"correlatedNotifications\": \"EID_NGAP_SETUP_FAIL\",\n -Process line: \ \"additionalText\": \"AMFID\",\n \"proposedRepairAction\": \"Check Service -Process line: Area configuration information of the CUCP Global gNodeB id, TAC and PLMN parameters.Check -Process line: configuration of AMF. Check for abnormal state of AMF\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"EID_NGAP_SETUP_SUCCESS\": {\n \"eventType\": \"COMMUNICATION\",\n -Process line: \ \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": \"RRU/Gnb configuration -Process line: parameters corrected\",\n \"specificProblem\": \"CU/AMF config issue corrected\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_NGAP_SETUP_FAIL\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"UE_CONN_MGR_STOP\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"UeConnMgr is down\",\n \"specificProblem\": \"UeConnMgr is down\",\n \"rootCauseIndicator\": -Process line: \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"UE_CONN_MGR_STOP\",\n \"additionalText\": \"UeConnMgr\",\n \"proposedRepairAction\": -Process line: \"Check UeConnMgr Microservice\"\n },\n \"UE_CONN_MGR_START\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"UeConnMgr is up and running\",\n \"specificProblem\": \"None, UeConnMgr is -Process line: up and running\",\n \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"No\",\n \"correlatedNotifications\": \"UE_CONN_MGR_STOP\",\n \"additionalText\": -Process line: \"\",\n \"proposedRepairAction\": \"None\"\n },\n \"State_Test\": {\n\t -Process line: \ \"eventType\": \"CONFIGURED\",\n \"perceivedSeverity\": \"INFO\",\n \"probableCause\": -Process line: \"\",\n \"specificProblem\": \"\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"\",\n \"additionalText\": \"\",\n -Process line: \ \"proposedRepairAction\": \"None\",\n \"domain\": \"notification\" \n -Process line: \ },\n \"CUCPInterfaceInfo\": {\n \"eventType\": \"INTERFACE\",\n \"perceivedSeverity\": -Process line: \"INFO\",\n \"probableCause\": \"\",\n \"specificProblem\": \"\",\n \"rootCauseIndicator\": -Process line: \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": \"\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": \"\",\n \"domain\": -Process line: \"notification\"\n },\n \"LinkStateChanged\": {\n \"eventType\": \"TOPOLOGY\",\n -Process line: \ \"perceivedSeverity\": \"INFO\",\n \"probableCause\": \"\",\n \"specificProblem\": -Process line: \"\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": -Process line: \"\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": \"\",\n -Process line: \ \"domain\": \"notification\"\n },\n \"EID_SCTP_LINK_DOWN\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"SCTP link to peer gNodeB/CU-UP/AMF/DU is down\",\n \"specificProblem\": \"SCTP -Process line: link failure to peer node\",\n \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"No\",\n \"correlatedNotifications\": \"EID_SCTP_LINK_DOWN\",\n \"additionalText\": -Process line: \"Peer GNodeB ID/AMF ID/CU-UP ID/DU ID\",\n \"proposedRepairAction\": \"Check -Process line: the state of peer gNodeB/CU-UP/AMF/DU.Check the connectivity of peer gNodeB/CU-UP/AMF/DU -Process line: from CU-CP and SCTP and IP configuration\",\n \"domain\": \"fault\"\n },\n -Process line: \ \"EID_SCTP_LINK_UP\": {\n \"eventType\": \"COMMUNICATION\",\n \"perceivedSeverity\": -Process line: \"CLEAR\",\n \"probableCause\": \"peer gNodeB/CU-UP/AMF/DU operational/SCTP -Process line: link restored\",\n \"specificProblem\": \"None\",\n \"rootCauseIndicator\": -Process line: \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_SCTP_LINK_DOWN\",\n \"additionalText\": \"Peer GNodeB ID/AMF ID/CU-UP -Process line: ID/DU ID\",\n \"proposedRepairAction\": \"None\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"PROGRAM_TERM\": {\n \"eventType\": \"PROCESSING\",\n -Process line: \ \"perceivedSeverity\": \"MINOR\",\n \"probableCause\": -Process line: \"Program has been terminated\",\n \"specificProblem\": \"Program -Process line: has been terminated (manually or due to internal reasons) system will try to restore -Process line: it automatically\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_TERM\",\n -Process line: \ \"additionalText\": \"Network Service ID\",\n \"proposedRepairAction\": -Process line: \"PLATFORM restarts the minor program automatically\",\n \"domain\": -Process line: \"fault\"\n },\n \"PROGRAM_RSTRED\": {\n \"eventType\": -Process line: \"PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"Program has been terminated (manually or due to internal reasons) system will -Process line: try to restore it automatically.\",\n \"specificProblem\": -Process line: \"None\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_TERM\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"PROGRAM_RSTR_FAIL\": -Process line: {\n \"eventType\": \"PROCESSING\",\n \"perceivedSeverity\": -Process line: \"MAJOR\",\n \"probableCause\": \"Failed to restore the minor -Process line: program\",\n \"specificProblem\": \"After number of attempts -Process line: restoring terminated program, action has failed, system has triggered the node restart\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_RSTR_FAIL\",\n -Process line: \ \"additionalText\": \"Network Service ID\",\n \"proposedRepairAction\": -Process line: \"Platform will reattempt to restart the program\",\n \"domain\": -Process line: \"fault\"\n },\n \"PROGRAM_RSTR_SUCC\": {\n \"eventType\": -Process line: \"PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"program has been restored successfully\",\n \"specificProblem\": -Process line: \"None\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_RSTR_FAIL\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"CONFIGURATION_FAILURE\": -Process line: {\n \"eventType\": \"TYPE_PROCESSING\",\n \"perceivedSeverity\": -Process line: \"CRITICAL\",\n \"probableCause\": \"Application configuration -Process line: is not correct\",\n \"specificProblem\": \"Incorrect application -Process line: configuration \",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"CONFIGURATION_FAILURE\",\n -Process line: \ \"additionalText\": \"DU ID\",\n \"proposedRepairAction\": -Process line: \"Check the application configuration\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"CONGFIGURATION_FAILURE_CLEAR\": {\n \"eventType\": -Process line: \"TYPE_PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n -Process line: \ \"probableCause\": \"Application configuration is corrected\",\n -Process line: \ \"specificProblem\": \"None\",\n \"rootCauseIndicator\": -Process line: \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": -Process line: \"CONFIGURATION_FAILURE\",\n \"additionalText\": \"\",\n -Process line: \ \"proposedRepairAction\": \"None\",\n \"domain\": -Process line: \"fault\"\n }\n } \n} \n" -Process line: --- -Process line: # Source: cucp/charts/sctpf1iwf/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - NAMESPACE -Process line: -Process line: -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: -Process line: apiVersion: v1 -Process line: kind: ConfigMap -Process line: metadata: -Process line: name: sctpf1iwf-static-cfg -Process line: namespace: test -Process line: labels: -Process line: microSvcName: sctpf1iwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "sctpf1iwf", -Process line: "nfServiceType": "sctpf1iwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: data: -Process line: __CFG_TYPE: "static-cfg" -Process line: vipspec1.json: | -Process line: { -Process line: "cniVersion": "0.3.1", -Process line: "plugins": [{ -Process line: "type": "sriov", -Process line: "master": "openshift.io/ens7f0Sriov", -Process line: "ipam": { -Process line: "type": "host-local", -Process line: "ranges": [ -Process line: [{ -Process line: "subnet": "2605:c540:8c00:3318::/64", -Process line: "rangeStart": "2605:c540:8c00:3318::77", -Process line: "rangeEnd": "2605:c540:8c00:3318::78", -Process line: "gateway": "" -Process line: }] -Process line: ], -Process line: "routes": [{ -Process line: "dst": "0.0.0.0/0" -Process line: }] -Process line: } -Process line: }] -Process line: } -Process line: --- -Process line: # Source: cucp/charts/sctpf1iwf/templates/cnf_tpl_charts_2_15.yaml -Process line: apiVersion: v1 -Process line: kind: ConfigMap -Process line: metadata: -Process line: name: sctpf1iwf-eventdef-cfg -Process line: namespace: test -Process line: labels: -Process line: microSvcName: sctpf1iwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "sctpf1iwf", -Process line: "nfServiceType": "sctpf1iwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: data: -Process line: __CFG_TYPE: "eventdef-cfg" -Process line: eventdef-cim.json: | -Process line: { -Process line: "events": { -Process line: "CimConnectEtcdFailure": { -Process line: "eventType": "COMMUNICATION", -Process line: "perceivedSeverity": "CRITICAL", -Process line: "probableCause": "etcd communication failure", -Process line: "specificProblem": "CIM unable to establish connection to etcd", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "RoleAssignmentStatus": { -Process line: "eventType": "HA_ROLE_ASSIGNMENT", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Role assignment status received for HA operation.", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "HAMonitoringFailure": { -Process line: "eventType": "HA_MONITORING", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "HA Failed To Monitor Application uS", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "No specific action required. HAaaS feature will perform auto recovery by restarting pod." -Process line: }, -Process line: "LmaasTCPFailure": { -Process line: "eventType": "COMMUNICATION", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "TCP connection failure towards fluent-bit onbserved in LMaaS", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "Ensure fluent-bit service is up and running with tcp port open for logging." -Process line: }, -Process line: "CimCommitConfigSuccess": { -Process line: "eventType": "COMMIT_CONFIG", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "A commit-config operation towards etcd is successful", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimCommitConfigFailure": { -Process line: "eventType": "COMMIT_CONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "A commit-config operation failed towards etcd", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateSuccess": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Successfully updated CIM configuration", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateFailure": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Failure updating CIM configuration", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateUnused": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Config patch unused by application", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "Configured": { -Process line: "eventType": "CONFIGURATION", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Full configuration available for application to be ready", -Process line: "specificProblem": "Application is configured.", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "NotConfigured": { -Process line: "eventType": "CONFIGURATION", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Full configuration unavailable for application to be ready", -Process line: "specificProblem": "Application is not configured.", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "Push Day-1 configuration" -Process line: }, -Process line: "ScaleInStateNotify": { -Process line: "eventType": "HA", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Shutdown status received from application", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ShutdownSuccess": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Applicationn shutdown itself gracefully", -Process line: "specificProblem": "Application shutdown gracefully", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ShutdownHookFailure": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Application could not shutdown itself gracefully", -Process line: "specificProblem": "Application could not shutdown gracefully", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "No specific action required." -Process line: }, -Process line: "ApplicationShutdownInitiated": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "specificProblem": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "LoadConfigRequestFailure": { -Process line: "eventType": "LOADCONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Application could not load day1 config", -Process line: "specificProblem": "Application could not load day1 config", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ApplicationShutdownInitiated": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "specificProblem": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "LoadConfigRequestFailure": { -Process line: "eventType": "LOADCONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Application could not load day1 config", -Process line: "specificProblem": "Application could not load day1 config", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: } -Process line: } -Process line: } -Process line: events.json: "{\n \"events\": {\n \"EID_NGAP_SETUP_FAIL\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"Incorrect configuration of RRU/gNB parameters\",\n \"specificProblem\": \"CU -Process line: , AMF Configuration issue or Link issue\",\n \"rootCauseIndicator\": \"None\",\n -Process line: \ \"trendIndication\": \"No\",\n \"correlatedNotifications\": \"EID_NGAP_SETUP_FAIL\",\n -Process line: \ \"additionalText\": \"AMFID\",\n \"proposedRepairAction\": \"Check Service -Process line: Area configuration information of the CUCP Global gNodeB id, TAC and PLMN parameters.Check -Process line: configuration of AMF. Check for abnormal state of AMF\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"EID_NGAP_SETUP_SUCCESS\": {\n \"eventType\": \"COMMUNICATION\",\n -Process line: \ \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": \"RRU/Gnb configuration -Process line: parameters corrected\",\n \"specificProblem\": \"CU/AMF config issue corrected\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_NGAP_SETUP_FAIL\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"UE_CONN_MGR_STOP\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"UeConnMgr is down\",\n \"specificProblem\": \"UeConnMgr is down\",\n \"rootCauseIndicator\": -Process line: \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"UE_CONN_MGR_STOP\",\n \"additionalText\": \"UeConnMgr\",\n \"proposedRepairAction\": -Process line: \"Check UeConnMgr Microservice\"\n },\n \"UE_CONN_MGR_START\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"UeConnMgr is up and running\",\n \"specificProblem\": \"None, UeConnMgr is -Process line: up and running\",\n \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"No\",\n \"correlatedNotifications\": \"UE_CONN_MGR_STOP\",\n \"additionalText\": -Process line: \"\",\n \"proposedRepairAction\": \"None\"\n },\n \"State_Test\": {\n\t -Process line: \ \"eventType\": \"CONFIGURED\",\n \"perceivedSeverity\": \"INFO\",\n \"probableCause\": -Process line: \"\",\n \"specificProblem\": \"\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"\",\n \"additionalText\": \"\",\n -Process line: \ \"proposedRepairAction\": \"None\",\n \"domain\": \"notification\" \n -Process line: \ },\n \"CUCPInterfaceInfo\": {\n \"eventType\": \"INTERFACE\",\n \"perceivedSeverity\": -Process line: \"INFO\",\n \"probableCause\": \"\",\n \"specificProblem\": \"\",\n \"rootCauseIndicator\": -Process line: \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": \"\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": \"\",\n \"domain\": -Process line: \"notification\"\n },\n \"LinkStateChanged\": {\n \"eventType\": \"TOPOLOGY\",\n -Process line: \ \"perceivedSeverity\": \"INFO\",\n \"probableCause\": \"\",\n \"specificProblem\": -Process line: \"\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": -Process line: \"\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": \"\",\n -Process line: \ \"domain\": \"notification\"\n },\n \"EID_SCTP_LINK_DOWN\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"SCTP link to peer gNodeB/CU-UP/AMF/DU is down\",\n \"specificProblem\": \"SCTP -Process line: link failure to peer node\",\n \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"No\",\n \"correlatedNotifications\": \"EID_SCTP_LINK_DOWN\",\n \"additionalText\": -Process line: \"Peer GNodeB ID/AMF ID/CU-UP ID/DU ID\",\n \"proposedRepairAction\": \"Check -Process line: the state of peer gNodeB/CU-UP/AMF/DU.Check the connectivity of peer gNodeB/CU-UP/AMF/DU -Process line: from CU-CP and SCTP and IP configuration\",\n \"domain\": \"fault\"\n },\n -Process line: \ \"EID_SCTP_LINK_UP\": {\n \"eventType\": \"COMMUNICATION\",\n \"perceivedSeverity\": -Process line: \"CLEAR\",\n \"probableCause\": \"peer gNodeB/CU-UP/AMF/DU operational/SCTP -Process line: link restored\",\n \"specificProblem\": \"None\",\n \"rootCauseIndicator\": -Process line: \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_SCTP_LINK_DOWN\",\n \"additionalText\": \"Peer GNodeB ID/AMF ID/CU-UP -Process line: ID/DU ID\",\n \"proposedRepairAction\": \"None\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"PROGRAM_TERM\": {\n \"eventType\": \"PROCESSING\",\n -Process line: \ \"perceivedSeverity\": \"MINOR\",\n \"probableCause\": -Process line: \"Program has been terminated\",\n \"specificProblem\": \"Program -Process line: has been terminated (manually or due to internal reasons) system will try to restore -Process line: it automatically\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_TERM\",\n -Process line: \ \"additionalText\": \"Network Service ID\",\n \"proposedRepairAction\": -Process line: \"PLATFORM restarts the minor program automatically\",\n \"domain\": -Process line: \"fault\"\n },\n \"PROGRAM_RSTRED\": {\n \"eventType\": -Process line: \"PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"Program has been terminated (manually or due to internal reasons) system will -Process line: try to restore it automatically.\",\n \"specificProblem\": -Process line: \"None\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_TERM\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"PROGRAM_RSTR_FAIL\": -Process line: {\n \"eventType\": \"PROCESSING\",\n \"perceivedSeverity\": -Process line: \"MAJOR\",\n \"probableCause\": \"Failed to restore the minor -Process line: program\",\n \"specificProblem\": \"After number of attempts -Process line: restoring terminated program, action has failed, system has triggered the node restart\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_RSTR_FAIL\",\n -Process line: \ \"additionalText\": \"Network Service ID\",\n \"proposedRepairAction\": -Process line: \"Platform will reattempt to restart the program\",\n \"domain\": -Process line: \"fault\"\n },\n \"PROGRAM_RSTR_SUCC\": {\n \"eventType\": -Process line: \"PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"program has been restored successfully\",\n \"specificProblem\": -Process line: \"None\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_RSTR_FAIL\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"CONFIGURATION_FAILURE\": -Process line: {\n \"eventType\": \"TYPE_PROCESSING\",\n \"perceivedSeverity\": -Process line: \"CRITICAL\",\n \"probableCause\": \"Application configuration -Process line: is not correct\",\n \"specificProblem\": \"Incorrect application -Process line: configuration \",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"CONFIGURATION_FAILURE\",\n -Process line: \ \"additionalText\": \"DU ID\",\n \"proposedRepairAction\": -Process line: \"Check the application configuration\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"CONGFIGURATION_FAILURE_CLEAR\": {\n \"eventType\": -Process line: \"TYPE_PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n -Process line: \ \"probableCause\": \"Application configuration is corrected\",\n -Process line: \ \"specificProblem\": \"None\",\n \"rootCauseIndicator\": -Process line: \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": -Process line: \"CONFIGURATION_FAILURE\",\n \"additionalText\": \"\",\n -Process line: \ \"proposedRepairAction\": \"None\",\n \"domain\": -Process line: \"fault\"\n }\n } \n} \n" -Process line: --- -Process line: # Source: cucp/charts/sctpxniwf/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - NAMESPACE -Process line: -Process line: -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: -Process line: apiVersion: v1 -Process line: kind: ConfigMap -Process line: metadata: -Process line: name: sctpxniwf-static-cfg -Process line: namespace: test -Process line: labels: -Process line: microSvcName: sctpxniwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "sctpxniwf", -Process line: "nfServiceType": "sctpxniwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: data: -Process line: __CFG_TYPE: "static-cfg" -Process line: vipspec1.json: | -Process line: { -Process line: "cniVersion": "0.3.1", -Process line: "plugins": [{ -Process line: "type": "sriov", -Process line: "master": "openshift.io/ens7f0Sriov", -Process line: "ipam": { -Process line: "type": "host-local", -Process line: "ranges": [ -Process line: [{ -Process line: "subnet": "2605:c540:8c00:3318::/64", -Process line: "rangeStart": "2605:c540:8c00:3318::79", -Process line: "rangeEnd": "2605:c540:8c00:3318::7a", -Process line: "gateway": "172.17.22.65" -Process line: }] -Process line: ], -Process line: "routes": [{ -Process line: "dst": "0.0.0.0/0" -Process line: }] -Process line: } -Process line: }] -Process line: } -Process line: --- -Process line: # Source: cucp/charts/sctpxniwf/templates/cnf_tpl_charts_2_15.yaml -Process line: apiVersion: v1 -Process line: kind: ConfigMap -Process line: metadata: -Process line: name: sctpxniwf-eventdef-cfg -Process line: namespace: test -Process line: labels: -Process line: microSvcName: sctpxniwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "sctpxniwf", -Process line: "nfServiceType": "sctpxniwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: data: -Process line: __CFG_TYPE: "eventdef-cfg" -Process line: eventdef-cim.json: | -Process line: { -Process line: "events": { -Process line: "CimConnectEtcdFailure": { -Process line: "eventType": "COMMUNICATION", -Process line: "perceivedSeverity": "CRITICAL", -Process line: "probableCause": "etcd communication failure", -Process line: "specificProblem": "CIM unable to establish connection to etcd", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "RoleAssignmentStatus": { -Process line: "eventType": "HA_ROLE_ASSIGNMENT", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Role assignment status received for HA operation.", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "HAMonitoringFailure": { -Process line: "eventType": "HA_MONITORING", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "HA Failed To Monitor Application uS", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "No specific action required. HAaaS feature will perform auto recovery by restarting pod." -Process line: }, -Process line: "LmaasTCPFailure": { -Process line: "eventType": "COMMUNICATION", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "TCP connection failure towards fluent-bit onbserved in LMaaS", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "Ensure fluent-bit service is up and running with tcp port open for logging." -Process line: }, -Process line: "CimCommitConfigSuccess": { -Process line: "eventType": "COMMIT_CONFIG", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "A commit-config operation towards etcd is successful", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimCommitConfigFailure": { -Process line: "eventType": "COMMIT_CONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "A commit-config operation failed towards etcd", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateSuccess": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Successfully updated CIM configuration", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateFailure": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Failure updating CIM configuration", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateUnused": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Config patch unused by application", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "Configured": { -Process line: "eventType": "CONFIGURATION", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Full configuration available for application to be ready", -Process line: "specificProblem": "Application is configured.", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "NotConfigured": { -Process line: "eventType": "CONFIGURATION", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Full configuration unavailable for application to be ready", -Process line: "specificProblem": "Application is not configured.", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "Push Day-1 configuration" -Process line: }, -Process line: "ScaleInStateNotify": { -Process line: "eventType": "HA", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Shutdown status received from application", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ShutdownSuccess": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Applicationn shutdown itself gracefully", -Process line: "specificProblem": "Application shutdown gracefully", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ShutdownHookFailure": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Application could not shutdown itself gracefully", -Process line: "specificProblem": "Application could not shutdown gracefully", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "No specific action required." -Process line: }, -Process line: "ApplicationShutdownInitiated": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "specificProblem": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "LoadConfigRequestFailure": { -Process line: "eventType": "LOADCONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Application could not load day1 config", -Process line: "specificProblem": "Application could not load day1 config", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ApplicationShutdownInitiated": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "specificProblem": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "LoadConfigRequestFailure": { -Process line: "eventType": "LOADCONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Application could not load day1 config", -Process line: "specificProblem": "Application could not load day1 config", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: } -Process line: } -Process line: } -Process line: events.json: "{\n \"events\": {\n \"EID_NGAP_SETUP_FAIL\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"Incorrect configuration of RRU/gNB parameters\",\n \"specificProblem\": \"CU -Process line: , AMF Configuration issue or Link issue\",\n \"rootCauseIndicator\": \"None\",\n -Process line: \ \"trendIndication\": \"No\",\n \"correlatedNotifications\": \"EID_NGAP_SETUP_FAIL\",\n -Process line: \ \"additionalText\": \"AMFID\",\n \"proposedRepairAction\": \"Check Service -Process line: Area configuration information of the CUCP Global gNodeB id, TAC and PLMN parameters.Check -Process line: configuration of AMF. Check for abnormal state of AMF\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"EID_NGAP_SETUP_SUCCESS\": {\n \"eventType\": \"COMMUNICATION\",\n -Process line: \ \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": \"RRU/Gnb configuration -Process line: parameters corrected\",\n \"specificProblem\": \"CU/AMF config issue corrected\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_NGAP_SETUP_FAIL\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"UE_CONN_MGR_STOP\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"UeConnMgr is down\",\n \"specificProblem\": \"UeConnMgr is down\",\n \"rootCauseIndicator\": -Process line: \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"UE_CONN_MGR_STOP\",\n \"additionalText\": \"UeConnMgr\",\n \"proposedRepairAction\": -Process line: \"Check UeConnMgr Microservice\"\n },\n \"UE_CONN_MGR_START\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"UeConnMgr is up and running\",\n \"specificProblem\": \"None, UeConnMgr is -Process line: up and running\",\n \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"No\",\n \"correlatedNotifications\": \"UE_CONN_MGR_STOP\",\n \"additionalText\": -Process line: \"\",\n \"proposedRepairAction\": \"None\"\n },\n \"State_Test\": {\n\t -Process line: \ \"eventType\": \"CONFIGURED\",\n \"perceivedSeverity\": \"INFO\",\n \"probableCause\": -Process line: \"\",\n \"specificProblem\": \"\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"\",\n \"additionalText\": \"\",\n -Process line: \ \"proposedRepairAction\": \"None\",\n \"domain\": \"notification\" \n -Process line: \ },\n \"CUCPInterfaceInfo\": {\n \"eventType\": \"INTERFACE\",\n \"perceivedSeverity\": -Process line: \"INFO\",\n \"probableCause\": \"\",\n \"specificProblem\": \"\",\n \"rootCauseIndicator\": -Process line: \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": \"\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": \"\",\n \"domain\": -Process line: \"notification\"\n },\n \"LinkStateChanged\": {\n \"eventType\": \"TOPOLOGY\",\n -Process line: \ \"perceivedSeverity\": \"INFO\",\n \"probableCause\": \"\",\n \"specificProblem\": -Process line: \"\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": -Process line: \"\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": \"\",\n -Process line: \ \"domain\": \"notification\"\n },\n \"EID_SCTP_LINK_DOWN\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"SCTP link to peer gNodeB/CU-UP/AMF/DU is down\",\n \"specificProblem\": \"SCTP -Process line: link failure to peer node\",\n \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"No\",\n \"correlatedNotifications\": \"EID_SCTP_LINK_DOWN\",\n \"additionalText\": -Process line: \"Peer GNodeB ID/AMF ID/CU-UP ID/DU ID\",\n \"proposedRepairAction\": \"Check -Process line: the state of peer gNodeB/CU-UP/AMF/DU.Check the connectivity of peer gNodeB/CU-UP/AMF/DU -Process line: from CU-CP and SCTP and IP configuration\",\n \"domain\": \"fault\"\n },\n -Process line: \ \"EID_SCTP_LINK_UP\": {\n \"eventType\": \"COMMUNICATION\",\n \"perceivedSeverity\": -Process line: \"CLEAR\",\n \"probableCause\": \"peer gNodeB/CU-UP/AMF/DU operational/SCTP -Process line: link restored\",\n \"specificProblem\": \"None\",\n \"rootCauseIndicator\": -Process line: \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_SCTP_LINK_DOWN\",\n \"additionalText\": \"Peer GNodeB ID/AMF ID/CU-UP -Process line: ID/DU ID\",\n \"proposedRepairAction\": \"None\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"PROGRAM_TERM\": {\n \"eventType\": \"PROCESSING\",\n -Process line: \ \"perceivedSeverity\": \"MINOR\",\n \"probableCause\": -Process line: \"Program has been terminated\",\n \"specificProblem\": \"Program -Process line: has been terminated (manually or due to internal reasons) system will try to restore -Process line: it automatically\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_TERM\",\n -Process line: \ \"additionalText\": \"Network Service ID\",\n \"proposedRepairAction\": -Process line: \"PLATFORM restarts the minor program automatically\",\n \"domain\": -Process line: \"fault\"\n },\n \"PROGRAM_RSTRED\": {\n \"eventType\": -Process line: \"PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"Program has been terminated (manually or due to internal reasons) system will -Process line: try to restore it automatically.\",\n \"specificProblem\": -Process line: \"None\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_TERM\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"PROGRAM_RSTR_FAIL\": -Process line: {\n \"eventType\": \"PROCESSING\",\n \"perceivedSeverity\": -Process line: \"MAJOR\",\n \"probableCause\": \"Failed to restore the minor -Process line: program\",\n \"specificProblem\": \"After number of attempts -Process line: restoring terminated program, action has failed, system has triggered the node restart\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_RSTR_FAIL\",\n -Process line: \ \"additionalText\": \"Network Service ID\",\n \"proposedRepairAction\": -Process line: \"Platform will reattempt to restart the program\",\n \"domain\": -Process line: \"fault\"\n },\n \"PROGRAM_RSTR_SUCC\": {\n \"eventType\": -Process line: \"PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"program has been restored successfully\",\n \"specificProblem\": -Process line: \"None\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_RSTR_FAIL\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"CONFIGURATION_FAILURE\": -Process line: {\n \"eventType\": \"TYPE_PROCESSING\",\n \"perceivedSeverity\": -Process line: \"CRITICAL\",\n \"probableCause\": \"Application configuration -Process line: is not correct\",\n \"specificProblem\": \"Incorrect application -Process line: configuration \",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"CONFIGURATION_FAILURE\",\n -Process line: \ \"additionalText\": \"DU ID\",\n \"proposedRepairAction\": -Process line: \"Check the application configuration\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"CONGFIGURATION_FAILURE_CLEAR\": {\n \"eventType\": -Process line: \"TYPE_PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n -Process line: \ \"probableCause\": \"Application configuration is corrected\",\n -Process line: \ \"specificProblem\": \"None\",\n \"rootCauseIndicator\": -Process line: \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": -Process line: \"CONFIGURATION_FAILURE\",\n \"additionalText\": \"\",\n -Process line: \ \"proposedRepairAction\": \"None\",\n \"domain\": -Process line: \"fault\"\n }\n } \n} \n" -Process line: --- -Process line: # Source: cucp/charts/ueconmgr/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - NAMESPACE -Process line: -Process line: -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: -Process line: apiVersion: v1 -Process line: kind: ConfigMap -Process line: metadata: -Process line: name: ueconmgr-static-cfg -Process line: namespace: test -Process line: labels: -Process line: microSvcName: ueconmgr -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "ueconmgr", -Process line: "nfServiceType": "ueconmgr" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: data: -Process line: __CFG_TYPE: "static-cfg" -Process line: vipspec1.json: | -Process line: { -Process line: "cniVersion": "0.3.1", -Process line: "plugins": [{ -Process line: "type": "", -Process line: "master": "eth0", -Process line: "ipam": { -Process line: "type": "host-local", -Process line: "ranges": [ -Process line: [{ -Process line: "subnet": "2605:c540:8c00:3318::/64", -Process line: "rangeStart": "2605:c540:8c00:3318::77", -Process line: "rangeEnd": "2605:c540:8c00:3318::77", -Process line: "gateway": "" -Process line: }] -Process line: ], -Process line: "routes": [{ -Process line: "dst": "0.0.0.0/0" -Process line: }] -Process line: } -Process line: }] -Process line: } -Process line: --- -Process line: # Source: cucp/charts/ueconmgr/templates/cnf_tpl_charts_2_15.yaml -Process line: apiVersion: v1 -Process line: kind: ConfigMap -Process line: metadata: -Process line: name: ueconmgr-eventdef-cfg -Process line: namespace: test -Process line: labels: -Process line: microSvcName: ueconmgr -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "ueconmgr", -Process line: "nfServiceType": "ueconmgr" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: data: -Process line: __CFG_TYPE: "eventdef-cfg" -Process line: eventdef-cim.json: | -Process line: { -Process line: "events": { -Process line: "CimConnectEtcdFailure": { -Process line: "eventType": "COMMUNICATION", -Process line: "perceivedSeverity": "CRITICAL", -Process line: "probableCause": "etcd communication failure", -Process line: "specificProblem": "CIM unable to establish connection to etcd", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "RoleAssignmentStatus": { -Process line: "eventType": "HA_ROLE_ASSIGNMENT", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Role assignment status received for HA operation.", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "HAMonitoringFailure": { -Process line: "eventType": "HA_MONITORING", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "HA Failed To Monitor Application uS", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "No specific action required. HAaaS feature will perform auto recovery by restarting pod." -Process line: }, -Process line: "LmaasTCPFailure": { -Process line: "eventType": "COMMUNICATION", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "TCP connection failure towards fluent-bit onbserved in LMaaS", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "Ensure fluent-bit service is up and running with tcp port open for logging." -Process line: }, -Process line: "CimCommitConfigSuccess": { -Process line: "eventType": "COMMIT_CONFIG", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "A commit-config operation towards etcd is successful", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimCommitConfigFailure": { -Process line: "eventType": "COMMIT_CONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "A commit-config operation failed towards etcd", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateSuccess": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Successfully updated CIM configuration", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateFailure": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Failure updating CIM configuration", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "CimConfigUpdateUnused": { -Process line: "eventType": "CONFIG_UPDATE", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Config patch unused by application", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "Configured": { -Process line: "eventType": "CONFIGURATION", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Full configuration available for application to be ready", -Process line: "specificProblem": "Application is configured.", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "NotConfigured": { -Process line: "eventType": "CONFIGURATION", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Full configuration unavailable for application to be ready", -Process line: "specificProblem": "Application is not configured.", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "Push Day-1 configuration" -Process line: }, -Process line: "ScaleInStateNotify": { -Process line: "eventType": "HA", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Shutdown status received from application", -Process line: "specificProblem": "", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ShutdownSuccess": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Applicationn shutdown itself gracefully", -Process line: "specificProblem": "Application shutdown gracefully", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ShutdownHookFailure": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "Application could not shutdown itself gracefully", -Process line: "specificProblem": "Application could not shutdown gracefully", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "No specific action required." -Process line: }, -Process line: "ApplicationShutdownInitiated": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "specificProblem": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "LoadConfigRequestFailure": { -Process line: "eventType": "LOADCONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Application could not load day1 config", -Process line: "specificProblem": "Application could not load day1 config", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "ApplicationShutdownInitiated": { -Process line: "eventType": "SHUTDOWN", -Process line: "perceivedSeverity": "INFO", -Process line: "probableCause": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "specificProblem": "CIM notifies application to shutdown as it has received a termination signal", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: }, -Process line: "LoadConfigRequestFailure": { -Process line: "eventType": "LOADCONFIG", -Process line: "perceivedSeverity": "MAJOR", -Process line: "probableCause": "Application could not load day1 config", -Process line: "specificProblem": "Application could not load day1 config", -Process line: "rootCauseIndicator": "", -Process line: "trendIndication": "", -Process line: "correlatedNotifications": "", -Process line: "additionalText": "", -Process line: "proposedRepairAction": "" -Process line: } -Process line: } -Process line: } -Process line: events.json: "{\n \"events\": {\n \"EID_NGAP_SETUP_FAIL\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"Incorrect configuration of RRU/gNB parameters\",\n \"specificProblem\": \"CU -Process line: , AMF Configuration issue or Link issue\",\n \"rootCauseIndicator\": \"None\",\n -Process line: \ \"trendIndication\": \"No\",\n \"correlatedNotifications\": \"EID_NGAP_SETUP_FAIL\",\n -Process line: \ \"additionalText\": \"AMFID\",\n \"proposedRepairAction\": \"Check Service -Process line: Area configuration information of the CUCP Global gNodeB id, TAC and PLMN parameters.Check -Process line: configuration of AMF. Check for abnormal state of AMF\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"EID_NGAP_SETUP_SUCCESS\": {\n \"eventType\": \"COMMUNICATION\",\n -Process line: \ \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": \"RRU/Gnb configuration -Process line: parameters corrected\",\n \"specificProblem\": \"CU/AMF config issue corrected\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_NGAP_SETUP_FAIL\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"UE_CONN_MGR_STOP\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"UeConnMgr is down\",\n \"specificProblem\": \"UeConnMgr is down\",\n \"rootCauseIndicator\": -Process line: \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"UE_CONN_MGR_STOP\",\n \"additionalText\": \"UeConnMgr\",\n \"proposedRepairAction\": -Process line: \"Check UeConnMgr Microservice\"\n },\n \"UE_CONN_MGR_START\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"UeConnMgr is up and running\",\n \"specificProblem\": \"None, UeConnMgr is -Process line: up and running\",\n \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"No\",\n \"correlatedNotifications\": \"UE_CONN_MGR_STOP\",\n \"additionalText\": -Process line: \"\",\n \"proposedRepairAction\": \"None\"\n },\n \"State_Test\": {\n\t -Process line: \ \"eventType\": \"CONFIGURED\",\n \"perceivedSeverity\": \"INFO\",\n \"probableCause\": -Process line: \"\",\n \"specificProblem\": \"\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"\",\n \"additionalText\": \"\",\n -Process line: \ \"proposedRepairAction\": \"None\",\n \"domain\": \"notification\" \n -Process line: \ },\n \"CUCPInterfaceInfo\": {\n \"eventType\": \"INTERFACE\",\n \"perceivedSeverity\": -Process line: \"INFO\",\n \"probableCause\": \"\",\n \"specificProblem\": \"\",\n \"rootCauseIndicator\": -Process line: \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": \"\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": \"\",\n \"domain\": -Process line: \"notification\"\n },\n \"LinkStateChanged\": {\n \"eventType\": \"TOPOLOGY\",\n -Process line: \ \"perceivedSeverity\": \"INFO\",\n \"probableCause\": \"\",\n \"specificProblem\": -Process line: \"\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": -Process line: \"\",\n \"additionalText\": \"\",\n \"proposedRepairAction\": \"\",\n -Process line: \ \"domain\": \"notification\"\n },\n \"EID_SCTP_LINK_DOWN\": {\n \"eventType\": -Process line: \"COMMUNICATION\",\n \"perceivedSeverity\": \"MAJOR\",\n \"probableCause\": -Process line: \"SCTP link to peer gNodeB/CU-UP/AMF/DU is down\",\n \"specificProblem\": \"SCTP -Process line: link failure to peer node\",\n \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"No\",\n \"correlatedNotifications\": \"EID_SCTP_LINK_DOWN\",\n \"additionalText\": -Process line: \"Peer GNodeB ID/AMF ID/CU-UP ID/DU ID\",\n \"proposedRepairAction\": \"Check -Process line: the state of peer gNodeB/CU-UP/AMF/DU.Check the connectivity of peer gNodeB/CU-UP/AMF/DU -Process line: from CU-CP and SCTP and IP configuration\",\n \"domain\": \"fault\"\n },\n -Process line: \ \"EID_SCTP_LINK_UP\": {\n \"eventType\": \"COMMUNICATION\",\n \"perceivedSeverity\": -Process line: \"CLEAR\",\n \"probableCause\": \"peer gNodeB/CU-UP/AMF/DU operational/SCTP -Process line: link restored\",\n \"specificProblem\": \"None\",\n \"rootCauseIndicator\": -Process line: \"None\",\n \"trendIndication\": \"No\",\n \"correlatedNotifications\": -Process line: \"EID_SCTP_LINK_DOWN\",\n \"additionalText\": \"Peer GNodeB ID/AMF ID/CU-UP -Process line: ID/DU ID\",\n \"proposedRepairAction\": \"None\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"PROGRAM_TERM\": {\n \"eventType\": \"PROCESSING\",\n -Process line: \ \"perceivedSeverity\": \"MINOR\",\n \"probableCause\": -Process line: \"Program has been terminated\",\n \"specificProblem\": \"Program -Process line: has been terminated (manually or due to internal reasons) system will try to restore -Process line: it automatically\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_TERM\",\n -Process line: \ \"additionalText\": \"Network Service ID\",\n \"proposedRepairAction\": -Process line: \"PLATFORM restarts the minor program automatically\",\n \"domain\": -Process line: \"fault\"\n },\n \"PROGRAM_RSTRED\": {\n \"eventType\": -Process line: \"PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"Program has been terminated (manually or due to internal reasons) system will -Process line: try to restore it automatically.\",\n \"specificProblem\": -Process line: \"None\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_TERM\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"PROGRAM_RSTR_FAIL\": -Process line: {\n \"eventType\": \"PROCESSING\",\n \"perceivedSeverity\": -Process line: \"MAJOR\",\n \"probableCause\": \"Failed to restore the minor -Process line: program\",\n \"specificProblem\": \"After number of attempts -Process line: restoring terminated program, action has failed, system has triggered the node restart\",\n -Process line: \ \"rootCauseIndicator\": \"None\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_RSTR_FAIL\",\n -Process line: \ \"additionalText\": \"Network Service ID\",\n \"proposedRepairAction\": -Process line: \"Platform will reattempt to restart the program\",\n \"domain\": -Process line: \"fault\"\n },\n \"PROGRAM_RSTR_SUCC\": {\n \"eventType\": -Process line: \"PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n \"probableCause\": -Process line: \"program has been restored successfully\",\n \"specificProblem\": -Process line: \"None\",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"PROGRAM_RSTR_FAIL\",\n -Process line: \ \"additionalText\": \"\",\n \"proposedRepairAction\": -Process line: \"None\",\n \"domain\": \"fault\"\n },\n \"CONFIGURATION_FAILURE\": -Process line: {\n \"eventType\": \"TYPE_PROCESSING\",\n \"perceivedSeverity\": -Process line: \"CRITICAL\",\n \"probableCause\": \"Application configuration -Process line: is not correct\",\n \"specificProblem\": \"Incorrect application -Process line: configuration \",\n \"rootCauseIndicator\": \"\",\n \"trendIndication\": -Process line: \"\",\n \"correlatedNotifications\": \"CONFIGURATION_FAILURE\",\n -Process line: \ \"additionalText\": \"DU ID\",\n \"proposedRepairAction\": -Process line: \"Check the application configuration\",\n \"domain\": \"fault\"\n -Process line: \ },\n \"CONGFIGURATION_FAILURE_CLEAR\": {\n \"eventType\": -Process line: \"TYPE_PROCESSING\",\n \"perceivedSeverity\": \"CLEAR\",\n -Process line: \ \"probableCause\": \"Application configuration is corrected\",\n -Process line: \ \"specificProblem\": \"None\",\n \"rootCauseIndicator\": -Process line: \"\",\n \"trendIndication\": \"\",\n \"correlatedNotifications\": -Process line: \"CONFIGURATION_FAILURE\",\n \"additionalText\": \"\",\n -Process line: \ \"proposedRepairAction\": \"None\",\n \"domain\": -Process line: \"fault\"\n }\n } \n} \n" -Process line: --- -Process line: # Source: cucp/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - NAMESPACE -Process line: -Process line: -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: -Process line: apiVersion: v1 -Process line: kind: ConfigMap -Process line: metadata: -Process line: name: cucp-mgmt-cfg -Process line: namespace: test -Process line: labels: -Process line: microSvcName: cucp -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "cucp", -Process line: "nfServiceType": "cucp" -Process line: }' -Process line: svcVersion: "5.0.326.53" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: configMgmt: enabled -Process line: binaryData: -Process line: yangs.tgz: -Process line: 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 -Process line: data: -Process line: __CFG_TYPE: "mgmt-cfg" -Process line: revision: "0" -Process line: cim.json: |- -Process line: { -Process line: "cimConfig": { -Process line: "lmaas": { -Process line: "max_file_size_in_mb": 10, -Process line: "max_backup_files": 10, -Process line: "max_age": 7, -Process line: "buffer_size": 10000, -Process line: "flush_timeout": 30, -Process line: "logging_mode": "FILE", -Process line: "prefer_local_daemonset": false -Process line: }, -Process line: "haaas": { -Process line: "hb_interval": 250, -Process line: "hb_frequency": 10, -Process line: "ha_timeout": 120 -Process line: }, -Process line: "cim_settings": { -Process line: "enable_kpi": true, -Process line: "log_level": "ALL", -Process line: "cim_file_log": true, -Process line: "num_garp_count": 1, -Process line: "remote_svc_retry_count": 60, -Process line: "ttl_timeout": 10 -Process line: }, -Process line: "app_settings": { -Process line: "app_port": 9001, -Process line: "http2_enabled": false -Process line: } -Process line: } -Process line: } -Process line: dependency.json: |- -Process line: { -Process line: "mavenir_data_container": ["ueconmgr", "gnbmgr", "ngclientiwf", "sctpe1iwf", "sctpf1iwf", "sctpxniwf"], -Process line: "gnb_vs_config": ["ueconmgr", "gnbmgr", "ngclientiwf", "sctpe1iwf", "sctpf1iwf", "sctpxniwf"] -Process line: } -Process line: gnb_vs_config.json: |- -Process line: { -Process line: "gnbvs": { -Process line: "gnbCuCpConfig": [ -Process line: { -Process line: "id": "1", -Process line: "gNBId": "1", -Process line: "gNBIdLength": 22, -Process line: "maxNumUe": 5000, -Process line: "caEnabled": false, -Process line: "noNfUpdate": false, -Process line: "blacklistedXnGnbIdList": "1,2,3,4", -Process line: "isNwSliceUeAdmEnabled": false, -Process line: "sliceManagerIpAddress": "172.17.11.13", -Process line: "sliceManagerPort": 4343, -Process line: "tacSpecificConfig": [ -Process line: { -Process line: "tac": "0101", -Process line: "plmnSpecificConfig": [ -Process line: { -Process line: "id": "1", -Process line: "MCC": "311", -Process line: "MNC": "279", -Process line: "sNSSAI": [ -Process line: 16777216, -Process line: 16777217 -Process line: ] -Process line: } -Process line: ] -Process line: } -Process line: ], -Process line: "scalingConfig": { -Process line: "uesThresScaleOut": 1600, -Process line: "uesThresScaleIn": 400, -Process line: "numUesToImpactScaleIn": 0, -Process line: "minNumUeConMgr": 1, -Process line: "maxUEEntityReplicaCount": 16 -Process line: }, -Process line: "UECallReport": [ -Process line: { -Process line: "ueCallReportId": 1, -Process line: "logMethod": "fileBased", -Process line: "triggerForReport": "endOfCall", -Process line: "reportPeriodicity": 60, -Process line: "maxFileSize": 60, -Process line: "numberOfBackupFiles": 5, -Process line: "enableUeCallReport": false -Process line: } -Process line: ], -Process line: "ispasnEnable": false, -Process line: "enablePwsEtwsCmas": "CMASonly", -Process line: "loggingLevelConfigCUCP": { -Process line: "cuCpLog": [ -Process line: { -Process line: "moduleId": "APP", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "COMMON", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "OAM_AGENT", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "GNB_MGR", -Process line: "logLevel": "DBG" -Process line: }, -Process line: { -Process line: "moduleId": "RM", -Process line: "logLevel": "DBG" -Process line: }, -Process line: { -Process line: "moduleId": "UE_CONN_MGR", -Process line: "logLevel": "DBG" -Process line: }, -Process line: { -Process line: "moduleId": "CODEC_COMMON", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "X2AP_CODEC", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "F1AP_CODEC", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "RRC_CODEC", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "NGAP_CODEC", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "XNAP_CODEC", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "E1AP_CODEC", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "SCTP_COMMON", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "SCTP_CNTRL", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "SCTP_TX", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "SCTP_RX", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "PDCP_COMMON", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "PDCP_C_CNTRL", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "PDCP_C_RX", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "PDCP_C_TX", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "TIMER", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "RPC_SERVER", -Process line: "logLevel": "INF" -Process line: }, -Process line: { -Process line: "moduleId": "RPC_CLIENT", -Process line: "logLevel": "INF" -Process line: }, -Process line: { -Process line: "moduleId": "RM2", -Process line: "logLevel": "DBG" -Process line: }, -Process line: { -Process line: "moduleId": "UE_CALL_RPT", -Process line: "logLevel": "TRC" -Process line: } -Process line: ], -Process line: "mvrpLog": [ -Process line: { -Process line: "moduleId": "MEM", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "BUF", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "STATS", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "TIMER", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "STHREAD", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "CTHREAD", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "SYS", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "EXCP", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "COMM", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "SCTP", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "UDP", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "TCP", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "MSGQ", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "PRIOQ", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "WORKQ", -Process line: "logLevel": "TRC" -Process line: }, -Process line: { -Process line: "moduleId": "PERF", -Process line: "logLevel": "TRC" -Process line: } -Process line: ], -Process line: "logFileName": "cu", -Process line: "maxLogFileSize": 10000000, -Process line: "maxLogFileCount": 5, -Process line: "cuCpRRCLog": [ -Process line: { -Process line: "rrcLogMask": "0x0" -Process line: } -Process line: ] -Process line: }, -Process line: "rrcWiresharkDisector": { -Process line: "localAddress": "172.17.1.25", -Process line: "remoteAddress": "172.17.1.26" -Process line: }, -Process line: "numOutboundStreams": 10, -Process line: "maxInboundStreams": 10, -Process line: "maxInitAttempts": 5, -Process line: "heartBeatIntervalInMs": 5000, -Process line: "maxPathRetx": 1, -Process line: "gnbNgcVsConfig": [ -Process line: { -Process line: "id": "1", -Process line: "ngcMsgRetryIntervalInSec": 1, -Process line: "ngcMsgMaxRetryCount": 1, -Process line: "pagingDrxRf": "rf32", -Process line: "timerNgRelocPrep": 10000, -Process line: "timerNgRelocOverall": 15000 -Process line: } -Process line: ], -Process line: "gnbXncVsConfig": [ -Process line: { -Process line: "id": "1", -Process line: "enableXn": true, -Process line: "retryTimerForSctpXnCxn": 60, -Process line: "maxXnPeers": 8, -Process line: "xnApProcDefenseTimer": 600, -Process line: "timerXnRelocPrep": 10000, -Process line: "timerXnRelocOverall": 15000, -Process line: "xncSctpAssocType": "SERVER", -Process line: "xncTimeToWaitInSec": 1 -Process line: } -Process line: ], -Process line: "gnbF1cVsConfig": [ -Process line: { -Process line: "id": "1", -Process line: "duId": "1" -Process line: }, -Process line: { -Process line: "id": "2", -Process line: "duId": "2" -Process line: } -Process line: ], -Process line: "gnbE1VsConfig": [ -Process line: { -Process line: "id": "1", -Process line: "cuUpId": 1 -Process line: } -Process line: ], -Process line: "gnbCellCuCpVsConfig": [ -Process line: { -Process line: "id": "1", -Process line: "cellLocalId": 1, -Process line: "secondaryCellList": "1", -Process line: "enableConfProtforDRB": "REQUIRED", -Process line: "enableIntegProtforDRB": "NOT_NEEDED", -Process line: "rrcEncryption": true, -Process line: "enablePreemptHndlEmergency": true, -Process line: "emergencyServicePriorityLevel": 1, -Process line: "encAlgo": [ -Process line: "NEA0", -Process line: "NEA1", -Process line: "NEA2" -Process line: ], -Process line: "intAlgo": [ -Process line: "NIA0", -Process line: "NIA1", -Process line: "NIA2" -Process line: ], -Process line: "ueInactivityTimerSec": "min1", -Process line: "eutraConfig": { -Process line: "eutraQoSConfig": [ -Process line: { -Process line: "configIndex": 1, -Process line: "qci": 9, -Process line: "snSizeDL": 18, -Process line: "snSizeUL": 18, -Process line: "ulDataSplitThresholdInBytes": "b100", -Process line: "enableUlOutOfOrderDelivery": true, -Process line: "rlcMode": "RLC_AM", -Process line: "rlcUmDir": "RLC_UM_DIR_BIDIRECTIONAL", -Process line: "reorderingTimerMs": 200 -Process line: } -Process line: ] -Process line: }, -Process line: "nrConfig": { -Process line: "repCfgIds": "1,2,3,4,5,6,7,8,9,10", -Process line: "quanNrId": 3, -Process line: "quanEutraId": 3, -Process line: "qosCfgIds": "1,2,3,4", -Process line: "anrConfigId": 3, -Process line: "caConfigId": 3, -Process line: "sib2ParametersId": 1, -Process line: "siConfig": [ -Process line: "SIB2", -Process line: "SIB3", -Process line: "SIB4", -Process line: "SIB5" -Process line: ], -Process line: "sib3Parameters": { -Process line: "intraFreqNeighCells": [ -Process line: { -Process line: "nRpCI": 300, -Process line: "offsetCell": "dB0", -Process line: "rxLevMinOffsetCell": 3, -Process line: "rxLevMinOffsetCellSul": 6, -Process line: "qualMinOffsetCell": 1 -Process line: } -Process line: ], -Process line: "intraFreqBlackCells": [ -Process line: { -Process line: "start": 300, -Process line: "range": 8 -Process line: } -Process line: ] -Process line: }, -Process line: "IntraFreqOffset": [ -Process line: { -Process line: "id": "1", -Process line: "rsrpOffsetSsb": "dB0", -Process line: "rsrqOffsetSsb": "dB0", -Process line: "sinrOffsetSsb": "dB0", -Process line: "rsrpOffsetCsiRs": "dB0", -Process line: "rsrqOffsetCsiRs": "dB0", -Process line: "sinrOffsetCsiRs": "dB0" -Process line: } -Process line: ] -Process line: }, -Process line: "enableCellReselection": true, -Process line: "RUId": 1, -Process line: "siteCarrierSectorId": "111", -Process line: "enableLTECellReselection": false, -Process line: "enableNRInterFreqReselection": true, -Process line: "enableNRInterFreqHO": false, -Process line: "enableHOtoLTEatPoorCov": false, -Process line: "enableMobilitytoLTEforVoiceFb": false, -Process line: "enableMoblitytoLTEforEmergencyFb": false, -Process line: "ssbFrequency": 653856, -Process line: "activityNotifLevel": "UE", -Process line: "maxIntegrityProtDataRate": "MAX_UE_RATE", -Process line: "maxConnUsers": 64, -Process line: "resetNCRT": false -Process line: }, -Process line: { -Process line: "id": "2", -Process line: "cellLocalId": 2, -Process line: "secondaryCellList": "3", -Process line: "enableConfProtforDRB": "NOT_NEEDED", -Process line: "enableIntegProtforDRB": "NOT_NEEDED", -Process line: "rrcEncryption": false, -Process line: "enablePreemptHndlEmergency": true, -Process line: "emergencyServicePriorityLevel": 1, -Process line: "encAlgo": [ -Process line: "NEA0", -Process line: "NEA1", -Process line: "NEA2" -Process line: ], -Process line: "intAlgo": [ -Process line: "NIA0", -Process line: "NIA1", -Process line: "NIA2" -Process line: ], -Process line: "ueInactivityTimerSec": "min1", -Process line: "eutraConfig": { -Process line: "eutraQoSConfig": [ -Process line: { -Process line: "configIndex": 1, -Process line: "qci": 9, -Process line: "snSizeDL": 18, -Process line: "snSizeUL": 18, -Process line: "ulDataSplitThresholdInBytes": "b100", -Process line: "enableUlOutOfOrderDelivery": true, -Process line: "rlcMode": "RLC_AM", -Process line: "rlcUmDir": "RLC_UM_DIR_BIDIRECTIONAL", -Process line: "reorderingTimerMs": 200 -Process line: } -Process line: ] -Process line: }, -Process line: "nrConfig": { -Process line: "repCfgIds": "1,2,3,4,5,6,7,8,9,10", -Process line: "quanNrId": 3, -Process line: "quanEutraId": 3, -Process line: "qosCfgIds": "1,2,3,4", -Process line: "anrConfigId": 3, -Process line: "caConfigId": 3, -Process line: "sib2ParametersId": 1, -Process line: "siConfig": [ -Process line: "SIB2", -Process line: "SIB3", -Process line: "SIB4", -Process line: "SIB5" -Process line: ], -Process line: "sib3Parameters": { -Process line: "intraFreqNeighCells": [ -Process line: { -Process line: "nRpCI": 3, -Process line: "offsetCell": "dB0", -Process line: "rxLevMinOffsetCell": 3, -Process line: "rxLevMinOffsetCellSul": 6, -Process line: "qualMinOffsetCell": 1 -Process line: } -Process line: ], -Process line: "intraFreqBlackCells": [ -Process line: { -Process line: "start": 300, -Process line: "range": 8 -Process line: } -Process line: ] -Process line: }, -Process line: "IntraFreqOffset": [ -Process line: { -Process line: "id": "1", -Process line: "rsrpOffsetSsb": "dB0", -Process line: "rsrqOffsetSsb": "dB0", -Process line: "sinrOffsetSsb": "dB0", -Process line: "rsrpOffsetCsiRs": "dB0", -Process line: "rsrqOffsetCsiRs": "dB0", -Process line: "sinrOffsetCsiRs": "dB0" -Process line: } -Process line: ] -Process line: }, -Process line: "enableCellReselection": true, -Process line: "RUId": 2, -Process line: "siteCarrierSectorId": "111", -Process line: "enableLTECellReselection": false, -Process line: "enableNRInterFreqReselection": true, -Process line: "enableNRInterFreqHO": false, -Process line: "enableHOtoLTEatPoorCov": false, -Process line: "enableMobilitytoLTEforVoiceFb": false, -Process line: "enableMoblitytoLTEforEmergencyFb": false, -Process line: "ssbFrequency": 653856, -Process line: "activityNotifLevel": "UE", -Process line: "maxIntegrityProtDataRate": "MAX_UE_RATE", -Process line: "maxConnUsers": 64, -Process line: "resetNCRT": false -Process line: } -Process line: ], -Process line: "reportConfig": [ -Process line: { -Process line: "reportConfigId": 1, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReport": { -Process line: "eventId": "EVENT_A1", -Process line: "measTriggerQuantityA1": { -Process line: "rsrp": 71 -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 0, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R1", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 2, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReport": { -Process line: "eventId": "EVENT_A2", -Process line: "measTriggerQuantityA2": { -Process line: "rsrp": 61 -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 1, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R1", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": true, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 3, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReport": { -Process line: "eventId": "EVENT_A3", -Process line: "measTriggerQuantityOffsetA3": { -Process line: "rsrp": 3, -Process line: "eventA3useWhiteCellList": false -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 2, -Process line: "timeToTrigger": "MS256", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS240", -Process line: "eventReportAmount": "R4", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 4, -Process line: "reportConfigType": "REPORT_CONFIG_INTER_RAT", -Process line: "reportConfigEutra": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReportInterRat": { -Process line: "event": "B1", -Process line: "b2NrThreshold": { -Process line: "measTriggerQuantityB2Nr": { -Process line: "sinr": 24 -Process line: } -Process line: }, -Process line: "b2EutraThreshold": { -Process line: "measTriggerQuantityB2Eutra": { -Process line: "sinr": 25 -Process line: } -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 0, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R1", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 5, -Process line: "reportConfigType": "REPORT_CONFIG_INTER_RAT", -Process line: "reportConfigEutra": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReportInterRat": { -Process line: "event": "B2", -Process line: "b2NrThreshold": { -Process line: "measTriggerQuantityB2Nr": { -Process line: "sinr": 26 -Process line: } -Process line: }, -Process line: "b2EutraThreshold": { -Process line: "measTriggerQuantityB2Eutra": { -Process line: "sinr": 27 -Process line: } -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 0, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R1", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 6, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReport": { -Process line: "eventId": "EVENT_A2_SEC", -Process line: "measTriggerQuantityA2Sec": { -Process line: "rsrp": 46 -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 0, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R1", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 7, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReport": { -Process line: "eventId": "EVENT_A4", -Process line: "measTriggerQuantityA4": { -Process line: "rsrp": 56, -Process line: "eventA4UseWhiteCellList": true -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 0, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R1", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 8, -Process line: "reportConfigType": "REPORT_CONFIG_INTER_RAT", -Process line: "reportConfigEutra": { -Process line: "reportType": "PERIODICAL", -Process line: "periodicalReportInterRat": { -Process line: "periodicReportInterval": "MS240", -Process line: "periodicReportAmount": "R4", -Process line: "periodicMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "periodicMaxReportCell": 8 -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 9, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReport": { -Process line: "eventId": "EVENT_A5", -Process line: "a5Threshold1": { -Process line: "rsrp": 51 -Process line: }, -Process line: "a5Threshold2": { -Process line: "rsrp": 46 -Process line: }, -Process line: "eventA5UseWhiteCellList": false, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 2, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R4", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 10, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "PERIODICAL", -Process line: "periodicReport": { -Process line: "periodicRsType": "SSB", -Process line: "periodicReportInterval": "MS240", -Process line: "periodicReportAmount": "R4", -Process line: "periodicMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "periodicMaxReportCell": 8, -Process line: "periodicInculdeBeamMeasurements": false, -Process line: "useWhiteCellList": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 11, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReport": { -Process line: "eventId": "EVENT_A1", -Process line: "measTriggerQuantityA1": { -Process line: "rsrp": 53 -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 0, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R1", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 12, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReport": { -Process line: "eventId": "EVENT_A2", -Process line: "measTriggerQuantityA2": { -Process line: "rsrp": 41 -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 1, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R1", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": true, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 13, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReport": { -Process line: "eventId": "EVENT_A3", -Process line: "measTriggerQuantityOffsetA3": { -Process line: "rsrp": 3, -Process line: "eventA3useWhiteCellList": false -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 2, -Process line: "timeToTrigger": "MS256", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS240", -Process line: "eventReportAmount": "R4", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 14, -Process line: "reportConfigType": "REPORT_CONFIG_INTER_RAT", -Process line: "reportConfigEutra": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReportInterRat": { -Process line: "event": "B1", -Process line: "b2NrThreshold": { -Process line: "measTriggerQuantityB2Nr": { -Process line: "sinr": 24 -Process line: } -Process line: }, -Process line: "b2EutraThreshold": { -Process line: "measTriggerQuantityB2Eutra": { -Process line: "sinr": 25 -Process line: } -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 0, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R1", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 15, -Process line: "reportConfigType": "REPORT_CONFIG_INTER_RAT", -Process line: "reportConfigEutra": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReportInterRat": { -Process line: "event": "B2", -Process line: "b2NrThreshold": { -Process line: "measTriggerQuantityB2Nr": { -Process line: "sinr": 26 -Process line: } -Process line: }, -Process line: "b2EutraThreshold": { -Process line: "measTriggerQuantityB2Eutra": { -Process line: "sinr": 27 -Process line: } -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 0, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R1", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 16, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReport": { -Process line: "eventId": "EVENT_A2_SEC", -Process line: "measTriggerQuantityA2Sec": { -Process line: "rsrp": 46 -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 0, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R1", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 17, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReport": { -Process line: "eventId": "EVENT_A4", -Process line: "measTriggerQuantityA4": { -Process line: "rsrp": 56, -Process line: "eventA4UseWhiteCellList": true -Process line: }, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 0, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R1", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 18, -Process line: "reportConfigType": "REPORT_CONFIG_INTER_RAT", -Process line: "reportConfigEutra": { -Process line: "reportType": "PERIODICAL", -Process line: "periodicalReportInterRat": { -Process line: "periodicReportInterval": "MS240", -Process line: "periodicReportAmount": "R4", -Process line: "periodicMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "periodicMaxReportCell": 8 -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 19, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "EVENT_TRIGGERED", -Process line: "eventReport": { -Process line: "eventId": "EVENT_A5", -Process line: "a5Threshold1": { -Process line: "rsrp": 41 -Process line: }, -Process line: "a5Threshold2": { -Process line: "rsrp": 47 -Process line: }, -Process line: "eventA5UseWhiteCellList": false, -Process line: "reportOnLeave": false, -Process line: "hysteresis": 2, -Process line: "timeToTrigger": "MS40", -Process line: "eventRsType": "SSB", -Process line: "eventReportInterval": "MS120", -Process line: "eventReportAmount": "R4", -Process line: "eventMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "eventMaxReportCell": 1, -Process line: "eventInculdeBeamMeasurements": false -Process line: } -Process line: } -Process line: }, -Process line: { -Process line: "reportConfigId": 20, -Process line: "reportConfigType": "REPORT_CONFIG_NR", -Process line: "reportConfigNr": { -Process line: "reportType": "PERIODICAL", -Process line: "periodicReport": { -Process line: "periodicRsType": "SSB", -Process line: "periodicReportInterval": "MS240", -Process line: "periodicReportAmount": "R4", -Process line: "periodicMeasReportQuantity": { -Process line: "rsrp": true, -Process line: "rsrq": false, -Process line: "sinr": false -Process line: }, -Process line: "periodicMaxReportCell": 8, -Process line: "periodicInculdeBeamMeasurements": false, -Process line: "useWhiteCellList": false -Process line: } -Process line: } -Process line: } -Process line: ], -Process line: "QuantityConfigNR": [ -Process line: { -Process line: "ConfigNRId": 3, -Process line: "filterCoefficientRSRP": "fc8", -Process line: "filterCoefficientRSRQ": "fc8", -Process line: "filterCoefficientRsSINR": "fc8" -Process line: } -Process line: ], -Process line: "QuantityConfigEutra": [ -Process line: { -Process line: "ConfigEutraId": 3, -Process line: "filterCoefficientRSRP": "fc8", -Process line: "filterCoefficientRSRQ": "fc8", -Process line: "filterCoefficientRsSINR": "fc8" -Process line: } -Process line: ], -Process line: "qosCfg": [ -Process line: { -Process line: "id": 1, -Process line: "fiveQi": 6, -Process line: "snSizeDL": 18, -Process line: "snSizeUL": 18, -Process line: "ulDataSplitThresholdInBytes": "b100", -Process line: "enableUlOutOfOrderDelivery": false, -Process line: "rlcMode": "RLC_AM", -Process line: "rlcUmDir": "RLC_UM_DIR_BIDIRECTIONAL", -Process line: "reorderingTimerMs": 20, -Process line: "enableRoHC": "PREFER_DL_UL", -Process line: "supportedRohcProfiles": { -Process line: "ROHC": [ -Process line: { -Process line: "Name": "ROHC_VBBU1", -Process line: "RohcRtpUdpIpV1": true, -Process line: "RohcUdpIpV1": false, -Process line: "RohcEspIpV1": false, -Process line: "RohcIpV1": false, -Process line: "RohcTcpIp": false, -Process line: "RohcRtpUdpIpV2": false, -Process line: "RohcUdpIpV2": false, -Process line: "RohcEspIpV2": false, -Process line: "RohcIpV2": false -Process line: } -Process line: ] -Process line: }, -Process line: "defaultDrb": false, -Process line: "sdapHeaderUL": true, -Process line: "sdapHeaderDL": true -Process line: }, -Process line: { -Process line: "id": 2, -Process line: "fiveQi": 8, -Process line: "snSizeDL": 18, -Process line: "snSizeUL": 18, -Process line: "ulDataSplitThresholdInBytes": "b100", -Process line: "enableUlOutOfOrderDelivery": false, -Process line: "rlcMode": "RLC_AM", -Process line: "rlcUmDir": "RLC_UM_DIR_BIDIRECTIONAL", -Process line: "reorderingTimerMs": 20, -Process line: "enableRoHC": "OFF", -Process line: "supportedRohcProfiles": { -Process line: "ROHC": [ -Process line: { -Process line: "Name": "ROHC_VBBU2", -Process line: "RohcRtpUdpIpV1": true, -Process line: "RohcUdpIpV1": false, -Process line: "RohcEspIpV1": false, -Process line: "RohcIpV1": false, -Process line: "RohcTcpIp": false, -Process line: "RohcRtpUdpIpV2": false, -Process line: "RohcUdpIpV2": false, -Process line: "RohcEspIpV2": false, -Process line: "RohcIpV2": false -Process line: } -Process line: ] -Process line: }, -Process line: "defaultDrb": false, -Process line: "sdapHeaderUL": true, -Process line: "sdapHeaderDL": true -Process line: }, -Process line: { -Process line: "id": 3, -Process line: "fiveQi": 5, -Process line: "snSizeDL": 18, -Process line: "snSizeUL": 18, -Process line: "ulDataSplitThresholdInBytes": "b100", -Process line: "enableUlOutOfOrderDelivery": false, -Process line: "rlcMode": "RLC_AM", -Process line: "reorderingTimerMs": 50, -Process line: "defaultDrb": false, -Process line: "sdapHeaderUL": true, -Process line: "sdapHeaderDL": true -Process line: }, -Process line: { -Process line: "id": 4, -Process line: "fiveQi": 9, -Process line: "snSizeDL": 18, -Process line: "snSizeUL": 18, -Process line: "ulDataSplitThresholdInBytes": "b100", -Process line: "enableUlOutOfOrderDelivery": false, -Process line: "rlcMode": "RLC_AM", -Process line: "rlcUmDir": "RLC_UM_DIR_BIDIRECTIONAL", -Process line: "reorderingTimerMs": 200, -Process line: "defaultDrb": false, -Process line: "sdapHeaderUL": true, -Process line: "sdapHeaderDL": true -Process line: } -Process line: ], -Process line: "caConfig": [ -Process line: { -Process line: "Id": 3, -Process line: "enableMeasBasedSCellAddition": true, -Process line: "caMeasReportTimer": 2, -Process line: "caEvaluationTimer": 50, -Process line: "maxServedUsers": 64, -Process line: "spCellSelectionAlgo": "None" -Process line: } -Process line: ], -Process line: "ANRConfig": [ -Process line: { -Process line: "Id": 3, -Process line: "enableIntraRatANR": "Periodic", -Process line: "enableInterRatLteANR": "Disabled", -Process line: "reportCgiTimer": 5, -Process line: "aNRDrxLongCycle": "MS320", -Process line: "anr5GNeighThreshForAnr": 20, -Process line: "NoNewNeighAnrThres": 5, -Process line: "initialAnrTimerDuration": 30, -Process line: "maxAnrTimerDuration": 1440, -Process line: "nrTimerExponentialPercent": 50, -Process line: "unknowPciThrehForAnr": 20, -Process line: "gNBIdLength": 22, -Process line: "neighborInactivityTimer": 720, -Process line: "guardTimerForANR": 5, -Process line: "ReportCgiThreshold": 20, -Process line: "otherOperatorPlmnList": [ -Process line: { -Process line: "id": 1, -Process line: "gNBIdLength": 22, -Process line: "isXnAllowed": false, -Process line: "mcc": "311", -Process line: "mnc": "279" -Process line: } -Process line: ] -Process line: } -Process line: ], -Process line: "sib2Parameters": [ -Process line: { -Process line: "Id": 1, -Process line: "qHyst": 0, -Process line: "sNonIntraSearchP": 5, -Process line: "sNonIntraSearchQ": 15, -Process line: "threshServingLowP": 3, -Process line: "threshServingLowQ": -1, -Process line: "cellReselectionPriority": 6, -Process line: "cellReselectionSubPriority": "notSendInSIB2", -Process line: "qRxLevMinSib2": -60, -Process line: "qQualMinSib2": -71, -Process line: "sIntraSearchP": 20, -Process line: "sIntraSearchQ": -1, -Process line: "pMaxSib2": -31, -Process line: "smtcPresentInSib2": true, -Process line: "ssbPeriodicitySib2": "sf20", -Process line: "ssbOffsetSib2": 0, -Process line: "ssbDurationSib2": "sf5", -Process line: "ssbToMeasure": "0100", -Process line: "ssRssiMeasPresentInSib2": false, -Process line: "endSymbolInSib2": 3, -Process line: "tReselectionNr": 4, -Process line: "deriveSsbIdxFromCell": false -Process line: } -Process line: ] -Process line: } -Process line: ] -Process line: } -Process line: } -Process line: mavenir_data_container.json: |- -Process line: { -Process line: "data": [ -Process line: { -Process line: "id": "1", -Process line: "RRMPolicyRatio": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "resourceType": "", -Process line: "rRMPolicyMemberList": [ -Process line: { -Process line: "idx": 1, -Process line: "mcc": "311", -Process line: "mnc": "279", -Process line: "sNSSAI": 16777217 -Process line: } -Process line: ], -Process line: "quotaType": "STRICT", -Process line: "rRMPolicyMaxRatio": 5, -Process line: "rRMPolicyMarginMaxRatio": 50, -Process line: "rRMPolicyMinRatio": 15, -Process line: "rRMPolicyMarginMinRatio": 55 -Process line: } -Process line: } -Process line: ], -Process line: "ManagedElement": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "priorityLabel": 1 -Process line: }, -Process line: "GNBCUCPFunction": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "userLabel": "", -Process line: "resourceType": "", -Process line: "rRMPolicyMemberList": [ -Process line: { -Process line: "idx": 1, -Process line: "mcc": "311", -Process line: "mnc": "279", -Process line: "sNSSAI": 16777217 -Process line: } -Process line: ], -Process line: "gNBId": "1", -Process line: "gNBIdLength": 22, -Process line: "gNBCUName": "GNB_CU", -Process line: "pLMNId": [ -Process line: { -Process line: "mcc": "311", -Process line: "mnc": "279" -Process line: } -Process line: ] -Process line: }, -Process line: "EP_E1": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "userLabel": "", -Process line: "localAddress": [ -Process line: { -Process line: "ipAddress": "2605:c540:8c00:3317::60", -Process line: "vlanId": 3317 -Process line: } -Process line: ], -Process line: "remoteAddress": "2605:c540:8c00:3317::66" -Process line: } -Process line: } -Process line: ], -Process line: "EP_F1C": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "userLabel": "", -Process line: "localAddress": [ -Process line: { -Process line: "ipAddress": "2605:c540:8c00:3318::77", -Process line: "vlanId": 3318 -Process line: } -Process line: ], -Process line: "remoteAddress": "2605:c540:8c00:3318::54" -Process line: } -Process line: }, -Process line: { -Process line: "id": "2", -Process line: "attributes": { -Process line: "userLabel": "", -Process line: "localAddress": [ -Process line: { -Process line: "ipAddress": "2605:c540:8c00:3318::77", -Process line: "vlanId": 3318 -Process line: } -Process line: ], -Process line: "remoteAddress": "2605:c540:8c00:3318::34" -Process line: } -Process line: } -Process line: ], -Process line: "EP_NgC": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "userLabel": "", -Process line: "localAddress": [ -Process line: { -Process line: "ipAddress": "2605:c540:8c00:3319::60", -Process line: "vlanId": 3319 -Process line: } -Process line: ], -Process line: "remoteAddress": "2605:c540:8c00:3319::31" -Process line: } -Process line: } -Process line: ], -Process line: "EP_XnC": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "userLabel": "", -Process line: "localAddress": [ -Process line: { -Process line: "ipAddress": "172.248.18.80", -Process line: "vlanId": 3325 -Process line: } -Process line: ], -Process line: "remoteAddress": "172.17.60.20" -Process line: } -Process line: } -Process line: ], -Process line: "EP_X2C": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "userLabel": "", -Process line: "localAddress": [ -Process line: { -Process line: "ipAddress": "172.17.60.29", -Process line: "vlanId": 3325 -Process line: } -Process line: ], -Process line: "remoteAddress": "172.17.60.20" -Process line: } -Process line: } -Process line: ], -Process line: "NRCellCU": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "userLabel": "", -Process line: "cellLocalId": 1, -Process line: "pLMNInfoList": [ -Process line: { -Process line: "mcc": "311", -Process line: "mnc": "279", -Process line: "sNssai": 16777217 -Process line: } -Process line: ] -Process line: }, -Process line: "ManagedNFService": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "sAP": [ -Process line: { -Process line: "host": "172.17.1.19", -Process line: "port": 1111 -Process line: } -Process line: ], -Process line: "operations": [ -Process line: { -Process line: "name": "UNKNOWN", -Process line: "allowedNFTypes": [ -Process line: "UNKNOWN" -Process line: ] -Process line: } -Process line: ], -Process line: "administrativeState": "SHUTTINGDOWN" -Process line: } -Process line: } -Process line: ], -Process line: "EUtranCellRelation": [ -Process line: { -Process line: "id": "22", -Process line: "attributes": { -Process line: "tCI": "99", -Process line: "qRxLevMinOffsetCell": 3, -Process line: "qQualMinOffsetCell": 4, -Process line: "isRemoveAllowed": "NO", -Process line: "isHOAllowed": "NO", -Process line: "isICICInformationSendAllowed": "NO", -Process line: "isLBAllowed": "NO", -Process line: "isESCoveredBy": "NO", -Process line: "qOffset": 0, -Process line: "cellIndividualOffset": 1, -Process line: "adjacentCell": "ExternalENBFunction=1,ExternalEUtranCellFDD=1" -Process line: } -Process line: } -Process line: ], -Process line: "EUtranFreqRelation": [ -Process line: { -Process line: "id": "88", -Process line: "attributes": { -Process line: "eutraQOffsetFreq": 1, -Process line: "blackListEntryIdleMode": [ -Process line: 5, -Process line: 6 -Process line: ], -Process line: "cellReselectionPriority": 0, -Process line: "cellReselectionSubPriority": 8, -Process line: "pMax": 33, -Process line: "qOffsetFreq": 10, -Process line: "qQualMin": -3, -Process line: "qRxLevMin": -50, -Process line: "threshXHighP": 13, -Process line: "threshXHighQ": 14, -Process line: "threshXLowP": 15, -Process line: "threshXLowQ": 16, -Process line: "tReselectionEutra": 7, -Process line: "presenceAntennaPort1": true, -Process line: "allowedMeasBandwidth": "mbw25", -Process line: "eUtranFrequencyRef": "EUtraNetwork=1,EUtranFrequency=1" -Process line: } -Process line: } -Process line: ], -Process line: "NRCellRelation": [ -Process line: { -Process line: "id": "22", -Process line: "attributes": { -Process line: "userLabel": "", -Process line: "nRTCI": "59", -Process line: "cellIndividualOffset": { -Process line: "rsrpOffsetSsb": 10, -Process line: "rsrqOffsetSsb": 10, -Process line: "sinrOffsetSsb": 10, -Process line: "rsrpOffsetCsiRs": 12, -Process line: "rsrqOffsetCsiRs": 14, -Process line: "sinrOffsetCsiRs": 14 -Process line: }, -Process line: "FrRef": "1", -Process line: "CRef": "E=2,3", -Process line: "isRemoveAllowed": false, -Process line: "isHOAllowed": true, -Process line: "type": 0, -Process line: "qOffsetCell": "dB0", -Process line: "qRxLevMinOffsetCell": 1, -Process line: "qQualMinOffsetCell": 1 -Process line: } -Process line: } -Process line: ], -Process line: "NRFreqRelation": [ -Process line: { -Process line: "id": "23", -Process line: "attributes": { -Process line: "userLabel": "", -Process line: "offsetMO": { -Process line: "rsrpOffsetSsb": 0, -Process line: "rsrqOffsetSsb": 0, -Process line: "sinrOffsetSsb": 0, -Process line: "rsrpOffsetCsiRs": 0, -Process line: "rsrqOffsetCsiRs": 0, -Process line: "sinrOffsetCsiRs": 0 -Process line: }, -Process line: "blackListEntry": [ -Process line: 3, -Process line: 4 -Process line: ], -Process line: "blackListEntryIdleMode": [ -Process line: 5, -Process line: 6 -Process line: ], -Process line: "cellReselectionPriority": 7, -Process line: "cellReselectionSubPriority": 8, -Process line: "pMax": 19, -Process line: "qOffsetFreq": -24, -Process line: "qQualMin": -30, -Process line: "qRxLevMin": -120, -Process line: "threshXHighP": 10, -Process line: "threshXHighQ": 24, -Process line: "threshXLowP": 6, -Process line: "threshXLowQ": 26, -Process line: "tReselectionNR": 2, -Process line: "tReselectionNRSfHigh": 25, -Process line: "tReselectionNRSfMedium": 50, -Process line: "nRFrequencyRef": "NRNetwork=1,NRFrequency=1", -Process line: "ssbPeriodicity": "sf20", -Process line: "ssbOffset": 0, -Process line: "ssbDuration": "sf5", -Process line: "isSsbToMeasurePresent": false, -Process line: "ssbToMeasure": "0100", -Process line: "isSmtcPresent": true, -Process line: "deriveSsbIdxFromCell": true, -Process line: "ssRssiMeasPresent": true, -Process line: "endSymbol": 3, -Process line: "isIdleNeighborListSupported": false, -Process line: "isConnNeighborListSupported": false, -Process line: "freqBandIndicatorNR": 71, -Process line: "isSDLFrequency": false -Process line: } -Process line: } -Process line: ] -Process line: }, -Process line: { -Process line: "id": "2", -Process line: "attributes": { -Process line: "userLabel": "", -Process line: "cellLocalId": 2, -Process line: "pLMNInfoList": [ -Process line: { -Process line: "mcc": "311", -Process line: "mnc": "279", -Process line: "sNssai": 16777217 -Process line: } -Process line: ] -Process line: }, -Process line: "ManagedNFService": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "sAP": [ -Process line: { -Process line: "host": "172.17.1.19", -Process line: "port": 1111 -Process line: } -Process line: ], -Process line: "operations": [ -Process line: { -Process line: "name": "UNKNOWN", -Process line: "allowedNFTypes": [ -Process line: "UNKNOWN" -Process line: ] -Process line: } -Process line: ], -Process line: "administrativeState": "SHUTTINGDOWN" -Process line: } -Process line: } -Process line: ], -Process line: "EUtranCellRelation": [ -Process line: { -Process line: "id": "22", -Process line: "attributes": { -Process line: "tCI": "99", -Process line: "qRxLevMinOffsetCell": 3, -Process line: "qQualMinOffsetCell": 4, -Process line: "isRemoveAllowed": "NO", -Process line: "isHOAllowed": "NO", -Process line: "isICICInformationSendAllowed": "NO", -Process line: "isLBAllowed": "NO", -Process line: "isESCoveredBy": "NO", -Process line: "qOffset": 0, -Process line: "cellIndividualOffset": 1, -Process line: "adjacentCell": "ExternalENBFunction=1,ExternalEUtranCellFDD=1" -Process line: } -Process line: } -Process line: ], -Process line: "EUtranFreqRelation": [ -Process line: { -Process line: "id": "88", -Process line: "attributes": { -Process line: "eutraQOffsetFreq": 1, -Process line: "blackListEntryIdleMode": [ -Process line: 5, -Process line: 6 -Process line: ], -Process line: "cellReselectionPriority": 0, -Process line: "cellReselectionSubPriority": 8, -Process line: "pMax": 33, -Process line: "qOffsetFreq": 10, -Process line: "qQualMin": -3, -Process line: "qRxLevMin": -50, -Process line: "threshXHighP": 13, -Process line: "threshXHighQ": 14, -Process line: "threshXLowP": 15, -Process line: "threshXLowQ": 16, -Process line: "tReselectionEutra": 7, -Process line: "presenceAntennaPort1": true, -Process line: "allowedMeasBandwidth": "mbw25", -Process line: "eUtranFrequencyRef": "EUtraNetwork=1,EUtranFrequency=1" -Process line: } -Process line: } -Process line: ], -Process line: "NRCellRelation": [ -Process line: { -Process line: "id": "3", -Process line: "attributes": { -Process line: "userLabel": "", -Process line: "nRTCI": "59", -Process line: "cellIndividualOffset": { -Process line: "rsrpOffsetSsb": 10, -Process line: "rsrqOffsetSsb": 10, -Process line: "sinrOffsetSsb": 10, -Process line: "rsrpOffsetCsiRs": 12, -Process line: "rsrqOffsetCsiRs": 14, -Process line: "sinrOffsetCsiRs": 14 -Process line: }, -Process line: "FrRef": "1", -Process line: "CRef": "I=3", -Process line: "isRemoveAllowed": false, -Process line: "isHOAllowed": true, -Process line: "type": 0, -Process line: "qOffsetCell": "dB0", -Process line: "qRxLevMinOffsetCell": 1, -Process line: "qQualMinOffsetCell": 1 -Process line: } -Process line: } -Process line: ], -Process line: "NRFreqRelation": [ -Process line: { -Process line: "id": "23", -Process line: "attributes": { -Process line: "userLabel": "", -Process line: "offsetMO": { -Process line: "rsrpOffsetSsb": 0, -Process line: "rsrqOffsetSsb": 0, -Process line: "sinrOffsetSsb": 0, -Process line: "rsrpOffsetCsiRs": 0, -Process line: "rsrqOffsetCsiRs": 0, -Process line: "sinrOffsetCsiRs": 0 -Process line: }, -Process line: "blackListEntry": [ -Process line: 3, -Process line: 4 -Process line: ], -Process line: "blackListEntryIdleMode": [ -Process line: 5, -Process line: 6 -Process line: ], -Process line: "cellReselectionPriority": 7, -Process line: "cellReselectionSubPriority": 8, -Process line: "pMax": 19, -Process line: "qOffsetFreq": -24, -Process line: "qQualMin": -30, -Process line: "qRxLevMin": -100, -Process line: "threshXHighP": 10, -Process line: "threshXHighQ": 24, -Process line: "threshXLowP": 6, -Process line: "threshXLowQ": 26, -Process line: "tReselectionNR": 2, -Process line: "tReselectionNRSfHigh": 25, -Process line: "tReselectionNRSfMedium": 50, -Process line: "nRFrequencyRef": "NRNetwork=1,NRFrequency=1", -Process line: "ssbPeriodicity": "sf20", -Process line: "ssbOffset": 0, -Process line: "ssbDuration": "sf5", -Process line: "isSsbToMeasurePresent": false, -Process line: "ssbToMeasure": "0100", -Process line: "isSmtcPresent": true, -Process line: "deriveSsbIdxFromCell": true, -Process line: "ssRssiMeasPresent": true, -Process line: "endSymbol": 3, -Process line: "isIdleNeighborListSupported": false, -Process line: "isConnNeighborListSupported": false, -Process line: "freqBandIndicatorNR": 77, -Process line: "isSDLFrequency": false -Process line: } -Process line: } -Process line: ] -Process line: } -Process line: ] -Process line: } -Process line: ] -Process line: } -Process line: ], -Process line: "EUtraNetwork": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "priorityLabel": 1 -Process line: }, -Process line: "EUtranFrequency": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "earfcnDL": 17999, -Process line: "multiBandInfoListEutra": [ -Process line: 15, -Process line: 16 -Process line: ] -Process line: } -Process line: } -Process line: ], -Process line: "ExternalENBFunction": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "eNBId": 1 -Process line: }, -Process line: "ExternalEUtranCellFDD": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "pci": 1, -Process line: "plmnIdList": [ -Process line: { -Process line: "mcc": "311", -Process line: "mnc": "279" -Process line: } -Process line: ], -Process line: "cellLocalId": 1, -Process line: "eNBId": 1, -Process line: "earfcnDL": 17999, -Process line: "earfcnUL": 18000 -Process line: } -Process line: } -Process line: ] -Process line: } -Process line: ] -Process line: } -Process line: ], -Process line: "NRNetwork": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "priorityLabel": 1 -Process line: }, -Process line: "ExternalAMFFunction": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "pLMNIdList": [ -Process line: { -Process line: "mcc": "311", -Process line: "mnc": "279" -Process line: } -Process line: ], -Process line: "aMFIdentifier": { -Process line: "amfRegionId": 1, -Process line: "amfSetId": 2, -Process line: "amfPointer": 3 -Process line: } -Process line: } -Process line: } -Process line: ], -Process line: "ExternalGNBCUCPFunction": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "gNBId": "232", -Process line: "gNBIdLength": 22, -Process line: "pLMNId": [ -Process line: { -Process line: "mcc": "311", -Process line: "mnc": "279" -Process line: } -Process line: ] -Process line: }, -Process line: "ExternalNRCellCU": [ -Process line: { -Process line: "id": "22", -Process line: "attributes": { -Process line: "cellLocalId": 19, -Process line: "nRPCI": 18, -Process line: "pLMNIdList": [ -Process line: { -Process line: "mcc": "311", -Process line: "mnc": "279" -Process line: } -Process line: ], -Process line: "nRFrequencyRef": "NRNetwork=2,NRFrequency=22" -Process line: } -Process line: } -Process line: ] -Process line: } -Process line: ], -Process line: "NRFrequency": [ -Process line: { -Process line: "id": "1", -Process line: "attributes": { -Process line: "absoluteFrequencySSB": 653856, -Process line: "sSBSubCarrierSpacing": 30, -Process line: "pointASSbFrequency": 656666 -Process line: } -Process line: } -Process line: ] -Process line: } -Process line: ] -Process line: } -Process line: ] -Process line: } -Process line: mavenir_data_container.xml: |- -Process line: -Process line: updatePolicy.json: |- -Process line: { -Process line: "gnb_vs_config": "Dynamic", -Process line: "mavenir_data_container": "Dynamic", -Process line: "cim": "Dynamic" -Process line: } -Process line: --- -Process line: # Source: cucp/charts/gnbmgr/templates/cluster-role.yaml -Process line: kind: ClusterRole -Process line: apiVersion: rbac.authorization.k8s.io/v1 -Process line: metadata: -Process line: name: gnbmgr-cucp-1 -Process line: rules: -Process line: - apiGroups: ["extensions", "apps"] -Process line: resources: ["deployments"] -Process line: verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] -Process line: - apiGroups: [""] -Process line: resources: ["pods"] -Process line: verbs: ["get", "watch", "delete", "create", "list", "replace", "update", "patch"] -Process line: - apiGroups: [""] -Process line: resources: ["configmaps"] -Process line: verbs: ["get", "watch", "create", "list", "replace", "update", "patch"] -Process line: - apiGroups: ["rbac.authorization.k8s.io"] -Process line: resources: ["clusterroles"] -Process line: verbs: ["get", "list"] -Process line: --- -Process line: # Source: cucp/charts/ngclientiwf/templates/cluster-role.yaml -Process line: kind: ClusterRole -Process line: apiVersion: rbac.authorization.k8s.io/v1 -Process line: metadata: -Process line: name: ngclientiwf-cucp-1 -Process line: -Process line: rules: -Process line: - apiGroups: ["extensions", "apps"] -Process line: resources: ["deployments"] -Process line: verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] -Process line: - apiGroups: [""] -Process line: resources: ["pods"] -Process line: verbs: ["get", "watch", "delete", "create", "list", "replace", "update", "patch"] -Process line: - apiGroups: [""] -Process line: resources: ["configmaps"] -Process line: verbs: ["get", "watch", "create", "list", "replace", "update", "patch"] -Process line: - apiGroups: ["rbac.authorization.k8s.io"] -Process line: resources: ["clusterroles"] -Process line: verbs: ["get", "list"] -Process line: --- -Process line: # Source: cucp/charts/sctpe1iwf/templates/cluster-role.yaml -Process line: kind: ClusterRole -Process line: apiVersion: rbac.authorization.k8s.io/v1 -Process line: metadata: -Process line: name: sctpe1iwf-cucp-1 -Process line: -Process line: rules: -Process line: - apiGroups: ["extensions", "apps"] -Process line: resources: ["deployments"] -Process line: verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] -Process line: - apiGroups: [""] -Process line: resources: ["pods"] -Process line: verbs: ["get", "watch", "delete", "create", "list", "replace", "update", "patch"] -Process line: - apiGroups: [""] -Process line: resources: ["configmaps"] -Process line: verbs: ["get", "watch", "create", "list", "replace", "update", "patch"] -Process line: - apiGroups: ["rbac.authorization.k8s.io"] -Process line: resources: ["clusterroles"] -Process line: verbs: ["get", "list"] -Process line: --- -Process line: # Source: cucp/charts/sctpf1iwf/templates/cluster-role.yaml -Process line: kind: ClusterRole -Process line: apiVersion: rbac.authorization.k8s.io/v1 -Process line: metadata: -Process line: name: sctpf1iwf-cucp-1 -Process line: -Process line: rules: -Process line: - apiGroups: ["extensions", "apps"] -Process line: resources: ["deployments"] -Process line: verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] -Process line: - apiGroups: [""] -Process line: resources: ["pods"] -Process line: verbs: ["get", "watch", "delete", "create", "list", "replace", "update", "patch"] -Process line: - apiGroups: [""] -Process line: resources: ["configmaps"] -Process line: verbs: ["get", "watch", "create", "list", "replace", "update", "patch"] -Process line: - apiGroups: ["rbac.authorization.k8s.io"] -Process line: resources: ["clusterroles"] -Process line: verbs: ["get", "list"] -Process line: --- -Process line: # Source: cucp/charts/sctpxniwf/templates/cluster-role.yaml -Process line: kind: ClusterRole -Process line: apiVersion: rbac.authorization.k8s.io/v1 -Process line: metadata: -Process line: name: sctpxniwf-cucp-1 -Process line: -Process line: rules: -Process line: - apiGroups: ["extensions", "apps"] -Process line: resources: ["deployments"] -Process line: verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] -Process line: - apiGroups: [""] -Process line: resources: ["pods"] -Process line: verbs: ["get", "watch", "delete", "create", "list", "replace", "update", "patch"] -Process line: - apiGroups: [""] -Process line: resources: ["configmaps"] -Process line: verbs: ["get", "watch", "create", "list", "replace", "update", "patch"] -Process line: - apiGroups: ["rbac.authorization.k8s.io"] -Process line: resources: ["clusterroles"] -Process line: verbs: ["get", "list"] -Process line: --- -Process line: # Source: cucp/charts/ueconmgr/templates/cluster-role.yaml -Process line: kind: ClusterRole -Process line: apiVersion: rbac.authorization.k8s.io/v1 -Process line: metadata: -Process line: name: ueconmgr-cucp-1 -Process line: -Process line: rules: -Process line: - apiGroups: ["extensions", "apps"] -Process line: resources: ["deployments"] -Process line: verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] -Process line: - apiGroups: [""] -Process line: resources: ["pods"] -Process line: verbs: ["get", "watch", "delete", "create", "list", "replace", "update", "patch"] -Process line: - apiGroups: [""] -Process line: resources: ["configmaps"] -Process line: verbs: ["get", "watch", "create", "list", "replace", "update", "patch"] -Process line: - apiGroups: ["rbac.authorization.k8s.io"] -Process line: resources: ["clusterroles"] -Process line: verbs: ["get", "list"] -Process line: --- -Process line: # Source: cucp/charts/gnbmgr/templates/cluster-role-binding.yaml -Process line: kind: ClusterRoleBinding -Process line: apiVersion: rbac.authorization.k8s.io/v1 -Process line: metadata: -Process line: name: gnbmgr-cucp-1 -Process line: namespace: test -Process line: subjects: -Process line: - kind: ServiceAccount -Process line: name: gnbmgraccount -Process line: namespace: test -Process line: roleRef: -Process line: kind: ClusterRole -Process line: name: gnbmgr-cucp-1 -Process line: apiGroup: rbac.authorization.k8s.io -Process line: --- -Process line: # Source: cucp/charts/ngclientiwf/templates/cluster-role-binding.yaml -Process line: kind: ClusterRoleBinding -Process line: apiVersion: rbac.authorization.k8s.io/v1 -Process line: metadata: -Process line: name: ngclientiwf-cucp-1 -Process line: namespace: test -Process line: subjects: -Process line: - kind: ServiceAccount -Process line: name: ngclientiwfaccount -Process line: namespace: test -Process line: roleRef: -Process line: kind: ClusterRole -Process line: name: ngclientiwf-cucp-1 -Process line: apiGroup: rbac.authorization.k8s.io -Process line: --- -Process line: # Source: cucp/charts/sctpe1iwf/templates/cluster-role-binding.yaml -Process line: kind: ClusterRoleBinding -Process line: apiVersion: rbac.authorization.k8s.io/v1 -Process line: metadata: -Process line: name: sctpe1iwf-cucp-1 -Process line: namespace: test -Process line: subjects: -Process line: - kind: ServiceAccount -Process line: name: sctpe1iwfaccount -Process line: namespace: test -Process line: roleRef: -Process line: kind: ClusterRole -Process line: name: sctpe1iwf-cucp-1 -Process line: apiGroup: rbac.authorization.k8s.io -Process line: --- -Process line: # Source: cucp/charts/sctpf1iwf/templates/cluster-role-binding.yaml -Process line: kind: ClusterRoleBinding -Process line: apiVersion: rbac.authorization.k8s.io/v1 -Process line: metadata: -Process line: name: sctpf1iwf-cucp-1 -Process line: namespace: test -Process line: subjects: -Process line: - kind: ServiceAccount -Process line: name: sctpf1iwfaccount -Process line: namespace: test -Process line: roleRef: -Process line: kind: ClusterRole -Process line: name: sctpf1iwf-cucp-1 -Process line: apiGroup: rbac.authorization.k8s.io -Process line: --- -Process line: # Source: cucp/charts/sctpxniwf/templates/cluster-role-binding.yaml -Process line: kind: ClusterRoleBinding -Process line: apiVersion: rbac.authorization.k8s.io/v1 -Process line: metadata: -Process line: name: sctpxniwf-cucp-1 -Process line: namespace: test -Process line: subjects: -Process line: - kind: ServiceAccount -Process line: name: sctpxniwfaccount -Process line: namespace: test -Process line: roleRef: -Process line: kind: ClusterRole -Process line: name: sctpxniwf-cucp-1 -Process line: apiGroup: rbac.authorization.k8s.io -Process line: --- -Process line: # Source: cucp/charts/ueconmgr/templates/cluster-role-binding.yaml -Process line: kind: ClusterRoleBinding -Process line: apiVersion: rbac.authorization.k8s.io/v1 -Process line: metadata: -Process line: name: ueconmgr-cucp-1 -Process line: namespace: test -Process line: subjects: -Process line: - kind: ServiceAccount -Process line: name: ueconmgraccount -Process line: namespace: test -Process line: roleRef: -Process line: kind: ClusterRole -Process line: name: ueconmgr-cucp-1 -Process line: apiGroup: rbac.authorization.k8s.io -Process line: --- -Process line: # Source: cucp/charts/gnbmgr/templates/deployment.yaml -Process line: apiVersion: apps/v1 -Process line: kind: Deployment -Process line: metadata: -Process line: name: gnbmgr -Process line: namespace: test -Process line: labels: -Process line: microSvcName: gnbmgr -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "gnbmgr", -Process line: "nfServiceType": "gnbmgr" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: spec: -Process line: replicas: 1 -Process line: selector: -Process line: matchLabels: -Process line: app: gnbmgr -Process line: template: -Process line: metadata: -Process line: name: gnbmgr -Process line: namespace: test -Process line: labels: -Process line: microSvcName: gnbmgr -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: app: gnbmgr -Process line: mtcil.com/mmaas_clock_aligned: "true" -Process line: mtcilId: mtcil2 -Process line: nfinstanceid: gnbmgr1 -Process line: svc: gnbmgrappln -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "gnbmgr", -Process line: "nfServiceType": "gnbmgr" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: mtcil.com/mmaas: '{ "scrape": "true", "path": "/metrics", "ports": ["8081"], "scheme": -Process line: "http", "measurementInterval": "15s", "maxRetention": "20" }' -Process line: mtcil.com/tmaas.nf.nfVersion: 5.0.326.52 -Process line: mtcil.com/vip-networks: '[]' -Process line: prometheus.io/path: /metrics/aligned -Process line: prometheus.io/port: "6060" -Process line: prometheus.io/scheme: http -Process line: prometheus.io/scrape: "true" -Process line: sidecar.istio.io/inject: "true" -Process line: topogw.fqdn: topo-gw.mav-mtcil2.svc.cluster.local.:8080 -Process line: mtcil.com/haaas: -Process line: '{ -Process line: "monitoringMode": "k8s", -Process line: "mode": "allActive", -Process line: "numStandby": "0" -Process line: }' -Process line: -Process line: spec: -Process line: serviceAccountName: gnbmgraccount -Process line: automountServiceAccountToken: true -Process line: nodeSelector: -Process line: nodeType: CU -Process line: -Process line: terminationGracePeriodSeconds: 10 -Process line: -Process line: -Process line: imagePullSecrets: -Process line: - name: harborcred -Process line: -Process line: -Process line: dnsConfig: -Process line: options: -Process line: - name: ndots -Process line: value: "2" -Process line: -Process line: containers: -Process line: - -Process line: name: gnbmgr -Process line: image: "10.69.44.72/dishran/gnb_mgr:cucp-gnb_mgr-5.0.326.53" -Process line: imagePullPolicy: IfNotPresent -Process line: ports: -Process line: - containerPort: 2152 -Process line: protocol: UDP -Process line: name: rest -Process line: - containerPort: 8081 -Process line: protocol: TCP -Process line: name: metrics -Process line: command: [ "docker", "run", "-it", "--privileged" ] -Process line: imagePullPolicy: IfNotPresent -Process line: lifecycle: -Process line: postStart: -Process line: exec: -Process line: command: ["/bin/bash", "-c", "env > /opt/mavenir/mvrp/podenv.txt; echo -e \"[GRPC_CONFIG] \ngnbmgr=$(printenv MY_POD_IP)\" > /opt/iwf/gnbmgr"] -Process line: preStop: -Process line: exec: -Process line: command: ["/bin/bash", "-c", "/opt/mavenir/mvrp/scripts/clean.sh; sleep 5" ] -Process line: securityContext: -Process line: privileged: true -Process line: resources: -Process line: limits: -Process line: cpu: "1" -Process line: memory: 2Gi -Process line: requests: -Process line: cpu: "1" -Process line: memory: 2Gi -Process line: -Process line: command: -Process line: [ "/bin/bash", "-c", " sleep 10; service mvrp start; sleep infinity " ] -Process line: #[ "/bin/bash", "-c", "sleep 30 ; sleep infinity" ] -Process line: -Process line: readinessProbe: -Process line: exec: -Process line: command: -Process line: [ "/bin/bash", "-c", " cat /tmp/healthy " ] -Process line: initialDelaySeconds: 30 -Process line: periodSeconds: 5 -Process line: -Process line: livenessProbe: -Process line: exec: -Process line: command: -Process line: [ "/bin/bash", "-c", " cat /tmp/podlive " ] -Process line: initialDelaySeconds: 120 -Process line: periodSeconds: 20 -Process line: failureThreshold: 2 -Process line: -Process line: -Process line: env: -Process line: - name: NFTYPE -Process line: value: "cucp" -Process line: - name: NFID -Process line: value: "cucp-1" -Process line: - name: NFSVCID -Process line: value: "gnbmgr" -Process line: - name: LD_LIBRARY_PATH -Process line: value: "/opt/mavenir/mvrp/lib" -Process line: - name: GNBMGR_NAMESPACE -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.namespace -Process line: - name: K8S_NODE_NAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: K8S_POD_NAME -Process line: value: gnbmgr -Process line: # valueFrom: -Process line: # fieldRef: -Process line: # fieldPath: metadata.name -Process line: - name: MY_POD_IP -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: status.podIP -Process line: - name: TECHNOLOGY -Process line: value: "5GMTCIL" -Process line: - name: HAMONITORINGMODE -Process line: value: "k8s" -Process line: - name: LOGGING_TYPE -Process line: value: "LOCAL" -Process line: - name: LOG_RDR_SLEEP_TIME -Process line: value: "4999" -Process line: - name: VCM_CONFIG_SERVER_PORT -Process line: value: "9001" -Process line: - name: PROMETHEUS_PORT -Process line: value: "8081" -Process line: - name: NODENAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: NF_CONFIG_REVISION -Process line: valueFrom: -Process line: configMapKeyRef: -Process line: name: cucp-mgmt-cfg -Process line: key: revision -Process line: - name: BUILDTAG -Process line: value: cucp-gnb_mgr-5.0.326.53 -Process line: - name: NUMSTANDBY -Process line: value: "0" -Process line: -Process line: stdin: true -Process line: tty: true -Process line: volumeMounts: -Process line: - mountPath: /opt/config -Process line: name: cucp-config-volume -Process line: - name: log-vol -Process line: mountPath: /opt/mavenir/logs -Process line: - name: iwf-vol -Process line: mountPath: /opt/iwf -Process line: - name: mvrp-log -Process line: mountPath: /data/storage/log -Process line: - name: mvrp-cores -Process line: mountPath: /data/storage/corefiles -Process line: - name: mvrp-core -Process line: mountPath: /data/scripts -Process line: - name: mvrp-archive -Process line: mountPath: /data/storage/archive -Process line: - name: mvrp-log-vol -Process line: mountPath: /data/logs -Process line: - name: gnbmgr-vip-volume -Process line: subPath: "openAPI3.0.json" -Process line: mountPath: /opt/static/openAPI3.0.json -Process line: -Process line: -Process line: ########################################################### -Process line: #side car -Process line: ########################################################### -Process line: - -Process line: name: oam-sidecar -Process line: image: "10.69.44.72/dishran/cim:21.1.1-p2" -Found image: 10.69.44.72/dishran/cim:21.1.1-p2 -Process line: -Process line: -Process line: imagePullPolicy: IfNotPresent -Process line: -Process line: resources: -Process line: limits: -Process line: memory: "500Mi" -Process line: cpu: "200m" -Process line: requests: -Process line: memory: "500Mi" -Process line: cpu: "200m" -Process line: -Process line: securityContext: -Process line: privileged: true -Process line: -Process line: ports: -Process line: - containerPort: 4222 -Process line: -Process line: command: -Process line: - /bin/bash -Process line: - -c -Process line: - NatsSubFb LOG,CONFIG log 10 10 7 1000000 30 -Process line: -Process line: livenessProbe: -Process line: tcpSocket: -Process line: port: 6060 -Process line: initialDelaySeconds: 120 -Process line: periodSeconds: 2 -Process line: timeoutSeconds: 5 -Process line: failureThreshold: 2 -Process line: -Process line: readinessProbe: -Process line: tcpSocket: -Process line: port: 6060 -Process line: initialDelaySeconds: 5 -Process line: periodSeconds: 2 -Process line: timeoutSeconds: 5 -Process line: failureThreshold: 2 -Process line: -Process line: env: -Process line: - name: ENABLE_KPI -Process line: value: "false" -Process line: - name: K8S_POD_ID -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.name -Process line: - name: K8S_NAMESPACE -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.namespace -Process line: - name: MICROSERVICE_NAME -Process line: value: gnbmgr -Process line: - name: NF_PREFIX -Process line: value: test -Process line: - name: APP_PORT -Process line: value: "9001" -Process line: - name: NODENAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: NF_CONFIG_REVISION -Process line: valueFrom: -Process line: configMapKeyRef: -Process line: name: cucp-mgmt-cfg -Process line: key: revision -Process line: -Process line: stdin: true -Process line: tty: true -Process line: volumeMounts: -Process line: - name: cucp-config-volume -Process line: subPath: "cim.json" -Process line: mountPath: "/opt/conf/cim.json" -Process line: - name: mnt-log -Process line: mountPath: /opt/logs -Process line: -Process line: -Process line: restartPolicy: Always -Process line: -Process line: securityContext: -Process line: runAsUser: 0 -Process line: runAsGroup: 0 -Process line: volumes: -Process line: - configMap: -Process line: name: cucp-mgmt-cfg -Process line: name: cucp-config-volume -Process line: - configMap: -Process line: name: gnbmgr-static-cfg -Process line: name: gnbmgr-vip-volume -Process line: - configMap: -Process line: name: gnbmgr-mgmt-cfg -Process line: name: gnbmgr-config-volume -Process line: - configMap: -Process line: name: gnbmgr-eventdef-cfg -Process line: name: gnbmgr-event-volume -Process line: - name: mnt-log -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-log -Process line: hostPath: -Process line: path: /var/home/core/cucp-1_gnbmgr -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-cores -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-archive -Process line: hostPath: -Process line: path: /var/home/core/cucp-1_gnbmgr/archive -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-core -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: log-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-log-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: iwf-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: --- -Process line: # Source: cucp/charts/ngclientiwf/templates/deployment.yaml -Process line: apiVersion: apps/v1 -Process line: kind: Deployment -Process line: metadata: -Process line: name: ngclientiwf -Process line: namespace: test -Process line: labels: -Process line: microSvcName: ngclientiwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "ngclientiwf", -Process line: "nfServiceType": "ngclientiwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: spec: -Process line: replicas: 1 -Process line: selector: -Process line: matchLabels: -Process line: app: ngclientiwf -Process line: template: -Process line: metadata: -Process line: name: ngclientiwf -Process line: namespace: test -Process line: labels: -Process line: microSvcName: ngclientiwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: app: ngclientiwf -Process line: mtcil.com/mmaas_clock_aligned: "true" -Process line: mtcilId: mtcil1 -Process line: nfinstanceid: ngclientiwf1 -Process line: svc: ngclientiwfappln -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "ngclientiwf", -Process line: "nfServiceType": "ngclientiwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: mtcil.com/mmaas: '{ "scrape": "true", "path": "/metrics", "ports": ["8081"], "scheme": -Process line: "http", "measurementInterval": "15s", "maxRetention": "20" }' -Process line: mtcil.com/tmaas.nf.nfVersion: 5.0.326.52 -Process line: mtcil.com/vip-networks: '[]' -Process line: prometheus.io/path: /metrics/aligned -Process line: prometheus.io/port: "6060" -Process line: prometheus.io/scheme: http -Process line: prometheus.io/scrape: "true" -Process line: sidecar.istio.io/inject: "true" -Process line: mtcil.com/vip-networks: '[{"interface": "n2","poolids":["vipspec1"]}]' -Process line: mtcil.com/haaas: -Process line: '{ -Process line: "monitoringMode": "k8s", -Process line: "mode": "allActive", -Process line: "numStandby": "0" -Process line: }' -Process line: k8s.v1.cni.cncf.io/networks: | -Process line: [ -Process line: { -Process line: "name": "nglient-cu-f1c-conf", -Process line: "interface": "n2" -Process line: } -Process line: ] -Process line: -Process line: spec: -Process line: nodeSelector: -Process line: nodeType: CU -Process line: serviceAccountName: ngclientiwfaccount -Process line: automountServiceAccountToken: true -Process line: -Process line: terminationGracePeriodSeconds: 10 -Process line: -Process line: imagePullSecrets: -Process line: - name: -Process line: -Process line: imagePullSecrets: -Process line: - name: harborcred -Process line: -Process line: -Process line: dnsConfig: -Process line: options: -Process line: - name: ndots -Process line: value: "2" -Process line: -Process line: containers: -Process line: - name: ngclientiwf -Process line: image: "10.69.44.72/dishran/sctp_ng_client_iwf:cucp-sctp_ng_client_iwf-5.0.326.53" -Found image: 10.69.44.72/dishran/sctp_ng_client_iwf:cucp-sctp_ng_client_iwf-5.0.326.53 -Process line: ports: -Process line: - containerPort: 2152 -Process line: protocol: UDP -Process line: name: rest -Process line: - containerPort: 8081 -Process line: protocol: TCP -Process line: name: metrics -Process line: command: [ "docker", "run", "-it", "--privileged" ] -Process line: imagePullPolicy: IfNotPresent -Process line: lifecycle: -Process line: postStart: -Process line: exec: -Process line: command: ["/bin/bash", "-c", "env > /opt/mavenir/mvrp/podenv.txt;echo -e \"[GRPC_CONFIG] \nngclientiwf=$(printenv MY_POD_IP)\" > /opt/iwf/ngclientiwf"] -Process line: preStop: -Process line: exec: -Process line: command: ["/bin/bash", "-c", "/opt/mavenir/mvrp/scripts/clean.sh; sleep 5" ] -Process line: securityContext: -Process line: privileged: true -Process line: resources: -Process line: limits: -Process line: cpu: "1" -Process line: memory: 2Gi -Process line: requests: -Process line: cpu: "1" -Process line: memory: 2Gi -Process line: -Process line: command: -Process line: #[ "/bin/bash", "-c", " sleep 10; route add -net 172.17.11.0/24 gw 172.17.27.1 dev n2; service mvrp start; sleep infinity " ] -Process line: [ "/bin/bash", "-c", " sleep 10; service mvrp start; sleep infinity " ] -Process line: #[ "/bin/bash", "-c", " sleep 30; sleep infinity " ] -Process line: readinessProbe: -Process line: exec: -Process line: command: -Process line: [ "/bin/bash", "-c", " cat /tmp/healthy " ] -Process line: initialDelaySeconds: 30 -Process line: periodSeconds: 5 -Process line: -Process line: livenessProbe: -Process line: exec: -Process line: command: -Process line: [ "/bin/bash", "-c", " cat /tmp/podlive " ] -Process line: initialDelaySeconds: 120 -Process line: periodSeconds: 20 -Process line: failureThreshold: 2 -Process line: -Process line: env: -Process line: - name: NFTYPE -Process line: value: "cucp" -Process line: - name: NFID -Process line: value: "cucp-1" -Process line: - name: NFSVCID -Process line: value: "ngclientiwf" -Process line: - name: LD_LIBRARY_PATH -Process line: value: "/opt/mavenir/mvrp/lib" -Process line: - name: NGCLIENTIWF_NAMESPACE -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.namespace -Process line: - name: K8S_NODE_NAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: K8S_POD_NAME -Process line: value: ngclientiwf -Process line: # valueFrom: -Process line: # fieldRef: -Process line: # fieldPath: metadata.name -Process line: - name: MY_POD_IP -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: status.podIP -Process line: - name: PROMETHEUS_PORT -Process line: value: "8081" -Process line: - name: TECHNOLOGY -Process line: value: "5GMTCIL" -Process line: - name: HAMONITORINGMODE -Process line: value: "k8s" -Process line: - name: LOGGING_TYPE -Process line: value: "LOCAL" -Process line: - name: LOG_RDR_SLEEP_TIME -Process line: value: "4999" -Process line: - name: VCM_CONFIG_SERVER_PORT -Process line: value: "9001" -Process line: - name: NODENAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: NF_CONFIG_REVISION -Process line: valueFrom: -Process line: configMapKeyRef: -Process line: name: cucp-mgmt-cfg -Process line: key: revision -Process line: - name: BUILDTAG -Process line: value: cucp-sctp_ng_client_iwf-5.0.326.53 -Process line: - name: NUMSTANDBY -Process line: value: "0" -Process line: - name: NGC -Process line: value: "2605:c540:8c00:3319::60" -Process line: -Process line: stdin: true -Process line: tty: true -Process line: volumeMounts: -Process line: - mountPath: /opt/config -Process line: name: cucp-config-volume -Process line: - name: log-vol -Process line: mountPath: /opt/mavenir/logs -Process line: - name: iwf-vol -Process line: mountPath: /opt/iwf -Process line: - name: mvrp-log -Process line: mountPath: /data/storage/log -Process line: - name: mvrp-cores -Process line: mountPath: /data/storage/corefiles -Process line: - name: mvrp-core -Process line: mountPath: /data/scripts -Process line: - name: mvrp-archive -Process line: mountPath: /data/storage/archive -Process line: - name: mvrp-log-vol -Process line: mountPath: /data/logs -Process line: - name: cni -Process line: mountPath: /var/lib/cni -Process line: -Process line: ########################################################### -Process line: #side car -Process line: ########################################################### -Process line: - name: oam-sidecar -Process line: image: "10.69.44.72/dishran/cim:21.1.1-p2" -Process line: imagePullPolicy: IfNotPresent -Process line: -Process line: resources: -Process line: limits: -Process line: memory: "500Mi" -Process line: cpu: "200m" -Process line: requests: -Process line: memory: "500Mi" -Process line: cpu: "200m" -Process line: -Process line: -Process line: securityContext: -Process line: privileged: true -Process line: -Process line: ports: -Process line: - containerPort: 4222 -Process line: -Process line: command: -Process line: - /bin/bash -Process line: - -c -Process line: - NatsSubFb LOG,CONFIG log 10 10 7 1000000 30 -Process line: -Process line: livenessProbe: -Process line: tcpSocket: -Process line: port: 6060 -Process line: initialDelaySeconds: 120 -Process line: periodSeconds: 2 -Process line: timeoutSeconds: 5 -Process line: failureThreshold: 2 -Process line: -Process line: readinessProbe: -Process line: tcpSocket: -Process line: port: 6060 -Process line: initialDelaySeconds: 5 -Process line: periodSeconds: 2 -Process line: timeoutSeconds: 5 -Process line: failureThreshold: 2 -Process line: -Process line: env: -Process line: - name: ENABLE_KPI -Process line: value: "false" -Process line: - name: K8S_POD_ID -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.name -Process line: - name: K8S_NAMESPACE -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.namespace -Process line: - name: MICROSERVICE_NAME -Process line: value: ngclientiwf -Process line: - name: NF_PREFIX -Process line: value: test -Process line: - name: APP_PORT -Process line: value: "9001" -Process line: - name: NODENAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: NF_CONFIG_REVISION -Process line: valueFrom: -Process line: configMapKeyRef: -Process line: name: cucp-mgmt-cfg -Process line: key: revision -Process line: stdin: true -Process line: tty: true -Process line: volumeMounts: -Process line: - name: cucp-config-volume -Process line: subPath: "cim.json" -Process line: mountPath: "/opt/conf/cim.json" -Process line: - name: mnt-log -Process line: mountPath: /opt/logs -Process line: - name: ngclientiwf-vip-volume -Process line: subPath: "vipspec1.json" -Process line: mountPath: "/opt/vipconf/vipspec1.json" -Process line: -Process line: restartPolicy: Always -Process line: -Process line: securityContext: -Process line: runAsUser: 0 -Process line: runAsGroup: 0 -Process line: volumes: -Process line: - configMap: -Process line: name: ngclientiwf-mgmt-cfg -Process line: name: ngclientiwf-config-volume -Process line: - configMap: -Process line: name: ngclientiwf-static-cfg -Process line: name: ngclientiwf-vip-volume -Process line: - configMap: -Process line: name: cucp-mgmt-cfg -Process line: name: cucp-config-volume -Process line: - configMap: -Process line: name: ngclientiwf-eventdef-cfg -Process line: name: ngclientiwf-event-volume -Process line: - name: mvrp-log -Process line: hostPath: -Process line: path: /var/home/core/cucp-1_ngclientiwf -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-cores -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-archive -Process line: hostPath: -Process line: path: /var/home/core/cucp-1_ngclientiwf/archive -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-core -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mnt-log -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: log-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-log-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: iwf-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: cni -Process line: hostPath: -Process line: path: /var/lib/cni -Process line: type: DirectoryOrCreate -Process line: --- -Process line: # Source: cucp/charts/sctpe1iwf/templates/deployment.yaml -Process line: apiVersion: apps/v1 -Process line: kind: Deployment -Process line: metadata: -Process line: name: sctpe1iwf -Process line: namespace: test -Process line: labels: -Process line: microSvcName: sctpe1iwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "sctpe1iwf", -Process line: "nfServiceType": "sctpe1iwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: spec: -Process line: replicas: 1 -Process line: selector: -Process line: matchLabels: -Process line: app: sctpe1iwf -Process line: template: -Process line: metadata: -Process line: name: sctpe1iwf -Process line: namespace: test -Process line: labels: -Process line: microSvcName: sctpe1iwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: app: sctpe1iwf -Process line: mtcil.com/mmaas_clock_aligned: "true" -Process line: mtcilId: mtcil1 -Process line: nfinstanceid: sctpe1iwf1 -Process line: svc: sctpe1iwfappln -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "sctpe1iwf", -Process line: "nfServiceType": "sctpe1iwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: mtcil.com/mmaas: '{ "scrape": "true", "path": "/metrics", "ports": ["8081"], "scheme": -Process line: "http", "measurementInterval": "15s", "maxRetention": "20" }' -Process line: mtcil.com/tmaas.nf.nfVersion: 5.0.326.52 -Process line: mtcil.com/vip-networks: '[]' -Process line: prometheus.io/path: /metrics/aligned -Process line: prometheus.io/port: "6060" -Process line: prometheus.io/scheme: http -Process line: prometheus.io/scrape: "true" -Process line: sidecar.istio.io/inject: "true" -Process line: mtcil.com/vip-networks: '[{"interface": "e1","poolids":["vipspec1"]}]' -Process line: mtcil.com/haaas: -Process line: '{ -Process line: "monitoringMode": "k8s", -Process line: "mode": "allActive", -Process line: "numStandby": "0" -Process line: }' -Process line: k8s.v1.cni.cncf.io/networks: | -Process line: [ -Process line: { -Process line: "name": "sctpe1iwf-cu-f1c-conf", -Process line: "interface": "e1" -Process line: } -Process line: ] -Process line: -Process line: spec: -Process line: serviceAccountName: sctpe1iwfaccount -Process line: automountServiceAccountToken: true -Process line: nodeSelector: -Process line: nodeType: CU -Process line: -Process line: terminationGracePeriodSeconds: 10 -Process line: -Process line: imagePullSecrets: -Process line: - name: -Process line: -Process line: imagePullSecrets: -Process line: - name: harborcred -Process line: -Process line: -Process line: dnsConfig: -Process line: options: -Process line: - name: ndots -Process line: value: "2" -Process line: -Process line: containers: -Process line: - name: sctpe1iwf -Process line: image: "10.69.44.72/dishran/sctp_e1_iwf:cucp-sctp_e1_iwf-5.0.326.53" -Found image: 10.69.44.72/dishran/sctp_e1_iwf:cucp-sctp_e1_iwf-5.0.326.53 -Process line: ports: -Process line: - containerPort: 2152 -Process line: protocol: UDP -Process line: name: rest -Process line: - containerPort: 8081 -Process line: protocol: TCP -Process line: name: metrics -Process line: command: [ "docker", "run", "-it", "--privileged" ] -Process line: imagePullPolicy: IfNotPresent -Process line: lifecycle: -Process line: postStart: -Process line: exec: -Process line: command: ["/bin/bash", "-c", "env > /opt/mavenir/mvrp/podenv.txt;echo -e \"[GRPC_CONFIG] \nsctpe1iwf=$(printenv MY_POD_IP)\" > /opt/iwf/sctpe1iwf "] -Process line: preStop: -Process line: exec: -Process line: command: ["/bin/bash", "-c", "/opt/mavenir/mvrp/scripts/clean.sh; sleep 5" ] -Process line: securityContext: -Process line: privileged: true -Process line: resources: -Process line: limits: -Process line: cpu: "1" -Process line: memory: 2Gi -Process line: requests: -Process line: cpu: "1" -Process line: memory: 2Gi -Process line: -Process line: command: -Process line: [ "/bin/bash", "-c", "sleep 10; service mvrp start ; sleep infinity" ] -Process line: #[ "/bin/bash", "-c", "sleep 30; sleep infinity" ] -Process line: readinessProbe: -Process line: exec: -Process line: command: -Process line: [ "/bin/bash", "-c", " cat /tmp/healthy " ] -Process line: initialDelaySeconds: 30 -Process line: periodSeconds: 5 -Process line: -Process line: livenessProbe: -Process line: exec: -Process line: command: -Process line: [ "/bin/bash", "-c", " cat /tmp/podlive " ] -Process line: initialDelaySeconds: 120 -Process line: periodSeconds: 20 -Process line: failureThreshold: 2 -Process line: -Process line: volumeMounts: -Process line: - mountPath: /opt/config -Process line: name: cucp-config-volume -Process line: - name: log-vol -Process line: mountPath: /opt/mavenir/logs -Process line: - name: iwf-vol -Process line: mountPath: /opt/iwf -Process line: - name: mvrp-log -Process line: mountPath: /data/storage/log -Process line: - name: mvrp-cores -Process line: mountPath: /data/storage/corefiles -Process line: - name: mvrp-core -Process line: mountPath: /data/scripts -Process line: - name: mvrp-archive -Process line: mountPath: /data/storage/archive -Process line: - name: mvrp-log-vol -Process line: mountPath: /data/logs -Process line: - name: cni -Process line: mountPath: /var/lib/cni -Process line: -Process line: env: -Process line: - name: NFTYPE -Process line: value: "cucp" -Process line: - name: NFID -Process line: value: "cucp-1" -Process line: - name: NFSVCID -Process line: value: "sctpe1iwf" -Process line: - name: LD_LIBRARY_PATH -Process line: value: "/opt/mavenir/mvrp/lib" -Process line: - name: SCTPELIWF_NAMESPACE -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.namespace -Process line: - name: K8S_NODE_NAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: K8S_POD_NAME -Process line: value: sctpe1iwf -Process line: # valueFrom: -Process line: # fieldRef: -Process line: # fieldPath: metadata.name -Process line: - name: MY_POD_IP -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: status.podIP -Process line: - name: PROMETHEUS_PORT -Process line: value: "8081" -Process line: - name: TECHNOLOGY -Process line: value: "5GMTCIL" -Process line: - name: HAMONITORINGMODE -Process line: value: "k8s" -Process line: - name: LOGGING_TYPE -Process line: value: "LOCAL" -Process line: - name: LOG_RDR_SLEEP_TIME -Process line: value: "4999" -Process line: - name: VCM_CONFIG_SERVER_PORT -Process line: value: "9001" -Process line: - name: NODENAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: NF_CONFIG_REVISION -Process line: valueFrom: -Process line: configMapKeyRef: -Process line: name: cucp-mgmt-cfg -Process line: key: revision -Process line: - name: BUILDTAG -Process line: value: cucp-sctp_e1_iwf-5.0.326.53 -Process line: - name: NUMSTANDBY -Process line: value: "0" -Process line: - name: E1 -Process line: value: "2605:c540:8c00:3317::60" -Process line: -Process line: stdin: true -Process line: tty: true -Process line: ########################################################### -Process line: #side car -Process line: ########################################################### -Process line: - name: oam-sidecar -Process line: image: "10.69.44.72/dishran/cim:21.1.1-p2" -Process line: imagePullPolicy: IfNotPresent -Process line: -Process line: resources: -Process line: limits: -Process line: memory: "500Mi" -Process line: cpu: "200m" -Process line: requests: -Process line: memory: "500Mi" -Process line: cpu: "200m" -Process line: -Process line: -Process line: securityContext: -Process line: privileged: true -Process line: -Process line: ports: -Process line: - containerPort: 4222 -Process line: -Process line: command: -Process line: - /bin/bash -Process line: - -c -Process line: - NatsSubFb LOG,CONFIG log 10 10 7 1000000 30 -Process line: -Process line: livenessProbe: -Process line: tcpSocket: -Process line: port: 6060 -Process line: initialDelaySeconds: 120 -Process line: periodSeconds: 2 -Process line: timeoutSeconds: 5 -Process line: failureThreshold: 2 -Process line: -Process line: readinessProbe: -Process line: tcpSocket: -Process line: port: 6060 -Process line: initialDelaySeconds: 5 -Process line: periodSeconds: 2 -Process line: timeoutSeconds: 5 -Process line: failureThreshold: 2 -Process line: -Process line: env: -Process line: - name: ENABLE_KPI -Process line: value: "false" -Process line: - name: K8S_POD_ID -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.name -Process line: - name: K8S_NAMESPACE -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.namespace -Process line: - name: MICROSERVICE_NAME -Process line: value: sctpe1iwf -Process line: - name: NF_PREFIX -Process line: value: test -Process line: - name: APP_PORT -Process line: value: "9001" -Process line: - name: NODENAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: NF_CONFIG_REVISION -Process line: valueFrom: -Process line: configMapKeyRef: -Process line: name: cucp-mgmt-cfg -Process line: key: revision -Process line: stdin: true -Process line: tty: true -Process line: -Process line: volumeMounts: -Process line: - name: cucp-config-volume -Process line: subPath: "cim.json" -Process line: mountPath: "/opt/conf/cim.json" -Process line: - name: mnt-log -Process line: mountPath: /opt/logs -Process line: - name: sctpe1iwf-vip-volume -Process line: subPath: "vipspec1.json" -Process line: mountPath: "/opt/vipconf/vipspec1.json" -Process line: -Process line: restartPolicy: Always -Process line: -Process line: securityContext: -Process line: runAsUser: 0 -Process line: runAsGroup: 0 -Process line: volumes: -Process line: - configMap: -Process line: name: sctpe1iwf-mgmt-cfg -Process line: name: sctpe1iwf-config-volume -Process line: - configMap: -Process line: name: sctpe1iwf-static-cfg -Process line: name: sctpe1iwf-vip-volume -Process line: - configMap: -Process line: name: cucp-mgmt-cfg -Process line: name: cucp-config-volume -Process line: - configMap: -Process line: name: sctpe1iwf-eventdef-cfg -Process line: name: sctpe1iwf-event-volume -Process line: - name: mnt-log -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-log -Process line: hostPath: -Process line: path: /var/home/core/cucp-1_sctpe1iwf -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-cores -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-archive -Process line: hostPath: -Process line: path: /var/home/core/cucp-1_sctpe1iwf/archive -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-core -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: log-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-log-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: iwf-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: cni -Process line: hostPath: -Process line: path: /var/lib/cni -Process line: type: DirectoryOrCreate -Process line: --- -Process line: # Source: cucp/charts/sctpf1iwf/templates/deployment.yaml -Process line: apiVersion: apps/v1 -Process line: kind: Deployment -Process line: metadata: -Process line: name: sctpf1iwf -Process line: namespace: test -Process line: labels: -Process line: microSvcName: sctpf1iwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "sctpf1iwf", -Process line: "nfServiceType": "sctpf1iwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: spec: -Process line: replicas: 1 -Process line: selector: -Process line: matchLabels: -Process line: app: sctpf1iwf -Process line: template: -Process line: metadata: -Process line: name: sctpf1iwf -Process line: namespace: test -Process line: labels: -Process line: microSvcName: sctpf1iwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: app: sctpf1iwf -Process line: mtcil.com/mmaas_clock_aligned: "true" -Process line: mtcilId: mtcil1 -Process line: nfinstanceid: sctpf1iwf1 -Process line: svc: sctpf1iwfappln -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "sctpf1iwf", -Process line: "nfServiceType": "sctpf1iwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: mtcil.com/mmaas: '{ "scrape": "true", "path": "/metrics", "ports": ["8081"], "scheme": -Process line: "http", "measurementInterval": "15s", "maxRetention": "20" }' -Process line: mtcil.com/tmaas.nf.nfVersion: 5.0.326.52 -Process line: mtcil.com/vip-networks: '[]' -Process line: prometheus.io/path: /metrics/aligned -Process line: prometheus.io/port: "6060" -Process line: prometheus.io/scheme: http -Process line: prometheus.io/scrape: "true" -Process line: sidecar.istio.io/inject: "true" -Process line: mtcil.com/vip-networks: '[{"interface": "f1c","poolids":["vipspec1"]}]' -Process line: mtcil.com/haaas: -Process line: '{ -Process line: "monitoringMode": "k8s", -Process line: "mode": "allActive", -Process line: "numStandby": "0" -Process line: }' -Process line: k8s.v1.cni.cncf.io/networks: | -Process line: [ -Process line: { -Process line: "name": "sctpf1iwf-cu-f1c-conf", -Process line: "interface": "f1c" -Process line: } -Process line: ] -Process line: -Process line: spec: -Process line: serviceAccountName: sctpf1iwfaccount -Process line: automountServiceAccountToken: true -Process line: nodeSelector: -Process line: nodeType: CU -Process line: -Process line: terminationGracePeriodSeconds: 10 -Process line: -Process line: imagePullSecrets: -Process line: - name: -Process line: -Process line: imagePullSecrets: -Process line: - name: harborcred -Process line: -Process line: -Process line: dnsConfig: -Process line: options: -Process line: - name: ndots -Process line: value: "2" -Process line: -Process line: containers: -Process line: - name: sctpf1iwf -Process line: image: "10.69.44.72/dishran/sctp_f1_iwf:cucp-sctp_f1_iwf-5.0.326.53" -Found image: 10.69.44.72/dishran/sctp_f1_iwf:cucp-sctp_f1_iwf-5.0.326.53 -Process line: ports: -Process line: - containerPort: 2152 -Process line: protocol: UDP -Process line: name: rest -Process line: - containerPort: 8081 -Process line: protocol: TCP -Process line: name: metrics -Process line: command: [ "docker", "run", "-it", "--privileged" ] -Process line: imagePullPolicy: IfNotPresent -Process line: lifecycle: -Process line: postStart: -Process line: exec: -Process line: command: ["/bin/bash", "-c", "env > /opt/mavenir/mvrp/podenv.txt;echo -e \"[GRPC_CONFIG] \nsctpf1iwf=$(printenv MY_POD_IP)\" > /opt/iwf/sctpf1iwf"] -Process line: preStop: -Process line: exec: -Process line: command: ["/bin/bash", "-c", "/opt/mavenir/mvrp/scripts/clean.sh; sleep 5" ] -Process line: securityContext: -Process line: privileged: true -Process line: resources: -Process line: limits: -Process line: cpu: "1" -Process line: memory: 8Gi -Process line: requests: -Process line: cpu: "1" -Process line: memory: 8Gi -Process line: -Process line: command: -Process line: [ "/bin/bash", "-c", " sleep 10; service mvrp start; sleep infinity " ] -Process line: #[ "/bin/bash", "-c", "sleep 30; sleep infinity" ] -Process line: readinessProbe: -Process line: exec: -Process line: command: -Process line: [ "/bin/bash", "-c", " cat /tmp/healthy " ] -Process line: initialDelaySeconds: 30 -Process line: periodSeconds: 5 -Process line: -Process line: livenessProbe: -Process line: exec: -Process line: command: -Process line: [ "/bin/bash", "-c", " cat /tmp/podlive " ] -Process line: initialDelaySeconds: 120 -Process line: periodSeconds: 20 -Process line: failureThreshold: 2 -Process line: -Process line: -Process line: volumeMounts: -Process line: - mountPath: /opt/config -Process line: name: cucp-config-volume -Process line: - name: log-vol -Process line: mountPath: /opt/mavenir/logs -Process line: - name: mvrp-log -Process line: mountPath: /data/storage/log -Process line: - name: iwf-vol -Process line: mountPath: /opt/iwf -Process line: - name: mvrp-cores -Process line: mountPath: /data/storage/corefiles -Process line: - name: mvrp-core -Process line: mountPath: /data/scripts -Process line: - name: mvrp-archive -Process line: mountPath: /data/storage/archive -Process line: - name: mvrp-log-vol -Process line: mountPath: /data/logs -Process line: - name: cni -Process line: mountPath: /var/lib/cni -Process line: -Process line: env: -Process line: - name: NFTYPE -Process line: value: "cucp" -Process line: - name: NFID -Process line: value: "cucp-1" -Process line: - name: NFSVCID -Process line: value: "sctpf1iwf" -Process line: - name: LD_LIBRARY_PATH -Process line: value: "/opt/mavenir/mvrp/lib" -Process line: - name: SCTPF1IWF_NAMESPACE -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.namespace -Process line: - name: K8S_NODE_NAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: K8S_POD_NAME -Process line: value: sctpf1iwf -Process line: # valueFrom: -Process line: # fieldRef: -Process line: # fieldPath: metadata.name -Process line: - name: MY_POD_IP -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: status.podIP -Process line: - name: PROMETHEUS_PORT -Process line: value: "8081" -Process line: - name: TECHNOLOGY -Process line: value: "5GMTCIL" -Process line: - name: HAMONITORINGMODE -Process line: value: "k8s" -Process line: - name: LOGGING_TYPE -Process line: value: "LOCAL" -Process line: - name: LOG_RDR_SLEEP_TIME -Process line: value: "4999" -Process line: - name: VCM_CONFIG_SERVER_PORT -Process line: value: "9001" -Process line: - name: NODENAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: NF_CONFIG_REVISION -Process line: valueFrom: -Process line: configMapKeyRef: -Process line: name: cucp-mgmt-cfg -Process line: key: revision -Process line: - name: BUILDTAG -Process line: value: cucp-sctp_f1_iwf-5.0.326.53 -Process line: - name: NUMSTANDBY -Process line: value: "0" -Process line: - name: F1C_CUCP -Process line: value: "2605:c540:8c00:3318::77" -Process line: -Process line: stdin: true -Process line: tty: true -Process line: ########################################################### -Process line: #side car -Process line: ########################################################### -Process line: - name: oam-sidecar -Process line: image: "10.69.44.72/dishran/cim:21.1.1-p2" -Process line: imagePullPolicy: IfNotPresent -Process line: -Process line: resources: -Process line: limits: -Process line: memory: "500Mi" -Process line: cpu: "200m" -Process line: requests: -Process line: memory: "500Mi" -Process line: cpu: "200m" -Process line: -Process line: -Process line: securityContext: -Process line: privileged: true -Process line: -Process line: ports: -Process line: - containerPort: 4222 -Process line: -Process line: command: -Process line: - /bin/bash -Process line: - -c -Process line: - NatsSubFb LOG,CONFIG log 10 10 7 1000000 30 -Process line: -Process line: livenessProbe: -Process line: tcpSocket: -Process line: port: 6060 -Process line: initialDelaySeconds: 120 -Process line: periodSeconds: 2 -Process line: timeoutSeconds: 5 -Process line: failureThreshold: 2 -Process line: -Process line: readinessProbe: -Process line: tcpSocket: -Process line: port: 6060 -Process line: initialDelaySeconds: 5 -Process line: periodSeconds: 2 -Process line: timeoutSeconds: 5 -Process line: failureThreshold: 2 -Process line: -Process line: env: -Process line: - name: ENABLE_KPI -Process line: value: "false" -Process line: - name: K8S_POD_ID -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.name -Process line: - name: K8S_NAMESPACE -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.namespace -Process line: - name: MICROSERVICE_NAME -Process line: value: sctpf1iwf -Process line: - name: NF_PREFIX -Process line: value: test -Process line: - name: APP_PORT -Process line: value: "9001" -Process line: - name: NODENAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: NF_CONFIG_REVISION -Process line: valueFrom: -Process line: configMapKeyRef: -Process line: name: cucp-mgmt-cfg -Process line: key: revision -Process line: stdin: true -Process line: tty: true -Process line: volumeMounts: -Process line: - name: cucp-config-volume -Process line: subPath: "cim.json" -Process line: mountPath: "/opt/conf/cim.json" -Process line: - name: mnt-log -Process line: mountPath: /opt/logs -Process line: - name: sctpf1iwf-vip-volume -Process line: subPath: "vipspec1.json" -Process line: mountPath: "/opt/vipconf/vipspec1.json" -Process line: -Process line: restartPolicy: Always -Process line: -Process line: securityContext: -Process line: runAsUser: 0 -Process line: runAsGroup: 0 -Process line: volumes: -Process line: - configMap: -Process line: name: sctpf1iwf-mgmt-cfg -Process line: name: sctpf1iwf-config-volume -Process line: - configMap: -Process line: name: sctpf1iwf-static-cfg -Process line: name: sctpf1iwf-vip-volume -Process line: - configMap: -Process line: name: cucp-mgmt-cfg -Process line: name: cucp-config-volume -Process line: - configMap: -Process line: name: sctpf1iwf-eventdef-cfg -Process line: name: sctpf1iwf-event-volume -Process line: - name: mnt-log -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-log -Process line: hostPath: -Process line: path: /var/home/core/cucp-1_sctpf1iwf -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-cores -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-archive -Process line: hostPath: -Process line: path: /var/home/core/cucp-1_sctpf1iwf/archive -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-core -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: log-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-log-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: iwf-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: cni -Process line: hostPath: -Process line: path: /var/lib/cni -Process line: type: DirectoryOrCreate -Process line: --- -Process line: # Source: cucp/charts/sctpxniwf/templates/deployment.yaml -Process line: apiVersion: apps/v1 -Process line: kind: Deployment -Process line: metadata: -Process line: name: sctpxniwf -Process line: namespace: test -Process line: labels: -Process line: microSvcName: sctpxniwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "sctpxniwf", -Process line: "nfServiceType": "sctpxniwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: spec: -Process line: replicas: 1 -Process line: selector: -Process line: matchLabels: -Process line: app: sctpxniwf -Process line: template: -Process line: metadata: -Process line: name: sctpxniwf -Process line: namespace: test -Process line: labels: -Process line: microSvcName: sctpxniwf -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: app: sctpxniwf -Process line: mtcil.com/mmaas_clock_aligned: "true" -Process line: mtcilId: mtcil1 -Process line: nfinstanceid: sctpxniwf1 -Process line: svc: sctpxniwfappln -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "sctpxniwf", -Process line: "nfServiceType": "sctpxniwf" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: mtcil.com/mmaas: '{ "scrape": "true", "path": "/metrics", "ports": ["8081"], "scheme": -Process line: "http", "measurementInterval": "15s", "maxRetention": "20" }' -Process line: mtcil.com/tmaas.nf.nfVersion: 5.0.326.52 -Process line: mtcil.com/vip-networks: '[]' -Process line: prometheus.io/path: /metrics/aligned -Process line: prometheus.io/port: "6060" -Process line: prometheus.io/scheme: http -Process line: prometheus.io/scrape: "true" -Process line: sidecar.istio.io/inject: "true" -Process line: mtcil.com/vip-networks: '[{"interface": "xn","poolids":["vipspec1"]}]' -Process line: mtcil.com/haaas: -Process line: '{ -Process line: "monitoringMode": "k8s", -Process line: "mode": "allActive", -Process line: "numStandby": "0" -Process line: }' -Process line: k8s.v1.cni.cncf.io/networks: | -Process line: [ -Process line: { -Process line: "name": "sctpxniwf-cu-f1c-conf", -Process line: "interface": "xn" -Process line: } -Process line: ] -Process line: -Process line: -Process line: spec: -Process line: serviceAccountName: sctpxniwfaccount -Process line: automountServiceAccountToken: true -Process line: nodeSelector: -Process line: nodeType: CU -Process line: -Process line: terminationGracePeriodSeconds: 10 -Process line: -Process line: -Process line: imagePullSecrets: -Process line: - name: harborcred -Process line: -Process line: -Process line: dnsConfig: -Process line: options: -Process line: - name: ndots -Process line: value: "2" -Process line: -Process line: containers: -Process line: - -Process line: name: sctpxniwf -Process line: image: "10.69.44.72/dishran/sctp_xn_iwf:cucp-sctp_xn_iwf-5.0.326.53" -Found image: 10.69.44.72/dishran/sctp_xn_iwf:cucp-sctp_xn_iwf-5.0.326.53 -Process line: imagePullPolicy: IfNotPresent -Process line: ports: -Process line: - containerPort: 2152 -Process line: protocol: UDP -Process line: name: rest -Process line: - containerPort: 8081 -Process line: protocol: TCP -Process line: name: metrics -Process line: command: [ "docker", "run", "-it", "--privileged" ] -Process line: imagePullPolicy: IfNotPresent -Process line: lifecycle: -Process line: postStart: -Process line: exec: -Process line: command: ["/bin/bash", "-c", "env > /opt/mavenir/mvrp/podenv.txt;echo -e \"[GRPC_CONFIG] \nsctpxniwf=$(printenv MY_POD_IP)\" > /opt/iwf/sctpxniwf"] -Process line: preStop: -Process line: exec: -Process line: command: ["/bin/bash", "-c", "/opt/mavenir/mvrp/scripts/clean.sh; sleep 5" ] -Process line: securityContext: -Process line: privileged: true -Process line: resources: -Process line: limits: -Process line: cpu: "1" -Process line: memory: 2Gi -Process line: requests: -Process line: cpu: "1" -Process line: memory: 2Gi -Process line: -Process line: command: -Process line: [ "/bin/bash", "-c", " sleep 10; service mvrp start; sleep infinity " ] -Process line: #[ "/bin/bash", "-c", " sleep 30; sleep infinity" ] -Process line: -Process line: readinessProbe: -Process line: exec: -Process line: command: -Process line: [ "/bin/bash", "-c", " cat /tmp/healthy " ] -Process line: initialDelaySeconds: 30 -Process line: periodSeconds: 5 -Process line: -Process line: livenessProbe: -Process line: exec: -Process line: command: -Process line: [ "/bin/bash", "-c", " cat /tmp/podlive " ] -Process line: initialDelaySeconds: 120 -Process line: periodSeconds: 20 -Process line: failureThreshold: 2 -Process line: -Process line: -Process line: env: -Process line: - name: NFTYPE -Process line: value: "cucp" -Process line: - name: NFID -Process line: value: "cucp-1" -Process line: - name: NFSVCID -Process line: value: "sctpxniwf" -Process line: - name: LD_LIBRARY_PATH -Process line: value: "/opt/mavenir/mvrp/lib" -Process line: - name: SCTPXNIWF_NAMESPACE -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.namespace -Process line: - name: K8S_NODE_NAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: K8S_POD_NAME -Process line: value: sctpxniwf -Process line: # valueFrom: -Process line: # fieldRef: -Process line: # fieldPath: metadata.name -Process line: - name: MY_POD_IP -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: status.podIP -Process line: - name: TECHNOLOGY -Process line: value: "5GMTCIL" -Process line: - name: HAMONITORINGMODE -Process line: value: "k8s" -Process line: - name: LOGGING_TYPE -Process line: value: "LOCAL" -Process line: - name: LOG_RDR_SLEEP_TIME -Process line: value: "4999" -Process line: - name: VCM_CONFIG_SERVER_PORT -Process line: value: "9001" -Process line: - name: PROMETHEUS_PORT -Process line: value: "8081" -Process line: - name: NODENAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: NF_CONFIG_REVISION -Process line: valueFrom: -Process line: configMapKeyRef: -Process line: name: cucp-mgmt-cfg -Process line: key: revision -Process line: - name: BUILDTAG -Process line: value: cucp-sctp_xn_iwf-5.0.326.53 -Process line: - name: NUMSTANDBY -Process line: value: "0" -Process line: - name: XN -Process line: value: "2605:c540:8c00:3318::79" -Process line: -Process line: -Process line: stdin: true -Process line: tty: true -Process line: volumeMounts: -Process line: - mountPath: /opt/config -Process line: name: cucp-config-volume -Process line: - name: log-vol -Process line: mountPath: /opt/mavenir/logs -Process line: - name: mvrp-log -Process line: mountPath: /data/storage/log -Process line: - name: iwf-vol -Process line: mountPath: /opt/iwf -Process line: - name: mvrp-cores -Process line: mountPath: /data/storage/corefiles -Process line: - name: mvrp-core -Process line: mountPath: /data/scripts -Process line: - name: mvrp-archive -Process line: mountPath: /data/storage/archive -Process line: - name: mvrp-log-vol -Process line: mountPath: /data/logs -Process line: - name: cni -Process line: mountPath: /var/lib/cni -Process line: -Process line: ########################################################### -Process line: #side car -Process line: ########################################################### -Process line: - -Process line: name: oam-sidecar -Process line: image: "10.69.44.72/dishran/cim:21.1.1-p2" -Process line: imagePullPolicy: IfNotPresent -Process line: -Process line: resources: -Process line: limits: -Process line: memory: "500Mi" -Process line: cpu: "200m" -Process line: requests: -Process line: memory: "500Mi" -Process line: cpu: "200m" -Process line: -Process line: -Process line: securityContext: -Process line: privileged: true -Process line: -Process line: ports: -Process line: - containerPort: 4222 -Process line: -Process line: command: -Process line: - /bin/bash -Process line: - -c -Process line: - NatsSubFb LOG,CONFIG log 10 10 7 1000000 30 -Process line: -Process line: livenessProbe: -Process line: tcpSocket: -Process line: port: 6060 -Process line: initialDelaySeconds: 120 -Process line: periodSeconds: 2 -Process line: timeoutSeconds: 5 -Process line: failureThreshold: 2 -Process line: -Process line: readinessProbe: -Process line: tcpSocket: -Process line: port: 6060 -Process line: initialDelaySeconds: 5 -Process line: periodSeconds: 2 -Process line: timeoutSeconds: 5 -Process line: failureThreshold: 2 -Process line: -Process line: env: -Process line: - name: ENABLE_KPI -Process line: value: "false" -Process line: - name: K8S_POD_ID -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.name -Process line: - name: K8S_NAMESPACE -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.namespace -Process line: - name: MICROSERVICE_NAME -Process line: value: sctpxniwf -Process line: - name: NF_PREFIX -Process line: value: test -Process line: - name: APP_PORT -Process line: value: "9001" -Process line: - name: NODENAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: NF_CONFIG_REVISION -Process line: valueFrom: -Process line: configMapKeyRef: -Process line: name: cucp-mgmt-cfg -Process line: key: revision -Process line: -Process line: stdin: true -Process line: tty: true -Process line: volumeMounts: -Process line: - name: cucp-config-volume -Process line: subPath: "cim.json" -Process line: mountPath: "/opt/conf/cim.json" -Process line: - name: mnt-log -Process line: mountPath: /opt/logs -Process line: - name: sctpxniwf-vip-volume -Process line: subPath: "vipspec1.json" -Process line: mountPath: "/opt/vipconf/vipspec1.json" -Process line: -Process line: restartPolicy: Always -Process line: -Process line: securityContext: -Process line: runAsUser: 0 -Process line: runAsGroup: 0 -Process line: volumes: -Process line: - configMap: -Process line: name: sctpxniwf-mgmt-cfg -Process line: name: sctpxniwf-config-volume -Process line: - configMap: -Process line: name: sctpxniwf-static-cfg -Process line: name: sctpxniwf-vip-volume -Process line: - configMap: -Process line: name: cucp-mgmt-cfg -Process line: name: cucp-config-volume -Process line: - configMap: -Process line: name: sctpxniwf-eventdef-cfg -Process line: name: sctpxniwf-event-volume -Process line: - name: mnt-log -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-log -Process line: hostPath: -Process line: path: /var/home/core/cucp-1_sctpxniwf -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-cores -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-archive -Process line: hostPath: -Process line: path: /var/home/core/cucp-1_sctpxniwf/archive -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-core -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: log-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-log-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: iwf-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: cni -Process line: hostPath: -Process line: path: /var/lib/cni -Process line: type: DirectoryOrCreate -Process line: --- -Process line: # Source: cucp/charts/ueconmgr/templates/deployment.yaml -Process line: apiVersion: apps/v1 -Process line: kind: Deployment -Process line: metadata: -Process line: name: ueconmgr -Process line: namespace: test -Process line: labels: -Process line: microSvcName: ueconmgr -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "ueconmgr", -Process line: "nfServiceType": "ueconmgr" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: spec: -Process line: replicas: 1 -Process line: selector: -Process line: matchLabels: -Process line: app: ueconmgr -Process line: template: -Process line: metadata: -Process line: name: ueconmgr -Process line: namespace: test -Process line: labels: -Process line: microSvcName: ueconmgr -Process line: mtcilId: mtcil2 -Process line: nfType: cucp -Process line: nfId: cucp-1 -Process line: app: ueconmgr -Process line: mtcil.com/mmaas_clock_aligned: "true" -Process line: mtcilId: mtcil1 -Process line: nfinstanceid: ueconmgr1 -Process line: svc: ueconmgrappln -Process line: annotations: -Process line: mtcil.com/tmaas: '{ -Process line: "vendorId": "mvnr", -Process line: "mtcilId": "mtcil2", -Process line: "nfClass": "appln", -Process line: "nfType": "cucp", -Process line: "nfId": "cucp-1", -Process line: "nfServiceId": "ueconmgr", -Process line: "nfServiceType": "ueconmgr" -Process line: }' -Process line: svcVersion: "5.0.326.52" -Process line: init: "true" -Process line: topogw.fqdn: "" -Process line: nwFnPrefix: test -Process line: mtcil.com/mmaas: '{ "scrape": "true", "path": "/metrics", "ports": ["8081"], "scheme": -Process line: "http", "measurementInterval": "15s", "maxRetention": "20" }' -Process line: mtcil.com/tmaas.nf.nfVersion: 5.0.326.52 -Process line: mtcil.com/vip-networks: '[]' -Process line: prometheus.io/path: /metrics/aligned -Process line: prometheus.io/port: "6060" -Process line: prometheus.io/scheme: http -Process line: prometheus.io/scrape: "true" -Process line: sidecar.istio.io/inject: "true" -Process line: mtcil.com/haaas: -Process line: '{ -Process line: "monitoringMode": "k8s", -Process line: "mode": "allActive", -Process line: "numStandby": "0" -Process line: }' -Process line: -Process line: spec: -Process line: nodeSelector: -Process line: nodeType: CU -Process line: serviceAccountName: ueconmgraccount -Process line: automountServiceAccountToken: true -Process line: terminationGracePeriodSeconds: 10 -Process line: -Process line: imagePullSecrets: -Process line: - name: -Process line: -Process line: imagePullSecrets: -Process line: - name: harborcred -Process line: -Process line: -Process line: dnsConfig: -Process line: options: -Process line: - name: ndots -Process line: value: "2" -Process line: -Process line: containers: -Process line: - name: ueconmgr -Process line: image: "10.69.44.72/dishran/ue_conn_mgr:cucp-ue_conn_mgr-5.0.326.53" -Found image: 10.69.44.72/dishran/ue_conn_mgr:cucp-ue_conn_mgr-5.0.326.53 -Process line: ports: -Process line: - containerPort: 2152 -Process line: protocol: UDP -Process line: name: rest -Process line: - containerPort: 8081 -Process line: protocol: TCP -Process line: name: metrics -Process line: command: [ "docker", "run", "-it", "--privileged" ] -Process line: imagePullPolicy: IfNotPresent -Process line: lifecycle: -Process line: postStart: -Process line: exec: -Process line: command: ["/bin/bash", "-c", "env > /opt/mavenir/mvrp/podenv.txt;echo -e \"[GRPC_CONFIG] \nueconmgr=$(printenv MY_POD_IP)\" > /opt/iwf/ueconmgr" ] -Process line: preStop: -Process line: exec: -Process line: command: ["/bin/bash", "-c", "/opt/mavenir/mvrp/scripts/clean.sh; sleep 5"] -Process line: securityContext: -Process line: privileged: true -Process line: resources: -Process line: limits: -Process line: cpu: "3" -Process line: memory: 2Gi -Process line: requests: -Process line: cpu: "3" -Process line: memory: 2Gi -Process line: -Process line: command: -Process line: [ "/bin/bash", "-c", " sleep 10; service mvrp start; sleep infinity " ] -Process line: #[ "/bin/bash", "-c", "sleep 30; sleep infinity" ] -Process line: readinessProbe: -Process line: exec: -Process line: command: -Process line: [ "/bin/bash", "-c", " cat /tmp/healthy " ] -Process line: initialDelaySeconds: 45 -Process line: periodSeconds: 5 -Process line: -Process line: livenessProbe: -Process line: exec: -Process line: command: -Process line: [ "/bin/bash", "-c", " cat /tmp/podlive " ] -Process line: initialDelaySeconds: 120 -Process line: periodSeconds: 20 -Process line: failureThreshold: 2 -Process line: -Process line: volumeMounts: -Process line: - mountPath: /opt/config -Process line: name: cucp-config-volume -Process line: - name: log-vol -Process line: mountPath: /opt/mavenir/logs -Process line: - name: mvrp-log -Process line: mountPath: /data/storage/log -Process line: - name: iwf-vol -Process line: mountPath: /opt/iwf -Process line: - name: mvrp-cores -Process line: mountPath: /data/storage/corefiles -Process line: - name: mvrp-core -Process line: mountPath: /data/scripts -Process line: - name: mvrp-archive -Process line: mountPath: /data/storage/archive -Process line: - name: mvrp-log-vol -Process line: mountPath: /data/logs -Process line: -Process line: -Process line: env: -Process line: - name: NFTYPE -Process line: value: "cucp" -Process line: - name: NFID -Process line: value: "cucp-1" -Process line: - name: NFSVCID -Process line: value: "ueconmgr" -Process line: - name: LD_LIBRARY_PATH -Process line: value: "/opt/mavenir/mvrp/lib" -Process line: - name: UECONMGR_NAMESPACE -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.namespace -Process line: - name: K8S_NODE_NAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: K8S_POD_NAME -Process line: # valueFrom: -Process line: # fieldRef: -Process line: # fieldPath: metadata.name -Process line: value: ueconmgr -Process line: - name: MY_POD_IP -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: status.podIP -Process line: - name: PROMETHEUS_PORT -Process line: value: "8081" -Process line: - name: TECHNOLOGY -Process line: value: "5GMTCIL" -Process line: - name: HAMONITORINGMODE -Process line: value: "k8s" -Process line: - name: LOGGING_TYPE -Process line: value: "LOCAL" -Process line: - name: LOG_RDR_SLEEP_TIME -Process line: value: "4999" -Process line: - name: VCM_CONFIG_SERVER_PORT -Process line: value: "9001" -Process line: - name: NODENAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: NF_CONFIG_REVISION -Process line: valueFrom: -Process line: configMapKeyRef: -Process line: name: cucp-mgmt-cfg -Process line: key: revision -Process line: - name: BUILDTAG -Process line: value: cucp-ue_conn_mgr-5.0.326.53 -Process line: - name: NUMSTANDBY -Process line: value: "0" -Process line: -Process line: stdin: true -Process line: tty: true -Process line: ########################################################### -Process line: #side car -Process line: ########################################################### -Process line: - name: oam-sidecar -Process line: image: "10.69.44.72/dishran/cim:21.1.1-p2" -Process line: -Process line: imagePullPolicy: IfNotPresent -Process line: -Process line: resources: -Process line: limits: -Process line: memory: "500Mi" -Process line: cpu: "200m" -Process line: requests: -Process line: memory: "500Mi" -Process line: cpu: "200m" -Process line: -Process line: -Process line: securityContext: -Process line: privileged: true -Process line: -Process line: ports: -Process line: - containerPort: 4222 -Process line: -Process line: command: -Process line: [ "/bin/bash", "-c", "NatsSubFb" ] -Process line: -Process line: livenessProbe: -Process line: tcpSocket: -Process line: port: 6060 -Process line: initialDelaySeconds: 120 -Process line: periodSeconds: 2 -Process line: timeoutSeconds: 5 -Process line: failureThreshold: 2 -Process line: -Process line: readinessProbe: -Process line: tcpSocket: -Process line: port: 6060 -Process line: initialDelaySeconds: 5 -Process line: periodSeconds: 2 -Process line: timeoutSeconds: 5 -Process line: failureThreshold: 2 -Process line: -Process line: env: -Process line: - name: ENABLE_KPI -Process line: value: "false" -Process line: - name: K8S_POD_ID -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.name -Process line: - name: K8S_NAMESPACE -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: metadata.namespace -Process line: - name: MICROSERVICE_NAME -Process line: value: ueconmgr -Process line: - name: NF_PREFIX -Process line: value: test -Process line: - name: APP_PORT -Process line: value: "9001" -Process line: - name: NODENAME -Process line: valueFrom: -Process line: fieldRef: -Process line: fieldPath: spec.nodeName -Process line: - name: NF_CONFIG_REVISION -Process line: valueFrom: -Process line: configMapKeyRef: -Process line: name: cucp-mgmt-cfg -Process line: key: revision -Process line: stdin: true -Process line: tty: true -Process line: volumeMounts: -Process line: - name: cucp-config-volume -Process line: subPath: "cim.json" -Process line: mountPath: "/opt/conf/cim.json" -Process line: - name: mnt-log -Process line: mountPath: /opt/logs -Process line: -Process line: restartPolicy: Always -Process line: -Process line: securityContext: -Process line: runAsUser: 0 -Process line: runAsGroup: 0 -Process line: volumes: -Process line: - configMap: -Process line: name: ueconmgr-mgmt-cfg -Process line: name: ueconmgr-config-volume -Process line: - configMap: -Process line: name: ueconmgr-static-cfg -Process line: name: ueconmgr-vip-volume -Process line: - configMap: -Process line: name: cucp-mgmt-cfg -Process line: name: cucp-config-volume -Process line: - configMap: -Process line: name: ueconmgr-eventdef-cfg -Process line: name: ueconmgr-event-volume -Process line: - name: mnt-log -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-log -Process line: hostPath: -Process line: path: /var/home/core/cucp-1_ueconmgr -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-cores -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-archive -Process line: hostPath: -Process line: path: /var/home/core/cucp-1_ueconmgr/archive -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-core -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: log-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: mvrp-log-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: - name: iwf-vol -Process line: hostPath: -Process line: path: /var/home/core -Process line: type: DirectoryOrCreate -Process line: --- -Process line: # Source: cucp/charts/gnbmgr/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: # -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: #CNF TEMPLATE - SECRET -Process line: --- -Process line: # Source: cucp/charts/ngclientiwf/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: # -Process line: -Process line: -Process line: -Process line: -Process line: #CNF TEMPLATE - SECRET -Process line: --- -Process line: # Source: cucp/charts/sctpe1iwf/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: # -Process line: -Process line: -Process line: -Process line: -Process line: #CNF TEMPLATE - SECRET -Process line: --- -Process line: # Source: cucp/charts/sctpf1iwf/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: # -Process line: -Process line: -Process line: -Process line: -Process line: #CNF TEMPLATE - SECRET -Process line: --- -Process line: # Source: cucp/charts/sctpxniwf/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: # -Process line: -Process line: -Process line: -Process line: -Process line: #CNF TEMPLATE - SECRET -Process line: --- -Process line: # Source: cucp/charts/ueconmgr/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: # -Process line: -Process line: -Process line: -Process line: -Process line: #CNF TEMPLATE - SECRET -Process line: --- -Process line: # Source: cucp/templates/cnf_tpl_charts_2_15.yaml -Process line: #CNF TEMPLATE - CONFIGMAP -Process line: # -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: -Process line: #CNF TEMPLATE - SECRET -Process line: --- -Process line: # Source: cucp/charts/gnbmgr/templates/cu-f1c-conf.yaml -Process line: apiVersion: "sriovnetwork.openshift.io/v1" -Process line: kind: SriovNetwork -Process line: metadata: -Process line: name: gnbmgr-cu-f1c-conf -Process line: namespace: openshift-sriov-network-operator -Process line: spec: -Process line: resourceName: ens7f0Sriov -Process line: vlan: 3318 -Process line: networkNamespace: test -Process line: ipam: | -Process line: { -Process line: "type": "host-local", -Process line: "subnet": "2605:c540:8c00:3318::/64", -Process line: "rangeStart": "2605:c540:8c00:3318::76", -Process line: "rangeEnd": "2605:c540:8c00:3318::81", -Process line: "gateway": "" -Process line: } -Process line: --- -Process line: # Source: cucp/charts/ngclientiwf/templates/cu-f1c-conf.yaml -Process line: apiVersion: "sriovnetwork.openshift.io/v1" -Process line: kind: SriovNetwork -Process line: metadata: -Process line: name: nglient-cu-f1c-conf -Process line: namespace: openshift-sriov-network-operator -Process line: spec: -Process line: vlan: 3319 -Process line: resourceName: ens7f0Sriov -Process line: networkNamespace: test -Process line: ipam: | -Process line: { -Process line: "type": "host-local", -Process line: "subnet": "2605:c540:8c00:3319::/64", -Process line: "rangeStart": "2605:c540:8c00:3319::60", -Process line: "rangeEnd": "2605:c540:8c00:3319::61", -Process line: "routes": [ -Process line: { "dst": "::/0" } -Process line: ], -Process line: "gateway": "" -Process line: } -Process line: --- -Process line: # Source: cucp/charts/sctpe1iwf/templates/cu-f1c-conf.yaml -Process line: apiVersion: "sriovnetwork.openshift.io/v1" -Process line: kind: SriovNetwork -Process line: metadata: -Process line: name: sctpe1iwf-cu-f1c-conf -Process line: namespace: openshift-sriov-network-operator -Process line: spec: -Process line: resourceName: ens7f0Sriov -Process line: vlan: 3317 -Process line: networkNamespace: test -Process line: ipam: | -Process line: { -Process line: "type": "host-local", -Process line: "subnet": "2605:c540:8c00:3317::/64", -Process line: "rangeStart": "2605:c540:8c00:3317::60", -Process line: "rangeEnd": "2605:c540:8c00:3317::61", -Process line: "gateway": "" -Process line: } -Process line: --- -Process line: # Source: cucp/charts/sctpf1iwf/templates/cu-f1c-conf.yaml -Process line: apiVersion: "sriovnetwork.openshift.io/v1" -Process line: kind: SriovNetwork -Process line: metadata: -Process line: name: sctpf1iwf-cu-f1c-conf -Process line: namespace: openshift-sriov-network-operator -Process line: spec: -Process line: vlan: 3318 -Process line: resourceName: ens7f0Sriov -Process line: networkNamespace: test -Process line: ipam: | -Process line: { -Process line: "type": "host-local", -Process line: "subnet": "2605:c540:8c00:3318::/64", -Process line: "rangeStart": "2605:c540:8c00:3318::77", -Process line: "rangeEnd": "2605:c540:8c00:3318::78", -Process line: "gateway": "" -Process line: } -Process line: --- -Process line: # Source: cucp/charts/sctpxniwf/templates/cu-f1c-conf.yaml -Process line: apiVersion: "sriovnetwork.openshift.io/v1" -Process line: kind: SriovNetwork -Process line: metadata: -Process line: name: sctpxniwf-cu-f1c-conf -Process line: namespace: openshift-sriov-network-operator -Process line: spec: -Process line: resourceName: ens7f0Sriov -Process line: vlan: 3318 -Process line: networkNamespace: test -Process line: ipam: | -Process line: { -Process line: "type": "host-local", -Process line: "subnet": "2605:c540:8c00:3318::/64", -Process line: "rangeStart": "2605:c540:8c00:3318::79", -Process line: "rangeEnd": "2605:c540:8c00:3318::7a", -Process line: "gateway": "172.17.22.65" -Process line: } -Process line: -Found image: 10.69.44.72/dishran/gnb_mgr:cucp-gnb_mgr-5.0.326.53 -Found image: 10.69.44.72/dishran/cim:21.1.1-p2 -Found image: 10.69.44.72/dishran/sctp_ng_client_iwf:cucp-sctp_ng_client_iwf-5.0.326.53 -Found image: 10.69.44.72/dishran/sctp_e1_iwf:cucp-sctp_e1_iwf-5.0.326.53 -Found image: 10.69.44.72/dishran/sctp_f1_iwf:cucp-sctp_f1_iwf-5.0.326.53 -Found image: 10.69.44.72/dishran/sctp_xn_iwf:cucp-sctp_xn_iwf-5.0.326.53 -Found image: 10.69.44.72/dishran/ue_conn_mgr:cucp-ue_conn_mgr-5.0.326.53 -Number of images found: 7 -Found image: 10.69.44.72/dishran/gnb_mgr:cucp-gnb_mgr-5.0.326.53 -Found image: 10.69.44.72/dishran/cim:21.1.1-p2 -Found image: 10.69.44.72/dishran/sctp_ng_client_iwf:cucp-sctp_ng_client_iwf-5.0.326.53 -Found image: 10.69.44.72/dishran/sctp_e1_iwf:cucp-sctp_e1_iwf-5.0.326.53 -Found image: 10.69.44.72/dishran/sctp_f1_iwf:cucp-sctp_f1_iwf-5.0.326.53 -Found image: 10.69.44.72/dishran/sctp_xn_iwf:cucp-sctp_xn_iwf-5.0.326.53 -Found image: 10.69.44.72/dishran/ue_conn_mgr:cucp-ue_conn_mgr-5.0.326.53 ---- PASS: TestImageParse (0.07s) -FAIL -exit status 1 -FAIL github.com/redhat-certification/chart-verifier/internal/chartverifier/checks 3.357s