imfreedom/k8s-cluster

Add the old gaim site for fun

2020-01-12, Gary Kramlich
1a40218583ce
Add the old gaim site for fun
# 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
---