Compare commits

...

3 commits

Author SHA1 Message Date
29924470ce Update dashboard VolSync Dashboard ( 1 → 3 ) 2024-10-28 03:02:57 +00:00
adde7e018b
.yaml please 2024-10-27 21:59:42 -05:00
cd6b92cd9d
convert to app-template 2024-10-27 21:58:52 -05:00
2 changed files with 66 additions and 33 deletions

View file

@ -1,18 +1,19 @@
---
# yaml-language-server: $schema=https://ks.hsn.dev/helm.toolkit.fluxcd.io/helmrelease_v2.json
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2.schema.json
apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
name: &app influxdb
namespace: monitoring
spec:
interval: 30m
chart:
spec:
chart: influxdb2
version: 2.1.2
chart: app-template
version: 3.5.1
sourceRef:
kind: HelmRepository
name: influxdata
name: bjw-s
namespace: flux-system
install:
remediation:
@ -20,35 +21,67 @@ spec:
upgrade:
cleanupOnFail: true
remediation:
strategy: rollback
retries: 3
strategy: rollback
values:
fullnameOverride: *app
securityContext:
allowPrivilegeEscalation: false
capabilities: { drop: ["ALL"] }
fsGroup: 568
fsGroupChangePolicy: OnRootMismatch
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 568
runAsGroup: 568
seccompProfile: { type: RuntimeDefault }
controllers:
influxdb:
annotations:
reloader.stakater.com/auto: "true"
containers:
app:
image:
repository: docker.io/influxdb
tag: 2.7.10-alpine
pullPolicy: IfNotPresent
env:
- name: INFLUXD_REPORTING_DISABLED
value: "true"
persistence:
storageClass: ceph-block
size: 50Gi
volumes:
- name: tmp
emptyDir: {}
mountPoints:
- name: tmp
mountPath: /tmp
INFLUXDB_ADMIN_USER_PASSWORD: "admin"
INFLUXDB_ADMIN_USER_TOKEN: ""
INFLUXD_REPORTING_DISABLED: true
probes:
liveness: &probe
type: "HTTP"
path: "/health"
port: &port 8086
spec:
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
readiness: *probe
startup:
enabled: false
resources:
limits:
cpu: 10m
memory: 50Mi
service:
port: 8086
app:
controller: influxdb
ports:
http:
port: *port
ingress:
enabled: true
main:
className: internal-nginx
hostname: "{{ Release.Name }}.jahanson.tech"
hosts:
- host: &host "{{ Release.Name }}.jahanson.tech"
paths:
- path: /
service:
identifier: app
port: http
tls:
- hosts:
- *host
persistence:
config:
enabled: true
existingClaim: *app
globalMounts:
- path: /var/lib/influxdb2

View file

@ -191,7 +191,7 @@ spec:
volsync:
# removate: depName="VolSync Dashboard"
gnetId: 21356
revision: 1
revision: 3
datasource:
- { name: DS_PROMETHEUS, value: Prometheus }
- { name: VAR_REPLICATIONDESTNAME, value: .*-dst }