Created
August 23, 2019 18:15
-
-
Save warroyo/2adc83cbc0dbaf4c5cdc5fd2d22c084e to your computer and use it in GitHub Desktop.
bf sample workload
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: bf-demo2 | |
| namespace: default | |
| spec: | |
| containers: | |
| - name: bf-demo | |
| image: shawnmkelly/bitfusion:tensorflow | |
| resources: | |
| limits: | |
| memory: "200Mi" | |
| requests: | |
| memory: "100Mi" | |
| command: ["/bin/sh", "-c"] | |
| args: | |
| - sleep 10000 | |
| volumeMounts: | |
| - mountPath: /etc/bitfusionio | |
| name: bitfusionio | |
| volumes: | |
| - name: bitfusionio | |
| hostPath: | |
| # directory location on host | |
| path: /etc/bitfusionio |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment