continuous-deployment-on-kubernetes
continuous-deployment-on-kubernetes copied to clipboard
Jenkins plugin workflow-job:2.24 too old?
I was just following the qwiklab from the google coursera kubernetes course which is based on this repo. Jenkins would fail to build anything due to disabled plugins, complaining that workflow-job:2.24 should be at least of version 2.26.
I just ran into this same issue earlier. I had to update the plugins so the pipeline plugin started correctly.
before run ./helm install -n cd stable/jenkins -f jenkins/values.yaml --version 0.16.6 --wait
edit file jenkins/values.yaml
, update to :
workflow-job:2.31
then run ./heml install
again
Same changes introduced in this pull request.
Fixed in #139