imfreedom/k8s-cluster

Update cert-manager to 0.9.1 as we were running 0.5.0 and let's encrypt is going to start blocking < 0.8.0 as those versions are issuing too much traffic to lets encrypt
# This file contains the tls certificate issuer for the `reaperworld`
# `namespace`.
---
apiVersion: certmanager.k8s.io/v1alpha1
kind: Issuer
metadata:
name: letsencrypt
namespace: reaperworld
spec:
acme:
server: https://acme-v02.api.letsencrypt.org/directory
email: grim@reaperworld.com
privateKeySecretRef:
name: letsencrypt
http01: {}
---