Browse Source

Change command of python and helm in Jenkinsfile

master
Gyulai Dániel 4 years ago
parent
commit
32779dc731
  1. 10
      Jenkinsfile

10
Jenkinsfile

@ -30,14 +30,20 @@ spec:
- name: python - name: python
image: docker.local/ci/python:latest image: docker.local/ci/python:latest
imagePullPolicy: Always imagePullPolicy: Always
command: ["cat"] command:
- sleep
args:
- 99d
- name: helm - name: helm
image: docker.local/ci/helm:latest image: docker.local/ci/helm:latest
imagePullPolicy: Always imagePullPolicy: Always
env: env:
- name: KUBECONFIG - name: KUBECONFIG
value: /home/jenkins/agent/workspace/gitea-bme_covidok-backend_master/ci/kube.config value: /home/jenkins/agent/workspace/gitea-bme_covidok-backend_master/ci/kube.config
command: ["cat"] command:
- sleep
args:
- 99d
''') { ''') {
node(POD_LABEL) { node(POD_LABEL) {

Loading…
Cancel
Save