Re: Let's Encrypt certificates

2017-09-06 Thread Tim Dudgeon
All, I wrote up what I found about getting ACME controller working here: https://github.com/OpenRiskNet/home/blob/master/openshift/certificates/README.md Let me know if you see any errors or omissions. Tim On 05/09/2017 17:38, Tomas Nozicka wrote: Hi Tim, (see inline...) On Tue,

s2i for gradle builds

2017-09-06 Thread Tim Dudgeon
I was looking for a s2i image for gradle based projects. A Google search throws up a few possibilities for this. Does anyone have any experiences or recommendations on this? Tim ___ users mailing list users@lists.openshift.redhat.com

Re: Invalid output reference

2017-09-06 Thread Cesar Wong
Does the myapp image stream exist? > On Sep 6, 2017, at 6:35 AM, Tim Dudgeon wrote: > > I'm trying to get to grips with build configs. In this case a Java build > using Maven. > I managed to get the build to work fine using the web console and now want to > allow this

Re: Invalid output reference

2017-09-06 Thread Tim Dudgeon
No. Isn't that what's being created by the build (as its output)? Those parameters were taken from the build config that had just successfully been created and built using the web console, and then the build config exported as YAML. Tim On 06/09/2017 13:44, Cesar Wong wrote: Does the

Re: Invalid output reference

2017-09-06 Thread Cesar Wong
The tag will be created by the build when it runs, but it expects the image stream to exist. When the web console created the build config, it also created the output image stream. You can recreate it by running: oc create imagestream myapp > On Sep 6, 2017, at 8:59 AM, Tim Dudgeon