123456789101112131415161718192021222324252627 |
- apiVersion: v1
- kind: Pod
- spec:
- containers:
- - name: spark-kubernetes-executor
- securityContext:
- privileged: true
- volumeMounts:
- - name: hibench-results
- mountPath: /results
- env:
- - name: SCENARIO
- value: __FIXME__
- volumes:
- - name: hibench-results
- hostPath:
- path: /home_nfs/home_masourod/hibench-results
- type: Directory
- affinity:
- nodeAffinity:
- requiredDuringSchedulingIgnoredDuringExecution:
- nodeSelectorTerms:
- - matchExpressions:
- - key: hibench
- operator: In
- values:
- - true
|