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.
1 parent 9fec266 commit 3aab33dCopy full SHA for 3aab33d
internal/controllers/provider/install/job.go
@@ -84,11 +84,13 @@ func (m *jobMutator) Mutate(j *v1.Job) error {
84
ImagePullPolicy: corev1.PullIfNotPresent,
85
Args: initCmd,
86
Env: env,
87
+ VolumeMounts: m.values.deploymentSpec.ExtraVolumeMounts,
88
},
89
90
ServiceAccountName: m.values.NamespacedResourceName(initPrefix),
91
ImagePullSecrets: m.values.ImagePullSecrets(),
92
RestartPolicy: corev1.RestartPolicyNever,
93
+ Volumes: m.values.deploymentSpec.ExtraVolumes,
94
95
96
}
0 commit comments