import { Container } from '../../components/Container' import { Eyebrow, SectionHeader, P } from '../../components/Texts' const integrationPoints = [ 'Unified Mycelium networking provides secure access to GPU nodes.', 'Zero-trust security model extends to GPU operations automatically.', 'Quantum-safe storage available directly to GPU workloads.', 'Native Kubernetes support exposes GPUs through familiar resources.', ] const yamlExample = `apiVersion: apps/v1 kind: Deployment metadata: name: gpu-workload spec: replicas: 1 selector: matchLabels: app: gpu-compute template: metadata: labels: app: gpu-compute spec: containers: - name: gpu-compute image: tensorflow/tensorflow:latest-gpu resources: limits: nvidia.com/gpu: 1 env: - name: MYCELIUM_GPU_REGION value: "auto"` export function GpuIntegration() { return (
Cloud Integration Seamless with Mycelium Cloud infrastructure.

GPU workloads plug directly into the same mesh that powers Mycelium Cloud. Networking, security, and storage policies flow with every deployment.

Platform alignment

    {integrationPoints.map((point) => (
  • {point}
  • ))}

Kubernetes deployment example

              {yamlExample}
            
) }