Compare commits

..

1 commit

Author SHA1 Message Date
d5b2a38669 Update dashboard VolSync Dashboard ( 1 → 3 ) 2024-10-28 02:32:58 +00:00

View file

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