--
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+unsubscribe@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.
I realized my etcd comments were misleading. To clarify, if you have a single etcd setup like this:
AZ A: etcd0, etcd1
AZ B: etcd2
… and AWS loses AZ A, then your AZ B etcd side of the cluster will not be available because the AZ A failure broke quorum.
Sorry for any confusion,
Casey
--
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/TS-ksof_Uds/unsubscribe.
To unsubscribe from this group and all its topics, send an email to kubernetes-use...@googlegroups.com.
To post to this group, send email to kubernet...@googlegroups.com.
We are not yet in production with kubernetes (but are working toward that goal) so keep that in mind. We intend to do deploy the same containers to multiple clusters (AZs) for HA. Once federation is ready, I imagine we’ll start using that feature. Like, you I don’t think it’s ready for prime time just yet but am excited about the possibilities. We do not run ELB for existing, non-k8s endpoints. Instead we run multiple nginx instances per AZ setup to prefer backends that are in the same AZ (lower cross-AZ fees) but failover to cross AZ if needed. We use RR DNS. At this time, we intend to do the same for k8s.
-casey
From: <kubernet...@googlegroups.com> on behalf of Henning Jacobs <henning...@zalando.de>
Reply-To: <kubernet...@googlegroups.com>
Date: Friday, October 21, 2016 at 1:47 AM
To: Kubernetes user discussion and Q&A <kubernet...@googlegroups.com>
Subject: [kubernetes-users] Re: Multi-AZ vs. Single-AZ Clusters on AWS: Cross-AZ Data Transfer Costs?
Thanks Casey!
--