add ingress pvc, helmRepo and helmRelease for pulse
All checks were successful
Validate Kubernetes Manifests / kubeconform (push) Successful in 2m16s
All checks were successful
Validate Kubernetes Manifests / kubeconform (push) Successful in 2m16s
This commit is contained in:
26
clusters/ipv6/monitoring/pulse/pulse-ingress.yml
Normal file
26
clusters/ipv6/monitoring/pulse/pulse-ingress.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: pulse-ingress
|
||||
namespace: monitoring
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: letsencrypt-cloudflare
|
||||
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
||||
spec:
|
||||
ingressClassName: traefik
|
||||
tls:
|
||||
- hosts:
|
||||
- pulse.akshun-lab.cc
|
||||
secretName: pulse-tls
|
||||
rules:
|
||||
- host: pulse.akshun-lab.cc
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: pulse
|
||||
port:
|
||||
number: 7655
|
||||
14
clusters/ipv6/monitoring/pulse/pulse-pvc.yml
Normal file
14
clusters/ipv6/monitoring/pulse/pulse-pvc.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: pulse-longhorn
|
||||
namespace: monitoring
|
||||
spec:
|
||||
resources:
|
||||
requests:
|
||||
storage: 1Gi
|
||||
volumeMode: Filesystem
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
storageClassName: longhorn
|
||||
23
clusters/ipv6/monitoring/pulse/pulse-release.yml
Normal file
23
clusters/ipv6/monitoring/pulse/pulse-release.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
---
|
||||
apiVersion: helm.toolkit.fluxcd.io/v2
|
||||
kind: HelmRelease
|
||||
metadata:
|
||||
name: pulse
|
||||
namespace: monitoring
|
||||
spec:
|
||||
interval: 6h
|
||||
chart:
|
||||
spec:
|
||||
chart: pulse
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: pulse
|
||||
namespace: flux-system
|
||||
interval: 6h
|
||||
values:
|
||||
persistence:
|
||||
enabled: true
|
||||
existingClaim: pulse-longhorn
|
||||
image:
|
||||
repository: rcourtman/pulse
|
||||
tag: 5.0.10
|
||||
10
clusters/ipv6/monitoring/pulse/pulse-repo.yml
Normal file
10
clusters/ipv6/monitoring/pulse/pulse-repo.yml
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
apiVersion: source.toolkit.fluxcd.io/v1
|
||||
kind: HelmRepository
|
||||
metadata:
|
||||
name: pulse
|
||||
namespace: flux-system
|
||||
spec:
|
||||
type: "oci"
|
||||
interval: 6h
|
||||
url: oci://ghcr.io/rcourtman/pulse-chart
|
||||
Reference in New Issue
Block a user