Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
title tosca.datatype.asd.paramMappings
collapsetrue
paramMappings:
    version: 0.1
    derived_from: tosca.datatypes.Root  
    description: "Describes the datatype for parameter mapping"
    properties:
      loadbalancerIP:
        description: >
              When present, this attribute specifies the name of the deployment artifact input parameter
              through which the orchestrator can configure the loadbalancerIP parameter of the K8s service 
              or ingress controller that the ExtCpd represents.
        required: false
        type: string
      externalIPs:
        description: >
              When present, this attribute specifies the name of the deployment artifact input parameter
              through which the orchestrator can configure the extermalIPs parameter of the K8s service 
              or ingress controller, or the pod network interface annotation, that the ExtCpd represents.
        required: false
        type: list
        entry_schema:
           type: string
      nadName: 
        description: >
              Specifies, for an ExtCpd respesenting a secondary network interface,
              the name(s) of the NetworkAttachmentDefinitions the orchestrator has created
              as base for the network interface the ExtCpd represents. 
        required: false
        type: list
        entry_schema:
           type: string
       nadNamespace: 
        description: >
              Specifies, for an asdExtCpd respesenting a secondary network interface,
              the namespace where the NetworkAttachmentDefinitions (NADs) are located.
              Attribute may be omitted if the namespace is same as the application namespace.
        required: false
        type: string 

...