mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-16 21:08:00 +00:00
74 lines
1.7 KiB
Go
74 lines
1.7 KiB
Go
|
package clean
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/orbos/pkg/labels"
|
||
|
"github.com/caos/zitadel/operator/helpers"
|
||
|
batchv1 "k8s.io/api/batch/v1"
|
||
|
corev1 "k8s.io/api/core/v1"
|
||
|
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||
|
)
|
||
|
|
||
|
func getJob(
|
||
|
namespace string,
|
||
|
nameLabels *labels.Name,
|
||
|
nodeselector map[string]string,
|
||
|
tolerations []corev1.Toleration,
|
||
|
secretName string,
|
||
|
secretKey string,
|
||
|
version string,
|
||
|
command string,
|
||
|
) *batchv1.Job {
|
||
|
|
||
|
return &batchv1.Job{
|
||
|
ObjectMeta: v1.ObjectMeta{
|
||
|
Name: nameLabels.Name(),
|
||
|
Namespace: namespace,
|
||
|
Labels: labels.MustK8sMap(nameLabels),
|
||
|
},
|
||
|
Spec: batchv1.JobSpec{
|
||
|
Template: corev1.PodTemplateSpec{
|
||
|
Spec: corev1.PodSpec{
|
||
|
NodeSelector: nodeselector,
|
||
|
Tolerations: tolerations,
|
||
|
RestartPolicy: corev1.RestartPolicyNever,
|
||
|
Containers: []corev1.Container{{
|
||
|
Name: nameLabels.Name(),
|
||
|
Image: image + ":" + version,
|
||
|
Command: []string{
|
||
|
"/bin/bash",
|
||
|
"-c",
|
||
|
command,
|
||
|
},
|
||
|
VolumeMounts: []corev1.VolumeMount{{
|
||
|
Name: internalSecretName,
|
||
|
MountPath: certPath,
|
||
|
}, {
|
||
|
Name: secretKey,
|
||
|
SubPath: secretKey,
|
||
|
MountPath: secretPath,
|
||
|
}},
|
||
|
ImagePullPolicy: corev1.PullAlways,
|
||
|
}},
|
||
|
Volumes: []corev1.Volume{{
|
||
|
Name: internalSecretName,
|
||
|
VolumeSource: corev1.VolumeSource{
|
||
|
Secret: &corev1.SecretVolumeSource{
|
||
|
SecretName: rootSecretName,
|
||
|
DefaultMode: helpers.PointerInt32(defaultMode),
|
||
|
},
|
||
|
},
|
||
|
}, {
|
||
|
Name: secretKey,
|
||
|
VolumeSource: corev1.VolumeSource{
|
||
|
Secret: &corev1.SecretVolumeSource{
|
||
|
SecretName: secretName,
|
||
|
},
|
||
|
},
|
||
|
}},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
}
|