Coder Social home page Coder Social logo

puppet-coredns's Introduction

coredns

Table of Contents

  1. Description
  2. Usage - Configuration options and additional functionality
  3. Limitations - OS compatibility, etc.
  4. Development - Guide for contributing to the module

Description

Puppet module to install CoreDNS Server.

Usage

Install CoreDNS & systemd unit without any zone and default parameters:

include coredns

Create a DNS zone . that match all request, with prometheus, logs and error plugin that forward all request to google public DNS 8.8.8.8:

coredns::zone { '.':
  prometheus                => true,
  prometheus_listen_address => $facts['ipaddress'],
  prometheus_listen_port    => 9153,
  log                       => true,
  errors                    => true,
  forward                   => true,
  forward_to                => ['8.8.8.8'],
}

Create a DNS zone that match all requests to example.local using auto plugin which read zones from /etc/coredns/zones directory:

coredns::zone { 'example.local':
  log         => true,
  errors      => true,
  auto        => 'example.local',
  auto_config => {
    'directory' => '/etc/coredns/zones',
  },
}

Reference

This section is deprecated. Instead, add reference information to your code as Puppet Strings comments, and then use Strings to generate a REFERENCE.md in your module. For details on how to add code comments and generate documentation with Strings, see the Puppet Strings documentation and style guide

If you aren't ready to use Strings yet, manually create a REFERENCE.md in the root of your module directory and list out each of your module's classes, defined types, facts, functions, Puppet tasks, task plans, and resource types and providers, along with the parameters for each.

For each element (class, defined type, function, and so on), list:

  • The data type, if applicable.
  • A description of what the element does.
  • Valid values, if the data type doesn't make it obvious.
  • Default value, if any.

For example:

### `pet::cat`

#### Parameters

##### `meow`

Enables vocalization in your cat. Valid options: 'string'.

Default: 'medium-loud'.

Limitations

This module only configure coredns installation, service, and Corefile configuration. It does not configure DNS zone entries & records.

Development

This module is actually being developped. New features may come soon! Feel free to contriute!

puppet-coredns's People

Contributors

othalla avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.