Created
February 25, 2018 10:04
-
-
Save therako/26498269fc78b724d25ddd377e275c14 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: batch/v1 | |
kind: Job | |
metadata: | |
name: tensorflow-package-builder | |
spec: | |
template: | |
spec: | |
containers: | |
- name: tensorflow-package-builder | |
image: tensorflow-builder | |
command: ["./generate_packages_script.sh"] | |
volumeMounts: | |
- mountPath: /code/tensorflow_pkg | |
name: built-package-vo | |
restartPolicy: Never | |
volumes: | |
- name: built-package-vo | |
emptyDir: {} | |
backoffLimit: 4 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment