{
    "apiVersion": "v1",
    "items": [
        {
            "apiVersion": "tekton.dev/v1",
            "kind": "PipelineRun",
            "metadata": {
                "annotations": {
                    "chains.tekton.dev/signed": "true",
                    "kueue.konflux-ci.dev/requests-mintmaker": "1",
                    "results.tekton.dev/record": "mintmaker/results/54ed49b3-86ef-4b32-a04c-63308081838a/records/54ed49b3-86ef-4b32-a04c-63308081838a",
                    "results.tekton.dev/result": "mintmaker/results/54ed49b3-86ef-4b32-a04c-63308081838a"
                },
                "creationTimestamp": "2026-04-22T12:00:18Z",
                "finalizers": [
                    "chains.tekton.dev/pipelinerun",
                    "results.tekton.dev/pipelinerun"
                ],
                "generation": 2,
                "labels": {
                    "kueue.x-k8s.io/priority-class": "konflux-dependency-update",
                    "kueue.x-k8s.io/queue-name": "pipelines-queue",
                    "mintmaker.appstudio.redhat.com/application": "build-suite-test-application-loyt",
                    "mintmaker.appstudio.redhat.com/branch": "base-otqdee",
                    "mintmaker.appstudio.redhat.com/component": "gh-test-custom-branch-rkvkyk",
                    "mintmaker.appstudio.redhat.com/git-host": "github.com",
                    "mintmaker.appstudio.redhat.com/git-platform": "github",
                    "mintmaker.appstudio.redhat.com/namespace": "build-e2e-gzjk",
                    "mintmaker.appstudio.redhat.com/repo-branch-hash": "b409d454f54d",
                    "mintmaker.appstudio.redhat.com/repository": "redhat-appstudio-qe_devfile-sample-hello-world-qnvgua",
                    "tekton.dev/pipeline": "renovate-04221200-8caf12cd"
                },
                "name": "renovate-04221200-8caf12cd",
                "namespace": "mintmaker",
                "resourceVersion": "75399",
                "uid": "54ed49b3-86ef-4b32-a04c-63308081838a"
            },
            "spec": {
                "pipelineSpec": {
                    "tasks": [
                        {
                            "name": "build",
                            "taskSpec": {
                                "metadata": {},
                                "spec": null,
                                "steps": [
                                    {
                                        "computeResources": {
                                            "limits": {
                                                "cpu": "100m",
                                                "memory": "512Mi"
                                            },
                                            "requests": {
                                                "cpu": "100m",
                                                "memory": "512Mi"
                                            }
                                        },
                                        "image": "quay.io/konflux-ci/mintmaker-osv-database:latest",
                                        "name": "prepare-db",
                                        "script": "echo 'Copying OSV database to the shared workspace'; cp -r /data/osv-db /workspace/shared-data",
                                        "securityContext": {
                                            "allowPrivilegeEscalation": false,
                                            "capabilities": {
                                                "drop": [
                                                    "ALL"
                                                ]
                                            },
                                            "runAsNonRoot": true,
                                            "runAsUser": 1001120000
                                        }
                                    },
                                    {
                                        "computeResources": {
                                            "limits": {
                                                "cpu": "100m",
                                                "memory": "256Mi"
                                            },
                                            "requests": {
                                                "cpu": "100m",
                                                "memory": "256Mi"
                                            }
                                        },
                                        "image": "registry.access.redhat.com/ubi9",
                                        "name": "prepare-rpm-cert",
                                        "script": "[ ! -f \"/etc/renovate/secret/rpm-activationkey\" ] \u0026\u0026 echo 'RPM secret not found. Exiting.' \u0026\u0026 exit 0;echo 'Generating RPM certificate and copying it to shared workspace';KEY_NAME=$(cat /etc/renovate/secret/rpm-activationkey);ORG_ID=$(cat /etc/renovate/secret/rpm-org);subscription-manager register --activationkey=\"$KEY_NAME\" --org=\"$ORG_ID\";mkdir -p /workspace/shared-data/rpm-certs;cp /etc/pki/entitlement/*-key.pem /workspace/shared-data/rpm-certs/key.pem;cp $(find /etc/pki/entitlement -maxdepth 1 -type f -name '*.pem' ! -name '*-key.pem' -print -quit) /workspace/shared-data/rpm-certs/cert.pem",
                                        "securityContext": {
                                            "allowPrivilegeEscalation": false,
                                            "capabilities": {
                                                "drop": [
                                                    "ALL"
                                                ]
                                            },
                                            "runAsUser": 0
                                        }
                                    },
                                    {
                                        "computeResources": {
                                            "limits": {
                                                "cpu": "300m",
                                                "memory": "3584Mi"
                                            },
                                            "requests": {
                                                "cpu": "300m",
                                                "memory": "3584Mi"
                                            }
                                        },
                                        "env": [
                                            {
                                                "name": "HOME",
                                                "value": "/home/renovate"
                                            },
                                            {
                                                "name": "LOG_LEVEL",
                                                "value": "debug"
                                            },
                                            {
                                                "name": "LOG_FORMAT",
                                                "value": "json"
                                            },
                                            {
                                                "name": "OSV_OFFLINE_DISABLE_DOWNLOAD",
                                                "value": "true"
                                            },
                                            {
                                                "name": "OSV_OFFLINE_ROOT_DIR",
                                                "value": "/workspace/shared-data/osv-db"
                                            },
                                            {
                                                "name": "DNF_VAR_SSL_CLIENT_KEY",
                                                "value": "/workspace/shared-data/rpm-certs/key.pem"
                                            },
                                            {
                                                "name": "DNF_VAR_SSL_CLIENT_CERT",
                                                "value": "/workspace/shared-data/rpm-certs/cert.pem"
                                            },
                                            {
                                                "name": "RENOVATE_X_GITLAB_AUTO_MERGEABLE_CHECK_ATTEMPS",
                                                "value": "7"
                                            }
                                        ],
                                        "image": "quay.io/konflux-ci/mintmaker-renovate-image:latest",
                                        "name": "renovate",
                                        "script": "RENOVATE_TOKEN=$(cat /etc/renovate/secret/renovate-token) RENOVATE_CONFIG_FILE=/etc/renovate/config/config.js LOG_FILE=/workspace/shared-data/renovate-logs.json renovate || true",
                                        "securityContext": {
                                            "allowPrivilegeEscalation": false,
                                            "capabilities": {
                                                "drop": [
                                                    "ALL"
                                                ]
                                            },
                                            "runAsNonRoot": true,
                                            "runAsUser": 1001120000
                                        },
                                        "volumeMounts": [
                                            {
                                                "mountPath": "/etc/renovate/config",
                                                "name": "configmap-renovate-04221200-8caf12cd",
                                                "readOnly": true
                                            },
                                            {
                                                "mountPath": "/etc/renovate/secret",
                                                "name": "secret-renovate-04221200-8caf12cd-959477d7",
                                                "readOnly": true
                                            },
                                            {
                                                "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                                "name": "configmap-trusted-ca-6ct58987ht",
                                                "readOnly": true
                                            }
                                        ]
                                    }
                                ],
                                "volumes": [
                                    {
                                        "configMap": {
                                            "defaultMode": 420,
                                            "items": [
                                                {
                                                    "key": "config.js",
                                                    "path": "config.js"
                                                }
                                            ],
                                            "name": "renovate-04221200-8caf12cd",
                                            "optional": false
                                        },
                                        "name": "configmap-renovate-04221200-8caf12cd"
                                    },
                                    {
                                        "name": "secret-renovate-04221200-8caf12cd-959477d7",
                                        "secret": {
                                            "defaultMode": 420,
                                            "items": [
                                                {
                                                    "key": "renovate-token",
                                                    "path": "renovate-token"
                                                }
                                            ],
                                            "optional": false,
                                            "secretName": "renovate-04221200-8caf12cd"
                                        }
                                    },
                                    {
                                        "configMap": {
                                            "defaultMode": 420,
                                            "items": [
                                                {
                                                    "key": "ca-bundle.crt",
                                                    "path": "tls-ca-bundle.pem"
                                                }
                                            ],
                                            "name": "trusted-ca-6ct58987ht",
                                            "optional": false
                                        },
                                        "name": "configmap-trusted-ca-6ct58987ht"
                                    }
                                ],
                                "workspaces": [
                                    {
                                        "name": "shared-data"
                                    }
                                ]
                            },
                            "workspaces": [
                                {
                                    "name": "shared-data",
                                    "workspace": "shared-data"
                                }
                            ]
                        }
                    ],
                    "workspaces": [
                        {
                            "name": "shared-data"
                        }
                    ]
                },
                "taskRunTemplate": {
                    "podTemplate": {
                        "nodeSelector": {
                            "konflux-ci.dev/workload": "konflux-tenants"
                        },
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "konflux-ci.dev/workload",
                                "operator": "Equal",
                                "value": "konflux-tenants"
                            }
                        ]
                    },
                    "serviceAccountName": "mintmaker-controller-manager"
                },
                "timeouts": {
                    "pipeline": "1h0m0s"
                },
                "workspaces": [
                    {
                        "emptyDir": {},
                        "name": "shared-data"
                    }
                ]
            },
            "status": {
                "childReferences": [
                    {
                        "apiVersion": "tekton.dev/v1",
                        "kind": "TaskRun",
                        "name": "renovate-04221200-8caf12cd-build",
                        "pipelineTaskName": "build"
                    }
                ],
                "completionTime": "2026-04-22T12:02:20Z",
                "conditions": [
                    {
                        "lastTransitionTime": "2026-04-22T12:02:20Z",
                        "message": "Tasks Completed: 1 (Failed: 1, Cancelled 0), Skipped: 0",
                        "reason": "Failed",
                        "status": "False",
                        "type": "Succeeded"
                    }
                ],
                "pipelineSpec": {
                    "tasks": [
                        {
                            "name": "build",
                            "taskSpec": {
                                "metadata": {},
                                "spec": null,
                                "steps": [
                                    {
                                        "computeResources": {
                                            "limits": {
                                                "cpu": "100m",
                                                "memory": "512Mi"
                                            },
                                            "requests": {
                                                "cpu": "100m",
                                                "memory": "512Mi"
                                            }
                                        },
                                        "image": "quay.io/konflux-ci/mintmaker-osv-database:latest",
                                        "name": "prepare-db",
                                        "script": "echo 'Copying OSV database to the shared workspace'; cp -r /data/osv-db /workspace/shared-data",
                                        "securityContext": {
                                            "allowPrivilegeEscalation": false,
                                            "capabilities": {
                                                "drop": [
                                                    "ALL"
                                                ]
                                            },
                                            "runAsNonRoot": true,
                                            "runAsUser": 1001120000
                                        }
                                    },
                                    {
                                        "computeResources": {
                                            "limits": {
                                                "cpu": "100m",
                                                "memory": "256Mi"
                                            },
                                            "requests": {
                                                "cpu": "100m",
                                                "memory": "256Mi"
                                            }
                                        },
                                        "image": "registry.access.redhat.com/ubi9",
                                        "name": "prepare-rpm-cert",
                                        "script": "[ ! -f \"/etc/renovate/secret/rpm-activationkey\" ] \u0026\u0026 echo 'RPM secret not found. Exiting.' \u0026\u0026 exit 0;echo 'Generating RPM certificate and copying it to shared workspace';KEY_NAME=$(cat /etc/renovate/secret/rpm-activationkey);ORG_ID=$(cat /etc/renovate/secret/rpm-org);subscription-manager register --activationkey=\"$KEY_NAME\" --org=\"$ORG_ID\";mkdir -p /workspace/shared-data/rpm-certs;cp /etc/pki/entitlement/*-key.pem /workspace/shared-data/rpm-certs/key.pem;cp $(find /etc/pki/entitlement -maxdepth 1 -type f -name '*.pem' ! -name '*-key.pem' -print -quit) /workspace/shared-data/rpm-certs/cert.pem",
                                        "securityContext": {
                                            "allowPrivilegeEscalation": false,
                                            "capabilities": {
                                                "drop": [
                                                    "ALL"
                                                ]
                                            },
                                            "runAsUser": 0
                                        }
                                    },
                                    {
                                        "computeResources": {
                                            "limits": {
                                                "cpu": "300m",
                                                "memory": "3584Mi"
                                            },
                                            "requests": {
                                                "cpu": "300m",
                                                "memory": "3584Mi"
                                            }
                                        },
                                        "env": [
                                            {
                                                "name": "HOME",
                                                "value": "/home/renovate"
                                            },
                                            {
                                                "name": "LOG_LEVEL",
                                                "value": "debug"
                                            },
                                            {
                                                "name": "LOG_FORMAT",
                                                "value": "json"
                                            },
                                            {
                                                "name": "OSV_OFFLINE_DISABLE_DOWNLOAD",
                                                "value": "true"
                                            },
                                            {
                                                "name": "OSV_OFFLINE_ROOT_DIR",
                                                "value": "/workspace/shared-data/osv-db"
                                            },
                                            {
                                                "name": "DNF_VAR_SSL_CLIENT_KEY",
                                                "value": "/workspace/shared-data/rpm-certs/key.pem"
                                            },
                                            {
                                                "name": "DNF_VAR_SSL_CLIENT_CERT",
                                                "value": "/workspace/shared-data/rpm-certs/cert.pem"
                                            },
                                            {
                                                "name": "RENOVATE_X_GITLAB_AUTO_MERGEABLE_CHECK_ATTEMPS",
                                                "value": "7"
                                            }
                                        ],
                                        "image": "quay.io/konflux-ci/mintmaker-renovate-image:latest",
                                        "name": "renovate",
                                        "script": "RENOVATE_TOKEN=$(cat /etc/renovate/secret/renovate-token) RENOVATE_CONFIG_FILE=/etc/renovate/config/config.js LOG_FILE=/workspace/shared-data/renovate-logs.json renovate || true",
                                        "securityContext": {
                                            "allowPrivilegeEscalation": false,
                                            "capabilities": {
                                                "drop": [
                                                    "ALL"
                                                ]
                                            },
                                            "runAsNonRoot": true,
                                            "runAsUser": 1001120000
                                        },
                                        "volumeMounts": [
                                            {
                                                "mountPath": "/etc/renovate/config",
                                                "name": "configmap-renovate-04221200-8caf12cd",
                                                "readOnly": true
                                            },
                                            {
                                                "mountPath": "/etc/renovate/secret",
                                                "name": "secret-renovate-04221200-8caf12cd-959477d7",
                                                "readOnly": true
                                            },
                                            {
                                                "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                                "name": "configmap-trusted-ca-6ct58987ht",
                                                "readOnly": true
                                            }
                                        ]
                                    }
                                ],
                                "volumes": [
                                    {
                                        "configMap": {
                                            "defaultMode": 420,
                                            "items": [
                                                {
                                                    "key": "config.js",
                                                    "path": "config.js"
                                                }
                                            ],
                                            "name": "renovate-04221200-8caf12cd",
                                            "optional": false
                                        },
                                        "name": "configmap-renovate-04221200-8caf12cd"
                                    },
                                    {
                                        "name": "secret-renovate-04221200-8caf12cd-959477d7",
                                        "secret": {
                                            "defaultMode": 420,
                                            "items": [
                                                {
                                                    "key": "renovate-token",
                                                    "path": "renovate-token"
                                                }
                                            ],
                                            "optional": false,
                                            "secretName": "renovate-04221200-8caf12cd"
                                        }
                                    },
                                    {
                                        "configMap": {
                                            "defaultMode": 420,
                                            "items": [
                                                {
                                                    "key": "ca-bundle.crt",
                                                    "path": "tls-ca-bundle.pem"
                                                }
                                            ],
                                            "name": "trusted-ca-6ct58987ht",
                                            "optional": false
                                        },
                                        "name": "configmap-trusted-ca-6ct58987ht"
                                    }
                                ],
                                "workspaces": [
                                    {
                                        "name": "shared-data"
                                    }
                                ]
                            },
                            "workspaces": [
                                {
                                    "name": "shared-data",
                                    "workspace": "shared-data"
                                }
                            ]
                        }
                    ],
                    "workspaces": [
                        {
                            "name": "shared-data"
                        }
                    ]
                },
                "provenance": {
                    "featureFlags": {
                        "awaitSidecarReadiness": true,
                        "coschedule": "workspaces",
                        "enableAPIFields": "alpha",
                        "enableParamEnum": true,
                        "enableProvenanceInStatus": true,
                        "enforceNonfalsifiability": "none",
                        "maxResultSize": 4096,
                        "resultExtractionMethod": "termination-message",
                        "runningInEnvWithInjectedSidecars": true,
                        "verificationNoMatchPolicy": "ignore"
                    }
                },
                "spanContext": {
                    "traceparent": "00-2f30c4341597217cd5566c037234b613-9ad0f8e11b2e1a63-01"
                },
                "startTime": "2026-04-22T12:00:18Z"
            }
        },
        {
            "apiVersion": "tekton.dev/v1",
            "kind": "PipelineRun",
            "metadata": {
                "annotations": {
                    "chains.tekton.dev/signed": "true",
                    "kueue.konflux-ci.dev/requests-mintmaker": "1",
                    "results.tekton.dev/record": "mintmaker/results/e0ef881b-ff1c-449b-9928-b1eb55e5c358/records/e0ef881b-ff1c-449b-9928-b1eb55e5c358",
                    "results.tekton.dev/result": "mintmaker/results/e0ef881b-ff1c-449b-9928-b1eb55e5c358"
                },
                "creationTimestamp": "2026-04-22T12:00:18Z",
                "finalizers": [
                    "results.tekton.dev/pipelinerun",
                    "chains.tekton.dev/pipelinerun"
                ],
                "generation": 2,
                "labels": {
                    "kueue.x-k8s.io/priority-class": "konflux-dependency-update",
                    "kueue.x-k8s.io/queue-name": "pipelines-queue",
                    "mintmaker.appstudio.redhat.com/application": "build-suite-test-application-xatt",
                    "mintmaker.appstudio.redhat.com/branch": "base-trhzoh",
                    "mintmaker.appstudio.redhat.com/component": "gl-test-custom-branch-vomnsb",
                    "mintmaker.appstudio.redhat.com/git-host": "gitlab.com",
                    "mintmaker.appstudio.redhat.com/git-platform": "gitlab",
                    "mintmaker.appstudio.redhat.com/namespace": "build-e2e-txcm",
                    "mintmaker.appstudio.redhat.com/repo-branch-hash": "a37b6d6485e0",
                    "mintmaker.appstudio.redhat.com/repository": "konflux-qe_devfile-sample-hello-world-ewnzzf",
                    "tekton.dev/pipeline": "renovate-04221200-8f32a045"
                },
                "name": "renovate-04221200-8f32a045",
                "namespace": "mintmaker",
                "resourceVersion": "75555",
                "uid": "e0ef881b-ff1c-449b-9928-b1eb55e5c358"
            },
            "spec": {
                "pipelineSpec": {
                    "tasks": [
                        {
                            "name": "build",
                            "taskSpec": {
                                "metadata": {},
                                "spec": null,
                                "steps": [
                                    {
                                        "computeResources": {
                                            "limits": {
                                                "cpu": "100m",
                                                "memory": "512Mi"
                                            },
                                            "requests": {
                                                "cpu": "100m",
                                                "memory": "512Mi"
                                            }
                                        },
                                        "image": "quay.io/konflux-ci/mintmaker-osv-database:latest",
                                        "name": "prepare-db",
                                        "script": "echo 'Copying OSV database to the shared workspace'; cp -r /data/osv-db /workspace/shared-data",
                                        "securityContext": {
                                            "allowPrivilegeEscalation": false,
                                            "capabilities": {
                                                "drop": [
                                                    "ALL"
                                                ]
                                            },
                                            "runAsNonRoot": true,
                                            "runAsUser": 1001120000
                                        }
                                    },
                                    {
                                        "computeResources": {
                                            "limits": {
                                                "cpu": "100m",
                                                "memory": "256Mi"
                                            },
                                            "requests": {
                                                "cpu": "100m",
                                                "memory": "256Mi"
                                            }
                                        },
                                        "image": "registry.access.redhat.com/ubi9",
                                        "name": "prepare-rpm-cert",
                                        "script": "[ ! -f \"/etc/renovate/secret/rpm-activationkey\" ] \u0026\u0026 echo 'RPM secret not found. Exiting.' \u0026\u0026 exit 0;echo 'Generating RPM certificate and copying it to shared workspace';KEY_NAME=$(cat /etc/renovate/secret/rpm-activationkey);ORG_ID=$(cat /etc/renovate/secret/rpm-org);subscription-manager register --activationkey=\"$KEY_NAME\" --org=\"$ORG_ID\";mkdir -p /workspace/shared-data/rpm-certs;cp /etc/pki/entitlement/*-key.pem /workspace/shared-data/rpm-certs/key.pem;cp $(find /etc/pki/entitlement -maxdepth 1 -type f -name '*.pem' ! -name '*-key.pem' -print -quit) /workspace/shared-data/rpm-certs/cert.pem",
                                        "securityContext": {
                                            "allowPrivilegeEscalation": false,
                                            "capabilities": {
                                                "drop": [
                                                    "ALL"
                                                ]
                                            },
                                            "runAsUser": 0
                                        }
                                    },
                                    {
                                        "computeResources": {
                                            "limits": {
                                                "cpu": "300m",
                                                "memory": "3584Mi"
                                            },
                                            "requests": {
                                                "cpu": "300m",
                                                "memory": "3584Mi"
                                            }
                                        },
                                        "env": [
                                            {
                                                "name": "HOME",
                                                "value": "/home/renovate"
                                            },
                                            {
                                                "name": "LOG_LEVEL",
                                                "value": "debug"
                                            },
                                            {
                                                "name": "LOG_FORMAT",
                                                "value": "json"
                                            },
                                            {
                                                "name": "OSV_OFFLINE_DISABLE_DOWNLOAD",
                                                "value": "true"
                                            },
                                            {
                                                "name": "OSV_OFFLINE_ROOT_DIR",
                                                "value": "/workspace/shared-data/osv-db"
                                            },
                                            {
                                                "name": "DNF_VAR_SSL_CLIENT_KEY",
                                                "value": "/workspace/shared-data/rpm-certs/key.pem"
                                            },
                                            {
                                                "name": "DNF_VAR_SSL_CLIENT_CERT",
                                                "value": "/workspace/shared-data/rpm-certs/cert.pem"
                                            },
                                            {
                                                "name": "RENOVATE_X_GITLAB_AUTO_MERGEABLE_CHECK_ATTEMPS",
                                                "value": "7"
                                            }
                                        ],
                                        "image": "quay.io/konflux-ci/mintmaker-renovate-image:latest",
                                        "name": "renovate",
                                        "script": "RENOVATE_TOKEN=$(cat /etc/renovate/secret/renovate-token) RENOVATE_CONFIG_FILE=/etc/renovate/config/config.js LOG_FILE=/workspace/shared-data/renovate-logs.json renovate || true",
                                        "securityContext": {
                                            "allowPrivilegeEscalation": false,
                                            "capabilities": {
                                                "drop": [
                                                    "ALL"
                                                ]
                                            },
                                            "runAsNonRoot": true,
                                            "runAsUser": 1001120000
                                        },
                                        "volumeMounts": [
                                            {
                                                "mountPath": "/etc/renovate/config",
                                                "name": "configmap-renovate-04221200-8f32a045",
                                                "readOnly": true
                                            },
                                            {
                                                "mountPath": "/etc/renovate/secret",
                                                "name": "secret-renovate-04221200-8f32a045-45e9e889",
                                                "readOnly": true
                                            },
                                            {
                                                "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                                "name": "configmap-trusted-ca-6ct58987ht",
                                                "readOnly": true
                                            }
                                        ]
                                    }
                                ],
                                "volumes": [
                                    {
                                        "configMap": {
                                            "defaultMode": 420,
                                            "items": [
                                                {
                                                    "key": "config.js",
                                                    "path": "config.js"
                                                }
                                            ],
                                            "name": "renovate-04221200-8f32a045",
                                            "optional": false
                                        },
                                        "name": "configmap-renovate-04221200-8f32a045"
                                    },
                                    {
                                        "name": "secret-renovate-04221200-8f32a045-45e9e889",
                                        "secret": {
                                            "defaultMode": 420,
                                            "items": [
                                                {
                                                    "key": "renovate-token",
                                                    "path": "renovate-token"
                                                }
                                            ],
                                            "optional": false,
                                            "secretName": "renovate-04221200-8f32a045"
                                        }
                                    },
                                    {
                                        "configMap": {
                                            "defaultMode": 420,
                                            "items": [
                                                {
                                                    "key": "ca-bundle.crt",
                                                    "path": "tls-ca-bundle.pem"
                                                }
                                            ],
                                            "name": "trusted-ca-6ct58987ht",
                                            "optional": false
                                        },
                                        "name": "configmap-trusted-ca-6ct58987ht"
                                    }
                                ],
                                "workspaces": [
                                    {
                                        "name": "shared-data"
                                    }
                                ]
                            },
                            "workspaces": [
                                {
                                    "name": "shared-data",
                                    "workspace": "shared-data"
                                }
                            ]
                        }
                    ],
                    "workspaces": [
                        {
                            "name": "shared-data"
                        }
                    ]
                },
                "taskRunTemplate": {
                    "podTemplate": {
                        "nodeSelector": {
                            "konflux-ci.dev/workload": "konflux-tenants"
                        },
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "konflux-ci.dev/workload",
                                "operator": "Equal",
                                "value": "konflux-tenants"
                            }
                        ]
                    },
                    "serviceAccountName": "mintmaker-controller-manager"
                },
                "timeouts": {
                    "pipeline": "1h0m0s"
                },
                "workspaces": [
                    {
                        "emptyDir": {},
                        "name": "shared-data"
                    }
                ]
            },
            "status": {
                "childReferences": [
                    {
                        "apiVersion": "tekton.dev/v1",
                        "kind": "TaskRun",
                        "name": "renovate-04221200-8f32a045-build",
                        "pipelineTaskName": "build"
                    }
                ],
                "completionTime": "2026-04-22T12:02:23Z",
                "conditions": [
                    {
                        "lastTransitionTime": "2026-04-22T12:02:23Z",
                        "message": "Tasks Completed: 1 (Failed: 1, Cancelled 0), Skipped: 0",
                        "reason": "Failed",
                        "status": "False",
                        "type": "Succeeded"
                    }
                ],
                "pipelineSpec": {
                    "tasks": [
                        {
                            "name": "build",
                            "taskSpec": {
                                "metadata": {},
                                "spec": null,
                                "steps": [
                                    {
                                        "computeResources": {
                                            "limits": {
                                                "cpu": "100m",
                                                "memory": "512Mi"
                                            },
                                            "requests": {
                                                "cpu": "100m",
                                                "memory": "512Mi"
                                            }
                                        },
                                        "image": "quay.io/konflux-ci/mintmaker-osv-database:latest",
                                        "name": "prepare-db",
                                        "script": "echo 'Copying OSV database to the shared workspace'; cp -r /data/osv-db /workspace/shared-data",
                                        "securityContext": {
                                            "allowPrivilegeEscalation": false,
                                            "capabilities": {
                                                "drop": [
                                                    "ALL"
                                                ]
                                            },
                                            "runAsNonRoot": true,
                                            "runAsUser": 1001120000
                                        }
                                    },
                                    {
                                        "computeResources": {
                                            "limits": {
                                                "cpu": "100m",
                                                "memory": "256Mi"
                                            },
                                            "requests": {
                                                "cpu": "100m",
                                                "memory": "256Mi"
                                            }
                                        },
                                        "image": "registry.access.redhat.com/ubi9",
                                        "name": "prepare-rpm-cert",
                                        "script": "[ ! -f \"/etc/renovate/secret/rpm-activationkey\" ] \u0026\u0026 echo 'RPM secret not found. Exiting.' \u0026\u0026 exit 0;echo 'Generating RPM certificate and copying it to shared workspace';KEY_NAME=$(cat /etc/renovate/secret/rpm-activationkey);ORG_ID=$(cat /etc/renovate/secret/rpm-org);subscription-manager register --activationkey=\"$KEY_NAME\" --org=\"$ORG_ID\";mkdir -p /workspace/shared-data/rpm-certs;cp /etc/pki/entitlement/*-key.pem /workspace/shared-data/rpm-certs/key.pem;cp $(find /etc/pki/entitlement -maxdepth 1 -type f -name '*.pem' ! -name '*-key.pem' -print -quit) /workspace/shared-data/rpm-certs/cert.pem",
                                        "securityContext": {
                                            "allowPrivilegeEscalation": false,
                                            "capabilities": {
                                                "drop": [
                                                    "ALL"
                                                ]
                                            },
                                            "runAsUser": 0
                                        }
                                    },
                                    {
                                        "computeResources": {
                                            "limits": {
                                                "cpu": "300m",
                                                "memory": "3584Mi"
                                            },
                                            "requests": {
                                                "cpu": "300m",
                                                "memory": "3584Mi"
                                            }
                                        },
                                        "env": [
                                            {
                                                "name": "HOME",
                                                "value": "/home/renovate"
                                            },
                                            {
                                                "name": "LOG_LEVEL",
                                                "value": "debug"
                                            },
                                            {
                                                "name": "LOG_FORMAT",
                                                "value": "json"
                                            },
                                            {
                                                "name": "OSV_OFFLINE_DISABLE_DOWNLOAD",
                                                "value": "true"
                                            },
                                            {
                                                "name": "OSV_OFFLINE_ROOT_DIR",
                                                "value": "/workspace/shared-data/osv-db"
                                            },
                                            {
                                                "name": "DNF_VAR_SSL_CLIENT_KEY",
                                                "value": "/workspace/shared-data/rpm-certs/key.pem"
                                            },
                                            {
                                                "name": "DNF_VAR_SSL_CLIENT_CERT",
                                                "value": "/workspace/shared-data/rpm-certs/cert.pem"
                                            },
                                            {
                                                "name": "RENOVATE_X_GITLAB_AUTO_MERGEABLE_CHECK_ATTEMPS",
                                                "value": "7"
                                            }
                                        ],
                                        "image": "quay.io/konflux-ci/mintmaker-renovate-image:latest",
                                        "name": "renovate",
                                        "script": "RENOVATE_TOKEN=$(cat /etc/renovate/secret/renovate-token) RENOVATE_CONFIG_FILE=/etc/renovate/config/config.js LOG_FILE=/workspace/shared-data/renovate-logs.json renovate || true",
                                        "securityContext": {
                                            "allowPrivilegeEscalation": false,
                                            "capabilities": {
                                                "drop": [
                                                    "ALL"
                                                ]
                                            },
                                            "runAsNonRoot": true,
                                            "runAsUser": 1001120000
                                        },
                                        "volumeMounts": [
                                            {
                                                "mountPath": "/etc/renovate/config",
                                                "name": "configmap-renovate-04221200-8f32a045",
                                                "readOnly": true
                                            },
                                            {
                                                "mountPath": "/etc/renovate/secret",
                                                "name": "secret-renovate-04221200-8f32a045-45e9e889",
                                                "readOnly": true
                                            },
                                            {
                                                "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                                "name": "configmap-trusted-ca-6ct58987ht",
                                                "readOnly": true
                                            }
                                        ]
                                    }
                                ],
                                "volumes": [
                                    {
                                        "configMap": {
                                            "defaultMode": 420,
                                            "items": [
                                                {
                                                    "key": "config.js",
                                                    "path": "config.js"
                                                }
                                            ],
                                            "name": "renovate-04221200-8f32a045",
                                            "optional": false
                                        },
                                        "name": "configmap-renovate-04221200-8f32a045"
                                    },
                                    {
                                        "name": "secret-renovate-04221200-8f32a045-45e9e889",
                                        "secret": {
                                            "defaultMode": 420,
                                            "items": [
                                                {
                                                    "key": "renovate-token",
                                                    "path": "renovate-token"
                                                }
                                            ],
                                            "optional": false,
                                            "secretName": "renovate-04221200-8f32a045"
                                        }
                                    },
                                    {
                                        "configMap": {
                                            "defaultMode": 420,
                                            "items": [
                                                {
                                                    "key": "ca-bundle.crt",
                                                    "path": "tls-ca-bundle.pem"
                                                }
                                            ],
                                            "name": "trusted-ca-6ct58987ht",
                                            "optional": false
                                        },
                                        "name": "configmap-trusted-ca-6ct58987ht"
                                    }
                                ],
                                "workspaces": [
                                    {
                                        "name": "shared-data"
                                    }
                                ]
                            },
                            "workspaces": [
                                {
                                    "name": "shared-data",
                                    "workspace": "shared-data"
                                }
                            ]
                        }
                    ],
                    "workspaces": [
                        {
                            "name": "shared-data"
                        }
                    ]
                },
                "provenance": {
                    "featureFlags": {
                        "awaitSidecarReadiness": true,
                        "coschedule": "workspaces",
                        "enableAPIFields": "alpha",
                        "enableParamEnum": true,
                        "enableProvenanceInStatus": true,
                        "enforceNonfalsifiability": "none",
                        "maxResultSize": 4096,
                        "resultExtractionMethod": "termination-message",
                        "runningInEnvWithInjectedSidecars": true,
                        "verificationNoMatchPolicy": "ignore"
                    }
                },
                "spanContext": {
                    "traceparent": "00-ad1222d2bd4efad7ceeae29905f7a342-0f721df4ede9fef9-01"
                },
                "startTime": "2026-04-22T12:00:19Z"
            }
        }
    ],
    "kind": "List",
    "metadata": {
        "resourceVersion": ""
    }
}
