@@ -404,16 +404,17 @@ func (c *Config) MigrationJob(migrationHash string) *applybatchv1.JobApplyConfig
404
404
WithSpec (applybatchv1 .JobSpec ().WithTemplate (
405
405
applycorev1 .PodTemplateSpec ().WithLabels (
406
406
metadata .LabelsForComponent (c .Name , metadata .ComponentMigrationJobLabelValue ),
407
- ).WithSpec (applycorev1 .PodSpec ().WithContainers (
408
- applycorev1 .Container ().WithName (name ).WithImage (c .TargetSpiceDBImage ).WithCommand (c .MigrationConfig .SpiceDBCmd , "migrate" , "head" ).WithEnv (
409
- envVars ... ,
410
- ).WithVolumeMounts (c .jobVolumeMounts ()... ).WithPorts (
411
- applycorev1 .ContainerPort ().WithName ("grpc" ).WithContainerPort (50051 ),
412
- applycorev1 .ContainerPort ().WithName ("dispatch" ).WithContainerPort (50053 ),
413
- applycorev1 .ContainerPort ().WithName ("gateway" ).WithContainerPort (8443 ),
414
- applycorev1 .ContainerPort ().WithName ("prometheus" ).WithContainerPort (9090 ),
415
- ).WithTerminationMessagePolicy (corev1 .TerminationMessageFallbackToLogsOnError ),
416
- ).WithVolumes (c .jobVolumes ()... ).WithRestartPolicy (corev1 .RestartPolicyNever ))))
407
+ ).WithSpec (applycorev1 .PodSpec ().WithServiceAccountName (c .Name ).
408
+ WithContainers (
409
+ applycorev1 .Container ().WithName (name ).WithImage (c .TargetSpiceDBImage ).WithCommand (c .MigrationConfig .SpiceDBCmd , "migrate" , "head" ).WithEnv (
410
+ envVars ... ,
411
+ ).WithVolumeMounts (c .jobVolumeMounts ()... ).WithPorts (
412
+ applycorev1 .ContainerPort ().WithName ("grpc" ).WithContainerPort (50051 ),
413
+ applycorev1 .ContainerPort ().WithName ("dispatch" ).WithContainerPort (50053 ),
414
+ applycorev1 .ContainerPort ().WithName ("gateway" ).WithContainerPort (8443 ),
415
+ applycorev1 .ContainerPort ().WithName ("prometheus" ).WithContainerPort (9090 ),
416
+ ).WithTerminationMessagePolicy (corev1 .TerminationMessageFallbackToLogsOnError ),
417
+ ).WithVolumes (c .jobVolumes ()... ).WithRestartPolicy (corev1 .RestartPolicyNever ))))
417
418
}
418
419
419
420
func (c * Config ) deploymentVolumes () []* applycorev1.VolumeApplyConfiguration {
0 commit comments