We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3329512 + bb1efbb commit 1b64282Copy full SHA for 1b64282
1 file changed
internal/openstackclient/funcs.go
@@ -77,10 +77,11 @@ func ClientPodSpec(
77
Volumes: volumes,
78
Containers: []corev1.Container{
79
{
80
- Name: "openstackclient",
81
- Image: instance.Spec.ContainerImage,
82
- Command: []string{"/bin/sleep"},
83
- Args: []string{"infinity"},
+ Name: "openstackclient",
+ Image: instance.Spec.ContainerImage,
+ ImagePullPolicy: corev1.PullIfNotPresent,
+ Command: []string{"/bin/sleep"},
84
+ Args: []string{"infinity"},
85
SecurityContext: &corev1.SecurityContext{
86
RunAsUser: ptr.To[int64](42401),
87
RunAsGroup: ptr.To[int64](42401),
0 commit comments