monorepo lab stuff, init zen
This commit is contained in:
parent
cfc15bba89
commit
645e09f9dd
54 changed files with 67498 additions and 406 deletions
6
clusters/lab/smokeping/kustomization.yaml
Normal file
6
clusters/lab/smokeping/kustomization.yaml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
namespace: smokeping
|
||||
resources:
|
||||
- smokeping-helm.yaml
|
||||
40
clusters/lab/smokeping/smokeping-helm.yaml
Normal file
40
clusters/lab/smokeping/smokeping-helm.yaml
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
---
|
||||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue