40 lines
869 B
YAML
40 lines
869 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Namespace
|
|
metadata:
|
|
name: smokeping
|
|
---
|
|
apiVersion: helm.cattle.io/v1
|
|
kind: HelmChart
|
|
metadata:
|
|
name: smokeping
|
|
namespace: kube-system
|
|
spec:
|
|
targetNamespace: smokeping
|
|
repo: https://nicholaswilde.github.io/helm-charts/
|
|
chart: smokeping
|
|
valuesContent: |-
|
|
image:
|
|
repository: ghcr.io/linuxserver/smokeping
|
|
pullPolicy: IfNotPresent
|
|
env:
|
|
TZ: "America/Chigaco"
|
|
ingress:
|
|
enabled: false
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
emptyDir: false
|
|
mountPath: /config
|
|
storageClass: local-path
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
skipuninstall: false
|
|
data:
|
|
enabled: true
|
|
emptyDir: false
|
|
mountPath: /data
|
|
storageClass: local-path
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
skipuninstall: false
|