Fix example pod.yml to not mount to root
As mounting to root makes `/root` a read only filesystem, which breaks a lot of builds that try to add files to `/root` (like `/root/.npm`).
This commit is contained in:
parent
8d9e6b8ea5
commit
8e2b9ba105
|
|
@ -11,7 +11,7 @@ spec:
|
||||||
"--destination=<user-name>/<repo>"] # replace with your dockerhub account
|
"--destination=<user-name>/<repo>"] # replace with your dockerhub account
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: kaniko-secret
|
- name: kaniko-secret
|
||||||
mountPath: /root
|
mountPath: /kaniko/.docker
|
||||||
- name: dockerfile-storage
|
- name: dockerfile-storage
|
||||||
mountPath: /workspace
|
mountPath: /workspace
|
||||||
restartPolicy: Never
|
restartPolicy: Never
|
||||||
|
|
@ -21,7 +21,7 @@ spec:
|
||||||
secretName: regcred
|
secretName: regcred
|
||||||
items:
|
items:
|
||||||
- key: .dockerconfigjson
|
- key: .dockerconfigjson
|
||||||
path: .docker/config.json
|
path: config.json
|
||||||
- name: dockerfile-storage
|
- name: dockerfile-storage
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: dockerfile-claim
|
claimName: dockerfile-claim
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue