forked from k-space/kube
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| --- longhorn.yaml	2024-07-07 14:16:47.953593433 +0300
 | |
| +++ longhorn.modded	2024-07-07 14:18:51.103452617 +0300
 | |
| @@ -86,14 +86,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"
 | |
|        unmapMarkSnapChainRemoved: "ignored"
 | |
|  ---
 | |
|  # Source: longhorn/templates/crds.yaml
 | |
| @@ -4379,6 +4379,15 @@
 | |
|          app.kubernetes.io/version: v1.6.2
 | |
|          app: longhorn-manager
 | |
|      spec:
 | |
| +      tolerations:
 | |
| +      - key: dedicated
 | |
| +        operator: Equal
 | |
| +        value: nvr
 | |
| +        effect: NoSchedule
 | |
| +      - key: arch
 | |
| +        operator: Equal
 | |
| +        value: arm64
 | |
| +        effect: NoSchedule
 | |
|        containers:
 | |
|        - name: longhorn-manager
 | |
|          image: longhornio/longhorn-manager:v1.6.2
 | |
| @@ -4484,6 +4493,15 @@
 | |
|          app.kubernetes.io/version: v1.6.2
 | |
|          app: longhorn-driver-deployer
 | |
|      spec:
 | |
| +      tolerations:
 | |
| +      - key: dedicated
 | |
| +        operator: Equal
 | |
| +        value: nvr
 | |
| +        effect: NoSchedule
 | |
| +      - key: arch
 | |
| +        operator: Equal
 | |
| +        value: arm64
 | |
| +        effect: NoSchedule
 | |
|        initContainers:
 | |
|          - name: wait-longhorn-manager
 | |
|            image: longhornio/longhorn-manager:v1.6.2
 |