diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
commit | 19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch) | |
tree | 42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/powerdns/README.md | |
parent | Initial commit. (diff) | |
download | ceph-upstream/16.2.11+ds.tar.xz ceph-upstream/16.2.11+ds.zip |
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | src/powerdns/README.md | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/powerdns/README.md b/src/powerdns/README.md new file mode 100644 index 000000000..0b34ede95 --- /dev/null +++ b/src/powerdns/README.md @@ -0,0 +1,61 @@ +# PowerDNS RADOS Gateway backend + +A backend for PowerDNS to direct RADOS Gateway bucket traffic to the correct regions. + +For example, two regions exist, US and EU. + + EU: o.myobjects.eu + US: o.myobjects.us + +A global domain o.myobjects.com exists. + +Bucket 'foo' exists in the region EU and 'bar' in US. + + foo.o.myobjects.com will return a CNAME to foo.o.myobjects.eu + bar.o.myobjects.com will return a CNAME to foo.o.myobjects.us + +The HTTP Remote Backend from PowerDNS is used in this case: http://doc.powerdns.com/html/remotebackend.html + +PowerDNS must be compiled with Remote HTTP backend support enabled, this is not default. + +For more information visit the [Blueprint](http://wiki.ceph.com/Planning/Blueprints/Firefly/PowerDNS_backend_for_RGW) + +# Configuration + +## PowerDNS + launch=remote + remote-connection-string=http:url=http://localhost:6780/dns + +## PowerDNS backend +Usage for this backend is showed by invoking with --help. See rgw-pdns.conf.in for a configuration example + +The ACCESS and SECRET key pair requires the caps "metadata=read" + +# Testing + +$ curl -X GET http://localhost:6780/dns/lookup/foo.o.myobjects.com/ANY + +Should return something like: + + { + "result": [ + { + "content": "foo.o.myobjects.eu", + "qtype": "CNAME", + "qname": "foo.o.myobjects.com", + "ttl": 60 + } + ] + } + +## WSGI +You can run this backend directly behind an Apache server with mod_wsgi + + WSGIScriptAlias / /var/www/pdns-backend-rgw.py + +Placing that in your virtualhost should be sufficient. + +Afterwards point PowerDNS to localhost on port 80: + + launch=remote + remote-connection-string=http:url=http://localhost/dns |