diff --git a/README.md b/README.md index 4c9158e..6e2da38 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Jenkins Pipeline Shared library, that contains additional features for Git, Mave * Install [Pipeline: GitHub Groovy Libraries](https://wiki.jenkins.io/display/JENKINS/Pipeline+GitHub+Library+Plugin) * Use the Library in any Jenkinsfile like so ``` -@Library('github.com/cloudogu/ces-build-lib@1.67.0') +@Library('github.com/cloudogu/ces-build-lib@2.0.0') import com.cloudogu.ces.cesbuildlib.* ``` * Best practice: Use a defined version (e.g. a git commit hash or a git tag, such as `6cd41e0` or `1.67.0` in the example above) and not a branch such as `develop`. Otherwise, your build might change when the there is a new commit on the branch. Using branches is like using snapshots! @@ -1092,6 +1092,10 @@ try { // your image name may look like this: k3d-citest-123456/your/image:yourTag-1.2.3-dev // the image name can be applied to your cluster as usual, f. i. with k3d.kubectl() with a customized K8s resource } + + stage('execute k8s-ces-setup') { + k3d.setup('0.20.0') + } stage('install resources and wait for them') { imageName = "registry.cloudogu.com/official/my-dogu-name:1.0.0"