Skip to content

Commit

Permalink
Switch conductor volume claim to ReadWriteOnce
Browse files Browse the repository at this point in the history
ReadWriteMany is not required for these volumes, and we required the
control plane to not provide volumes of this type, so this access mode
is causing a problem.

Jira: OSPRH-7688
  • Loading branch information
steveb committed Jun 16, 2024
1 parent 59e70f6 commit a083e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ironicconductor/pvc.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func Pvc(instance *ironicv1.IronicConductor) *corev1.PersistentVolumeClaim {
},
Spec: corev1.PersistentVolumeClaimSpec{
AccessModes: []corev1.PersistentVolumeAccessMode{
corev1.ReadWriteMany,
corev1.ReadWriteOnce,
},
Resources: corev1.ResourceRequirements{
Requests: corev1.ResourceList{
Expand Down

0 comments on commit a083e0f

Please sign in to comment.