Re: [kubernetes-users] Kubernetes ingress

2018-04-27 Thread Kanthi P
Thanks David for the example. I tried it, with this we can only redirect /test/data to /data, but we won't be able to redirect /test to /. We actually want /test to remain redirected to / itself and /test/data to redirect to /data and /test/data/runs to /data/runs and so on. So in short, we

[kubernetes-users] subscribe kubernetes user mailing list

2018-04-27 Thread Bai Jie
Hi community, I would like to subscribe kubernetes user mailing list. Pls feel free to accpet my application. Thank you. Regards, Amy -- You received this message because you are subscribed to the Google Groups "Kubernetes user discussion and Q" group. To unsubscribe from this group and stop

[kubernetes-users] subscribe kubernetes user mailing list

2018-04-27 Thread Amy Bai
Hi community, I would like to subscribe kubernetes user mailing list. Pls feel free to accpet my application. Thank you. Regards, Amy -- You received this message because you are subscribed to the Google Groups "Kubernetes user discussion and Q" group. To unsubscribe from this group and stop

[kubernetes-users] Facing issues with Init containers.

2018-04-27 Thread vivek.kumar via Kubernetes user discussion and Q
Hi All, I am facing a weird issue with my pods. I am launching around 20 containers in my env and every time some random 3-4 pods out of them hang with Init:0/1 status. On checking the status of pod, Init container shows running status, which should terminate after task is finished, and app

Re: [kubernetes-users] Best practice for running variants of k8s services?

2018-04-27 Thread 'Tim Hockin' via Kubernetes user discussion and Q
Does this head in the direction you want? https://github.com/kubernetes/kubectl/tree/master/cmd/kustomize On Fri, Apr 27, 2018 at 10:52 PM David Rosenstrauch wrote: > We've been using Kubernetes to get a dev version of our environment up > and running, and so far the

[kubernetes-users] Best practice for running variants of k8s services?

2018-04-27 Thread David Rosenstrauch
We've been using Kubernetes to get a dev version of our environment up and running, and so far the experience has been great - nearly a dozen services up and running, and Kubernetes has made the whole process very straight-forward. However, we're now looking at moving this implementation

Re: [kubernetes-users] Kubernetes ingress

2018-04-27 Thread David Rosenstrauch
If you were using the nginx ingress, you would do it like this: apiVersion: extensions/v1beta1 kind: Ingress metadata: name: test-ingress annotations: nginx.ingress.kubernetes.io/rewrite-target: /data nginx.ingress.kubernetes.io/ssl-redirect: "false" spec: rules: - http:

[kubernetes-users] Kubernetes ingress

2018-04-27 Thread Kanthi P
Hi, Need some help with ingress controller we want to redirect a http request say //xyz to be mapped to a service in the backend. And the service should receive the request as /xyz How do we annotate this in the ingress resource? Have configured the ingress resource as shown: apiVersion: