diff --git a/api/applications/get_applications_handler.go b/api/applications/get_applications_handler.go index 7f2aca21..de7bcb24 100644 --- a/api/applications/get_applications_handler.go +++ b/api/applications/get_applications_handler.go @@ -226,6 +226,10 @@ func getLatestJobPerApplication(ctx context.Context, radixClient versioned.Inter var latestJob *v1.RadixJob for _, job := range jobs { + if job.Status.Started == nil { + continue + } + if latestJob == nil || job.Status.Started.After(latestJob.Status.Started.Time) { latestJob = &job } diff --git a/radixconfig.yaml b/radixconfig.yaml index bb333a1a..27fc3277 100644 --- a/radixconfig.yaml +++ b/radixconfig.yaml @@ -37,6 +37,10 @@ spec: PROMETHEUS_URL: http://prometheus-operator-prometheus.monitor.svc.cluster.local:9090 OIDC_AUDIENCE: "6dae42f8-4368-4678-94ff-3960e28e3630" OIDC_ISSUER: "https://sts.windows.net/3aa4a235-b6e2-48d5-9195-7fcf05b459b0/" + OIDC_AZURE_AUDIENCE: "" + OIDC_AZURE_ISSUER: "" + OIDC_KUBERNETES_ISSUER: "" + OIDC_KUBERNETES_AUDIENCE: "" environmentConfig: - environment: qa horizontalScaling: