Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
/ cert-operator Public archive

cert-operator creates and manages certificates for Kubernetes clusters running on Giant Swarm

License

Notifications You must be signed in to change notification settings

giantswarm/cert-operator

Repository files navigation

CircleCI Docker Repository on Quay

cert-operator

Cert Operator creates/configure/manages certificates for Kubernetes clusters running on Giantnetes.

Prerequisites

Getting Project

Download the latest release: https://github.com/giantswarm/cert-operator/releases/latest

Clone the git repository: https://github.com/giantswarm/cert-operator.git

Download the latest docker image from here: https://quay.io/repository/giantswarm/cert-operator

How to build

Dependencies

Building the standard way

go build github.com/giantswarm/cert-operator

Running cert-operator

See this guide.

Contact

Contributing & Reporting Bugs

See CONTRIBUTING for details on submitting patches, the contribution workflow as well as reporting bugs.

License

cert-operator is under the Apache 2.0 license. See the LICENSE file for details.

Credit

Secrets

The cert-operator is deployed via Kubernetes.

Here the plain Vault token has to be inserted.

service:
  vault:
    config:
      token: 'TODO'

Here the base64 representation of the data structure above has to be inserted.

apiVersion: v1
kind: Secret
metadata:
  name: cert-operator-secret
  namespace: giantswarm
type: Opaque
data:
  secret.yaml: 'TODO'

To create the secret manually do this.

kubectl create -f ./path/to/secret.yaml