Update decompress config to avoid error, fix typo (#177)

This commit is contained in:
Roy Xue 2018-07-17 01:08:55 +08:00 committed by k8s-ci-robot
parent d2c5e949e5
commit 151713c7bf
4 changed files with 8 additions and 8 deletions

View File

@ -10,7 +10,7 @@ spec:
- name: decompress-images - name: decompress-images
image: ubuntu:16.04 image: ubuntu:16.04
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
command: ["tar", "-xzvf", "/pets_data/images.tar.gz", "-C", "/pets_data"] command: ["tar", "--no-same-owner", "-xzvf", "/pets_data/images.tar.gz", "-C", "/pets_data"]
volumeMounts: volumeMounts:
- mountPath: "/pets_data" - mountPath: "/pets_data"
name: pets-data name: pets-data
@ -20,4 +20,4 @@ spec:
claimName: pets-data-claim claimName: pets-data-claim
restartPolicy: Never restartPolicy: Never
backoffLimit: 4 backoffLimit: 4

View File

@ -10,7 +10,7 @@ spec:
- name: decompress-annotations - name: decompress-annotations
image: ubuntu:16.04 image: ubuntu:16.04
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
command: ["tar", "-xzvf", "/pets_data/annotations.tar.gz", "-C", "/pets_data"] command: ["tar", "--no-same-owner", "-xzvf", "/pets_data/annotations.tar.gz", "-C", "/pets_data"]
volumeMounts: volumeMounts:
- mountPath: "/pets_data" - mountPath: "/pets_data"
name: pets-data name: pets-data
@ -20,4 +20,4 @@ spec:
claimName: pets-data-claim claimName: pets-data-claim
restartPolicy: Never restartPolicy: Never
backoffLimit: 4 backoffLimit: 4

View File

@ -10,7 +10,7 @@ spec:
- name: decompress-model - name: decompress-model
image: ubuntu:16.04 image: ubuntu:16.04
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
command: ["tar", "-xzvf", "/pets_data/faster_rcnn_resnet101_coco_2018_01_28.tar.gz", "-C", "/pets_data"] command: ["tar", "--no-same-owner", "-xzvf", "/pets_data/faster_rcnn_resnet101_coco_2018_01_28.tar.gz", "-C", "/pets_data"]
volumeMounts: volumeMounts:
- mountPath: "/pets_data" - mountPath: "/pets_data"
name: pets-data name: pets-data
@ -20,4 +20,4 @@ spec:
claimName: pets-data-claim claimName: pets-data-claim
restartPolicy: Never restartPolicy: Never
backoffLimit: 4 backoffLimit: 4

View File

@ -10,7 +10,7 @@ spec:
- name: get-model - name: get-model
image: inutano/wget image: inutano/wget
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
command: ["wget", "--no-check-certificate", "https://raw.githubusercontent.com/ldcastell/examples/distributedTrainihttps://raw.githubusercontent.com/ldcastell/examples/distributedTrainingExample/object_detection/conf/faster_rcnngExample/object_detection/distributed_training/conf/faster_rcnn_resnet101_pets.config", "-P", "/pets_data"] command: ["wget", "--no-check-certificate", "https://raw.githubusercontent.com/ldcastell/examples/distributedTrainingExample/object_detection/conf/faster_rcnn_resnet101_pets.config", "-P", "/pets_data"]
volumeMounts: volumeMounts:
- mountPath: "/pets_data" - mountPath: "/pets_data"
name: pets-data name: pets-data
@ -19,4 +19,4 @@ spec:
persistentVolumeClaim: persistentVolumeClaim:
claimName: pets-data-claim claimName: pets-data-claim
restartPolicy: Never restartPolicy: Never
backoffLimit: 4 backoffLimit: 4