summaryrefslogtreecommitdiffstats
path: root/network/ports/storage_mgmt_from_pool_v6.yaml
blob: 2f3ea1965c11916cbcf5317e6db3e19faa8f870a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
heat_template_version: ocata

description: >
  Returns an IP from a network mapped list of IPs This version is for IPv6
  addresses. The ip_address_uri output will have brackets for use in URLs.

parameters:
  StorageMgmtNetName:
    description: Name of the storage MGMT network
    default: storage_mgmt
    type: string
  PortName:
    description: Name of the port
    default: ''
    type: string
  ControlPlaneIP: # Here for compatability with noop.yaml
    description: IP address on the control plane
    default: ''
    type: string
  IPPool:
    default: {}
    description: A network mapped list of IPs
    type: json
  NodeIndex:
    default: 0
    description: Index of the IP to get from Pool
    type: number
  StorageMgmtNetCidr:
    default: 'fd00:fd00:fd00:4000::/64'
    description: Cidr for the storage MGMT network.
    type: string

outputs:
  ip_address:
    description: storage MGMT network IP
    value: {get_param: [IPPool, {get_param: StorageMgmtNetName}, {get_param: NodeIndex}]}
  ip_address_uri:
    description: storage MGMT network IP (for compatibility with storage_mgmt_v6.yaml)
    value:
          list_join:
          - ''
          - - '['
            - {get_param: [IPPool, {get_param: StorageMgmtNetName}, {get_param: NodeIndex}]}
            - ']'
  ip_subnet:
    description: IP/Subnet CIDR for the storage MGMT network IP
    value:
      list_join:
      - ''
      - - {get_param: [IPPool, {get_param: StorageMgmtNetName}, {get_param: NodeIndex}]}
        - '/'
        - {str_split: ['/', {get_param: StorageMgmtNetCidr}, 1]}
- project-parameter: project: '{project}' - gerrit-parameter: branch: 'master' scm: - gerrit-trigger-scm: credentials-id: '{ssh-credentials}' refspec: '$GERRIT_REFSPEC' choosing-strategy: 'gerrit' wrappers: - ssh-agent-credentials: user: '{ssh-credentials}' triggers: - gerrit: trigger-on: - patchset-created-event: exclude-drafts: 'false' exclude-trivial-rebase: 'false' exclude-no-code-change: 'false' - draft-published-event - comment-added-contains-event: comment-contains-value: 'recheck' - comment-added-contains-event: comment-contains-value: 'reverify' projects: - project-compare-type: 'ANT' project-pattern: 'genesis' branches: - branch-compare-type: 'ANT' branch-pattern: '**/master' file-paths: - compare-type: ANT pattern: 'common/**' - compare-type: ANT pattern: 'juju/**' builders: - 'juju-verify' - job-template: name: 'genesis-juju-merge' # builder-merge job to run JJB update # # This job's purpose is to update all the JJB project-type: freestyle node: ericsson-build logrotate: daysToKeep: 30 numToKeep: 40 artifactDaysToKeep: -1 artifactNumToKeep: 5 parameters: - string: name: BUILD_DIRECTORY default: $WORKSPACE/build_output - string: name: GIT_BASE default: https://gerrit.opnfv.org/gerrit/genesis - project-parameter: project: '{project}' - gerrit-parameter: branch: 'master' scm: - gerrit-trigger-scm: credentials-id: '{ssh-credentials}' refspec: '' choosing-strategy: 'default' wrappers: - ssh-agent-credentials: user: '{ssh-credentials}' triggers: - gerrit: trigger-on: - change-merged-event - comment-added-contains-event: comment-contains-value: 'remerge' projects: - project-compare-type: 'ANT' project-pattern: 'genesis' branches: - branch-compare-type: 'ANT' branch-pattern: '**/master' file-paths: - compare-type: ANT pattern: 'common/**' - compare-type: ANT pattern: 'juju/**' builders: - 'juju-merge' - job-template: name: 'genesis-juju-daily-{stream}' project-type: freestyle node: ericsson-build parameters: - string: name: BUILD_DIRECTORY default: $WORKSPACE/build_output description: "Directory where the build artifact will be located upon the completion of the build." - string: name: GS_URL default: 'artifacts.opnfv.org/genesis/juju' description: "URL to Google Storage." - string: name: INSTALLER default: 'juju' description: "Installer to use." - string: name: GIT_BASE default: https://gerrit.opnfv.org/gerrit/genesis - string: name: GERRIT_BRANCH default: origin/master description: "Branch to build, deploy and test." - string: name: GERRIT_REFSPEC default: refs/heads/master description: "Refspec to retrieve." scm: - git: skip-tag: true url: $GIT_BASE branches: - $GERRIT_BRANCH refspec: $GERRIT_REFSPEC triggers: - pollscm: '@midnight' logrotate: daysToKeep: 30 numToKeep: 10 artifactDaysToKeep: -1 artifactNumToKeep: -1 builders: - 'juju-daily-master' - builder: name: juju-verify builders: - shell: | #!/bin/bash echo "Hello World!" - builder: name: juju-merge builders: - shell: | #!/bin/bash echo "Hello World!" - builder: name: juju-daily-master builders: - shell: | #!/bin/bash echo "Hello World!"