Git Product home page Git Product logo

certbot-dns-rfc2136-collector's Introduction

Use to get and store your certificates from Let's Encrypt with certbot and a DNS server that uses nsupdate, like bind9.

  • Docker image @ theempty/certbot-dns-rfc2136-collector
  • required env var EMAIL
  • see sample files or kube example below for configuration file setup

Kubernetes Example

apiVersion: v1
kind: ConfigMap
metadata:
  name: certbot-configuration
data:
  hosts.ini: |
    example.com,*.exmaple.com
    other.host.com
    seperated-by-lines.tld,combine-with-commas.seperated-by-lines.tld
  config.ini: |
    dns_rfc2136_server = 127.0.0.1
    dns_rfc2136_port = 53
    dns_rfc2136_name = certbot.
    dns_rfc2136_secret = YOUR_BASE64_SECRET_HERE
    dns_rfc2136_algorithm = HMAC-SHA512
---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: certbot-daemon
spec:
  selector:
    matchLabels:
      app: certbot-daemon
  replicas: 1
  template:
    metadata:
      labels:
        app: certbot-daemon
        app.kubernetes.io/name: certbot-daemon
    spec:
      containers:
      - name: certbot-daemon
        image: theempty/certbot-dns-rfc2136-collector
        env:
          - name: EMAIL
            value: [email protected]
        volumeMounts:
          - name: certificate-storage
            mountPath: /etc/letsencrypt
          - name: certbot-configuration
            mountPath: /etc/certbot
      volumes:
        - name: certificate-storage
          persistentVolumeClaim:
            claimName: certbot-certificates-pvc
        - name: certbot-configuration
          configMap:
            name: certbot-configuration

certbot-dns-rfc2136-collector's People

Watchers

Myles Best 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.