All Projects → oracle → federated-ingress-controller

oracle / federated-ingress-controller

Licence: Apache-2.0 license
Alternative implementation of Federated Ingress using external DNS

Programming Languages

go
31211 projects - #10 most used programming language
python
139335 projects - #7 most used programming language

wercker status Go Report Card

Federated Ingress Round Robin DNS Controller

The Federated Ingress Round Robin DNS Controller allows you to create federated ingress resource with the Kubernetes cluster of your choice (Amazon Web Services (AWS), Google Kubernetes Engine (GKE), Minikube, etc), and route requests to your application based on the defined ingress rules.

Before You Begin

The default Federated Ingress Controller, which is part of the Federation project has a dependency on GKE cluster and global load balancer. So the Federated Ingress resource can work only with GKE cluster in the Federation project.

The Federated Ingress Round Robin DNS Controller removes this restriction and allows the federated ingress to work with GKE cluster as well as other types of Kubernetes clusters such as AWS and Minikube. It creates DNS records for ingress endpoints and uses DNS server to do the routing. You can choose different DNS provider such as aws-route53, coredns, dyndns, and google-clouddns as the DNS server.

Federated Ingress Controller

Figure:1 Federated Ingress Round Robin DNS Controller Architecture
The Federated Ingress Round Robin DNS Controller architecture diagram explains how the controller distributes ingress resource to managed clusters. The cluster level ingress controller sets the *Status.LoadBalancer.Ingress* field on the cluster level ingress object with its external load balancer IP. The Federated Ingress Round Robin DNS Controller aggregates the value of the *Status.LoadBalancer.Ingress* field from managed clusters and sets the same value on the Federated Ingress resource. The DNS controller uses that value from Federated Ingress resource to create Round Robin A-records.

Build

Requirements:

  • Go 1.8.x

To build the Federated Ingress Controller:

get src:

  • export K8S_INCUBATOR_DIR="$GOPATH/src/github.com/kubernetes-incubator"
  • mkdir -p $K8S_INCUBATOR_DIR
  • cd $K8S_INCUBATOR_DIR
  • git clone https://github.com/oracle/federated-ingress-controller

build:

  • export DOCKER_REGISTRY=docker.io/changeme
  • make will cleanup, vet, run unit tests, build binary and image
  • make bin will build just the controller binary so it can run locally

docker image:

  • make image will produce a docker image containing the artifacts suitable for deploying to Kubernetes.
  • make push_image will produce a docker image containing the artifacts suitable for deploying to Kubernetes.

Contributions to this code are welcome! The code in this repository can be built and tested using the Makefile.

Deploy

Follow deploy instructions to deploy the Federated Ingress Controller.

Community, discussion, contribution, and support

Learn how to engage with the Kubernetes community on the community page.

You can reach the maintainers of this project at:

Kubernetes Incubator

This is a pending proposal for Kubernetes Incubator project. The incubator team for the project is:

  • Sponsor: tbd
  • Champion: tbd
  • SIG: sig-multicluster tbd

Code of conduct

Participation in the Kubernetes community is governed by the Kubernetes Code of Conduct.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].