github.com/verrazzano/verrazzano@v1.7.0/platform-operator/controllers/module/doc.go (about)

     1  // Copyright (c) 2023, Oracle and/or its affiliates.
     2  // Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
     3  
     4  package module
     5  
     6  // The module package implements the handlers for the module controllers used by Verrazzano.
     7  // The controllers themselves use the common module controller code in module-operator repo,
     8  // see https://github.com/verrazzano/verrazzano-modules/tree/main/module-operator/controllers/module
     9  // This is exact same controller code used by the module-operator, VPO just imports the package and
    10  // creates the controllers using the module controller manager.
    11  // See https://github.com/verrazzano/verrazzano/blob/master/platform-operator/internal/operatorinit/run_operator.go#L245