mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
Changes for Martin Martin's 3rd review comments Martin's 4th review Final comments from Martin More updates for Martin Tweaks for Martin Martin's comments 22-Apr - workload pods Apr 30 review comments final review comments Michael's comments
48 lines
1.4 KiB
Plaintext
48 lines
1.4 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * scalability_and_performance/low_latency_tuning/cnf-tuning-low-latency-nodes-with-perf-profile.adoc
|
|
|
|
:_mod-docs-content-type: REFERENCE
|
|
[id="installation-openstack-ovs-dpdk-performance-profile_{context}"]
|
|
= Performance profile template for clusters that use OVS-DPDK on OpenStack
|
|
|
|
To maximize machine performance in a cluster that uses Open vSwitch with the Data Plane Development Kit (OVS-DPDK) on {rh-openstack-first}, you can use a performance profile.
|
|
|
|
You can use the following performance profile template to create a profile for your deployment.
|
|
|
|
.Performance profile template for clusters that use OVS-DPDK
|
|
[source,yaml]
|
|
----
|
|
apiVersion: performance.openshift.io/v2
|
|
kind: PerformanceProfile
|
|
metadata:
|
|
name: cnf-performanceprofile
|
|
spec:
|
|
additionalKernelArgs:
|
|
- nmi_watchdog=0
|
|
- audit=0
|
|
- mce=off
|
|
- processor.max_cstate=1
|
|
- idle=poll
|
|
- intel_idle.max_cstate=0
|
|
- default_hugepagesz=1GB
|
|
- hugepagesz=1G
|
|
- intel_iommu=on
|
|
cpu:
|
|
isolated: <CPU_ISOLATED>
|
|
reserved: <CPU_RESERVED>
|
|
hugepages:
|
|
defaultHugepagesSize: 1G
|
|
pages:
|
|
- count: <HUGEPAGES_COUNT>
|
|
node: 0
|
|
size: 1G
|
|
nodeSelector:
|
|
node-role.kubernetes.io/worker: ''
|
|
realTimeKernel:
|
|
enabled: false
|
|
globallyDisableIrqLoadBalancing: true
|
|
----
|
|
|
|
Insert values that are appropriate for your configuration for the `CPU_ISOLATED`, `CPU_RESERVED`, and `HUGEPAGES_COUNT` keys.
|