Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brickchain/kube-dns-manager
Automatically add DNS names for Kubernetes Ingress endpoints
https://github.com/brickchain/kube-dns-manager
dns kubernetes
Last synced: 16 days ago
JSON representation
Automatically add DNS names for Kubernetes Ingress endpoints
- Host: GitHub
- URL: https://github.com/brickchain/kube-dns-manager
- Owner: Brickchain
- Created: 2016-12-05T12:50:33.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-14T10:36:22.000Z (over 7 years ago)
- Last Synced: 2024-06-20T05:19:31.488Z (6 months ago)
- Topics: dns, kubernetes
- Language: Go
- Size: 2.57 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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.
```yaml
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
```