Skip to content

Commit

Permalink
Merge pull request #491 from dprince/relatedImagesMerge
Browse files Browse the repository at this point in the history
csv-merger: merge relatedImages
  • Loading branch information
openshift-ci[bot] authored Oct 2, 2023
2 parents 39bb237 + 095a565 commit 14a30ca
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 39 deletions.
54 changes: 18 additions & 36 deletions cmd/csv-merger/csv-merger.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,28 +33,8 @@ import (
csvv1alpha1 "github.com/operator-framework/api/pkg/operators/v1alpha1"

v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

// TODO: get rid of this if/when RelatedImages officially appears in github.com/operator-framework/api/pkg/operators/v1alpha1/
type relatedImage struct {
Name string `json:"name"`
Ref string `json:"image"`
}

type clusterServiceVersionSpecExtended struct {
csvv1alpha1.ClusterServiceVersionSpec
RelatedImages []relatedImage `json:"relatedImages,omitempty"`
}

type clusterServiceVersionExtended struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata"`

Spec clusterServiceVersionSpecExtended `json:"spec"`
Status csvv1alpha1.ClusterServiceVersionStatus `json:"status"`
}

func getEnvsFromFile(filename string) []v1.EnvVar {
csvBytes, err := os.ReadFile(filename)
if err != nil {
Expand Down Expand Up @@ -166,13 +146,14 @@ func main() {

// BaseCSV is built on the bundle/manifests/openstack-operator.clusterserviceversion.yaml from this repo
csvBase := getCSVBase(*baseCsv)
csvExtended := clusterServiceVersionExtended{
csvNew := csvv1alpha1.ClusterServiceVersion{
TypeMeta: csvBase.TypeMeta,
ObjectMeta: csvBase.ObjectMeta,
Spec: clusterServiceVersionSpecExtended{ClusterServiceVersionSpec: csvBase.Spec},
Spec: csvBase.Spec,
Status: csvBase.Status}

installStrategyBase := csvBase.Spec.InstallStrategy.StrategySpec
csvNew.Spec.RelatedImages = csvBase.Spec.RelatedImages

envVarList := []v1.EnvVar{}
if len(*importEnvFiles) > 0 {
Expand Down Expand Up @@ -206,10 +187,11 @@ func main() {
installStrategyBase.DeploymentSpecs = append(installStrategyBase.DeploymentSpecs, csvStruct.Spec.InstallStrategy.StrategySpec.DeploymentSpecs...)
installStrategyBase.ClusterPermissions = append(installStrategyBase.ClusterPermissions, csvStruct.Spec.InstallStrategy.StrategySpec.ClusterPermissions...)
installStrategyBase.Permissions = append(installStrategyBase.Permissions, csvStruct.Spec.InstallStrategy.StrategySpec.Permissions...)
csvNew.Spec.RelatedImages = append(csvNew.Spec.RelatedImages, csvStruct.Spec.RelatedImages...)

for _, owned := range csvStruct.Spec.CustomResourceDefinitions.Owned {
csvExtended.Spec.CustomResourceDefinitions.Owned = append(
csvExtended.Spec.CustomResourceDefinitions.Owned,
csvNew.Spec.CustomResourceDefinitions.Owned = append(
csvNew.Spec.CustomResourceDefinitions.Owned,
csvv1alpha1.CRDDescription{
Name: owned.Name,
Version: owned.Version,
Expand All @@ -221,7 +203,7 @@ func main() {
}

if *almExamples {
csvBaseAlmString := csvExtended.Annotations["alm-examples"]
csvBaseAlmString := csvNew.Annotations["alm-examples"]
csvStructAlmString := csvStruct.Annotations["alm-examples"]
var baseAlmCrs []interface{}
var structAlmCrs []interface{}
Expand All @@ -237,9 +219,9 @@ func main() {
if err != nil {
exitWithError(err.Error())
}
csvExtended.Annotations["alm-examples"] = string(almB)
csvNew.Annotations["alm-examples"] = string(almB)
}
csvExtended.Spec.WebhookDefinitions = append(csvExtended.Spec.WebhookDefinitions, csvStruct.Spec.WebhookDefinitions...)
csvNew.Spec.WebhookDefinitions = append(csvNew.Spec.WebhookDefinitions, csvStruct.Spec.WebhookDefinitions...)
}

}
Expand All @@ -257,7 +239,7 @@ func main() {
// by default we hide all CRDs in the Console
hiddenCrds := []string{}
visibleCrds := strings.Split(*visibleCRDList, ",")
for _, owned := range csvExtended.Spec.CustomResourceDefinitions.Owned {
for _, owned := range csvNew.Spec.CustomResourceDefinitions.Owned {
found := false
for _, name := range visibleCrds {
if owned.Name == name {
Expand All @@ -275,39 +257,39 @@ func main() {
if err != nil {
exitWithError(err.Error())
}
csvExtended.Annotations["operators.operatorframework.io/internal-objects"] = string(hiddenCrdsJ)
csvNew.Annotations["operators.operatorframework.io/internal-objects"] = string(hiddenCrdsJ)

csvExtended.Spec.InstallStrategy.StrategyName = "deployment"
csvExtended.Spec.InstallStrategy = csvv1alpha1.NamedInstallStrategy{
csvNew.Spec.InstallStrategy.StrategyName = "deployment"
csvNew.Spec.InstallStrategy = csvv1alpha1.NamedInstallStrategy{
StrategyName: "deployment",
StrategySpec: installStrategyBase,
}

if csvVersion != "" {
csvExtended.Spec.Version = version.OperatorVersion{
csvNew.Spec.Version = version.OperatorVersion{
Version: semver.MustParse(csvVersion),
}
csvExtended.Name = strings.Replace(csvExtended.Name, "0.0.1", csvVersion, 1)
csvNew.Name = strings.Replace(csvNew.Name, "0.0.1", csvVersion, 1)
}

if *csvOverrides != "" {
csvOBytes := []byte(*csvOverrides)

csvO := &clusterServiceVersionExtended{}
csvO := &csvv1alpha1.ClusterServiceVersion{}

err := yaml.Unmarshal(csvOBytes, csvO)
if err != nil {
exitWithError(err.Error())
}

err = mergo.Merge(&csvExtended, csvO, mergo.WithOverride)
err = mergo.Merge(&csvNew, csvO, mergo.WithOverride)
if err != nil {
exitWithError(err.Error())
}

}

err = util.MarshallObject(csvExtended, os.Stdout)
err = util.MarshallObject(csvNew, os.Stdout)
if err != nil {
exitWithError(err.Error())
}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ require (
github.com/openstack-k8s-operators/placement-operator/api v0.1.1-0.20230927115929-d73f6b7ba241
github.com/openstack-k8s-operators/swift-operator/api v0.1.1-0.20230928061421-52a9feee12c9
github.com/openstack-k8s-operators/telemetry-operator/api v0.1.1-0.20230927140521-cf7134b9d873
github.com/operator-framework/api v0.17.3
github.com/operator-framework/api v0.17.6
github.com/rabbitmq/cluster-operator/v2 v2.5.0
go.uber.org/zap v1.26.0
k8s.io/api v0.27.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ github.com/openstack-k8s-operators/swift-operator/api v0.1.1-0.20230928061421-52
github.com/openstack-k8s-operators/swift-operator/api v0.1.1-0.20230928061421-52a9feee12c9/go.mod h1:cmDpu3koEFV+ssOeEDMjAAW18BvwwmbWXSw0eRIo8yg=
github.com/openstack-k8s-operators/telemetry-operator/api v0.1.1-0.20230927140521-cf7134b9d873 h1:Zi/bA2r/cDJ7yVtVcv00GfzR/d2B+jaxNngAHXCKHrQ=
github.com/openstack-k8s-operators/telemetry-operator/api v0.1.1-0.20230927140521-cf7134b9d873/go.mod h1:Fe1o6yI1CmT2KO96rySgoG5JgpQXkZ5dRkScHWFuuZ8=
github.com/operator-framework/api v0.17.3 h1:wddE1SLKTNiIzwt28DbBIO+vPG2GOV6dkB9xBkDfT3o=
github.com/operator-framework/api v0.17.3/go.mod h1:34tb98EwTN5SZLkgoxwvRkhMJKLHUWHOrrcv1ZwvEeA=
github.com/operator-framework/api v0.17.6 h1:E6+vlvYUKafvoXYtCuHlDZrXX4vl8AT+r93OxNlzjpU=
github.com/operator-framework/api v0.17.6/go.mod h1:l/cuwtPxkVUY7fzYgdust2m9tlmb8I4pOvbsUufRb24=
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
Expand Down

0 comments on commit 14a30ca

Please sign in to comment.