aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/install_dpdk
AgeCommit message (Expand)AuthorFilesLines
2019-01-02Add support of DPDK version 18.11 for PROX, igb_uioOleksandr Naumets1-8/+9
2018-12-12Ubuntu 18 support for nsb_setup.yml flowStepan Andrushko1-0/+1
2018-11-14Create vPE binary from dpdkJohn O Loughlin1-0/+15
2018-07-12"install_dpdk" ansible role fails if DPDK version has revision numberRodolfo Alonso Hernandez1-1/+8
2018-04-18DPDK: detect dpdk_make_arch based on image archRoss Brattain1-1/+4
2018-04-11Add support for dpdk 17.05John O Loughlin2-5/+3
2018-02-05Remove references to "dpdk_nic_bind" utilityRodolfo Alonso Hernandez1-8/+0
2017-09-30Merge "dpdk: pciutils and lspci is required for dpdk-devbind.py"Ross Brattain1-0/+1
2017-09-29replace ansible modulesRoss Brattain1-9/+6
2017-09-29dpdk: pciutils and lspci is required for dpdk-devbind.pyRoss Brattain1-0/+1
2017-09-28add collectd ansibleRoss Brattain2-0/+26
2017-08-23ansible: update dpdk, trex and samplevnf installRoss Brattain5-2/+28
2017-08-14Ansible typo fix, whitespaceRoss Brattain1-1/+0
2017-08-08yardstick setup ansible, including load_imagesMalanik Jan4-0/+137
le>
heat_template_version: 2014-10-16
parameters:
  AllHosts:
    type: string
  ComputeImage:
    type: string
resources:
  ComputeAccessPolicy:
    type: OS::Heat::AccessPolicy
    properties:
      AllowedResources: [ NovaCompute0 ]
  NovaCompute0Key:
    type: AWS::IAM::AccessKey
    properties:
      UserName:
        get_param: ComputeUser
  NovaCompute0CompletionCondition:
    type: AWS::CloudFormation::WaitCondition
    depends_on: notcompute
    properties:
      Handle: {get_resource: NovaCompute0CompletionHandle}
      Count: '1'
      Timeout: '1800'
  NovaCompute0CompletionHandle:
    type: AWS::CloudFormation::WaitConditionHandle
  NovaCompute0:
    type: OS::Nova::Server
    properties:
      image:
        get_param: ComputeImage
    metadata:
      os-collect-config:
        cfn:
          access_key_id:
            get_resource: NovaCompute0Key
          secret_access_key:
            get_attr: [ NovaCompute0Key, SecretAccessKey ]
          stack_name: {get_param: 'AWS::StackName'}
          path: NovaCompute0Config.Metadata
  NovaCompute0Config:
    type: AWS::AutoScaling::LaunchConfiguration
    metadata:
      completion-handle:
        get_resource: NovaCompute0CompletionHandle
      os-collect-config:
        cfn:
          access_key_id:
            get_resource: NovaCompute0Key
          secret_access_key:
            get_attr: [ NovaCompute0Key, SecretAccessKey ]
          stack_name: {get_param: 'AWS::StackName'}
          path: NovaCompute0Config.Metadata
      hosts:
        get_param: AllHosts