mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-30 15:37:44 +02:00

| datasource | package | from | to | | ---------- | ----------------- | ------- | ------- | | helm | rook-ceph | v1.10.6 | v1.10.7 | | helm | rook-ceph-cluster | v1.10.6 | v1.10.7 | | docker | rook/ceph | v1.10.6 | v1.10.7 | | docker | rook/ceph | v1.10.6 | v1.10.7 | | docker | rook/ceph | v1.10.6 | v1.10.7 | | docker | rook/ceph | v1.10.6 | v1.10.7 |
74 lines
1.5 KiB
YAML
74 lines
1.5 KiB
YAML
---
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: &app rook-toolbox
|
|
namespace: rook-ceph
|
|
spec:
|
|
interval: 15m
|
|
chart:
|
|
spec:
|
|
chart: app-template
|
|
version: 1.2.0
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: bjw-s
|
|
namespace: flux-system
|
|
install:
|
|
createNamespace: true
|
|
remediation:
|
|
retries: 5
|
|
upgrade:
|
|
remediation:
|
|
retries: 5
|
|
values:
|
|
global:
|
|
nameOverride: *app
|
|
image:
|
|
repository: rook/ceph
|
|
tag: v1.10.7
|
|
command: ["/usr/local/bin/toolbox.sh"]
|
|
env:
|
|
ROOK_CEPH_USERNAME:
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: rook-ceph-mon
|
|
key: ceph-username
|
|
ROOK_CEPH_SECRET:
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: rook-ceph-mon
|
|
key: ceph-secret
|
|
hostNetwork: true
|
|
podSecurityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
securityContext:
|
|
privileged: true
|
|
persistence:
|
|
dev:
|
|
enabled: true
|
|
type: hostPath
|
|
hostPath: /dev
|
|
mountPath: /dev
|
|
libmodules:
|
|
enabled: true
|
|
type: hostPath
|
|
hostPath: /lib/modules
|
|
mountPath: /lib/modules
|
|
mon-endpoint-volume:
|
|
enabled: true
|
|
type: configMap
|
|
name: rook-ceph-mon-endpoints
|
|
subPath: data
|
|
mountPath: /etc/rook/mon-endpoints
|
|
readOnly: true
|
|
sysbus:
|
|
enabled: true
|
|
type: hostPath
|
|
hostPath: /sys/bus
|
|
mountPath: /sys/bus
|
|
service:
|
|
main:
|
|
enabled: false
|