Change location of jenkins slave space mount
I believe mounting at home is causing issues when setting up the kubectl
since multiple machines are trying to edit the kubeconfig at the same
time. The kubeconfig is under "/home/jenkins/.kube". Changed the way the
mount mounted so that it mounts to "${HOME}/workspace" for all the jobs
launched into kubernetes.
Change-Id: I34038e44f80f90d6905dd3036b91874502aaab07
Signed-off-by: Alanny Lopez <Alanny.Lopez@ibm.com>
diff --git a/kubernetes/Templates/QEMU-launch-deployment.yaml b/kubernetes/Templates/QEMU-launch-deployment.yaml
index 490beb0..c17df73 100644
--- a/kubernetes/Templates/QEMU-launch-deployment.yaml
+++ b/kubernetes/Templates/QEMU-launch-deployment.yaml
@@ -14,9 +14,9 @@
app: ${deployname}
spec:
volumes:
- - name: home
+ - name: workspace
persistentVolumeClaim:
- claimName: ${hclaim}
+ claimName: ${wclaim}
nodeSelector:
beta.kubernetes.io/arch: ${ARCH}
securityContext:
@@ -55,7 +55,7 @@
memory: "1Gi"
cpu: "1000m"
volumeMounts:
- - name: home
+ - name: workspace
subPath: ${jenkins_subpath}
mountPath: ${OBMC_BUILD_DIR}
imagePullSecrets: