Project

Profile

Help

Issue #5561

Updated by dkliban@redhat.com over 4 years ago

Even though the plugin_template configures Travis to checkout the PR for pulp-operator, a new image is not build from that PR. plugin_template needs to add the following right after pulp-operator PR is checked out: 

 <pre> 
 $ RELEASE_VERSION=v0.10.0 
 $ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu 
 $ chmod +x operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu && sudo mkdir -p /usr/local/bin/ && sudo cp operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu /usr/local/bin/operator-sdk && rm operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu 
 $ sudo operator-sdk build --image-builder=docker quay.io/pulp/pulp-operator:latest 
 </pre>

Back