Using Traefik As Your Ingress Controller Behind MetalLB On Your Bare Metal Kubernetes Cluster – Part 2 This is Part 2 – Using Traefik As Your Ingress Controller Behind MetalLB On Your Bare Metal Kubernetes Cluster. In Part 1 you can see how to install / configure MetalLBon your Kubernetes Cluster, in Part 2 I […]
Tag: load balancer
Using MetalLB And Traefik Load Balancing For Your Bare Metal Kubernetes Cluster – Part 1
Using MetalLB And Traefik for Load balancing on your Bare Metal Kubernetes Cluster – Part 1 Running a Kubernetes Cluster in your own data center on Bare Metal hardware can be lots of fun but also can be challenging. One of the changeless are exposing your service to an external Load Balancer, Kubernetes does not […]
Updated: Using Consul For Service Discovery In Multiple Data Centers Version 1.4 – part 2
Configuring Consul for Service Discovery in a Multiple Data Centers This is part two on Configuring Consul for Service Discovery in a Multiple Data Centers using version 1.4, to see part 1 click here. Note: You might also want to read the original post which was using version 0.9.2, by going here part 1 and […]
Updated: Using Consul For Service Discovery in Multiple Data Centers Version 1.4 – Part 1
Configuring Consul for Service Discovery in a Multiple Data Centers Since my last post on how to configure Consul for Service Discovery in a Multi Data Center, a number of things have changed and got updated. You can see the original post by going here part 1 and here part 2, the original write-up was […]
Using Consul for Service Discovery in Multiple Data Centers – Part 2
Consul configuration in a multi Data Center environment This is part two on how to configure Consul in a multi Data Center environment. Click here for part one. Note: An updated post using the most recent version of Consul (version 1.4.2) is available here, the below configuration will work with consul version 0.9.2 and below. […]
Using Consul for Service Discovery In Multiple Data Centers – Part 1
Consul configuration in a multi Data Center environment Below I am going to describe how to use Consul Health Checking across Multiple Data Centers. A picture is worth a thousand words, the diagram below describes a high level overview of the Consul multi Data Center architecture. Consul Multi Data Center Diagram below are the highlights […]
Solaris 11.2 VRRP and vlan tags
How to Create a VRRP group in Solaris 11.2 The vLan tag used in the example below is 20 On Host 1
1 2 3 4 5 6 7 8 9 10 11 12 |
dladm create-aggr -m dlmp -l net10 -l net11 aggr1<br /> dladm create-vlan -v 20 -l aggr1 global1<br /> dladm create-vnic -m vrrp -V 12 -A inet -v 20 -l aggr1 ldaplb1<br /> vrrpadm create-router -V 12 -A inet -I global1 vrrp1<br /> # If in a zone or IB, layer 3 option is required to work<br /> vrrpadm create-router -V 12 -A inet -T l3 -I global1 vrrp1<br /> ipadm create-ip ldaplb1<br /> ipadm create-addr -T vrrp -a 10.10.10.50/23 ldaplb1/router1<br /> ipadm create-ip global1<br /> ipadm create-addr -T static -a 10.10.10.11/23 global1/router1<br /> |
On Host 2
1 2 3 4 5 6 7 8 9 10 11 |
dladm create-aggr -m dlmp -l net10 -l net11 aggr1<br /> dladm create-vlan -v 20 -l aggr1 global2<br /> #<br /> dladm create-vnic -m vrrp -V 12 -A inet -v 20 -l aggr1 ldaplb1<br /> # If in a zone or IB, layer 3 option is required to work<br /> vrrpadm create-router -V 12 -A inet -T l3 -I global2 -p 100 vrrp1<br /> ipadm create-ip ldaplb1<br /> ipadm create-addr -T vrrp -a 10.10.10.50/23 ldaplb1/router1<br /> ipadm create-ip global2<br /> ipadm create-addr -T static -a 10.10.10.12/23 global2/router1 |
Note: If using VRRP in combination with Solaris iLB, you should note that SSL Secure termination is not supported as of this writing. an option would be to […]
Vrrp and ilb on Solaris 11.1
Contents 1 How To configure VRRP and ilb for Solaris 11 1.1 First Configure VRRP on each server 1.1.1 On server 1 1.1.2 On server 2 1.2 On both servers 1.3 Configure the initial ilb server group 1.4 Create the load balance ports 1.5 Check ilb status 2 References How To configure VRRP and ilb […]