Skip to content

Commit

Permalink
Move from Job to CronJob
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-br committed Sep 23, 2023
1 parent 8a4eec3 commit edc760d
Showing 1 changed file with 23 additions and 16 deletions.
39 changes: 23 additions & 16 deletions pulumi-operator-kubernetes/src/stack/service.rs
@@ -1,6 +1,6 @@
use async_trait::async_trait;
use futures::{StreamExt, TryStreamExt};
use k8s_openapi::api::batch::v1::Job;
use k8s_openapi::api::batch::v1::{CronJob, Job};
use k8s_openapi::api::core::v1::{Container, ServiceAccount};
use k8s_openapi::api::rbac::v1::{Role, RoleBinding};
use k8s_openapi::apimachinery::pkg::apis::meta::v1::ObjectMeta;
Expand Down Expand Up @@ -59,7 +59,6 @@ impl KubernetesPulumiStackService {
let mut main_container: Container = serde_json::from_value(json!({
"name": "pulumi",
"image": "ghcr.io/stromee/pulumi-operator/pulumi-operator-kubernetes-job:1.0.18",
"command": ["sleep", "10000"],
"env": [{
"name": "PULUMI_STACK",
"value": name
Expand Down Expand Up @@ -98,23 +97,31 @@ impl KubernetesPulumiStackService {

let job = serde_json::from_value(json!({
"apiVersion": "batch/v1",
"kind": "Job",
"kind": "CronJob",
"metadata": {
"name": name,
"namespace": namespace.clone()
},
"spec": {
"template": {
"metadata": {
"name": "pulumi"
},
"schedule": "* * * * *",
"concurrencyPolicy": "Forbid",
"jobTemplate": {
"spec": {
"initContainers": init_containers,
"containers": [main_container],
"volumes": extra_volumes,
"serviceAccountName": &name,
"restartPolicy": "Never"
}
"template": {
"metadata": {
"name": "pulumi"
},
"spec": {
"initContainers": init_containers,
"containers": [main_container],
"volumes": extra_volumes,
"serviceAccountName": &name,
"restartPolicy": "Never"
}
},
"successfulJobsHistoryLimit": 1,
"failedJobsHistoryLimit": 1
},
},
"backoffLimit": 100,
"successfulJobsHistoryLimit": 1,
Expand All @@ -125,7 +132,7 @@ impl KubernetesPulumiStackService {

let api = self
.kubernetes_service
.all_in_namespace_api::<Job>(namespace.clone())
.all_in_namespace_api::<CronJob>(namespace.clone())
.await;

api
Expand Down Expand Up @@ -272,7 +279,7 @@ impl KubernetesPulumiStackService {
let name = stack.metadata.name.unwrap();
let api = self
.kubernetes_service
.all_in_namespace_api::<Job>(namespace.clone())
.all_in_namespace_api::<CronJob>(namespace.clone())
.await;

if api.get(&name).await.is_err() {
Expand All @@ -291,7 +298,7 @@ impl KubernetesPulumiStackService {
.expect("Failed to watch pod")
.boxed();

let timeout_duration = Duration::from_secs(20);
let timeout_duration = Duration::from_secs(1800);
timeout(timeout_duration, async {
while let Some(status) =
stream.try_next().await.expect("Error while watching")
Expand Down

0 comments on commit edc760d

Please sign in to comment.