Skip to content

Brickchain/kube-dns-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kube-dns-manager

Automatically manage DNS names for Kubernetes Ingress endpoints.
Currently only support Google Cloud DNS.

Based on https://github.com/PalmStoneGames/kube-cert-manager

Usage

Deploy using the deployment template in the k8s/ folder.
You need to update it with the correct secrets for managing your Google DNS via the API.

Add an annotation to your Ingress specs to enable DNS management.

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: test-example-com
  annotations:
    k8s.brickchain.com/dns: "true"
spec:
  rules:
  - host: "test.example.com"
    http:
      paths:
      - path: /
        backend:
          serviceName: my-svc1
          servicePort: 8080
  - host: "test2.example.com"
    http:
      paths:
      - path: /
        backend:
          serviceName: my-svc2
          servicePort: 8080

About

Automatically add DNS names for Kubernetes Ingress endpoints

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages