move everything top level so it can be used by the k3s built-in helm-controller. add woodpecker ci config.
This commit is contained in:
60
unused/ingress-nginx/kiwix.yml
Normal file
60
unused/ingress-nginx/kiwix.yml
Normal file
@@ -0,0 +1,60 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: kiwix
|
||||
namespace: ingress-nginx
|
||||
spec:
|
||||
ports:
|
||||
- name: http
|
||||
port: 80
|
||||
protocol: TCP
|
||||
targetPort: 8080
|
||||
clusterIP: None
|
||||
type: ClusterIP
|
||||
|
||||
---
|
||||
|
||||
apiVersion: discovery.k8s.io/v1
|
||||
kind: EndpointSlice
|
||||
metadata:
|
||||
name: kiwix
|
||||
namespace: ingress-nginx
|
||||
labels:
|
||||
kubernetes.io/service-name: kiwix
|
||||
addressType: IPv4
|
||||
ports:
|
||||
- name: http
|
||||
protocol: TCP
|
||||
port: 8080
|
||||
endpoints:
|
||||
- addresses:
|
||||
- "192.168.1.178"
|
||||
conditions:
|
||||
ready: true
|
||||
---
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: kiwix
|
||||
namespace: ingress-nginx
|
||||
annotations:
|
||||
nginx.ingress.kubernetes.io/proxy-read-timeout: "3600"
|
||||
nginx.ingress.kubernetes.io/proxy-send-timeout: "3600"
|
||||
cert-manager.io/cluster-issuer: "letsencrypt-cluster-issuer"
|
||||
spec:
|
||||
ingressClassName: "nginx"
|
||||
tls:
|
||||
- secretName: kiwix-tls
|
||||
hosts:
|
||||
- wiki.keligrubb.com
|
||||
rules:
|
||||
- host: wiki.keligrubb.com
|
||||
http:
|
||||
paths:
|
||||
- pathType: Prefix
|
||||
path: "/"
|
||||
backend:
|
||||
service:
|
||||
name: kiwix
|
||||
port:
|
||||
number: 80
|
||||
60
unused/ingress-nginx/media.yml
Normal file
60
unused/ingress-nginx/media.yml
Normal file
@@ -0,0 +1,60 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: media
|
||||
namespace: ingress-nginx
|
||||
spec:
|
||||
ports:
|
||||
- name: http
|
||||
port: 80
|
||||
protocol: TCP
|
||||
targetPort: 8096
|
||||
clusterIP: None
|
||||
type: ClusterIP
|
||||
|
||||
---
|
||||
|
||||
apiVersion: discovery.k8s.io/v1
|
||||
kind: EndpointSlice
|
||||
metadata:
|
||||
name: media
|
||||
namespace: ingress-nginx
|
||||
labels:
|
||||
kubernetes.io/service-name: media
|
||||
addressType: IPv4
|
||||
ports:
|
||||
- name: http
|
||||
protocol: TCP
|
||||
port: 8096
|
||||
endpoints:
|
||||
- addresses:
|
||||
- "192.168.1.178"
|
||||
conditions:
|
||||
ready: true
|
||||
---
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: media
|
||||
namespace: ingress-nginx
|
||||
annotations:
|
||||
nginx.ingress.kubernetes.io/proxy-read-timeout: "3600"
|
||||
nginx.ingress.kubernetes.io/proxy-send-timeout: "3600"
|
||||
cert-manager.io/cluster-issuer: "letsencrypt-cluster-issuer"
|
||||
spec:
|
||||
ingressClassName: "nginx"
|
||||
tls:
|
||||
- secretName: media-tls
|
||||
hosts:
|
||||
- media.keligrubb.com
|
||||
rules:
|
||||
- host: media.keligrubb.com
|
||||
http:
|
||||
paths:
|
||||
- pathType: Prefix
|
||||
path: "/"
|
||||
backend:
|
||||
service:
|
||||
name: media
|
||||
port:
|
||||
number: 80
|
||||
Reference in New Issue
Block a user