Skip to content

Commit 3c369c9

Browse files
authored
Merge pull request #18 from authzed/migration-sa
add serviceaccount to migration job
2 parents 0e967c1 + 2037277 commit 3c369c9

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

pkg/config/config.go

+11-10
Original file line numberDiff line numberDiff line change
@@ -404,16 +404,17 @@ func (c *Config) MigrationJob(migrationHash string) *applybatchv1.JobApplyConfig
404404
WithSpec(applybatchv1.JobSpec().WithTemplate(
405405
applycorev1.PodTemplateSpec().WithLabels(
406406
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))))
417418
}
418419

419420
func (c *Config) deploymentVolumes() []*applycorev1.VolumeApplyConfiguration {

0 commit comments

Comments
 (0)