oc cluster up default subdomain

2017-11-28 Thread Aaron Weitekamp
I'm trying to spin up a development environment where I can run an openshift-ansible playbook against an 'oc cluster up' cluster. It's working except for the default subdomain does not match, causing TLS cert error: oauthproxy.go:582: error redeeming code (client:172.17.0.1:52368): Post https://12

openshift/api and openshift/client-go are authoritative

2017-11-28 Thread David Eads
As of https://github.com/openshift/origin/pull/17477, h ttps://github.com/openshift/api and https://github.com/openshift/client-go are the authoritative source of the OpenShift API types and the OpenShift external clients. The external types and go client are no longer present in https://github.co

registry deletion

2017-11-28 Thread Brian Keyes
I want to delete this docker registry and start over, this is the command that I think was run to create it oadm registry --config=/etc/origin/master/admin.kubeconfig --service-account=registry oadm registry delete or something like that ??? thanks -- Brian Keyes Systems Engineer, Vizur

Re: registry deletion

2017-11-28 Thread Ben Parees
On Tue, Nov 28, 2017 at 6:06 PM, Brian Keyes wrote: > I want to delete this docker registry and start over, this is the command > that I think was run to create it > > oadm registry --config=/etc/origin/master/admin.kubeconfig > --service-account=registry > > > > oadm registry delete or something

Re: registry deletion

2017-11-28 Thread Clayton Coleman
Note that any command that can generate objects can be an input to delete: oadm registry -o json | oc delete -f - It won’t delete objects you personally created, but is a good way to rewind. On Nov 28, 2017, at 6:13 PM, Ben Parees wrote: On Tue, Nov 28, 2017 at 6:06 PM, Brian Keyes wrote: