From 52c5c0a32dab49a077aa1e2404b04670e11abde2 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Tue, 26 May 2020 17:03:52 +0200 Subject: [PATCH] ci: address yamllint issues in jjb-deploy.yaml ./deploy/jjb-deploy.yaml 16:7 error wrong indentation: expected 8 but found 6 (indentation) 19:9 error wrong indentation: expected 10 but found 8 (indentation) 26:9 error wrong indentation: expected 10 but found 8 (indentation) 30:7 error wrong indentation: expected 8 but found 6 (indentation) Signed-off-by: Niels de Vos --- deploy/jjb-deploy.yaml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/deploy/jjb-deploy.yaml b/deploy/jjb-deploy.yaml index 48b10ce72..d79fcf80f 100644 --- a/deploy/jjb-deploy.yaml +++ b/deploy/jjb-deploy.yaml @@ -13,21 +13,21 @@ spec: app: jjb spec: containers: - - name: jjb - image: 172.30.254.79:5000/ceph-csi/jjb:latest - env: - - name: GIT_REPO - value: https://github.com/ceph/ceph-csi - - name: GIT_REF - value: ci/centos - - name: MAKE_TARGET - value: deploy - volumeMounts: - - name: etc-jj - mountPath: /etc/jenkins_jobs - readOnly: true + - name: jjb + image: 172.30.254.79:5000/ceph-csi/jjb:latest + env: + - name: GIT_REPO + value: https://github.com/ceph/ceph-csi + - name: GIT_REF + value: ci/centos + - name: MAKE_TARGET + value: deploy + volumeMounts: + - name: etc-jj + mountPath: /etc/jenkins_jobs + readOnly: true volumes: - - name: etc-jj - configMap: - name: jenkins-jobs + - name: etc-jj + configMap: + name: jenkins-jobs restartPolicy: Never