Re: prune images error - 503

2016-10-25 Thread Lionel Orellana
It might be trying to go through the proxy. >From the master this works. curl -v --noproxy 172.19.38.253 http://172.19.38.253:5000/healthz On 26 October 2016 at 09:04, Lionel Orellana wrote: > Hi Maciej > > Here's what I got from the prune logs. > > I1026 08:54:32.200913 20095 prune.go:794]

Re: prune images error - 503

2016-10-25 Thread Lionel Orellana
Hi Maciej Here's what I got from the prune logs. I1026 08:54:32.200913 20095 prune.go:794] Using registry: 172.19.38.253:5000 I1026 08:54:32.200938 20095 prune.go:181] Trying https for 172.19.38.253:5000 I1026 08:54:32.200995 20095 round_trippers.go:296] GET https://172.19.38.253:5000/healt

Re: quota increase

2016-10-25 Thread Clayton Coleman
We tended to expect people to use config management for these (and other policy resources). On Tue, Oct 25, 2016 at 3:59 PM, Srinivas Naga Kotaru (skotaru) < skot...@cisco.com> wrote: > Oh ok. That is exactly what I did and edited JSON/YAML files. As direct > edit of these files prone to syntax e

Re: quota increase

2016-10-25 Thread Srinivas Naga Kotaru (skotaru)
Oh ok. That is exactly what I did and edited JSON/YAML files. As direct edit of these files prone to syntax errors, was trying to explore any better way. Thanks for trying to help -- Srinivas Kotaru From: David Eads Date: Tuesday, October 25, 2016 at 12:43 PM To: Srinivas Naga Kotaru Cc: "use

Re: quota increase

2016-10-25 Thread David Eads
Try `oc edit quota/foo`. Similar command for `limitranges`. You can also write `oc patch` commands, but they tend to be more difficult. On Tue, Oct 25, 2016 at 3:03 PM, Srinivas Naga Kotaru (skotaru) < skot...@cisco.com> wrote: > Hi > > > > Can cluster-admin increase quota and limits on exiting

quota increase

2016-10-25 Thread Srinivas Naga Kotaru (skotaru)
Hi Can cluster-admin increase quota and limits on exiting limits object using oc or oadm command? If yes, what is the syntax. I couldn’t find anything useful. -- Srinivas Kotaru ___ users mailing list users@lists.openshift.redhat.com http://lists.opens

Re: Deploying router

2016-10-25 Thread Sachin Vaidya
Thank you. Issue was with default certificate. Fixed it based on following link: https://docs.openshift.org/latest/install_config/router/index.html#creating-the-router-service-account - Sachin On Mon, Oct 24, 2016 at 5:48 PM, Clayton Coleman wrote: > > > On Oct 24, 2016, at 8:25 PM, Sachin Va

Re: Prune images in OpenShift Registry

2016-10-25 Thread Maciej Szulik
I'd recommend you reading through [1] which has a thorough description of all three supported prune commands (builds, deployments and images). Each explaining in details all possible flags, as well as which objects are eligible for pruning. In general, to answer your first question - yes, removing

Re: Metric are visible in tab but not on the left side

2016-10-25 Thread Sam Padgett
Mila, you need to POST data to that URL. GET won't work. Can you check the network tab developer tools in Chrome for the request? Is the browser making that request and what is the response? Sam ___ users mailing list users@lists.openshift.redhat.com ht

Re: How can I put logstash config files in ConfigMap ?

2016-10-25 Thread Philippe Lafoucrière
It seems to have been fixed in k8s 1.4.0, so with OS 1.3.1 as well. https://github.com/kubernetes/kubernetes/blob/v1.4.0/pkg/util/validation/validation.go#L273 ​ ___ users mailing list users@lists.openshift.redhat.com http://lists.openshift.redhat.com/ope

Re: Prune images in OpenShift Registry

2016-10-25 Thread Den Cowboy
I see only one image which oadm prune image will delete (this is an image from which I manually deleted all its deployments and whole project). So I would expect I actually first need to perform oadm prune deployments before I can delete other old images? Are there other restrictions? (we don't

Prune images in OpenShift Registry

2016-10-25 Thread Den Cowboy
Hi, I want to delete all images in our openshift registry which are older than 60 days. Is this possible? Another option could be to delete all images except the images which were used in the last 20 deploys. Is this possible? I saw the prune image command but I don't really understand it an

Re: prune images error - 503

2016-10-25 Thread Maciej Szulik
Upon pruning images this command reaches out to registry to actually remove them from there. Apparently, it has has problems reaching out to your registry. There are two flags you might want to check out --certificate-authority - which points to a CA when self-signed cert is used --registry-url - t

How can I put logstash config files in ConfigMap ?

2016-10-25 Thread Stéphane Klein
Hi, How can I put logstash config files in ConfigMap ? $ tree . ├── logstash-config │ ├── 1_tcp_input.conf │ ├── 2_news_filter.conf │ └── 3_elasticsearch_ouput.conf $ oc create configmap logstash-config --from-file=logstash-config/ error: 1_tcp_input.conf is not a valid key name for a con

prune images error - 503

2016-10-25 Thread Lionel Orellana
Hi. I'm trying to run oadm prune images --keep-tag-revisions=3 --keep-younger-than=24h --confirm but after a while I get error: error communicating with registry: unexpected status code 503 I am able to prune builds and deployments. prune images without --confirm also returns Ok. I've been bu