Re: Best way to get installed?

2018-04-16 Thread Tracy Reed
I think I've finally got a basic cluster up using the following:

Setup prereqs:
https://docs.openshift.com/container-platform/3.5/install_config/install/host_preparation.html#setting-path
Then oc cluster up:
https://docs.openshift.org/latest/getting_started/administrators.html

However, when I point my browser at ip:8443 I first get a certificate
error (understandable, I'll look up how to put in my own cert later)
then I click past the browser warning and it just spins until the
browser times out. The install process went seemingly perfectly. The oc
cluster up ran without error and said:

-- Server Information ...
   OpenShift server started.
   The server is accessible via web console at:
   https://10.240.0.132:8443
   You are logged in as:
   User: developer
   Password: developer
   To login as administrator:
   oc login -u system:admin

so that all looks good. But why does the web console never appear? 

Thanks in advance for any pointers. I've been having a heck of a time
just getting my openshift up and running.

On Fri, Apr 13, 2018 at 12:22:26AM PDT, Tim Dudgeon spake thusly:
> Depends on what you are wanting to do.
> To get some basic experience with using OpenShift you could try Minishift:
> 
> https://docs.openshift.org/latest/minishift/index.html
> 
> Tim
> 
> 
> On 12/04/18 22:26, Tracy Reed wrote:
> > So I've been tasked with setting up an OpenShift cluster for some light
> > testing. Not prod. I was originally given
> > https://github.com/RedHatWorkshops/openshiftv3-ops-workshop/blob/master/setting_up_nonha_ocp_cluster.md
> > as the install guide.
> > 
> > This tutorial takes quite a while to manually setup the 4 nodes (in
> > GCE), plus storage, etc. and then launches into an hour long ansible
> > run.  I've been through it 4 times now and each time run into various
> > odd problems (which I could document for you if necessary).
> > 
> > Is there currently any other simpler and faster way to install
> > a basic OpenShift setup?
> > 
> > Googling produces a number of other OpenShift tutorials, many of which
> > now have comments on them about bugs or being out of date etc.
> > 
> > What's the current state of the art in simple openshift install
> > guides?
> > 
> > Thanks!
> > 
> > 
> > 
> > ___
> > users mailing list
> > users@lists.openshift.redhat.com
> > http://lists.openshift.redhat.com/openshiftmm/listinfo/users
> 

> ___
> users mailing list
> users@lists.openshift.redhat.com
> http://lists.openshift.redhat.com/openshiftmm/listinfo/users


-- 
Tracy Reed
http://tracyreed.org
Digital signature attached for your safety.


signature.asc
Description: PGP signature
___
users mailing list
users@lists.openshift.redhat.com
http://lists.openshift.redhat.com/openshiftmm/listinfo/users


Re: Best way to get installed?

2018-04-13 Thread Tracy Reed
On Fri, Apr 13, 2018 at 12:40:04PM PDT, Tim Dudgeon spake thusly:
> For a simple 1 server env you might want to look at 'oc cluster up':
> https://github.com/openshift/origin/blob/master/docs/cluster_up_down.md
> 
> It might be a good way to get you going.

Ah...now we're talking. I saw references to this in minishift also
although I didn't know what it was. I'll give this a try. Thanks!

-- 
Tracy Reed
http://tracyreed.org
Digital signature attached for your safety.


signature.asc
Description: PGP signature
___
users mailing list
users@lists.openshift.redhat.com
http://lists.openshift.redhat.com/openshiftmm/listinfo/users


Re: Best way to get installed?

2018-04-13 Thread Tim Dudgeon

If you must deploy to GCE then Minishift is not the answer.
It's designed to run on your laptop so that you can test things and get 
up to speed with Openshift.

For that it's ideal.

For a simple 1 server env you might want to look at 'oc cluster up':
https://github.com/openshift/origin/blob/master/docs/cluster_up_down.md

It might be a good way to get you going.


On 13/04/18 20:25, Tracy Reed wrote:

On Fri, Apr 13, 2018 at 12:22:26AM PDT, Tim Dudgeon spake thusly:

Depends on what you are wanting to do.
To get some basic experience with using OpenShift you could try Minishift:

https://docs.openshift.org/latest/minishift/index.html

Thanks. This is so far the only suggestion. However, I have to deploy
this in Google Compute Engine. Minishift requires access to a supported
hypervisor so that it can spinup the VM itself. So unfortunately, this
won't work. I found the minishift github repo where someone had
requested that minishift be able to be provisioned on a pre-existing VM:
https://github.com/minishift/minishift/issues/467 but this is rejected
as they want to have more control over the environment in terms of
storage, cpu, installed OS, etc. So my search continues...

Thanks!



___
users mailing list
users@lists.openshift.redhat.com
http://lists.openshift.redhat.com/openshiftmm/listinfo/users


Re: Best way to get installed?

2018-04-13 Thread Tracy Reed
On Fri, Apr 13, 2018 at 12:22:26AM PDT, Tim Dudgeon spake thusly:
> Depends on what you are wanting to do.
> To get some basic experience with using OpenShift you could try Minishift:
> 
> https://docs.openshift.org/latest/minishift/index.html

Thanks. This is so far the only suggestion. However, I have to deploy
this in Google Compute Engine. Minishift requires access to a supported
hypervisor so that it can spinup the VM itself. So unfortunately, this
won't work. I found the minishift github repo where someone had
requested that minishift be able to be provisioned on a pre-existing VM:
https://github.com/minishift/minishift/issues/467 but this is rejected
as they want to have more control over the environment in terms of
storage, cpu, installed OS, etc. So my search continues...

Thanks!

-- 
Tracy Reed
http://tracyreed.org
Digital signature attached for your safety.


signature.asc
Description: PGP signature
___
users mailing list
users@lists.openshift.redhat.com
http://lists.openshift.redhat.com/openshiftmm/listinfo/users


Re: Best way to get installed?

2018-04-13 Thread Tim Dudgeon

Depends on what you are wanting to do.
To get some basic experience with using OpenShift you could try Minishift:

https://docs.openshift.org/latest/minishift/index.html

Tim


On 12/04/18 22:26, Tracy Reed wrote:

So I've been tasked with setting up an OpenShift cluster for some light
testing. Not prod. I was originally given
https://github.com/RedHatWorkshops/openshiftv3-ops-workshop/blob/master/setting_up_nonha_ocp_cluster.md
as the install guide.

This tutorial takes quite a while to manually setup the 4 nodes (in
GCE), plus storage, etc. and then launches into an hour long ansible
run.  I've been through it 4 times now and each time run into various
odd problems (which I could document for you if necessary).

Is there currently any other simpler and faster way to install
a basic OpenShift setup?

Googling produces a number of other OpenShift tutorials, many of which
now have comments on them about bugs or being out of date etc.

What's the current state of the art in simple openshift install
guides?

Thanks!



___
users mailing list
users@lists.openshift.redhat.com
http://lists.openshift.redhat.com/openshiftmm/listinfo/users


___
users mailing list
users@lists.openshift.redhat.com
http://lists.openshift.redhat.com/openshiftmm/listinfo/users


Best way to get installed?

2018-04-12 Thread Tracy Reed
So I've been tasked with setting up an OpenShift cluster for some light
testing. Not prod. I was originally given
https://github.com/RedHatWorkshops/openshiftv3-ops-workshop/blob/master/setting_up_nonha_ocp_cluster.md
as the install guide.

This tutorial takes quite a while to manually setup the 4 nodes (in
GCE), plus storage, etc. and then launches into an hour long ansible
run.  I've been through it 4 times now and each time run into various
odd problems (which I could document for you if necessary).

Is there currently any other simpler and faster way to install
a basic OpenShift setup?

Googling produces a number of other OpenShift tutorials, many of which
now have comments on them about bugs or being out of date etc. 

What's the current state of the art in simple openshift install
guides?

Thanks!

-- 
Tracy Reed
http://tracyreed.org
Digital signature attached for your safety.


signature.asc
Description: PGP signature
___
users mailing list
users@lists.openshift.redhat.com
http://lists.openshift.redhat.com/openshiftmm/listinfo/users