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

Containerization

skill-redhatproductsecurity-prodsec-skills-containerization · by RedHatProductSecurity

Enforce container security best practices for MCP servers, including OpenShift integration. Use when containerizing MCP servers or reviewing container security configurations for MCP deployments.

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

Install

$ agentstack add skill-redhatproductsecurity-prodsec-skills-containerization

✓ 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-containerization)

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 Containerization? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Containerization and OpenShift Integration for MCP Servers

Security Recommendation

MCP servers SHOULD run in containers, leveraging container orchestration platform security features (e.g., OpenShift SCCs) for a hardened-by-default posture.

Container Security Requirements

Run as Non-Root

The container MUST run as a non-root user. OpenShift's default Security Context Constraints (SCCs) enforce this automatically.

securityContext:
  runAsNonRoot: true
  runAsUser: 1000

Drop All Capabilities

Remove all Linux capabilities and add back only what is strictly needed:

securityContext:
  capabilities:
    drop: ["ALL"]

Read-Only Root Filesystem

Use a read-only root filesystem. Mount a tmpfs only for directories that require temporary writes:

securityContext:
  readOnlyRootFilesystem: true
volumeMounts:
  - name: tmp
    mountPath: /tmp
volumes:
  - name: tmp
    emptyDir:
      medium: Memory

Kernel Hardening

| Mechanism | Details | |---|---| | SELinux | Enabled by default in OpenShift; confines container processes | | seccomp | Apply seccomp profiles to restrict available system calls |

securityContext:
  seccompProfile:
    type: RuntimeDefault
  seLinuxOptions:
    type: container_t

Network Policies

Use Kubernetes NetworkPolicies as a pod-level firewall to control all ingress and egress traffic:

apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
  name: mcp-server-policy
spec:
  podSelector:
    matchLabels:
      app: mcp-server
  policyTypes: ["Ingress", "Egress"]
  ingress:
    - from:
        - podSelector:
            matchLabels:
              app: mcp-client
      ports:
        - port: 8080
  egress:
    - to:
        - podSelector:
            matchLabels:
              app: auth-server
      ports:
        - port: 443

Base Image Selection

  • Use a Universal Base Image (UBI) from the official Red Hat Container Registry as the foundation for MCP server containers
  • Prefer ubi-minimal to reduce attack surface and installed package count
  • Use the most up-to-date image available
  • For Red Hat Catalog images, omit floating tags to ensure the latest image is pulled (exception: Konflux uses digest-based pinning with automated updates)
  • For non-Red Hat images, pin the version or digest to prevent pulling a tampered image
  • Remove non-essential packages and clean caches:
RUN microdnf upgrade -y && microdnf install -y  && microdnf remove -y  && microdnf clean all

Containerfile Linting

Use Hadolint to lint Containerfiles for best-practice violations. Run it in CI but verify findings manually -- do not trust it blindly.

Implementation Checklist

  • [ ] Base image is a Red Hat UBI (preferably ubi-minimal)
  • [ ] Non-Red Hat base images are pinned by version or digest
  • [ ] Non-essential packages are removed and caches cleaned
  • [ ] Run container as non-root user (runAsNonRoot: true)
  • [ ] Drop all Linux capabilities (drop: ["ALL"])
  • [ ] Use read-only root filesystem (readOnlyRootFilesystem: true)
  • [ ] allowPrivilegeEscalation: false is set (no-new-privileges)
  • [ ] Mount tmpfs only for directories needing temporary writes
  • [ ] Apply seccomp profile (RuntimeDefault or custom)
  • [ ] Ensure SELinux is enabled and container type is appropriate
  • [ ] Deploy Kubernetes NetworkPolicies controlling ingress and egress
  • [ ] Use OpenShift SCCs or equivalent to enforce security context defaults
  • [ ] Hadolint runs in CI on all Containerfiles
  • [ ] Scan container images for vulnerabilities before deployment

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.