Skip to content

Latest commit

 

History

History

component-references

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
title sidebar_position
Component References
3

Component References

In this example we describe how components could be reused in other components.

This example is almost a copy of the export-import example. In that example we considered one component version with two resources, namely the blueprints of a root installation and its sub installations. In the present example, we consider two component versions, each with one blueprint resource.

The list of components in the component-constructor.yaml has now two items:

  • component github.com/gardener/landscaper-examples/guided-tour/component-references/root, version 1.0.0, with the blueprint of the root installation as resource.
  • component github.com/gardener/landscaper-examples/guided-tour/component-references/sub, version 1.0.0, with the blueprint of the sub installation as resource.

Moreover, the first component version has a component reference to the second:

componentReferences:
  - name: sub
    componentName: github.com/gardener/landscaper-examples/guided-tour/component-references/sub
    version: 1.0.0

The root installation specifies its blueprint in the usual way:

spec:
  componentDescriptor:
    ref:
      componentName: github.com/gardener/landscaper-examples/guided-tour/component-references/root
      version: 1.0.0
  blueprint:
    ref:
      resourceName: blueprint-root

The three sub installations specify their blueprint as follows:

blueprint:
  ref: cd://componentReferences/sub/resources/blueprint-sub

The value of the field blueprint.ref has this structure:

  • it starts with cd://,
  • followed by any number ≥ 0 of /componentReferences/<name of component reference>,
  • and it ends with /resources/<name of blueprint resource>.

In our case we start in the root component, follow the component reference with name sub, and in the referenced component we select the resource with name blueprint-sub.