Thank you sir

2017-04-05 22:52 GMT+01:00 'Tim Hockin' via Kubernetes user discussion and
Q&A <kubernetes-users@googlegroups.com>:

> So THAT is what you should figure out, not how to (ab)use a different
> feature.  Without knowing all of the details of your whole install, I
> can't say why load-balancer doesn't work in your install.  There needs
> to be a controller that implements it, usually through the
> CloudProvider interface...
>
>
>
> On Wed, Apr 5, 2017 at 2:49 PM, YASMINE CHEIKHROUHOU
> <yasmine.cheikhrou...@enis.tn> wrote:
> > good but as i said
> > i exposed  service after calling expose --type=LoadBalancer a call to get
> > services shows pending for many minutes and then no EXTERNAL-IP appears
> > i don't know whyy
> >
> > 2017-04-05 22:38 GMT+01:00 'Tim Hockin' via Kubernetes user discussion
> and
> > Q&A <kubernetes-users@googlegroups.com>:
> >>
> >> On Wed, Apr 5, 2017 at 2:23 PM, YASMINE CHEIKHROUHOU
> >> <yasmine.cheikhrou...@enis.tn> wrote:
> >> > it seems that i don't understand you when i tell it's for production
> >> > 1) i instlled cluster kubernetes with murano
> >> > 2) i run image ubuntu-xrdp from docker hub
> >>
> >> OK, so now you have a single pod running in your cluster
> >>
> >> > 3) i want to access to this image with xrdp i want public Ip:Port i
> cant
> >>
> >> You need a Service for a public IP
> >>
> >> > access but when i do
> >> > kubectl port-forward My_Pod 3389:3389
> >> > i get
> >> > Forwarding from 127.0.0.1:3389 -> 3389
> >>
> >> kubectl is not, in general, how you get traffic into and out of your
> >> cluster.  You want a service with a load balancer.
> >>
> >> > i don't want localhost i want to allow port-forwading to more
> interfaces
> >> > than localhost
> >> > you see sir what i mean
> >> > I hope you understand me and you can help me because really blocked
> >> > i want this in the picture but i can't because it's forwarding only
> >> > localhost
> >> > thank you
> >> >
> >> > 2017-04-05 22:02 GMT+01:00 'Tim Hockin' via Kubernetes user discussion
> >> > and
> >> > Q&A <kubernetes-users@googlegroups.com>:
> >> >>
> >> >> On what cloud?
> >> >>
> >> >> On Wed, Apr 5, 2017 at 1:59 PM, YASMINE CHEIKHROUHOU
> >> >> <yasmine.cheikhrou...@enis.tn> wrote:
> >> >> > yes it's for production Sir
> >> >> > i try to expose service after calling expose --type=LoadBalancer a
> >> >> > call
> >> >> > to
> >> >> > get services shows pending for many minutes and then no EXTERNAL-IP
> >> >> > appears
> >> >> >
> >> >> > 2017-04-05 21:32 GMT+01:00 'Tim Hockin' via Kubernetes user
> >> >> > discussion
> >> >> > and
> >> >> > Q&A <kubernetes-users@googlegroups.com>:
> >> >> >>
> >> >> >> I don't think you want to use `kubectl port-forward` for
> production
> >> >> >> -
> >> >> >> it runs the traffic through the master API.  You clearly have a
> >> >> >> kubernetes cluster - are you trying to expose a Service from that
> >> >> >> cluster?
> >> >> >>
> >> >> >> On Wed, Apr 5, 2017 at 11:49 AM, YASMINE CHEIKHROUHOU
> >> >> >> <yasmine.cheikhrou...@enis.tn> wrote:
> >> >> >> > I want to setup it for a permanent fixture
> >> >> >> > Does you understand,Sir, what i mean?
> >> >> >> >
> >> >> >> > 2017-04-05 16:54 GMT+01:00 'Tim Hockin' via Kubernetes user
> >> >> >> > discussion
> >> >> >> > and
> >> >> >> > Q&A <kubernetes-users@googlegroups.com>:
> >> >> >> >>
> >> >> >> >> kubectl port-forward is not really designed for serving
> >> >> >> >> production
> >> >> >> >> traffic, as I know it.  Is this a one-off thing or something
> you
> >> >> >> >> want
> >> >> >> >> to set up as a permanent fixture?
> >> >> >> >>
> >> >> >> >> For a one-off, you can add something like socat to your local
> >> >> >> >> machine
> >> >> >> >> to forward whatever IP you want to that localhost port.
> >> >> >> >>
> >> >> >> >> I'm not the UX guardian for this area, so I can't say for sure,
> >> >> >> >> but
> >> >> >> >> MAYBE a patch would be considered.
> >> >> >> >>
> >> >> >> >> On Wed, Apr 5, 2017 at 12:42 AM, YASMINE CHEIKHROUHOU
> >> >> >> >> <yasmine.cheikhrou...@enis.tn> wrote:
> >> >> >> >> > I have created a pod using image xubuntu from docker hub
> then i
> >> >> >> >> > want
> >> >> >> >> > to
> >> >> >> >> > access to this image from rdp
> >> >> >> >> > So i do this kubectl port-forward My_Pod 3389:3389  so i get
> >> >> >> >> > this
> >> >> >> >> > t Forwarding from 127.0.0.1:3389 -> 3389
> >> >> >> >> > Forwarding from [::1]:3389 -> 3389
> >> >> >> >> > But i don't want localhost i want this for example
> >> >> >> >> > kubectl port-forward --bind-address 192.168.56.1 mypod 3389
> >> >> >> >> > The result will be like this:
> >> >> >> >> > Forwarding from 192.168.56.1:3389 -> 3389
> >> >> >> >> > but --bind-address is not supported how to do?
> >> >> >> >> >
> >> >> >> >> > 2017-04-05 0:41 GMT+01:00 'Tim Hockin' via Kubernetes user
> >> >> >> >> > discussion
> >> >> >> >> > and
> >> >> >> >> > Q&A <kubernetes-users@googlegroups.com>:
> >> >> >> >> >>
> >> >> >> >> >> Can you explain what you're trying to do?  I think there's a
> >> >> >> >> >> little
> >> >> >> >> >> confusion.
> >> >> >> >> >>
> >> >> >> >> >> On Tue, Apr 4, 2017 at 1:23 AM, jasmin
> >> >> >> >> >> <yasmine.cheikhrou...@enis.tn>
> >> >> >> >> >> wrote:
> >> >> >> >> >> > Hello
> >> >> >> >> >> > I want to change the adress of localhost but --bind-adress
> >> >> >> >> >> > is
> >> >> >> >> >> > not
> >> >> >> >> >> > supported
> >> >> >> >> >> > with my kubectl version
> >> >> >> >> >> > Is there a solution
> >> >> >> >> >> > I have execute this command
> >> >> >> >> >> > kubectl port-forward My_Pod 3389:3389
> >> >> >> >> >> > Forwarding from 127.0.0.1:3389 -> 3389
> >> >> >> >> >> > I want to change 127.0.0.1 how to do it
> >> >> >> >> >> > Thanks all
> >> >> >> >> >> >
> >> >> >> >> >> > --
> >> >> >> >> >> > You received this message because you are subscribed to
> the
> >> >> >> >> >> > Google
> >> >> >> >> >> > Groups
> >> >> >> >> >> > "Kubernetes user discussion and Q&A" group.
> >> >> >> >> >> > To unsubscribe from this group and stop receiving emails
> >> >> >> >> >> > from
> >> >> >> >> >> > it,
> >> >> >> >> >> > send
> >> >> >> >> >> > an
> >> >> >> >> >> > email to kubernetes-users+unsubscr...@googlegroups.com.
> >> >> >> >> >> > To post to this group, send email to
> >> >> >> >> >> > kubernetes-users@googlegroups.com.
> >> >> >> >> >> > Visit this group at
> >> >> >> >> >> > https://groups.google.com/group/kubernetes-users.
> >> >> >> >> >> > For more options, visit https://groups.google.com/d/
> optout.
> >> >> >> >> >>
> >> >> >> >> >> --
> >> >> >> >> >> You received this message because you are subscribed to a
> >> >> >> >> >> topic
> >> >> >> >> >> in
> >> >> >> >> >> the
> >> >> >> >> >> Google Groups "Kubernetes user discussion and Q&A" group.
> >> >> >> >> >> To unsubscribe from this topic, visit
> >> >> >> >> >>
> >> >> >> >> >>
> >> >> >> >> >>
> >> >> >> >> >>
> >> >> >> >> >> https://groups.google.com/d/topic/kubernetes-users/
> 1LRlm5jKow8/unsubscribe.
> >> >> >> >> >> To unsubscribe from this group and all its topics, send an
> >> >> >> >> >> email
> >> >> >> >> >> to
> >> >> >> >> >> kubernetes-users+unsubscr...@googlegroups.com.
> >> >> >> >> >> To post to this group, send email to
> >> >> >> >> >> kubernetes-users@googlegroups.com.
> >> >> >> >> >> Visit this group at
> >> >> >> >> >> https://groups.google.com/group/kubernetes-users.
> >> >> >> >> >> For more options, visit https://groups.google.com/d/optout.
> >> >> >> >> >
> >> >> >> >> >
> >> >> >> >> > --
> >> >> >> >> > You received this message because you are subscribed to the
> >> >> >> >> > Google
> >> >> >> >> > Groups
> >> >> >> >> > "Kubernetes user discussion and Q&A" group.
> >> >> >> >> > To unsubscribe from this group and stop receiving emails from
> >> >> >> >> > it,
> >> >> >> >> > send
> >> >> >> >> > an
> >> >> >> >> > email to kubernetes-users+unsubscr...@googlegroups.com.
> >> >> >> >> > To post to this group, send email to
> >> >> >> >> > kubernetes-users@googlegroups.com.
> >> >> >> >> > Visit this group at
> >> >> >> >> > https://groups.google.com/group/kubernetes-users.
> >> >> >> >> > For more options, visit https://groups.google.com/d/optout.
> >> >> >> >>
> >> >> >> >> --
> >> >> >> >> You received this message because you are subscribed to a topic
> >> >> >> >> in
> >> >> >> >> the
> >> >> >> >> Google Groups "Kubernetes user discussion and Q&A" group.
> >> >> >> >> To unsubscribe from this topic, visit
> >> >> >> >>
> >> >> >> >>
> >> >> >> >>
> >> >> >> >> https://groups.google.com/d/topic/kubernetes-users/
> 1LRlm5jKow8/unsubscribe.
> >> >> >> >> To unsubscribe from this group and all its topics, send an
> email
> >> >> >> >> to
> >> >> >> >> kubernetes-users+unsubscr...@googlegroups.com.
> >> >> >> >> To post to this group, send email to
> >> >> >> >> kubernetes-users@googlegroups.com.
> >> >> >> >> Visit this group at
> >> >> >> >> https://groups.google.com/group/kubernetes-users.
> >> >> >> >> For more options, visit https://groups.google.com/d/optout.
> >> >> >> >
> >> >> >> >
> >> >> >> > --
> >> >> >> > You received this message because you are subscribed to the
> Google
> >> >> >> > Groups
> >> >> >> > "Kubernetes user discussion and Q&A" group.
> >> >> >> > To unsubscribe from this group and stop receiving emails from
> it,
> >> >> >> > send
> >> >> >> > an
> >> >> >> > email to kubernetes-users+unsubscr...@googlegroups.com.
> >> >> >> > To post to this group, send email to
> >> >> >> > kubernetes-users@googlegroups.com.
> >> >> >> > Visit this group at
> >> >> >> > https://groups.google.com/group/kubernetes-users.
> >> >> >> > For more options, visit https://groups.google.com/d/optout.
> >> >> >>
> >> >> >> --
> >> >> >> You received this message because you are subscribed to a topic in
> >> >> >> the
> >> >> >> Google Groups "Kubernetes user discussion and Q&A" group.
> >> >> >> To unsubscribe from this topic, visit
> >> >> >>
> >> >> >>
> >> >> >> https://groups.google.com/d/topic/kubernetes-users/
> 1LRlm5jKow8/unsubscribe.
> >> >> >> To unsubscribe from this group and all its topics, send an email
> to
> >> >> >> kubernetes-users+unsubscr...@googlegroups.com.
> >> >> >> To post to this group, send email to
> >> >> >> kubernetes-users@googlegroups.com.
> >> >> >> Visit this group at
> >> >> >> https://groups.google.com/group/kubernetes-users.
> >> >> >> For more options, visit https://groups.google.com/d/optout.
> >> >> >
> >> >> >
> >> >> > --
> >> >> > You received this message because you are subscribed to the Google
> >> >> > Groups
> >> >> > "Kubernetes user discussion and Q&A" group.
> >> >> > To unsubscribe from this group and stop receiving emails from it,
> >> >> > send
> >> >> > an
> >> >> > email to kubernetes-users+unsubscr...@googlegroups.com.
> >> >> > To post to this group, send email to
> >> >> > kubernetes-users@googlegroups.com.
> >> >> > Visit this group at https://groups.google.com/
> group/kubernetes-users.
> >> >> > For more options, visit https://groups.google.com/d/optout.
> >> >>
> >> >> --
> >> >> You received this message because you are subscribed to a topic in
> the
> >> >> Google Groups "Kubernetes user discussion and Q&A" group.
> >> >> To unsubscribe from this topic, visit
> >> >>
> >> >> https://groups.google.com/d/topic/kubernetes-users/
> 1LRlm5jKow8/unsubscribe.
> >> >> To unsubscribe from this group and all its topics, send an email to
> >> >> kubernetes-users+unsubscr...@googlegroups.com.
> >> >> To post to this group, send email to kubernetes-users@googlegroups.
> com.
> >> >> Visit this group at https://groups.google.com/group/kubernetes-users
> .
> >> >> For more options, visit https://groups.google.com/d/optout.
> >> >
> >> >
> >> > --
> >> > You received this message because you are subscribed to the Google
> >> > Groups
> >> > "Kubernetes user discussion and Q&A" group.
> >> > To unsubscribe from this group and stop receiving emails from it, send
> >> > an
> >> > email to kubernetes-users+unsubscr...@googlegroups.com.
> >> > To post to this group, send email to kubernetes-users@googlegroups.
> com.
> >> > Visit this group at https://groups.google.com/group/kubernetes-users.
> >> > For more options, visit https://groups.google.com/d/optout.
> >>
> >> --
> >> You received this message because you are subscribed to a topic in the
> >> Google Groups "Kubernetes user discussion and Q&A" group.
> >> To unsubscribe from this topic, visit
> >> https://groups.google.com/d/topic/kubernetes-users/
> 1LRlm5jKow8/unsubscribe.
> >> To unsubscribe from this group and all its topics, send an email to
> >> kubernetes-users+unsubscr...@googlegroups.com.
> >> To post to this group, send email to kubernetes-users@googlegroups.com.
> >> Visit this group at https://groups.google.com/group/kubernetes-users.
> >> For more options, visit https://groups.google.com/d/optout.
> >
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Kubernetes user discussion and Q&A" group.
> > To unsubscribe from this group and stop receiving emails from it, send an
> > email to kubernetes-users+unsubscr...@googlegroups.com.
> > To post to this group, send email to kubernetes-users@googlegroups.com.
> > Visit this group at https://groups.google.com/group/kubernetes-users.
> > For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Kubernetes user discussion and Q&A" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/kubernetes-users/1LRlm5jKow8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> kubernetes-users+unsubscr...@googlegroups.com.
> To post to this group, send email to kubernetes-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/kubernetes-users.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Kubernetes user discussion and Q&A" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to kubernetes-users+unsubscr...@googlegroups.com.
To post to this group, send email to kubernetes-users@googlegroups.com.
Visit this group at https://groups.google.com/group/kubernetes-users.
For more options, visit https://groups.google.com/d/optout.
  • Re: [kubernetes-us... YASMINE CHEIKHROUHOU
    • Re: [kubernet... 'Tim Hockin' via Kubernetes user discussion and Q&A
      • Re: [kube... YASMINE CHEIKHROUHOU
        • Re: [... 'Tim Hockin' via Kubernetes user discussion and Q&A
          • R... YASMINE CHEIKHROUHOU
            • ... 'Tim Hockin' via Kubernetes user discussion and Q&A
            • ... YASMINE CHEIKHROUHOU
            • ... 'Tim Hockin' via Kubernetes user discussion and Q&A
            • ... YASMINE CHEIKHROUHOU
            • ... 'Tim Hockin' via Kubernetes user discussion and Q&A
            • ... YASMINE CHEIKHROUHOU

Reply via email to