Documentation ¶
Overview ¶
package organization implements types to handle creation and deletion of Organization resources.
Example ¶
org := organization.NewRandomOrg() orgNamespace := org.GetNamespace() orgCR, err := org.Build
Using new Org for test cluster ¶
cluster := application.NewClusterApp(utils.GenerateRandomName("t"), application.ProviderGCP). WithOrg(organization.NewRandomOrg())
The namespace for an Organization will always be the name of the org prefix with `org-`. For example, an Organization named `test-org` will have the namespace `org-test-org`. The creation and deletion of this namespace is handled by the organization-operator running on the Management Cluster so is not configurable here.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Org ¶
type Org struct { Name string // contains filtered or unexported fields }
Org contains details about an Organization
func NewFromNamespace ¶ added in v0.3.0
NewFromNamespace returns a new Org, taking the name from the passed namespace.
func NewRandomOrg ¶
func NewRandomOrg() *Org
NewRandomOrg returns an Org with a randomly generated name
func (*Org) Build ¶
func (o *Org) Build() (*orgv1alpha1.Organization, error)
Build generates the Organization CR for applying to the cluster
func (*Org) GetNamespace ¶
GetNamespace returns the associated namespace for the Organization