Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Certificate Manager #177

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Certificate Manager #177

wants to merge 1 commit into from

Conversation

bruj0
Copy link
Contributor

@bruj0 bruj0 commented May 11, 2017

This is a certificate manager implemented from https://github.com/kelseyhightower/kube-cert-manager
It request a certificate from Let's Encrypt and authentificates the domain via Route53 and provides them to the containers in a form of files as in:

spec:
  containers:
  - name: my-app
    image: ...
    args:
      - "-tls-cert=/etc/tls/tls.crt"
      - "-tls-key=/etc/tls/tls.key"
    volumeMounts:
      - name: cert
        mountPath: /etc/tls/
  volumes:
    - name: cert
      secret:
        secretName: my-cert-name

I created the image for kubectl-proxy because the original project doesn't have a version for 1.6.2, the Dockerfile used is under scripts/kubectl-proxy along with a script to create a new one when the Kubernetes version updates.

@bruj0
Copy link
Contributor Author

bruj0 commented May 13, 2017

No love for this feature?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant