Skip to content

Commit 8f77f4b

Browse files
authored
Revert accidental VolumeMount removal introduced by #634 (#642)
* Revert accidental VolumeMount removal introduced by #634 Signed-off-by: pdefreitas <[email protected]> * go fmt Signed-off-by: pdefreitas <[email protected]> * Fix place where VolumeMount is placed Signed-off-by: pdefreitas <[email protected]> --------- Signed-off-by: pdefreitas <[email protected]>
1 parent edbb6a1 commit 8f77f4b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pkg/resources/k8sgpt.go

+6
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,12 @@ func GetDeployment(config v1alpha1.K8sGPT, outOfClusterMode bool, c client.Clien
357357
}(),
358358
},
359359
},
360+
VolumeMounts: []corev1.VolumeMount{
361+
{
362+
MountPath: "/k8sgpt-data",
363+
Name: "k8sgpt-vol",
364+
},
365+
},
360366
},
361367
},
362368
Volumes: []corev1.Volume{

0 commit comments

Comments
 (0)