aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/services/neutron-ovs-dpdk-agent.yaml
blob: 6dcc59c672c76d4c410c2c788d02b750c755442a (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
heat_template_version: ocata

description: >
  OpenStack Neutron OVS DPDK configured with Puppet for Compute Role

parameters:
  ServiceNetMap:
    default: {}
    description: Mapping of service_name -> network name. Typically set
                 via parameter_defaults in the resource registry.  This
                 mapping overrides those in ServiceNetMapDefaults.
    type: json
  DefaultPasswords:
    default: {}
    type: json
  RoleName:
    default: ''
    description: Role name on which the service is applied
    type: string
  RoleParameters:
    default: {}
    description: Parameters specific to the role
    type: json
  EndpointMap:
    default: {}
    description: Mapping of service endpoint -> protocol. Typically set
                 via parameter_defaults in the resource registry.
    type: json
  HostCpusList:
    description: List of cores to be used for host process
    type: string
    constraints:
      - allowed_pattern: "'[0-9,-]+'"
  NeutronDpdkCoreList:
    description: List of cores to be used for DPDK Poll Mode Driver
    type: string
    constraints:
      - allowed_pattern: "'[0-9,-]+'"
  NeutronDpdkMemoryChannels:
    description: Number of memory channels to be used for DPDK
    type: string
    constraints:
      - allowed_pattern: "[0-9]+"
  NeutronDpdkSocketMemory:
    default: ""
    description: Memory allocated for each socket
    type: string
  NeutronDpdkDriverType:
    default: "vfio-pci"
    description: DPDK Driver type
    type: string
  # below parameters has to be set in neutron agent only for compute nodes.
  # as of now there is no other usecase for these parameters except dpdk.
  # should be moved to compute only ovs agent in case of any other usecases.
  NeutronDatapathType:
    default: ""
    description: Datapath type for ovs bridges
    type: string
  NeutronVhostuserSocketDir:
    default: ""
    description: The vhost-user socket directory for OVS
    type: string

resources:

  NeutronOvsAgent:
    type: ./neutron-ovs-agent.yaml
    properties:
      ServiceNetMap: {get_param: ServiceNetMap}
      DefaultPasswords: {get_param: DefaultPasswords}
      EndpointMap: {get_param: EndpointMap}
      RoleName: {get_param: RoleName}
      RoleParameters: {get_param: RoleParameters}

  OpenVswitchUpgrade:
    type: ./openvswitch-upgrade.yaml

outputs:
  role_data:
    description: Role data for the Neutron OVS DPDK Agent service.
    value:
      service_name: neutron_ovs_dpdk_agent
      config_settings:
        map_merge:
          - map_replace:
            - get_attr: [NeutronOvsAgent, role_data, config_settings]
            - keys:
                tripleo.neutron_ovs_agent.firewall_rules: tripleo.neutron_ovs_dpdk_agent.firewall_rules
          - neutron::agents::ml2::ovs::enable_dpdk: true
            neutron::agents::ml2::ovs::datapath_type: {get_param: NeutronDatapathType}
            neutron::agents::ml2::ovs::vhostuser_socket_dir: {get_param: NeutronVhostuserSocketDir}
            vswitch::dpdk::host_core_list: {get_param: HostCpusList}
            vswitch::dpdk::pmd_core_list: {get_param: NeutronDpdkCoreList}
            vswitch::dpdk::memory_channels: {get_param: NeutronDpdkMemoryChannels}
            vswitch::dpdk::socket_mem: {get_param: NeutronDpdkSocketMemory}
            vswitch::dpdk::driver_type: {get_param: NeutronDpdkDriverType}
      step_config: {get_attr: [NeutronOvsAgent, role_data, step_config]}
      upgrade_tasks:
        get_attr: [OpenVswitchUpgrade, role_data, upgrade_tasks]
ir)" != "x" && cd $(DESTDIR)$(cgidir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \ fi install-other: @test -d $(DESTDIR)$(logfiledir) || $(MKINSTALLDIRS) $(DESTDIR)$(logfiledir) @test -d $(DESTDIR)$(runtimedir) || $(MKINSTALLDIRS) $(DESTDIR)$(runtimedir) @for ext in dll x; do \ file=apachecore.$$ext; \ if test -f $$file; then \ cp -p $$file $(DESTDIR)$(libdir); \ fi; \ done; \ file=httpd.dll; \ if test -f $$file; then \ cp -p $$file $(DESTDIR)$(bindir); \ fi; install-include: @echo Installing header files @test -d $(DESTDIR)$(includedir) || $(MKINSTALLDIRS) $(DESTDIR)$(includedir) @cp -p include/*.h $(DESTDIR)$(includedir) @cp -p $(srcdir)/include/*.h $(DESTDIR)$(includedir) @cp -p $(srcdir)/os/$(OS_DIR)/os.h $(DESTDIR)$(includedir) @if test -f $(srcdir)/os/$(OS_DIR)/os-inline.c; then \ cp -p $(srcdir)/os/$(OS_DIR)/os-inline.c $(DESTDIR)$(includedir); \ fi; @cp -p $(srcdir)/server/mpm/$(MPM_SUBDIR_NAME)/*.h $(DESTDIR)$(includedir) @cp -p $(srcdir)/modules/dav/main/mod_dav.h $(DESTDIR)$(includedir) @cp -p $(srcdir)/modules/filters/mod_include.h $(DESTDIR)$(includedir) @cp -p $(srcdir)/modules/generators/mod_cgi.h $(DESTDIR)$(includedir) @cp -p $(srcdir)/modules/generators/mod_status.h $(DESTDIR)$(includedir) @cp -p $(srcdir)/modules/loggers/mod_log_config.h $(DESTDIR)$(includedir) @cp -p $(srcdir)/modules/http/mod_core.h $(DESTDIR)$(includedir) @cp -p $(srcdir)/modules/proxy/mod_proxy.h $(DESTDIR)$(includedir) @cp -p $(srcdir)/modules/ssl/*.h $(DESTDIR)$(includedir) @cp -p $(srcdir)/srclib/pcre/pcre*.h $(DESTDIR)$(includedir) @cp -p $(srcdir)/os/$(OS_DIR)/*.h $(DESTDIR)$(includedir) @chmod 644 $(DESTDIR)$(includedir)/*.h install-man: @echo Installing man pages and online manual @test -d $(DESTDIR)$(mandir) || $(MKINSTALLDIRS) $(DESTDIR)$(mandir) @test -d $(DESTDIR)$(mandir)/man1 || $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man1 @test -d $(DESTDIR)$(mandir)/man8 || $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man8 @test -d $(DESTDIR)$(manualdir) || $(MKINSTALLDIRS) $(DESTDIR)$(manualdir) @cp -p $(top_srcdir)/docs/man/*.1 $(DESTDIR)$(mandir)/man1 @cp -p $(top_srcdir)/docs/man/*.8 $(DESTDIR)$(mandir)/man8 @(cd $(top_srcdir)/docs/manual && cp -rp * $(DESTDIR)$(manualdir)) @(cd $(DESTDIR)$(manualdir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null ) || true install-suexec: @if test -f $(builddir)/support/suexec; then \ test -d $(DESTDIR)$(sbindir) || $(MKINSTALLDIRS) $(DESTDIR)$(sbindir); \ $(INSTALL_PROGRAM) $(top_builddir)/support/suexec $(DESTDIR)$(sbindir); \ chmod 4755 $(DESTDIR)$(sbindir)/suexec; \ fi suexec: cd support && $(MAKE) suexec x-local-distclean: @rm -rf autom4te.cache include $(top_srcdir)/os/os2/core.mk