imfreedom/k8s-cluster

lower the resources for imfreedom.org

2020-01-27, Gary Kramlich
11fbdc9b40c6
lower the resources for imfreedom.org
# This manifest is the remains of the bamboo deployment we once had. It is now
# just an certificate and an ingress that redirects to the new
# https://ci.imfreedom.org/.
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
namespace: pidgin
name: bamboo
annotations:
cert-manager.io/issuer: letsencrypt
nginx.ingress.kubernetes.io/permanent-redirect: https://ci.imfreedom.org/
labels:
app: bamboo
spec:
rules:
- host: bamboo.pidgin.im
tls:
- hosts:
- bamboo.pidgin.im
secretName: bamboo-tls
---
apiVersion: cert-manager.io/v1alpha2
kind: Certificate
metadata:
namespace: pidgin
name: bamboo
spec:
secretName: bamboo-tls
issuerRef:
name: letsencrypt
commonName: bamboo.pidgin.im
dnsNames:
- bamboo.pidgin.im
---