Let's say you have a set of disparate nodepools in a cluster:
kubectl get nodesNAME STATUS ROLES AGE VERSION
I hereby claim:
To claim this, I am signing this object:
| Tue May 21 18:00:04 UTC 2019 |
| image: dockerfile/ruby | |
| script: | |
| - bundle install | |
| - bundle exec rspec | |
| notify: | |
| email: | |
| recipients: | |
| - [email protected] |
| FROM ubuntu | |
| MAINTAINER Andrew Wood <[email protected]> | |
| RUN apt-get update -q | |
| RUN apt-get install -qy git curl build-essential libssl-dev sqlite3 libsqlite3-dev nodejs | |
| RUN git clone https://github.com/sstephenson/rbenv.git ~/.rbenv | |
| RUN git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build | |
| RUN echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile | |
| RUN echo 'eval "$(rbenv init -)"' >> ~/.bash_profile | |
| RUN /bin/bash -c -l 'rbenv install 2.1.0' |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-site-plugin</artifactId> | |
| <version>3.0</version> | |
| <executions> | |
| <execution> | |
| <phase>prepare-package</phase> | |
| <goals> | |
| <goal>site</goal> | |
| </goals> |
| <plugin> | |
| <groupId>com.google.code.maven-replacer-plugin</groupId> | |
| <artifactId>maven-replacer-plugin</artifactId> | |
| <version>1.3.5</version> | |
| <executions> | |
| <execution> | |
| <id>replace-for-documentation</id> | |
| <phase>prepare-package</phase> | |
| <goals> | |
| <goal>replace</goal> |