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
image: ubuntu:16.04
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:
- mountPath: "/pets_data"
name: pets-data

View File

@ -10,7 +10,7 @@ spec:
- name: decompress-annotations
image: ubuntu:16.04
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:
- mountPath: "/pets_data"
name: pets-data

View File

@ -10,7 +10,7 @@ spec:
- name: decompress-model
image: ubuntu:16.04
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:
- mountPath: "/pets_data"
name: pets-data

View File

@ -10,7 +10,7 @@ spec:
- name: get-model
image: inutano/wget
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:
- mountPath: "/pets_data"
name: pets-data