Skip to content

Instantly share code, notes, and snippets.

@balajismaniam
Created July 17, 2018 21:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save balajismaniam/fac7923f6ee44f1f36969c29354e3902 to your computer and use it in GitHub Desktop.
Save balajismaniam/fac7923f6ee44f1f36969c29354e3902 to your computer and use it in GitHub Desktop.
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