Versions Compared

Key

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

...

Code Block
titleCSCF_SI Issues
collapsetrue
# Properties defined here not found in any type in the inheritance chain
#  node_templates:
#    lb:
#      type: tosca.nodes.nfv.VDU
#      properties:
#        description: ..
#      requirements:
#        - virtual_compute: lbCompute
#        - sw_image: cscfImage
#        - virtual_storage: lbDataVolume


#Node type that not found in any spec - changed to tosca.nodes.nfv.VDU.VirtualStorage
    lbDataVolume:
      type: tosca.nodes.nfv.VDU.VirtualStorage
#      type: tosca.nodes.nfv.VirtualStorage
      properties:
        type_of_storage: volume
        size_of_storage: 300 GB


#Node type that not found in any spec
    # lbCompute:
      # type: tosca.nodes.nfv.VirtualCompute
      # properties:
        # virtual_memory:
            # virtual_mem_size: 32768 MB
        # virtual_cpu:
            # cpu_architecture: x86
            # num_virtual_cpu: 12
            # virtual_cpu_clock: 2100 MHz


#    cscfImage:
#Changed from tosca.nodes.nfv.SwImage
#      type: tosca.nodes.nfv.VduCpd
#      properties:
#        name: CSCF Image
#        version: 1.0
#        container_format: qcow2
#        checksum: 835fd4c0c5f8abadc1593ba185ca18cb
#        min_disk: 38 GB
#        min_ram: 16384 MB
#        size: 3 GB
#        disk_format: bare
#        sw_image: cscf.qcow2
#        operating_system: Linux
#        supported_virtualisation_environments:
#          - KVM


#    cscfCpdeth0:
##Changed from tosca.nodes.nfv.ICP
#      type: tosca.nodes.nfv.VduCpd
#      properties:
#        layer_protocol: ipv4
#        role: leaf
#        description: connection point
#      requirements:
#        - virtual_binding: cscf
#        - virtual_link: internalNetworkVl


#tosca.nodes.nfv.ECP
#[AK] an external port. In the NFV specs, there is no such type. The specs mentions an “external CP” type VnfExtCpd, but does not define it !!!!
    # oamCpdeth1:
      # type: tosca.nodes.nfv.ECP
      # properties:
        # layer_protocol: ipv4
        # role: leaf
        # description: External connection point
      # requirements:
        # - internal_connection_point: oamICpdeth1


#The groups section not supported:


  # groups:
    # cscfScalingGroup:
      # type: tosca.groups.nfv.ElementGroup
      # description: ..
      # members: [ cscf ]


# policies:
#This section not supported


...