9a72059a62
updating all the names of services and their respective filenames to better match the way puppet infra is used in my lab. - puppet -> the compilers - puppetca -> the master(s) - puppetdb -> the puppetdb - puppetboard -> puppetboard updated references to these services in all other definitions I could find note: need a good way to test these changes with argocd
29 lines
855 B
YAML
29 lines
855 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
annotations:
|
|
external-dns.alpha.kubernetes.io/hostname: puppetca.k8s.syd1.au.unkin.net
|
|
external-dns.alpha.kubernetes.io/target: 198.18.200.0
|
|
kubernetes.io/ingress.class: nginx
|
|
nginx.ingress.kubernetes.io/proxy-read-timeout: "600"
|
|
nginx.ingress.kubernetes.io/ssl-passthrough: "true"
|
|
labels:
|
|
app.kubernetes.io/component: puppetserver
|
|
app.kubernetes.io/instance: puppetserver
|
|
app.kubernetes.io/name: puppetserver
|
|
app.kubernetes.io/version: 8.8.0
|
|
name: puppetca
|
|
namespace: puppet
|
|
spec:
|
|
rules:
|
|
- host: puppetca.k8s.syd1.au.unkin.net
|
|
http:
|
|
paths:
|
|
- backend:
|
|
service:
|
|
name: puppetca
|
|
port:
|
|
number: 8140
|
|
path: /
|
|
pathType: ImplementationSpecific
|