Add netflux-homepage service
This commit is contained in:
parent
d9923385ec
commit
73b46f5bf0
|
@ -0,0 +1,52 @@
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: netflux-homepage
|
||||||
|
labels:
|
||||||
|
app: netflux-homepage
|
||||||
|
component: web
|
||||||
|
app.kubernetes.io/name: netflux-homepage
|
||||||
|
app.kubernetes.io/instance: netflux-homepage
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: netflux-homepage
|
||||||
|
component: web
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: netflux-homepage
|
||||||
|
component: web
|
||||||
|
app.kubernetes.io/name: netflux-homepage
|
||||||
|
app.kubernetes.io/instance: netflux-homepage
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- image: netfluxio/homepage:latest
|
||||||
|
imagePullPolicy: Always
|
||||||
|
name: netflux-homepage
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
protocol: TCP
|
||||||
|
containerPort: 9000
|
||||||
|
env:
|
||||||
|
- name: NETFLUX_MATRIX_HOSTNAME
|
||||||
|
value: synapse.netflux.io:443
|
||||||
|
- name: NETFLUX_MATRIX_BASE_URL
|
||||||
|
value: https://synapse.matrix.io
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: "16Mi"
|
||||||
|
cpu: "50m"
|
||||||
|
limits:
|
||||||
|
memory: "64Mi"
|
||||||
|
cpu: "100m"
|
||||||
|
livenessProbe:
|
||||||
|
failureThreshold: 10
|
||||||
|
httpGet:
|
||||||
|
path: /
|
||||||
|
port: 9000
|
||||||
|
scheme: HTTP
|
||||||
|
initialDelaySeconds: 10
|
||||||
|
periodSeconds: 10
|
||||||
|
successThreshold: 1
|
||||||
|
timeoutSeconds: 3
|
|
@ -74,3 +74,13 @@ spec:
|
||||||
name: synapse
|
name: synapse
|
||||||
port:
|
port:
|
||||||
name: http
|
name: http
|
||||||
|
- host: netflux.internal
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- pathType: Prefix
|
||||||
|
path: "/"
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: netflux-homepage
|
||||||
|
port:
|
||||||
|
name: http
|
||||||
|
|
|
@ -90,6 +90,9 @@ resources:
|
||||||
- statefulset-synapse.yaml
|
- statefulset-synapse.yaml
|
||||||
- svc-synapse.yaml
|
- svc-synapse.yaml
|
||||||
|
|
||||||
|
- deploy-netflux-homepage.yaml
|
||||||
|
- svc-netflux-homepage.yaml
|
||||||
|
|
||||||
configMapGenerator:
|
configMapGenerator:
|
||||||
- name: gitea-scripts
|
- name: gitea-scripts
|
||||||
files:
|
files:
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: netflux-homepage
|
||||||
|
app.kubernetes.io/instance: netflux-homepage
|
||||||
|
app.kubernetes.io/name: netflux-homepage
|
||||||
|
name: netflux-homepage
|
||||||
|
spec:
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
port: 80
|
||||||
|
protocol: TCP
|
||||||
|
targetPort: 9000
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/instance: netflux-homepage
|
||||||
|
app.kubernetes.io/name: netflux-homepage
|
||||||
|
type: ClusterIP
|
|
@ -15,6 +15,7 @@
|
||||||
- git.netflux.io
|
- git.netflux.io
|
||||||
- drone.netflux.io
|
- drone.netflux.io
|
||||||
- synapse.netflux.io
|
- synapse.netflux.io
|
||||||
|
- netflux.io
|
||||||
secretName: prod-ingress-tls
|
secretName: prod-ingress-tls
|
||||||
- op: replace
|
- op: replace
|
||||||
path: /spec/rules/0/host
|
path: /spec/rules/0/host
|
||||||
|
@ -34,3 +35,6 @@
|
||||||
- op: replace
|
- op: replace
|
||||||
path: /spec/rules/5/host
|
path: /spec/rules/5/host
|
||||||
value: synapse.netflux.io
|
value: synapse.netflux.io
|
||||||
|
- op: replace
|
||||||
|
path: /spec/rules/6/host
|
||||||
|
value: netflux.io
|
||||||
|
|
Loading…
Reference in New Issue