mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2024-11-14 13:26:10 +00:00
41 lines
894 B
YAML
41 lines
894 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: ndnhfuzz
|
|
spec:
|
|
strategy:
|
|
type: RollingUpdate
|
|
rollingUpdate:
|
|
maxSurge: 1
|
|
maxUnavailable: 1
|
|
replicas: 10
|
|
selector:
|
|
matchLabels:
|
|
app: ndnhfuzz
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: ndnhfuzz
|
|
spec:
|
|
volumes:
|
|
- name: nfs-volume
|
|
nfs:
|
|
server: k3smaster
|
|
path: /data/fuzzing
|
|
containers:
|
|
- name: ndnhfuzz
|
|
image: ghcr.io/demogorgon22/ndnhfuzz:master
|
|
tty: true
|
|
imagePullPolicy: Always
|
|
resources:
|
|
requests:
|
|
cpu: "1.1"
|
|
securityContext:
|
|
privileged: true
|
|
allowPrivilegeEscalation: true
|
|
capabilities:
|
|
add:
|
|
- ALL
|
|
volumeMounts:
|
|
- name: nfs-volume
|
|
mountPath: /cores
|