24 lines
537 B
YAML
24 lines
537 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: longhorn-system
|
|
|
|
resources:
|
|
- longhorn-ingress.yaml
|
|
|
|
helmCharts:
|
|
- name: longhorn
|
|
repo: https://charts.longhorn.io
|
|
version: v1.5.3 # Pin your version for stability
|
|
releaseName: longhorn
|
|
namespace: longhorn-system
|
|
valuesFile: values.yaml
|
|
|
|
patches:
|
|
- target:
|
|
kind: StorageClass
|
|
name: longhorn
|
|
patch: |-
|
|
- op: add
|
|
path: /metadata/annotations/storageclass.kubernetes.io~1is-default-class
|
|
value: "true" |