This repository has been archived on 2024-02-11. You can view files and clone it, but cannot push or open issues or pull requests.
valinor/kubernetes/apps/default/rocky.yaml
2023-12-02 00:51:58 -06:00

23 lines
526 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: rocky-linux
namespace: default
spec:
nodeSelector:
intel.feature.node.kubernetes.io/gpu: "true"
containers:
- name: rocky
image: rockylinux:9
securityContext:
privileged: true
command: ["/bin/bash", "-c", "while true; do sleep 10; done"]
resources:
requests:
cpu: 100m
gpu.intel.com/i915: 1
memory: 512Mi
limits:
cpu: 4000m
gpu.intel.com/i915: 1
memory: 8000Mi