diff options
author | Saravanan KR <skramaja@redhat.com> | 2016-10-14 16:46:50 +0530 |
---|---|---|
committer | Saravanan KR <skramaja@redhat.com> | 2016-10-14 16:46:50 +0530 |
commit | 1884d2a01c3fae195439918df2a1ea3f201b8893 (patch) | |
tree | a9eaa89b143fe43e9f21b191867669e4f638e4dd | |
parent | 1753b19a08efa5d6d859cf9096acd014cb6b91c9 (diff) |
Modify the constraint to allow single quote for DPDK core list param
DPDK core list has to be give a string. For multiple cores, it
be given as "'1,2'". But the constraint does not allow ' (single
quote) to be set in the string. Modifying the constraint pattern.
Closes-Bug: #1633433
Change-Id: Ide2194d9ef5c10e276fa1a634919dfb286e483d6
-rw-r--r-- | puppet/services/neutron-ovs-dpdk-agent.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/services/neutron-ovs-dpdk-agent.yaml b/puppet/services/neutron-ovs-dpdk-agent.yaml index cc772c9d..fdfa1c03 100644 --- a/puppet/services/neutron-ovs-dpdk-agent.yaml +++ b/puppet/services/neutron-ovs-dpdk-agent.yaml @@ -22,7 +22,7 @@ parameters: description: List of cores to be used for DPDK Poll Mode Driver type: string constraints: - - allowed_pattern: "[0-9,-]+" + - allowed_pattern: "'[0-9,-]+'" NeutronDpdkMemoryChannels: description: Number of memory channels to be used for DPDK type: string |