54 lines
1.5 KiB
Diff
54 lines
1.5 KiB
Diff
--- application.yml 2023-07-25 22:20:02.300421340 +0300
|
|
+++ application.modded 2023-07-25 22:19:47.040360210 +0300
|
|
@@ -60,14 +60,14 @@
|
|
storageclass.kubernetes.io/is-default-class: "true"
|
|
provisioner: driver.longhorn.io
|
|
allowVolumeExpansion: true
|
|
- reclaimPolicy: "Delete"
|
|
+ reclaimPolicy: "Retain"
|
|
volumeBindingMode: Immediate
|
|
parameters:
|
|
- numberOfReplicas: "3"
|
|
+ numberOfReplicas: "2"
|
|
staleReplicaTimeout: "30"
|
|
fromBackup: ""
|
|
- fsType: "ext4"
|
|
- dataLocality: "disabled"
|
|
+ fsType: "xfs"
|
|
+ dataLocality: "best-effort"
|
|
---
|
|
# Source: longhorn/templates/crds.yaml
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
@@ -4085,6 +4085,15 @@
|
|
app.kubernetes.io/version: v1.5.1
|
|
app: longhorn-manager
|
|
spec:
|
|
+ tolerations:
|
|
+ - key: dedicated
|
|
+ operator: Equal
|
|
+ value: storage
|
|
+ effect: NoSchedule
|
|
+ - key: arch
|
|
+ operator: Equal
|
|
+ value: arm64
|
|
+ effect: NoSchedule
|
|
containers:
|
|
- name: longhorn-manager
|
|
image: longhornio/longhorn-manager:v1.5.1
|
|
@@ -4188,6 +4197,15 @@
|
|
app.kubernetes.io/version: v1.5.1
|
|
app: longhorn-driver-deployer
|
|
spec:
|
|
+ tolerations:
|
|
+ - key: dedicated
|
|
+ operator: Equal
|
|
+ value: storage
|
|
+ effect: NoSchedule
|
|
+ - key: arch
|
|
+ operator: Equal
|
|
+ value: arm64
|
|
+ effect: NoSchedule
|
|
initContainers:
|
|
- name: wait-longhorn-manager
|
|
image: longhornio/longhorn-manager:v1.5.1
|