AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Cpu Performance

skill-redhatproductsecurity-prodsec-skills-cpu-performance · by RedHatProductSecurity

>

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add skill-redhatproductsecurity-prodsec-skills-cpu-performance

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-redhatproductsecurity-prodsec-skills-cpu-performance)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Cpu Performance? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

CPU and Performance Configuration

Configure workloads for deterministic CPU performance, correct scheduling policies, and reliable storage and image management.

CPU Isolation

For workloads requiring exclusive CPU access (Guaranteed QoS with dedicated CPUs), all containers in the pod must meet these requirements:

> Required for: Telco (mandatory), Far-Edge (mandatory), Extended (mandatory), Non-Telco (optional)

  • CPU requests and limits must be identical and specified in whole units (e.g., 2, not 2.5 or 2000m)
  • runtimeClassName must be specified
  • Annotations must disable CPU and IRQ load-balancing
apiVersion: apps/v1
kind: Deployment
metadata:
  name: app
  annotations:
    cpu-load-balancing.crio.io: "disable"
    irq-load-balancing.crio.io: "disable"
spec:
  template:
    spec:
      runtimeClassName: performance-rt
      containers:
        - name: app
          resources:
            requests:
              cpu: "2"
              memory: 256Mi
            limits:
              cpu: "2"
              memory: 256Mi

CPU Pool Scheduling Policies

Containers must use the correct scheduling policy for their CPU pool type.

Exclusive CPU Pool

Workloads in the exclusive CPU pool must use real-time (RT) scheduling policy with priority less than 10.

> Required for: Far-Edge (mandatory), all others (optional)

Isolated CPU Pool

Workloads in the isolated CPU pool must also use RT scheduling policy.

> Required for: Far-Edge (mandatory), all others (optional)

Shared CPU Pool

Workloads in the shared CPU pool must use non-RT scheduling policies (e.g., SCHED_OTHER) to share CPU time fairly with other applications and kernel threads.

> Required for: Far-Edge (mandatory), all others (optional)

CPU Pool Consistency

If one container in a pod selects an exclusive CPU pool, all containers in that pod must select the same CPU pool type.

> Required for: Far-Edge (mandatory), all others (optional)

Image Pull Policy

Containers must use IfNotPresent as the image pull policy. This ensures pods can restart even if the image registry is temporarily unavailable.

> Required for: Telco (mandatory), Far-Edge (mandatory), Extended (mandatory), Non-Telco (optional)

containers:
  - name: app
    image: registry.example.com/app:v1.2.3
    imagePullPolicy: IfNotPresent

Pod Ownership

Workload pods must be deployed as part of a ReplicaSet (via Deployment) or StatefulSet. Do not use naked pods or DaemonSets — they lack proper lifecycle management for updates, scaling, and recovery.

> Required for: Telco (mandatory), Far-Edge (mandatory), Extended (mandatory), Non-Telco (optional)

Storage Provisioning

Persistent Volume Reclaim Policy

Persistent volumes used by workloads must have a reclaim policy of Delete. This ensures storage is cleaned up when the workload is removed from the cluster.

> Required for: Telco (mandatory), Far-Edge (mandatory), Extended (mandatory), Non-Telco (optional)

apiVersion: v1
kind: PersistentVolume
metadata:
  name: app-pv
spec:
  persistentVolumeReclaimPolicy: Delete

Storage Provisioner

Multi-node clusters must not use local storage provisioners (kubernetes.io/no-provisioner, topolvm.io). Local storage is only appropriate for single-node clusters, where only one local provisioner type should be installed (LVMS or no-provisioner).

> Required for: all profiles (mandatory)

Implementation Checklist

  • [ ] CPU-isolated workloads have identical CPU requests and limits in whole units
  • [ ] CPU-isolated pods specify runtimeClassName and disable CPU/IRQ load-balancing
  • [ ] Exclusive/isolated CPU pool workloads use RT scheduling policy
  • [ ] Shared CPU pool workloads use non-RT scheduling policy (SCHED_OTHER)
  • [ ] All containers in a pod use the same CPU pool type
  • [ ] imagePullPolicy: IfNotPresent is set on all containers
  • [ ] Workloads are deployed via Deployments or StatefulSets (no naked pods)
  • [ ] Persistent volumes have persistentVolumeReclaimPolicy: Delete
  • [ ] Multi-node clusters do not use local storage provisioners

Certsuite Test Mapping

| Guidance | Certsuite Test ID | Profiles | |----------|-------------------|----------| | CPU isolation | lifecycle-cpu-isolation | Telco/Far-Edge/Extended: mandatory, Non-Telco: optional | | Exclusive CPU pool RT scheduling | performance-exclusive-cpu-pool-rt-scheduling-policy | Far-Edge: mandatory, all others: optional | | Isolated CPU pool RT scheduling | performance-isolated-cpu-pool-rt-scheduling-policy | Far-Edge: mandatory, all others: optional | | Shared CPU pool non-RT scheduling | performance-shared-cpu-pool-non-rt-scheduling-policy | Far-Edge: mandatory, all others: optional | | CPU pool consistency | performance-exclusive-cpu-pool | Far-Edge: mandatory, all others: optional | | Image pull policy | lifecycle-image-pull-policy | Telco/Far-Edge/Extended: mandatory, Non-Telco: optional | | Pod ownership | lifecycle-pod-owner-type | Telco/Far-Edge/Extended: mandatory, Non-Telco: optional | | PV reclaim policy | lifecycle-persistent-volume-reclaim-policy | Telco/Far-Edge/Extended: mandatory, Non-Telco: optional | | Storage provisioner | lifecycle-storage-provisioner | All profiles: mandatory |

References

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.