All Projects → openstack → Designate

openstack / Designate

Licence: apache-2.0
OpenStack DNS As A Service (Designate). Mirror of code maintained at opendev.org.

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Designate

Now Go
Create tinyurl/redirection service with ease.
Stars: ✭ 107 (-26.21%)
Mutual labels:  service
Daemon
A daemon package for use with Go (golang) services
Stars: ✭ 1,720 (+1086.21%)
Mutual labels:  service
Phiremock
Phiremock mocks HTTP requests and REST services, allowing to mock external services during acceptance testing.
Stars: ✭ 131 (-9.66%)
Mutual labels:  service
Samples
Community driven repository for Dapr samples
Stars: ✭ 104 (-28.28%)
Mutual labels:  service
Tinypart
TinyPart is an iOS modularization framework implemented by Ojective-C. It also supports URL-routing and inter-module communication. TinyPart是一个由Objective-C编写的面向协议的iOS模块化框架,同时它还支持URL路由和模块间通信机制。
Stars: ✭ 120 (-17.24%)
Mutual labels:  service
Zaqar
OpenStack Messaging (Zaqar). Mirror of code maintained at opendev.org.
Stars: ✭ 128 (-11.72%)
Mutual labels:  service
Murano
Application Catalog for OpenStack. Mirror of code maintained at opendev.org.
Stars: ✭ 106 (-26.9%)
Mutual labels:  service
Decouplingkit
decoupling between modules in your iOS Project. iOS模块化过程中模块间解耦方案
Stars: ✭ 136 (-6.21%)
Mutual labels:  service
Confluence
Torrent client as a HTTP service
Stars: ✭ 126 (-13.1%)
Mutual labels:  service
Kala
Modern Job Scheduler
Stars: ✭ 1,736 (+1097.24%)
Mutual labels:  service
Flare
Flare is a service that notify changes of HTTP endpoints
Stars: ✭ 110 (-24.14%)
Mutual labels:  service
Bitwrk
Bitcoin-fueled Peer-to-Peer Blender Rendering (and more)
Stars: ✭ 114 (-21.38%)
Mutual labels:  service
Octavia
Load Balancing as a Service (LBaaS) for OpenStack. Mirror of code maintained at opendev.org.
Stars: ✭ 129 (-11.03%)
Mutual labels:  service
Httpbin
HTTP Request & Response Service, written in Python + Flask.
Stars: ✭ 10,423 (+7088.28%)
Mutual labels:  service
Gofn
Function process via docker provider (serverless minimalist)
Stars: ✭ 134 (-7.59%)
Mutual labels:  service
Pwa Cookbook
personally website
Stars: ✭ 107 (-26.21%)
Mutual labels:  service
Fdk Java
Java API and runtime for fn.
Stars: ✭ 127 (-12.41%)
Mutual labels:  service
Loginsrv
JWT login microservice with plugable backends such as OAuth2, Google, Github, htpasswd, osiam, ..
Stars: ✭ 1,835 (+1165.52%)
Mutual labels:  service
Service Contracts
A set of service abstractions extracted out of the Symfony components
Stars: ✭ 1,931 (+1231.72%)
Mutual labels:  service
Manila
Shared filesystem management project for OpenStack. Mirror of code maintained at opendev.org.
Stars: ✭ 130 (-10.34%)
Mutual labels:  service

======================== Team and repository tags

.. image:: https://governance.openstack.org/tc/badges/designate.svg :target: https://governance.openstack.org/tc/reference/tags/index.html

.. Change things from this point on

=================== OpenStack Designate

Designate is an OpenStack project, providing DNSaaS.

IRC: #openstack-dns @ freenode

Installation: https://docs.openstack.org/designate/latest/

API

To learn how to use Designate's API, consult the documentation available online at:

  • DNS API Reference <https://docs.openstack.org/api-ref/dns/>__

For more information on OpenStack APIs, SDKs and CLIs in general, refer to:

  • OpenStack for App Developers <https://www.openstack.org/appdev/>__
  • Development resources for OpenStack clouds <https://developer.openstack.org/>__

Development

Designate follows the OpenStack Gerrit Workflow_

Setup

Setup a working environment:

.. code-block:: bash

git clone https://opendev.org/openstack/designate
cd designate
virtualenv .venv
. .venv/bin/activate
pip install -r requirements.txt -r test-requirements.txt
pip install -e .

Building Docs

To build the documentation from the restructured text source, do the following:

.. code-block:: bash

tox -e docs

Now point your browser at doc/build/html/index.html (the official documentation is published to docs.openstack.org_ by the maintainers.

Testing

Execute all unit tests

.. code-block:: shell

tox -e py36

Execute only backend tests

.. code-block:: shell

tox -e py36 -- unit.backend

Execute only a single test

.. code-block:: shell

tox -e py36 -- unit.backend.test_pdns4.PDNS4BackendTestCase.test_create_zone_success

Contributing

Install the git-review package to make life easier

.. code-block:: shell

pip install git-review

Branch, work, & submit:

.. code-block:: shell

# cut a new branch, tracking master
git checkout --track -b bug/id origin/master
# work work work
git add stuff
git commit
# rebase/squash to a single commit before submitting
git rebase -i
# submit
git-review

Other Information

.. _OpenStack Gerrit Workflow: https://docs.openstack.org/infra/manual/developers.html#development-workflow .. _docs.openstack.org: https://docs.openstack.org/designate/latest/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].