fix
This commit is contained in:
@@ -41,7 +41,7 @@ locals {
|
|||||||
],
|
],
|
||||||
z.domain!=""?[format("%s. IN A %s", z.name, z.domain)]:[],
|
z.domain!=""?[format("%s. IN A %s", z.name, z.domain)]:[],
|
||||||
z.domain6!=""?[format("%s. IN AAAA %s", z.name, z.domain6)]:[],
|
z.domain6!=""?[format("%s. IN AAAA %s", z.name, z.domain6)]:[],
|
||||||
[for k,v in z.TXT: format("%s IN TXT %s", k, v)],
|
[for k,v in z.txt: format("%s IN TXT %s", k, v)],
|
||||||
[for k,v in z.hosts: format("%s IN A %s", k, v)],
|
[for k,v in z.hosts: format("%s IN A %s", k, v)],
|
||||||
[for k,v in z.hosts6: format("%s IN AAAA %s", k, v)],
|
[for k,v in z.hosts6: format("%s IN AAAA %s", k, v)],
|
||||||
[for k,v in z.alias: format("%s IN CNAME %s", k, v)],
|
[for k,v in z.alias: format("%s IN CNAME %s", k, v)],
|
||||||
|
|||||||
@@ -6,16 +6,21 @@ metadata:
|
|||||||
name: dns
|
name: dns
|
||||||
description: null
|
description: null
|
||||||
options:
|
options:
|
||||||
forward:
|
|
||||||
default: 192.168.1.254
|
|
||||||
examples:
|
|
||||||
- 192.168.1.254
|
|
||||||
type: string
|
|
||||||
sub-domain:
|
sub-domain:
|
||||||
default: dns
|
default: dns
|
||||||
examples:
|
examples:
|
||||||
- dns
|
- dns
|
||||||
type: string
|
type: string
|
||||||
|
domain:
|
||||||
|
default: your-company
|
||||||
|
examples:
|
||||||
|
- your-company
|
||||||
|
type: string
|
||||||
|
domain-name:
|
||||||
|
default: your_company.com
|
||||||
|
examples:
|
||||||
|
- your_company.com
|
||||||
|
type: string
|
||||||
image:
|
image:
|
||||||
default:
|
default:
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
@@ -93,15 +98,10 @@ options:
|
|||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
type: array
|
type: array
|
||||||
domain-name:
|
forward:
|
||||||
default: your_company.com
|
default: 192.168.1.254
|
||||||
examples:
|
examples:
|
||||||
- your_company.com
|
- 192.168.1.254
|
||||||
type: string
|
|
||||||
domain:
|
|
||||||
default: your-company
|
|
||||||
examples:
|
|
||||||
- your-company
|
|
||||||
type: string
|
type: string
|
||||||
dependencies: []
|
dependencies: []
|
||||||
providers:
|
providers:
|
||||||
|
|||||||
Reference in New Issue
Block a user