apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: parsec-pod | |
spec: | |
containers: | |
# See https://github.com/Spirals-Team/benchmark-containers/tree/master/parsec-3.0 for more information on image. | |
- image: spirals/parsec-3.0 | |
command: ["/bin/bash"] | |
# Change args to run the workload. | |
args: <insert-parsec-command> | |
name: parsec-ctn | |
resources: | |
requests: | |
# Note: CPU request and limit should be same. | |
cpu: <insert-cpu-request> | |
memory: 4Gi | |
limits: | |
# Note: CPU request and limit should be same. | |
cpu: <insert-cpu-limit> | |
memory: 4Gi | |
restartPolicy: "Never" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment