imfreedom/k8s-cluster

Add the manifest for youtrack

2019-11-17, Gary Kramlich
190e9257dad3
Add the manifest for youtrack
# 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:
certmanager.k8s.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: certmanager.k8s.io/v1alpha1
kind: Certificate
metadata:
namespace: pidgin
name: bamboo
spec:
secretName: bamboo-tls
issuerRef:
name: letsencrypt
commonName: bamboo.pidgin.im
dnsNames:
- bamboo.pidgin.im
acme:
config:
- http01:
ingress: bamboo
domains:
- bamboo.pidgin.im
---