Re: [kubernetes-users] How to move a POD from node1 to node2?

2017-08-06 Thread 'Tim Hockin' via Kubernetes user discussion and Q
You haven't really explained what you are trying to do. The question you are asking is hard to answer because it indicates some misunderstanding deeper down. What are you trying to achieve? On Sun, Aug 6, 2017 at 2:35 AM, wrote: > OK so how do i create deployment with 1

Re: [kubernetes-users] Weighted load balancing to service/pods

2017-08-06 Thread Guang Ya Liu
I think the istio can help you for such case, checkout here https://istio.io/docs/concepts/traffic-management/request-routing.html for detail, hope this helps! On Sat, Aug 5, 2017 at 9:36 PM, 'Tim Hockin' via Kubernetes user discussion and Q

Re: [kubernetes-users] Kubernetes jobs and failure modes

2017-08-06 Thread Rodrigo Campos
On Friday, August 4, 2017, 'Mark Betz' via Kubernetes user discussion and Q wrote: > I've been doing some testing of jobs in our cluster to try and get some > control over the behavior of one of our build pipelines, and I'm hoping > someone here can show me

Re: [kubernetes-users] Different Kubernets installation modules

2017-08-06 Thread Rodrigo Campos
Not sure what you mean, probably the answer is no. But can you please elaborate? Have you checked how to install Kubernetes, and tried it? :) On Sunday, August 6, 2017, no body wrote: > Hi, > > I have use the vms all times, but never use container. I think kubenets >

Re: [kubernetes-users] How to move a POD from node1 to node2?

2017-08-06 Thread Shrinand Javadekar
Once your deployment is running on node1, you can run 'kubectl edit deployment' which will open the deployment yaml in an editor.. make your change and close the file. Kubernetes will delete the old deployment and create a new one on node2. On Sun, Aug 6, 2017 at 2:35 AM

[kubernetes-users] Different Kubernets installation modules

2017-08-06 Thread no body
Hi, I have use the vms all times, but never use container. I think kubenets should be installed directly from aws, then the developer can access it via the ssh ip address, similar to access the vms, correct? Thank you. -- You received this message because you are subscribed to the Google

Re: [kubernetes-users] How to move a POD from node1 to node2?

2017-08-06 Thread shaybery
OK so how do i create deployment with 1 POD on node1 and then move the POD to node2? apiVersion: extensions/v1beta1 kind: Deployment metadata: name: rss-site spec: replicas: 2 template: metadata: labels: app: web spec: - name: con-name