Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
502 changes: 502 additions & 0 deletions pkg/rdsdiff/compare.go

Large diffs are not rendered by default.

435 changes: 435 additions & 0 deletions pkg/rdsdiff/compare_test.go

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions pkg/rdsdiff/constants.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// SPDX-License-Identifier:Apache-2.0

package rdsdiff

// Paths under the telco-reference configuration root (e.g. telco-ran/configuration).
const (
// CRSPath is the directory containing PolicyGenerator policy YAMLs and source-crs copy.
// Matches telco-reference: configuration/argocd/example/acmpolicygenerator
CRSPath = "argocd/example/acmpolicygenerator"
SourceCRSPath = "source-crs"
)

// ListOfCRsForSNO is the list of SNO policy filenames used by PolicyGenerator.
var ListOfCRsForSNO = []string{
"acm-common-ranGen.yaml",
"acm-example-sno-site.yaml",
"acm-group-du-sno-ranGen.yaml",
"acm-group-du-sno-validator-ranGen.yaml",
}
Loading