basic structure
This commit is contained in:
commit
fb00485c95
29
.drone.yml
Normal file
29
.drone.yml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: dnscontrol
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event: push
|
||||||
|
|
||||||
|
workspace:
|
||||||
|
path: /dns
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: preview
|
||||||
|
image: stackexchange/dnscontrol
|
||||||
|
environment:
|
||||||
|
PDNS_API_KEY:
|
||||||
|
from_secret: PDNS_API_KEY
|
||||||
|
commands:
|
||||||
|
- dnscontrol preview
|
||||||
|
|
||||||
|
- name: push
|
||||||
|
image: stackexchange/dnscontrol
|
||||||
|
environment:
|
||||||
|
PDNS_API_KEY:
|
||||||
|
from_secret: PDNS_API_KEY
|
||||||
|
commands:
|
||||||
|
- dnscontrol push
|
||||||
|
when:
|
||||||
|
branch: master
|
7
creds.json
Normal file
7
creds.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"powerdns": {
|
||||||
|
"apiurl": "http://dns-burble.tier2.uk-lon1.burble.dn42:8081/api/v1",
|
||||||
|
"apikey": "$PDNS_API_KEY",
|
||||||
|
"servername": "localhost",
|
||||||
|
}
|
||||||
|
}
|
23
dnsconfig.js
Normal file
23
dnsconfig.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
// providers section
|
||||||
|
|
||||||
|
var REG_NONE = NewRegistrar('none', 'NONE');
|
||||||
|
var PDNS = NewDnsProvider(
|
||||||
|
'powerdns',
|
||||||
|
'PowerDNS',
|
||||||
|
{
|
||||||
|
'dnssec_on_create': true
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
D(
|
||||||
|
'example.local',
|
||||||
|
REG_NONE,
|
||||||
|
DnsProvider(PDNS),
|
||||||
|
A('@', '1.2.3.4')
|
||||||
|
);
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
// end of file
|
Loading…
x
Reference in New Issue
Block a user