Forked from balajismaniam/cpuman-perf-test-parsec-pod.yaml
Created
May 8, 2022 16:02
-
-
Save Adeotan/1454dd366b90cfc1ace6c4c301c47a6a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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