forked from k-space/kube
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			975 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			975 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: kustomize.config.k8s.io/v1beta1
 | |
| kind: Kustomization
 | |
| 
 | |
| namespace: csi-proxmox
 | |
| 
 | |
| helmCharts:
 | |
|   - includeCRDs: true
 | |
|     name: &name proxmox-csi-plugin
 | |
|     releaseName: *name
 | |
|     repo: oci://ghcr.io/sergelogvinov/charts
 | |
|     valuesInline:
 | |
|       node:
 | |
|         tolerations:
 | |
|           - key: node-role.kubernetes.io/control-plane
 | |
|             effect: NoSchedule
 | |
|       storageClass:
 | |
|         - name: proxmox
 | |
|           fstype: xfs
 | |
|           storage: ks-pvs
 | |
|           cache: none
 | |
|           ssd: "true"
 | |
| # Not in use, migrating off of NAS…
 | |
| #        - name: proxmox-nas
 | |
| #          fstype: xfs
 | |
| #          storage: ks-pvs-nas
 | |
| #          cache: none
 | |
| #          # ssd is false, https://github.com/sergelogvinov/proxmox-csi-plugin/issues/404
 | |
|     version: 0.3.12 # https://github.com/sergelogvinov/proxmox-csi-plugin/pkgs/container/charts%2Fproxmox-csi-plugin
 | |
| 
 | |
| resources:
 | |
| - ssh://git@git.k-space.ee/secretspace/kube/proxmox-csi # secrets: proxmox-csi-plugin:config.yaml (cluster info)
 |