{
    "apiVersion": "v1",
    "items": [
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "has-in-cluster-local:apps/Deployment:application-service/application-service-controller-manager",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:13:56Z",
                "generation": 1,
                "labels": {
                    "control-plane": "controller-manager",
                    "pod-template-hash": "6988b7b4bb"
                },
                "name": "application-service-controller-manager-6988b7b4bb",
                "namespace": "application-service",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "application-service-controller-manager",
                        "uid": "b23c6f49-c438-4e1e-a653-5004602babbb"
                    }
                ],
                "resourceVersion": "23400",
                "uid": "32e4976f-c5f4-46c6-b85c-56772ec6952a"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "control-plane": "controller-manager",
                        "pod-template-hash": "6988b7b4bb"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "control-plane": "controller-manager",
                            "pod-template-hash": "6988b7b4bb"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--health-probe-bind-address=:8081",
                                    "--metrics-bind-address=127.0.0.1:8080",
                                    "--leader-elect=false"
                                ],
                                "command": [
                                    "entrypoint.sh"
                                ],
                                "env": [
                                    {
                                        "name": "ENABLE_PPROF",
                                        "value": "true"
                                    },
                                    {
                                        "name": "IMAGE_REPOSITORY"
                                    },
                                    {
                                        "name": "GITHUB_ORG",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "GITHUB_ORG",
                                                "name": "application-service-github-config",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "GITHUB_AUTH_TOKEN",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "token",
                                                "name": "has-github-token",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "GITHUB_TOKEN_LIST",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "tokens",
                                                "name": "has-github-token",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "CDQ_GITHUB_TOKEN",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "cdq-token",
                                                "name": "has-github-token",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "DEVFILE_REGISTRY_URL",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "DEVFILE_REGISTRY_URL",
                                                "name": "application-service-devfile-registry-config",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "ENVIRONMENT",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "ENVIRONMENT",
                                                "name": "application-service-feature-flag-config",
                                                "optional": true
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/redhat-appstudio/application-service:1336ddc41f94df2da57a8ad8da2613e789be4041",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "webhook-server",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8081,
                                        "name": "health",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "2Gi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "1Gi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tmp/k8s-webhook-server/serving-certs",
                                        "name": "cert",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/tmp",
                                        "name": "tmp-storage"
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:8443",
                                    "--upstream=http://127.0.0.1:8080/",
                                    "--logtostderr=true",
                                    "--v=10",
                                    "--http2-disable=true"
                                ],
                                "image": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9:v4.18",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "400Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "20Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true
                        },
                        "serviceAccount": "application-service-controller-manager",
                        "serviceAccountName": "application-service-controller-manager",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "name": "cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "webhook-server-cert"
                                }
                            },
                            {
                                "emptyDir": {},
                                "name": "tmp-storage"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "monitoring-cardinality-in-cluster-local:apps/Deployment:appstudio-cardinality-exporter/prometheus-cardinality-exporter",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:38Z",
                "generation": 1,
                "labels": {
                    "app": "prometheus-cardinality-exporter",
                    "pod-template-hash": "79d5577fc6"
                },
                "name": "prometheus-cardinality-exporter-79d5577fc6",
                "namespace": "appstudio-cardinality-exporter",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "prometheus-cardinality-exporter",
                        "uid": "e99be828-51a8-49e7-934b-9485ca4703c9"
                    }
                ],
                "resourceVersion": "25850",
                "uid": "6cb27d68-7610-4d26-a49d-d757f2d3e402"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "prometheus-cardinality-exporter",
                        "pod-template-hash": "79d5577fc6"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "prometheus-cardinality-exporter",
                            "pod-template-hash": "79d5577fc6"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--service_discovery",
                                    "--freq=1",
                                    "--selector=app.kubernetes.io/component=prometheus",
                                    "--regex=prometheus[a-zA-Z0-9_-]*",
                                    "--auth=/etc/cardinality-exporter/auth.yaml"
                                ],
                                "command": [
                                    "/home/app/prometheus-cardinality-exporter"
                                ],
                                "image": "quay.io/jmicanek/cardinality-exporter:v0.1",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": "http",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 3,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "prometheus-cardinality-exporter",
                                "ports": [
                                    {
                                        "containerPort": 9090,
                                        "name": "http",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": "http",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 3,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "memory": "400Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "200Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/cardinality-exporter",
                                        "name": "auth-config",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "prometheus-cardinality-exporter",
                        "serviceAccountName": "prometheus-cardinality-exporter",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "cardinality-exporter-auth"
                                },
                                "name": "auth-config"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/tracking-id": "monitoring-workload-custom-kube-state-metrics-in-cluster-local:apps/Deployment:appstudio-monitoring/custom-kube-state-metrics",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:13:39Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "exporter",
                    "app.kubernetes.io/name": "custom-kube-state-metrics",
                    "app.kubernetes.io/part-of": "konflux-monitoring",
                    "pod-template-hash": "555d8b586d"
                },
                "name": "custom-kube-state-metrics-555d8b586d",
                "namespace": "appstudio-monitoring",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "custom-kube-state-metrics",
                        "uid": "dfbb1319-d78a-444a-a0a4-506fcb457a62"
                    }
                ],
                "resourceVersion": "21563",
                "uid": "43f91ff8-d3dd-476a-9476-8010fccef88a"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "custom-kube-state-metrics",
                        "pod-template-hash": "555d8b586d"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "exporter",
                            "app.kubernetes.io/name": "custom-kube-state-metrics",
                            "app.kubernetes.io/part-of": "konflux-monitoring",
                            "pod-template-hash": "555d8b586d"
                        }
                    },
                    "spec": {
                        "automountServiceAccountToken": true,
                        "containers": [
                            {
                                "args": [
                                    "--custom-resource-state-only=true",
                                    "--custom-resource-state-config-file=/etc/config/custom-resource-state.yaml",
                                    "--telemetry-host=0.0.0.0",
                                    "--telemetry-port=8081"
                                ],
                                "image": "registry.k8s.io/kube-state-metrics/kube-state-metrics:v2.11.0",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "kube-state-metrics",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8081,
                                        "name": "telemetry",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "200m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "512Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/config",
                                        "name": "config",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "custom-kube-state-metrics",
                        "serviceAccountName": "custom-kube-state-metrics",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "custom-kube-state-metrics-config"
                                },
                                "name": "config"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/tracking-id": "build-service-in-cluster-local:apps/Deployment:build-service/build-service-controller-manager",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:13:28Z",
                "generation": 1,
                "labels": {
                    "control-plane": "controller-manager",
                    "pod-template-hash": "6846b8f594"
                },
                "name": "build-service-controller-manager-6846b8f594",
                "namespace": "build-service",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "build-service-controller-manager",
                        "uid": "abe5bc4b-c81e-4d60-a515-862e5c7eca32"
                    }
                ],
                "resourceVersion": "37875",
                "uid": "2570b627-5622-4000-a507-bd5b3a0ff14c"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "control-plane": "controller-manager",
                        "pod-template-hash": "6846b8f594"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                            "kubectl.kubernetes.io/default-container": "manager"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "control-plane": "controller-manager",
                            "pod-template-hash": "6846b8f594"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--metrics-bind-address=:8443",
                                    "--leader-elect=false",
                                    "--health-probe-bind-address=:8081",
                                    "-webhook-config-path=/mnt/webhook-config.json",
                                    "--zap-encoder=console"
                                ],
                                "command": [
                                    "/manager"
                                ],
                                "env": [
                                    {
                                        "name": "PAC_WEBHOOK_INSECURE_SSL",
                                        "value": "1"
                                    },
                                    {
                                        "name": "IMAGE_TAG_ON_PR_EXPIRATION",
                                        "value": "6h"
                                    }
                                ],
                                "image": "quay.io/konflux-ci/build-service:1da4f0fa542a61f212a15c2789f478610db31133",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "1Gi"
                                    },
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "privileged": false,
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "trusted-ca",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/mnt",
                                        "name": "webhook-config",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "build-service-controller-manager",
                        "serviceAccountName": "build-service-controller-manager",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "trusted-ca-6ct58987ht"
                                },
                                "name": "trusted-ca"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "webhook-config.json",
                                            "path": "webhook-config.json"
                                        }
                                    ],
                                    "name": "webhook-config-4ttbfg57cf"
                                },
                                "name": "webhook-config"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:54Z",
                "generation": 1,
                "labels": {
                    "name": "cert-manager-operator",
                    "pod-template-hash": "c6f765b78"
                },
                "name": "cert-manager-operator-controller-manager-c6f765b78",
                "namespace": "cert-manager-operator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "cert-manager-operator-controller-manager",
                        "uid": "9a85469a-7ed8-48db-b89c-6a93bf04bdbf"
                    }
                ],
                "resourceVersion": "26264",
                "uid": "53b0136c-10a9-40ae-8e5f-b27c4b626f18"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "name": "cert-manager-operator",
                        "pod-template-hash": "c6f765b78"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "alm-examples": "[\n  {\n    \"apiVersion\": \"acme.cert-manager.io/v1\",\n    \"kind\": \"Challenge\",\n    \"metadata\": {\n      \"name\": \"tls-cert-sample\",\n      \"namespace\": \"default\"\n    },\n    \"spec\": {\n      \"authorizationURL\": \"https://acme-staging-v02.api.letsencrypt.org/acme/authz-v3/XXXXX\",\n      \"dnsName\": \"sample.dns.name\",\n      \"issuerRef\": {\n        \"kind\": \"Issuer\",\n        \"name\": \"letsencrypt-staging\"\n      },\n      \"key\": \"XXX\",\n      \"solver\": {\n        \"dns01\": {\n          \"route53\": {\n            \"accessKeyID\": \"XXX\",\n            \"hostedZoneID\": \"XXX\",\n            \"region\": \"us-east-1\",\n            \"secretAccessKeySecretRef\": {\n              \"key\": \"awsSecretAccessKey\",\n              \"name\": \"aws-secret\"\n            }\n          }\n        },\n        \"selector\": {\n          \"dnsNames\": [\n            \"sample.dns.name\"\n          ]\n        }\n      },\n      \"token\": \"XXX\",\n      \"type\": \"DNS-01\",\n      \"url\": \"https://acme-staging-v02.api.letsencrypt.org/acme/chall-v3/XXXXXX/XXXXX\",\n      \"wildcard\": false\n    }\n  },\n  {\n    \"apiVersion\": \"acme.cert-manager.io/v1\",\n    \"kind\": \"Order\",\n    \"metadata\": {\n      \"annotations\": {\n        \"cert-manager.io/certificate-name\": \"tls-cert\",\n        \"cert-manager.io/certificate-revision\": \"1\",\n        \"cert-manager.io/private-key-secret-name\": \"tls-cert-sample\"\n      },\n      \"name\": \"tls-cert-sample\",\n      \"namespace\": \"default\"\n    },\n    \"spec\": {\n      \"commonName\": \"sample.dns.name\",\n      \"dnsNames\": [\n        \"sample.dns.name\"\n      ],\n      \"issuerRef\": {\n        \"kind\": \"Issuer\",\n        \"name\": \"letsencrypt-staging\"\n      },\n      \"request\": \"XXX\"\n    }\n  },\n  {\n    \"apiVersion\": \"cert-manager.io/v1\",\n    \"kind\": \"Certificate\",\n    \"metadata\": {\n      \"name\": \"selfsigned-ca\",\n      \"namespace\": \"default\"\n    },\n    \"spec\": {\n      \"commonName\": \"selfsigned-ca.dns.name\",\n      \"isCA\": true,\n      \"issuerRef\": {\n        \"group\": \"cert-manager.io\",\n        \"kind\": \"ClusterIssuer\",\n        \"name\": \"selfsigned-issuer\"\n      },\n      \"privateKey\": {\n        \"algorithm\": \"ECDSA\",\n        \"size\": 256\n      },\n      \"secretName\": \"ca-root-secret\"\n    }\n  },\n  {\n    \"apiVersion\": \"cert-manager.io/v1\",\n    \"kind\": \"Certificate\",\n    \"metadata\": {\n      \"name\": \"tls-cert\",\n      \"namespace\": \"default\"\n    },\n    \"spec\": {\n      \"commonName\": \"sample.dns.name\",\n      \"dnsNames\": [\n        \"sample.dns.name\"\n      ],\n      \"isCA\": false,\n      \"issuerRef\": {\n        \"kind\": \"Issuer\",\n        \"name\": \"letsencrypt-staging\"\n      },\n      \"secretName\": \"tls-cert\"\n    }\n  },\n  {\n    \"apiVersion\": \"cert-manager.io/v1\",\n    \"kind\": \"CertificateRequest\",\n    \"metadata\": {\n      \"annotations\": {\n        \"cert-manager.io/certificate-name\": \"tls-cert\",\n        \"cert-manager.io/certificate-revision\": \"1\",\n        \"cert-manager.io/private-key-secret-name\": \"tls-cert-sample\"\n      },\n      \"name\": \"tls-cert-sample\",\n      \"namespace\": \"default\"\n    },\n    \"spec\": {\n      \"groups\": [\n        \"system:serviceaccounts\",\n        \"system:serviceaccounts:cert-manager\",\n        \"system:authenticated\"\n      ],\n      \"issuerRef\": {\n        \"kind\": \"Issuer\",\n        \"name\": \"letsencrypt-staging\"\n      },\n      \"request\": \"XXX\",\n      \"username\": \"system:serviceaccount:cert-manager:cert-manager\"\n    }\n  },\n  {\n    \"apiVersion\": \"cert-manager.io/v1\",\n    \"kind\": \"ClusterIssuer\",\n    \"metadata\": {\n      \"name\": \"selfsigned-issuer\"\n    },\n    \"spec\": {\n      \"selfSigned\": {}\n    }\n  },\n  {\n    \"apiVersion\": \"cert-manager.io/v1\",\n    \"kind\": \"Issuer\",\n    \"metadata\": {\n      \"name\": \"ca-issuer\",\n      \"namespace\": \"default\"\n    },\n    \"spec\": {\n      \"ca\": {\n        \"secretName\": \"ca-root-secret\"\n      }\n    }\n  },\n  {\n    \"apiVersion\": \"cert-manager.io/v1\",\n    \"kind\": \"Issuer\",\n    \"metadata\": {\n      \"name\": \"letsencrypt-staging\",\n      \"namespace\": \"default\"\n    },\n    \"spec\": {\n      \"acme\": {\n        \"email\": \"aos-ci-cd@redhat.com\",\n        \"privateKeySecretRef\": {\n          \"name\": \"letsencrypt-staging\"\n        },\n        \"server\": \"https://acme-staging-v02.api.letsencrypt.org/directory\",\n        \"solvers\": [\n          {\n            \"dns01\": {\n              \"route53\": {\n                \"accessKeyID\": \"ACCESS_KEY_ID\",\n                \"hostedZoneID\": \"HOSTED_ZONE_ID\",\n                \"region\": \"AWS_REGION\",\n                \"secretAccessKeySecretRef\": {\n                  \"key\": \"access-key\",\n                  \"name\": \"sample-aws-secret\"\n                }\n              }\n            },\n            \"selector\": {\n              \"dnsNames\": [\n                \"sample.dns.name\"\n              ]\n            }\n          }\n        ]\n      }\n    }\n  },\n  {\n    \"apiVersion\": \"operator.openshift.io/v1alpha1\",\n    \"kind\": \"CertManager\",\n    \"metadata\": {\n      \"name\": \"cluster\"\n    },\n    \"spec\": {\n      \"logLevel\": \"Normal\",\n      \"managementState\": \"Managed\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.openshift.io/v1alpha1\",\n    \"kind\": \"IstioCSR\",\n    \"metadata\": {\n      \"annotations\": {\n        \"kubernetes.io/description\": \"Resource behavior is managed through IstioCSR featuregate, which is enabled by default. Please refer to the cert-manager documentation for more information on the istio-csr feature.\"\n      },\n      \"name\": \"default\",\n      \"namespace\": \"istio-csr\"\n    },\n    \"spec\": {\n      \"istioCSRConfig\": {\n        \"certManager\": {\n          \"issuerRef\": {\n            \"group\": \"cert-manager.io\",\n            \"kind\": \"Issuer\",\n            \"name\": \"istio-csr-issuer\"\n          }\n        },\n        \"istio\": {\n          \"namespace\": \"istio-system\"\n        },\n        \"istiodTLSConfig\": {\n          \"trustDomain\": \"cluster.local\"\n        }\n      }\n    }\n  }\n]",
                            "capabilities": "Seamless Upgrades",
                            "categories": "Security",
                            "console.openshift.io/disable-operand-delete": "true",
                            "containerImage": "registry.redhat.io/cert-manager/cert-manager-operator-rhel9@sha256:99526f5a179816df1f7f51df0517136b247d815b7bdce0a5d0eb7cdaf4b5ce7a",
                            "createdAt": "2026-01-27T05:16:46",
                            "features.operators.openshift.io/cnf": "false",
                            "features.operators.openshift.io/cni": "false",
                            "features.operators.openshift.io/csi": "false",
                            "features.operators.openshift.io/disconnected": "true",
                            "features.operators.openshift.io/fips-compliant": "true",
                            "features.operators.openshift.io/proxy-aware": "true",
                            "features.operators.openshift.io/tls-profiles": "false",
                            "features.operators.openshift.io/token-auth-aws": "true",
                            "features.operators.openshift.io/token-auth-azure": "true",
                            "features.operators.openshift.io/token-auth-gcp": "true",
                            "kubectl.kubernetes.io/default-container": "cert-manager-operator",
                            "olm.operatorGroup": "openshift-cert-manager-operator",
                            "olm.operatorNamespace": "cert-manager-operator",
                            "olm.skipRange": "\u003e=1.18.0 \u003c1.18.1",
                            "olm.targetNamespaces": "",
                            "operator.openshift.io/uninstall-message": "The cert-manager Operator for Red Hat OpenShift will be removed from cert-manager-operator namespace. If your Operator configured any off-cluster resources, these will continue to run and require manual cleanup. All operands created by the operator will need to be manually cleaned up. Please refer to https://docs.openshift.com/container-platform/latest/security/cert_manager_operator/cert-manager-operator-uninstall.html for additional steps.",
                            "operatorframework.io/cluster-monitoring": "true",
                            "operatorframework.io/properties": "{\"properties\":[{\"type\":\"olm.gvk\",\"value\":{\"group\":\"acme.cert-manager.io\",\"kind\":\"Challenge\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"acme.cert-manager.io\",\"kind\":\"Order\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"cert-manager.io\",\"kind\":\"Certificate\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"cert-manager.io\",\"kind\":\"CertificateRequest\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"cert-manager.io\",\"kind\":\"ClusterIssuer\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"cert-manager.io\",\"kind\":\"Issuer\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.openshift.io\",\"kind\":\"CertManager\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.openshift.io\",\"kind\":\"IstioCSR\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.package\",\"value\":{\"packageName\":\"openshift-cert-manager-operator\",\"version\":\"1.18.1\"}}]}",
                            "operatorframework.io/suggested-namespace": "cert-manager-operator",
                            "operators.openshift.io/valid-subscription": "[\"OpenShift Kubernetes Engine\", \"OpenShift Container Platform\", \"OpenShift Platform Plus\"]",
                            "operators.operatorframework.io/builder": "operator-sdk-v1.25.1",
                            "operators.operatorframework.io/project_layout": "go.kubebuilder.io/v3",
                            "repository": "https://github.com/openshift/cert-manager-operator",
                            "support": "Red Hat, Inc."
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "name": "cert-manager-operator",
                            "pod-template-hash": "c6f765b78"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "nodeAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "nodeSelectorTerms": [
                                        {
                                            "matchExpressions": [
                                                {
                                                    "key": "kubernetes.io/arch",
                                                    "operator": "In",
                                                    "values": [
                                                        "amd64",
                                                        "arm64",
                                                        "ppc64le",
                                                        "s390x"
                                                    ]
                                                },
                                                {
                                                    "key": "kubernetes.io/os",
                                                    "operator": "In",
                                                    "values": [
                                                        "linux"
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "start",
                                    "--v=$(OPERATOR_LOG_LEVEL)",
                                    "--trusted-ca-configmap=$(TRUSTED_CA_CONFIGMAP_NAME)",
                                    "--cloud-credentials-secret=$(CLOUD_CREDENTIALS_SECRET_NAME)",
                                    "--unsupported-addon-features=$(UNSUPPORTED_ADDON_FEATURES)"
                                ],
                                "command": [
                                    "/usr/bin/cert-manager-operator"
                                ],
                                "env": [
                                    {
                                        "name": "WATCH_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.annotations['olm.targetNamespaces']"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "OPERATOR_NAME",
                                        "value": "cert-manager-operator"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_CERT_MANAGER_WEBHOOK",
                                        "value": "registry.redhat.io/cert-manager/jetstack-cert-manager-rhel9@sha256:903ce74138b1ffc735846a7c5fcdf62bbe82ca29568a6b38caec2656f6637671"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_CERT_MANAGER_CA_INJECTOR",
                                        "value": "registry.redhat.io/cert-manager/jetstack-cert-manager-rhel9@sha256:903ce74138b1ffc735846a7c5fcdf62bbe82ca29568a6b38caec2656f6637671"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_CERT_MANAGER_CONTROLLER",
                                        "value": "registry.redhat.io/cert-manager/jetstack-cert-manager-rhel9@sha256:903ce74138b1ffc735846a7c5fcdf62bbe82ca29568a6b38caec2656f6637671"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_CERT_MANAGER_ACMESOLVER",
                                        "value": "registry.redhat.io/cert-manager/jetstack-cert-manager-acmesolver-rhel9@sha256:38899dcd99bcd1c8c8d2c67cd19d5b1756434028ed2f1b926a282723bd63183e"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_CERT_MANAGER_ISTIOCSR",
                                        "value": "registry.redhat.io/cert-manager/cert-manager-istio-csr-rhel9@sha256:fb89adfcc4bcdaf21bed27dbc90586fb2b32180259b9f9d6fcf84a38e401fe03"
                                    },
                                    {
                                        "name": "OPERAND_IMAGE_VERSION",
                                        "value": "1.18.4"
                                    },
                                    {
                                        "name": "ISTIOCSR_OPERAND_IMAGE_VERSION",
                                        "value": "0.14.2"
                                    },
                                    {
                                        "name": "OPERATOR_IMAGE_VERSION",
                                        "value": "1.18.1"
                                    },
                                    {
                                        "name": "OPERATOR_LOG_LEVEL",
                                        "value": "2"
                                    },
                                    {
                                        "name": "TRUSTED_CA_CONFIGMAP_NAME"
                                    },
                                    {
                                        "name": "CLOUD_CREDENTIALS_SECRET_NAME"
                                    },
                                    {
                                        "name": "UNSUPPORTED_ADDON_FEATURES"
                                    },
                                    {
                                        "name": "OPERATOR_CONDITION_NAME",
                                        "value": "cert-manager-operator.v1.18.1"
                                    }
                                ],
                                "image": "registry.redhat.io/cert-manager/cert-manager-operator-rhel9@sha256:99526f5a179816df1f7f51df0517136b247d815b7bdce0a5d0eb7cdaf4b5ce7a",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "cert-manager-operator",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "32Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "privileged": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tmp",
                                        "name": "tmp"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "cert-manager-operator-controller-manager",
                        "serviceAccountName": "cert-manager-operator-controller-manager",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "emptyDir": {},
                                "name": "tmp"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "operator.openshift.io/spec-hash": "f576e4ec568c9ababd0ae1f03481e9d6bdb9558fb24ca1f7432452a73c23d869"
                },
                "creationTimestamp": "2026-04-19T19:14:58Z",
                "generation": 1,
                "labels": {
                    "app": "cert-manager",
                    "app.kubernetes.io/component": "controller",
                    "app.kubernetes.io/instance": "cert-manager",
                    "app.kubernetes.io/name": "cert-manager",
                    "app.kubernetes.io/version": "v1.18.4",
                    "pod-template-hash": "545d4d4674"
                },
                "name": "cert-manager-545d4d4674",
                "namespace": "cert-manager",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "cert-manager",
                        "uid": "51e5ede5-1d6b-4873-a8ce-795ffecce456"
                    }
                ],
                "resourceVersion": "27620",
                "uid": "d690f09f-57db-4ee7-b524-772909b695ab"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "controller",
                        "app.kubernetes.io/instance": "cert-manager",
                        "app.kubernetes.io/name": "cert-manager",
                        "pod-template-hash": "545d4d4674"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "prometheus.io/path": "/metrics",
                            "prometheus.io/port": "9402",
                            "prometheus.io/scrape": "true"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "cert-manager",
                            "app.kubernetes.io/component": "controller",
                            "app.kubernetes.io/instance": "cert-manager",
                            "app.kubernetes.io/name": "cert-manager",
                            "app.kubernetes.io/version": "v1.18.4",
                            "pod-template-hash": "545d4d4674"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--acme-http01-solver-image=registry.redhat.io/cert-manager/jetstack-cert-manager-acmesolver-rhel9@sha256:38899dcd99bcd1c8c8d2c67cd19d5b1756434028ed2f1b926a282723bd63183e",
                                    "--cluster-resource-namespace=$(POD_NAMESPACE)",
                                    "--feature-gates=ACMEHTTP01IngressPathTypeExact=false",
                                    "--leader-election-namespace=kube-system",
                                    "--max-concurrent-challenges=60",
                                    "--v=2"
                                ],
                                "command": [
                                    "/app/cmd/controller/controller"
                                ],
                                "env": [
                                    {
                                        "name": "POD_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "registry.redhat.io/cert-manager/jetstack-cert-manager-rhel9@sha256:903ce74138b1ffc735846a7c5fcdf62bbe82ca29568a6b38caec2656f6637671",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 8,
                                    "httpGet": {
                                        "path": "/livez",
                                        "port": "http-healthz",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 10,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 15
                                },
                                "name": "cert-manager-controller",
                                "ports": [
                                    {
                                        "containerPort": 9402,
                                        "name": "http-metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9403,
                                        "name": "http-healthz",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/secrets/openshift/serviceaccount",
                                        "name": "bound-sa-token",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": false,
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "cert-manager",
                        "serviceAccountName": "cert-manager",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "bound-sa-token",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "serviceAccountToken": {
                                                "audience": "openshift",
                                                "expirationSeconds": 3600,
                                                "path": "token"
                                            }
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "operator.openshift.io/spec-hash": "0f1393429e1f5a9a9f766ac7f7c5b6cf849e15370f37b4863f73668e1ea93c68"
                },
                "creationTimestamp": "2026-04-19T19:14:58Z",
                "generation": 1,
                "labels": {
                    "app": "cainjector",
                    "app.kubernetes.io/component": "cainjector",
                    "app.kubernetes.io/instance": "cert-manager",
                    "app.kubernetes.io/name": "cainjector",
                    "app.kubernetes.io/version": "v1.18.4",
                    "pod-template-hash": "5545bd876"
                },
                "name": "cert-manager-cainjector-5545bd876",
                "namespace": "cert-manager",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "cert-manager-cainjector",
                        "uid": "1d66b8ac-f102-4e15-9843-3a0ae674f9af"
                    }
                ],
                "resourceVersion": "27246",
                "uid": "f1ae24f9-141c-443e-95d8-4798dda07df3"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "cainjector",
                        "app.kubernetes.io/instance": "cert-manager",
                        "app.kubernetes.io/name": "cainjector",
                        "pod-template-hash": "5545bd876"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "prometheus.io/path": "/metrics",
                            "prometheus.io/port": "9402",
                            "prometheus.io/scrape": "true"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "cainjector",
                            "app.kubernetes.io/component": "cainjector",
                            "app.kubernetes.io/instance": "cert-manager",
                            "app.kubernetes.io/name": "cainjector",
                            "app.kubernetes.io/version": "v1.18.4",
                            "pod-template-hash": "5545bd876"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--leader-election-namespace=kube-system",
                                    "--v=2"
                                ],
                                "command": [
                                    "/app/cmd/cainjector/cainjector"
                                ],
                                "env": [
                                    {
                                        "name": "POD_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "registry.redhat.io/cert-manager/jetstack-cert-manager-rhel9@sha256:903ce74138b1ffc735846a7c5fcdf62bbe82ca29568a6b38caec2656f6637671",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "cert-manager-cainjector",
                                "ports": [
                                    {
                                        "containerPort": 9402,
                                        "name": "http-metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/secrets/openshift/serviceaccount",
                                        "name": "bound-sa-token",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": false,
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "cert-manager-cainjector",
                        "serviceAccountName": "cert-manager-cainjector",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "bound-sa-token",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "serviceAccountToken": {
                                                "audience": "openshift",
                                                "expirationSeconds": 3600,
                                                "path": "token"
                                            }
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "operator.openshift.io/spec-hash": "53d9f409b5b361c960a88bd57b5acce731e7f4687fe3828cfd56718fb5cd1716"
                },
                "creationTimestamp": "2026-04-19T19:14:59Z",
                "generation": 1,
                "labels": {
                    "app": "webhook",
                    "app.kubernetes.io/component": "webhook",
                    "app.kubernetes.io/instance": "cert-manager",
                    "app.kubernetes.io/name": "webhook",
                    "app.kubernetes.io/version": "v1.18.4",
                    "pod-template-hash": "6888856db4"
                },
                "name": "cert-manager-webhook-6888856db4",
                "namespace": "cert-manager",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "cert-manager-webhook",
                        "uid": "6608c931-6f75-4144-bad5-e2802a491ff5"
                    }
                ],
                "resourceVersion": "27344",
                "uid": "1b461ab3-ddba-4b56-ac86-f92e01f33c69"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "webhook",
                        "app.kubernetes.io/instance": "cert-manager",
                        "app.kubernetes.io/name": "webhook",
                        "pod-template-hash": "6888856db4"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "prometheus.io/path": "/metrics",
                            "prometheus.io/port": "9402",
                            "prometheus.io/scrape": "true"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "webhook",
                            "app.kubernetes.io/component": "webhook",
                            "app.kubernetes.io/instance": "cert-manager",
                            "app.kubernetes.io/name": "webhook",
                            "app.kubernetes.io/version": "v1.18.4",
                            "pod-template-hash": "6888856db4"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--dynamic-serving-ca-secret-name=cert-manager-webhook-ca",
                                    "--dynamic-serving-ca-secret-namespace=$(POD_NAMESPACE)",
                                    "--dynamic-serving-dns-names=cert-manager-webhook,cert-manager-webhook.$(POD_NAMESPACE),cert-manager-webhook.$(POD_NAMESPACE).svc",
                                    "--secure-port=10250",
                                    "--v=2"
                                ],
                                "command": [
                                    "/app/cmd/webhook/webhook"
                                ],
                                "env": [
                                    {
                                        "name": "POD_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "registry.redhat.io/cert-manager/jetstack-cert-manager-rhel9@sha256:903ce74138b1ffc735846a7c5fcdf62bbe82ca29568a6b38caec2656f6637671",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/livez",
                                        "port": "healthcheck",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 60,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "cert-manager-webhook",
                                "ports": [
                                    {
                                        "containerPort": 10250,
                                        "name": "https",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 6080,
                                        "name": "healthcheck",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9402,
                                        "name": "http-metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": "healthcheck",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 5,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/secrets/openshift/serviceaccount",
                                        "name": "bound-sa-token",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": false,
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "cert-manager-webhook",
                        "serviceAccountName": "cert-manager-webhook",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "bound-sa-token",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "serviceAccountToken": {
                                                "audience": "openshift",
                                                "expirationSeconds": 3600,
                                                "path": "token"
                                            }
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "trust-manager-in-cluster-local:apps/Deployment:cert-manager/trust-manager",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:15:27Z",
                "generation": 1,
                "labels": {
                    "app": "trust-manager",
                    "app.kubernetes.io/instance": "trust-manager",
                    "app.kubernetes.io/managed-by": "Helm",
                    "app.kubernetes.io/name": "trust-manager",
                    "app.kubernetes.io/version": "v0.19.0",
                    "helm.sh/chart": "trust-manager-v0.19.0",
                    "pod-template-hash": "548ff9dcf5"
                },
                "name": "trust-manager-548ff9dcf5",
                "namespace": "cert-manager",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "trust-manager",
                        "uid": "4ee8b90c-cd55-4bc4-aeee-ac40280d6bf1"
                    }
                ],
                "resourceVersion": "30579",
                "uid": "077a1f89-b502-4983-bca6-005c1fa29c29"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "trust-manager",
                        "pod-template-hash": "548ff9dcf5"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "trust-manager",
                            "app.kubernetes.io/instance": "trust-manager",
                            "app.kubernetes.io/managed-by": "Helm",
                            "app.kubernetes.io/name": "trust-manager",
                            "app.kubernetes.io/version": "v0.19.0",
                            "helm.sh/chart": "trust-manager-v0.19.0",
                            "pod-template-hash": "548ff9dcf5"
                        }
                    },
                    "spec": {
                        "automountServiceAccountToken": true,
                        "containers": [
                            {
                                "args": [
                                    "--log-format=text",
                                    "--log-level=1",
                                    "--metrics-port=9402",
                                    "--readiness-probe-port=6060",
                                    "--readiness-probe-path=/readyz",
                                    "--leader-elect=false",
                                    "--leader-election-lease-duration=15s",
                                    "--leader-election-renew-deadline=10s",
                                    "--trust-namespace=cert-manager",
                                    "--webhook-host=0.0.0.0",
                                    "--webhook-port=6443",
                                    "--webhook-certificate-dir=/tls",
                                    "--default-package-location=/packages/cert-manager-package-debian.json"
                                ],
                                "image": "quay.io/jetstack/trust-manager:v0.19.0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "trust-manager",
                                "ports": [
                                    {
                                        "containerPort": 6443,
                                        "name": "webhook",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9402,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 6060,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 3,
                                    "periodSeconds": 7,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "25m",
                                        "memory": "64Mi"
                                    },
                                    "requests": {
                                        "cpu": "25m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tls",
                                        "name": "tls",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/packages",
                                        "name": "packages",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "initContainers": [
                            {
                                "args": [
                                    "/copyandmaybepause",
                                    "/debian-package",
                                    "/packages"
                                ],
                                "image": "quay.io/jetstack/trust-pkg-debian-bookworm:20230311-deb12u1.0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "cert-manager-package-debian",
                                "resources": {
                                    "limits": {
                                        "cpu": "25m",
                                        "memory": "64Mi"
                                    },
                                    "requests": {
                                        "cpu": "25m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/packages",
                                        "name": "packages"
                                    }
                                ]
                            }
                        ],
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "trust-manager",
                        "serviceAccountName": "trust-manager",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "emptyDir": {
                                    "sizeLimit": "50M"
                                },
                                "name": "packages"
                            },
                            {
                                "name": "tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "trust-manager-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-wave": "-1",
                    "argocd.argoproj.io/tracking-id": "crossplane-control-plane-in-cluster-local:apps/Deployment:crossplane-system/crossplane",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/env-var-secret": "The env variables only contain the name of Secrets to be mounted"
                },
                "creationTimestamp": "2026-04-19T19:14:01Z",
                "generation": 1,
                "labels": {
                    "app": "crossplane",
                    "app.kubernetes.io/component": "cloud-infrastructure-controller",
                    "app.kubernetes.io/instance": "crossplane",
                    "app.kubernetes.io/managed-by": "Helm",
                    "app.kubernetes.io/name": "crossplane",
                    "app.kubernetes.io/part-of": "crossplane",
                    "app.kubernetes.io/version": "2.2.0",
                    "helm.sh/chart": "crossplane-2.2.0",
                    "pod-template-hash": "5f84756477",
                    "release": "crossplane"
                },
                "name": "crossplane-5f84756477",
                "namespace": "crossplane-system",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "crossplane",
                        "uid": "d8afbcb2-abd9-4384-b81d-d895e30648ff"
                    }
                ],
                "resourceVersion": "23821",
                "uid": "4e239600-b7e6-4962-93bc-40e994da1263"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "crossplane",
                        "pod-template-hash": "5f84756477",
                        "release": "crossplane"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-wave": "-1",
                            "ignore-check.kube-linter.io/env-var-secret": "The env variables only contain the name of Secrets to be mounted"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "crossplane",
                            "app.kubernetes.io/component": "cloud-infrastructure-controller",
                            "app.kubernetes.io/instance": "crossplane",
                            "app.kubernetes.io/managed-by": "Helm",
                            "app.kubernetes.io/name": "crossplane",
                            "app.kubernetes.io/part-of": "crossplane",
                            "app.kubernetes.io/version": "2.2.0",
                            "helm.sh/chart": "crossplane-2.2.0",
                            "pod-template-hash": "5f84756477",
                            "release": "crossplane"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "core",
                                    "start"
                                ],
                                "env": [
                                    {
                                        "name": "GOMAXPROCS",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "containerName": "crossplane",
                                                "divisor": "1",
                                                "resource": "limits.cpu"
                                            }
                                        }
                                    },
                                    {
                                        "name": "GOMEMLIMIT",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "containerName": "crossplane",
                                                "divisor": "1",
                                                "resource": "limits.memory"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_SERVICE_ACCOUNT",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "spec.serviceAccountName"
                                            }
                                        }
                                    },
                                    {
                                        "name": "LEADER_ELECTION",
                                        "value": "false"
                                    },
                                    {
                                        "name": "TLS_SERVER_SECRET_NAME",
                                        "value": "crossplane-tls-server"
                                    },
                                    {
                                        "name": "TLS_SERVER_CERTS_DIR",
                                        "value": "/tls/server"
                                    },
                                    {
                                        "name": "TLS_CLIENT_SECRET_NAME",
                                        "value": "crossplane-tls-client"
                                    },
                                    {
                                        "name": "TLS_CLIENT_CERTS_DIR",
                                        "value": "/tls/client"
                                    }
                                ],
                                "image": "xpkg.crossplane.io/crossplane/crossplane:v2.2.0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "crossplane",
                                "ports": [
                                    {
                                        "containerPort": 8081,
                                        "name": "readyz",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9443,
                                        "name": "webhooks",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "1Gi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "startupProbe": {
                                    "failureThreshold": 30,
                                    "periodSeconds": 2,
                                    "successThreshold": 1,
                                    "tcpSocket": {
                                        "port": "readyz"
                                    },
                                    "timeoutSeconds": 1
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/cache/xpkg",
                                        "name": "package-cache"
                                    },
                                    {
                                        "mountPath": "/cache/xfn",
                                        "name": "function-cache"
                                    },
                                    {
                                        "mountPath": "/tls/server",
                                        "name": "tls-server-certs"
                                    },
                                    {
                                        "mountPath": "/tls/client",
                                        "name": "tls-client-certs"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "initContainers": [
                            {
                                "args": [
                                    "core",
                                    "init",
                                    "--activation",
                                    "*"
                                ],
                                "env": [
                                    {
                                        "name": "GOMAXPROCS",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "containerName": "crossplane-init",
                                                "divisor": "1",
                                                "resource": "limits.cpu"
                                            }
                                        }
                                    },
                                    {
                                        "name": "GOMEMLIMIT",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "containerName": "crossplane-init",
                                                "divisor": "1",
                                                "resource": "limits.memory"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_SERVICE_ACCOUNT",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "spec.serviceAccountName"
                                            }
                                        }
                                    },
                                    {
                                        "name": "WEBHOOK_SERVICE_NAME",
                                        "value": "crossplane-webhooks"
                                    },
                                    {
                                        "name": "WEBHOOK_SERVICE_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "WEBHOOK_SERVICE_PORT",
                                        "value": "9443"
                                    },
                                    {
                                        "name": "TLS_CA_SECRET_NAME",
                                        "value": "crossplane-root-ca"
                                    },
                                    {
                                        "name": "TLS_SERVER_SECRET_NAME",
                                        "value": "crossplane-tls-server"
                                    },
                                    {
                                        "name": "TLS_CLIENT_SECRET_NAME",
                                        "value": "crossplane-tls-client"
                                    }
                                ],
                                "image": "xpkg.crossplane.io/crossplane/crossplane:v2.2.0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "crossplane-init",
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "1Gi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "crossplane",
                        "serviceAccountName": "crossplane",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "emptyDir": {
                                    "sizeLimit": "20Mi"
                                },
                                "name": "package-cache"
                            },
                            {
                                "emptyDir": {
                                    "sizeLimit": "512Mi"
                                },
                                "name": "function-cache"
                            },
                            {
                                "name": "tls-server-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "crossplane-tls-server"
                                }
                            },
                            {
                                "name": "tls-client-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "crossplane-tls-client"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-wave": "-1",
                    "argocd.argoproj.io/tracking-id": "crossplane-control-plane-in-cluster-local:apps/Deployment:crossplane-system/crossplane-rbac-manager",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/env-var-secret": "The env variables only contain the name of Secrets to be mounted"
                },
                "creationTimestamp": "2026-04-19T19:14:01Z",
                "generation": 1,
                "labels": {
                    "app": "crossplane-rbac-manager",
                    "app.kubernetes.io/component": "cloud-infrastructure-controller",
                    "app.kubernetes.io/instance": "crossplane",
                    "app.kubernetes.io/managed-by": "Helm",
                    "app.kubernetes.io/name": "crossplane",
                    "app.kubernetes.io/part-of": "crossplane",
                    "app.kubernetes.io/version": "2.2.0",
                    "helm.sh/chart": "crossplane-2.2.0",
                    "pod-template-hash": "76796867d5",
                    "release": "crossplane"
                },
                "name": "crossplane-rbac-manager-76796867d5",
                "namespace": "crossplane-system",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "crossplane-rbac-manager",
                        "uid": "9213b48b-8a1a-4afe-93ad-7c3b7a742c77"
                    }
                ],
                "resourceVersion": "23637",
                "uid": "2a335183-0ac2-4b02-834a-5c44d27c00df"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "crossplane-rbac-manager",
                        "pod-template-hash": "76796867d5",
                        "release": "crossplane"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-wave": "-1",
                            "ignore-check.kube-linter.io/env-var-secret": "The env variables only contain the name of Secrets to be mounted"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "crossplane-rbac-manager",
                            "app.kubernetes.io/component": "cloud-infrastructure-controller",
                            "app.kubernetes.io/instance": "crossplane",
                            "app.kubernetes.io/managed-by": "Helm",
                            "app.kubernetes.io/name": "crossplane",
                            "app.kubernetes.io/part-of": "crossplane",
                            "app.kubernetes.io/version": "2.2.0",
                            "helm.sh/chart": "crossplane-2.2.0",
                            "pod-template-hash": "76796867d5",
                            "release": "crossplane"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "rbac",
                                    "start",
                                    "--provider-clusterrole=crossplane:allowed-provider-permissions"
                                ],
                                "env": [
                                    {
                                        "name": "GOMAXPROCS",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "containerName": "crossplane",
                                                "divisor": "1",
                                                "resource": "limits.cpu"
                                            }
                                        }
                                    },
                                    {
                                        "name": "GOMEMLIMIT",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "containerName": "crossplane",
                                                "divisor": "1",
                                                "resource": "limits.memory"
                                            }
                                        }
                                    },
                                    {
                                        "name": "LEADER_ELECTION",
                                        "value": "false"
                                    }
                                ],
                                "image": "xpkg.crossplane.io/crossplane/crossplane:v2.2.0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "crossplane",
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "initContainers": [
                            {
                                "args": [
                                    "rbac",
                                    "init"
                                ],
                                "env": [
                                    {
                                        "name": "GOMAXPROCS",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "containerName": "crossplane-init",
                                                "divisor": "1",
                                                "resource": "limits.cpu"
                                            }
                                        }
                                    },
                                    {
                                        "name": "GOMEMLIMIT",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "containerName": "crossplane-init",
                                                "divisor": "1",
                                                "resource": "limits.memory"
                                            }
                                        }
                                    }
                                ],
                                "image": "xpkg.crossplane.io/crossplane/crossplane:v2.2.0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "crossplane-init",
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "rbac-manager",
                        "serviceAccountName": "rbac-manager",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:10Z",
                "generation": 1,
                "labels": {
                    "pkg.crossplane.io/function": "function-auto-ready",
                    "pkg.crossplane.io/revision": "function-auto-ready-a37a591901b6",
                    "pod-template-hash": "6cf4758b49"
                },
                "name": "function-auto-ready-a37a591901b6-6cf4758b49",
                "namespace": "crossplane-system",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "function-auto-ready-a37a591901b6",
                        "uid": "b3b5eedb-99cd-4104-ba97-fc9124b3fd89"
                    }
                ],
                "resourceVersion": "30680",
                "uid": "d5259671-e050-49b6-a1d1-02f9d1768895"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "pkg.crossplane.io/function": "function-auto-ready",
                        "pkg.crossplane.io/revision": "function-auto-ready-a37a591901b6",
                        "pod-template-hash": "6cf4758b49"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "pkg.crossplane.io/function": "function-auto-ready",
                            "pkg.crossplane.io/revision": "function-auto-ready-a37a591901b6",
                            "pod-template-hash": "6cf4758b49"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "TLS_SERVER_CERTS_DIR",
                                        "value": "/tls/server"
                                    },
                                    {
                                        "name": "FUNCTION_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.labels['pkg.crossplane.io/function']"
                                            }
                                        }
                                    },
                                    {
                                        "name": "REVISION_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.labels['pkg.crossplane.io/revision']"
                                            }
                                        }
                                    },
                                    {
                                        "name": "REVISION_UID",
                                        "value": "417e4dde-9c23-4512-9b83-97fa0f50a9cc"
                                    }
                                ],
                                "image": "xpkg.upbound.io/crossplane-contrib/function-auto-ready:v0.6.3",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "package-runtime",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9443,
                                        "name": "grpc",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {},
                                "securityContext": {},
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/templates/xnamespace",
                                        "name": "xnamespace-templates",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/templates/xtestplatformcluster",
                                        "name": "xtestplatformcluster-templates",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/tls/server",
                                        "name": "tls-server-certs",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "function-auto-ready-a37a591901b6",
                        "serviceAccountName": "function-auto-ready-a37a591901b6",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "xnamespace-templates"
                                },
                                "name": "xnamespace-templates"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "xtestplatformcluster-templates"
                                },
                                "name": "xtestplatformcluster-templates"
                            },
                            {
                                "name": "tls-server-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "tls.crt",
                                            "path": "tls.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "tls.key"
                                        },
                                        {
                                            "key": "ca.crt",
                                            "path": "ca.crt"
                                        }
                                    ],
                                    "secretName": "function-auto-ready-tls-server"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:11Z",
                "generation": 1,
                "labels": {
                    "pkg.crossplane.io/function": "function-go-templating",
                    "pkg.crossplane.io/revision": "function-go-templating-ec55f6817a88",
                    "pod-template-hash": "66c746cf89"
                },
                "name": "function-go-templating-ec55f6817a88-66c746cf89",
                "namespace": "crossplane-system",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "function-go-templating-ec55f6817a88",
                        "uid": "03b83e6e-385d-48dd-b255-ea8b4003bdad"
                    }
                ],
                "resourceVersion": "30635",
                "uid": "166d87fa-3949-4ac2-9abb-d61ed7d7d5f6"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "pkg.crossplane.io/function": "function-go-templating",
                        "pkg.crossplane.io/revision": "function-go-templating-ec55f6817a88",
                        "pod-template-hash": "66c746cf89"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "pkg.crossplane.io/function": "function-go-templating",
                            "pkg.crossplane.io/revision": "function-go-templating-ec55f6817a88",
                            "pod-template-hash": "66c746cf89"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "TLS_SERVER_CERTS_DIR",
                                        "value": "/tls/server"
                                    },
                                    {
                                        "name": "FUNCTION_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.labels['pkg.crossplane.io/function']"
                                            }
                                        }
                                    },
                                    {
                                        "name": "REVISION_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.labels['pkg.crossplane.io/revision']"
                                            }
                                        }
                                    },
                                    {
                                        "name": "REVISION_UID",
                                        "value": "b5222b17-a9f0-45f9-a965-5de14374ebba"
                                    }
                                ],
                                "image": "xpkg.upbound.io/crossplane-contrib/function-go-templating:v0.12.0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "package-runtime",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9443,
                                        "name": "grpc",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {},
                                "securityContext": {},
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/templates/xnamespace",
                                        "name": "xnamespace-templates",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/templates/xtestplatformcluster",
                                        "name": "xtestplatformcluster-templates",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/tls/server",
                                        "name": "tls-server-certs",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "function-go-templating-ec55f6817a88",
                        "serviceAccountName": "function-go-templating-ec55f6817a88",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "xnamespace-templates"
                                },
                                "name": "xnamespace-templates"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "xtestplatformcluster-templates"
                                },
                                "name": "xtestplatformcluster-templates"
                            },
                            {
                                "name": "tls-server-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "tls.crt",
                                            "path": "tls.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "tls.key"
                                        },
                                        {
                                            "key": "ca.crt",
                                            "path": "ca.crt"
                                        }
                                    ],
                                    "secretName": "function-go-templating-tls-server"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:10Z",
                "generation": 1,
                "labels": {
                    "pkg.crossplane.io/function": "function-patch-and-transform",
                    "pkg.crossplane.io/revision": "function-patch-and-transform-a4b98f52af5b",
                    "pod-template-hash": "6df966b764"
                },
                "name": "function-patch-and-transform-a4b98f52af5b-6df966b764",
                "namespace": "crossplane-system",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "function-patch-and-transform-a4b98f52af5b",
                        "uid": "d08ca011-8c21-4771-b41c-6d9f7ae7a7ad"
                    }
                ],
                "resourceVersion": "30642",
                "uid": "c7d83361-3053-49b9-a2ff-06c7f5f8f624"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "pkg.crossplane.io/function": "function-patch-and-transform",
                        "pkg.crossplane.io/revision": "function-patch-and-transform-a4b98f52af5b",
                        "pod-template-hash": "6df966b764"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "pkg.crossplane.io/function": "function-patch-and-transform",
                            "pkg.crossplane.io/revision": "function-patch-and-transform-a4b98f52af5b",
                            "pod-template-hash": "6df966b764"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "TLS_SERVER_CERTS_DIR",
                                        "value": "/tls/server"
                                    },
                                    {
                                        "name": "FUNCTION_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.labels['pkg.crossplane.io/function']"
                                            }
                                        }
                                    },
                                    {
                                        "name": "REVISION_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.labels['pkg.crossplane.io/revision']"
                                            }
                                        }
                                    },
                                    {
                                        "name": "REVISION_UID",
                                        "value": "d910acf0-cb47-4a67-bbc1-4d9a7360030f"
                                    }
                                ],
                                "image": "xpkg.upbound.io/crossplane-contrib/function-patch-and-transform:v0.10.3",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "package-runtime",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9443,
                                        "name": "grpc",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {},
                                "securityContext": {},
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/templates/xnamespace",
                                        "name": "xnamespace-templates",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/templates/xtestplatformcluster",
                                        "name": "xtestplatformcluster-templates",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/tls/server",
                                        "name": "tls-server-certs",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "function-patch-and-transform-a4b98f52af5b",
                        "serviceAccountName": "function-patch-and-transform-a4b98f52af5b",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "xnamespace-templates"
                                },
                                "name": "xnamespace-templates"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "xtestplatformcluster-templates"
                                },
                                "name": "xtestplatformcluster-templates"
                            },
                            {
                                "name": "tls-server-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "tls.crt",
                                            "path": "tls.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "tls.key"
                                        },
                                        {
                                            "key": "ca.crt",
                                            "path": "ca.crt"
                                        }
                                    ],
                                    "secretName": "function-patch-and-transform-tls-server"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:11Z",
                "generation": 1,
                "labels": {
                    "pkg.crossplane.io/provider": "provider-kubernetes",
                    "pkg.crossplane.io/revision": "provider-kubernetes-f6665ef36536",
                    "pod-template-hash": "d658bb6d4"
                },
                "name": "provider-kubernetes-f6665ef36536-d658bb6d4",
                "namespace": "crossplane-system",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "provider-kubernetes-f6665ef36536",
                        "uid": "944002cc-dd93-4a38-aef2-965cdf93b892"
                    }
                ],
                "resourceVersion": "30591",
                "uid": "aa140f5e-3165-4614-8253-7f98812749d6"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "pkg.crossplane.io/provider": "provider-kubernetes",
                        "pkg.crossplane.io/revision": "provider-kubernetes-f6665ef36536",
                        "pod-template-hash": "d658bb6d4"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "prometheus.io/path": "/metrics",
                            "prometheus.io/port": "8080",
                            "prometheus.io/scrape": "true"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "pkg.crossplane.io/provider": "provider-kubernetes",
                            "pkg.crossplane.io/revision": "provider-kubernetes-f6665ef36536",
                            "pod-template-hash": "d658bb6d4"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--sanitize-secrets"
                                ],
                                "env": [
                                    {
                                        "name": "TLS_CLIENT_CERTS_DIR",
                                        "value": "/tls/client"
                                    },
                                    {
                                        "name": "TLS_SERVER_CERTS_DIR",
                                        "value": "/tls/server"
                                    },
                                    {
                                        "name": "POD_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "PROVIDER_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.labels['pkg.crossplane.io/provider']"
                                            }
                                        }
                                    },
                                    {
                                        "name": "REVISION_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.labels['pkg.crossplane.io/revision']"
                                            }
                                        }
                                    },
                                    {
                                        "name": "REVISION_UID",
                                        "value": "56c62aea-4df7-4256-a7fe-f7fabaebcdcb"
                                    },
                                    {
                                        "name": "WEBHOOK_TLS_CERT_DIR",
                                        "value": "$(TLS_SERVER_CERTS_DIR)"
                                    }
                                ],
                                "image": "xpkg.upbound.io/crossplane-contrib/provider-kubernetes:v1.2.1",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "package-runtime",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9443,
                                        "name": "webhook",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {},
                                "securityContext": {},
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tls/client",
                                        "name": "tls-client-certs",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/tls/server",
                                        "name": "tls-server-certs",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "provider-kubernetes",
                        "serviceAccountName": "provider-kubernetes",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "tls-client-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "tls.crt",
                                            "path": "tls.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "tls.key"
                                        },
                                        {
                                            "key": "ca.crt",
                                            "path": "ca.crt"
                                        }
                                    ],
                                    "secretName": "provider-kubernetes-tls-client"
                                }
                            },
                            {
                                "name": "tls-server-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "tls.crt",
                                            "path": "tls.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "tls.key"
                                        },
                                        {
                                            "key": "ca.crt",
                                            "path": "ca.crt"
                                        }
                                    ],
                                    "secretName": "provider-kubernetes-tls-server"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "dora-metrics-in-cluster-local:apps/Deployment:dora-metrics/exporter",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:13:28Z",
                "generation": 1,
                "labels": {
                    "app": "exporter",
                    "pod-template-hash": "5dfc68f599"
                },
                "name": "exporter-5dfc68f599",
                "namespace": "dora-metrics",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "exporter",
                        "uid": "ac20a8e5-461b-4359-970d-528a44297c9d"
                    }
                ],
                "resourceVersion": "21964",
                "uid": "33d83625-2179-4ecc-9519-3cfedcc79be1"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "exporter",
                        "pod-template-hash": "5dfc68f599"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "exporter",
                            "pod-template-hash": "5dfc68f599"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "GITHUB_TOKEN",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "github",
                                                "name": "exporters-secret",
                                                "optional": false
                                            }
                                        }
                                    },
                                    {
                                        "name": "PAGERDUTY_API_KEY",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "pager-duty-token",
                                                "name": "exporters-secret",
                                                "optional": false
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/dora-metrics:5c6ee5f7130dabfddab0b775bd36c867cbdf8403",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "container",
                                "ports": [
                                    {
                                        "containerPort": 9101,
                                        "name": "metrics-port",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "5m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true
                        },
                        "serviceAccount": "dora-metrics-exporter-sa",
                        "serviceAccountName": "dora-metrics-exporter-sa",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/tracking-id": "monitoring-workload-prometheus-in-cluster-local:apps/Deployment:dummy-service/kube-rbac-proxy",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:13:39Z",
                "generation": 1,
                "labels": {
                    "app": "kube-rbac-proxy",
                    "pod-template-hash": "7cdd67b8d4"
                },
                "name": "kube-rbac-proxy-7cdd67b8d4",
                "namespace": "dummy-service",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "kube-rbac-proxy",
                        "uid": "d4840b7d-071f-4e99-bca5-be17f7836a7c"
                    }
                ],
                "resourceVersion": "21295",
                "uid": "2db8a0d5-60dc-4537-a4af-bf7b60ef4e34"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "kube-rbac-proxy",
                        "pod-template-hash": "7cdd67b8d4"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "kube-rbac-proxy",
                            "pod-template-hash": "7cdd67b8d4"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:8443",
                                    "--upstream=http://127.0.0.1:8081/",
                                    "--logtostderr=true",
                                    "--v=10"
                                ],
                                "image": "quay.io/brancz/kube-rbac-proxy:v0.14.0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "200Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "200Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            },
                            {
                                "args": [
                                    "--bind=127.0.0.1:8081"
                                ],
                                "image": "quay.io/brancz/prometheus-example-app:v0.1.0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "prometheus-example-app",
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "200Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "200Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "kube-rbac-proxy",
                        "serviceAccountName": "kube-rbac-proxy",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "image-controller-in-cluster-local:apps/Deployment:image-controller/image-controller-controller-manager",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:13:47Z",
                "generation": 1,
                "labels": {
                    "control-plane": "controller-manager",
                    "pod-template-hash": "f59df7f8f"
                },
                "name": "image-controller-controller-manager-f59df7f8f",
                "namespace": "image-controller",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "image-controller-controller-manager",
                        "uid": "7a707a6d-8321-4de6-809e-e9b9ecd01502"
                    }
                ],
                "resourceVersion": "21923",
                "uid": "7a2aa18b-4e59-4dec-916e-b896d3f0c097"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "control-plane": "controller-manager",
                        "pod-template-hash": "f59df7f8f"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "kubectl.kubernetes.io/default-container": "manager"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "control-plane": "controller-manager",
                            "pod-template-hash": "f59df7f8f"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--metrics-bind-address=:8443",
                                    "--leader-elect=false",
                                    "--health-probe-bind-address=:8081",
                                    "--zap-encoder=console"
                                ],
                                "command": [
                                    "/manager"
                                ],
                                "image": "quay.io/konflux-ci/image-controller:9097a5b3ec10db9d827bf365bbb7c188339eb912",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "ports": [
                                    {
                                        "containerPort": 8081,
                                        "name": "probes",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "2Gi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "20Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/workspace",
                                        "name": "quaytoken",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "image-controller-controller-manager",
                        "serviceAccountName": "image-controller-controller-manager",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "name": "quaytoken",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "quaytoken"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "image-rbac-proxy-in-cluster-local:apps/Deployment:image-rbac-proxy/dex",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/no-anti-affinity": "Using topologySpreadConstraints"
                },
                "creationTimestamp": "2026-04-19T19:14:00Z",
                "generation": 2,
                "labels": {
                    "app": "dex",
                    "pod-template-hash": "5cb7c88dc9"
                },
                "name": "dex-5cb7c88dc9",
                "namespace": "image-rbac-proxy",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "dex",
                        "uid": "d9c2014d-3a86-4972-b7a6-038635a33c92"
                    }
                ],
                "resourceVersion": "29302",
                "uid": "48d3633b-b810-4882-98d9-cc82253cad1d"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "app": "dex",
                        "pod-template-hash": "5cb7c88dc9"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "dex",
                            "pod-template-hash": "5cb7c88dc9"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "/usr/local/bin/dex",
                                    "serve",
                                    "/etc/dex/cfg/config.yaml"
                                ],
                                "env": [
                                    {
                                        "name": "OPENSHIFT_OAUTH_CLIENT_SECRET",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "token",
                                                "name": "dex-client"
                                            }
                                        }
                                    },
                                    {
                                        "name": "OAUTH2_CLIENT_SECRET",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "client-secret",
                                                "name": "image-proxy-client-secret"
                                            }
                                        }
                                    }
                                ],
                                "image": "ghcr.io/dexidp/dex:v2.32.0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "dex",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 5558,
                                        "name": "telemetry",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz/ready",
                                        "port": "telemetry",
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/dex/cfg",
                                        "name": "dex"
                                    },
                                    {
                                        "mountPath": "/etc/dex/tls",
                                        "name": "tls"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "dex",
                        "serviceAccountName": "dex",
                        "terminationGracePeriodSeconds": 30,
                        "topologySpreadConstraints": [
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "app": "dex"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "topology.kubernetes.io/zone",
                                "whenUnsatisfiable": "ScheduleAnyway"
                            }
                        ],
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "dex-config.yaml",
                                            "path": "config.yaml"
                                        }
                                    ],
                                    "name": "dex-9mgh6c988h"
                                },
                                "name": "dex"
                            },
                            {
                                "name": "tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "dex-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 2,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "image-rbac-proxy-in-cluster-local:apps/Deployment:image-rbac-proxy/dex",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "2",
                    "ignore-check.kube-linter.io/no-anti-affinity": "Using topologySpreadConstraints"
                },
                "creationTimestamp": "2026-04-19T19:15:50Z",
                "generation": 1,
                "labels": {
                    "app": "dex",
                    "pod-template-hash": "74c8c6549f"
                },
                "name": "dex-74c8c6549f",
                "namespace": "image-rbac-proxy",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "dex",
                        "uid": "d9c2014d-3a86-4972-b7a6-038635a33c92"
                    }
                ],
                "resourceVersion": "29292",
                "uid": "136a1eea-7aaf-43db-b289-106543997c47"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "dex",
                        "pod-template-hash": "74c8c6549f"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "kubectl.kubernetes.io/restartedAt": "2026-04-19T19:15:50Z"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "dex",
                            "pod-template-hash": "74c8c6549f"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "/usr/local/bin/dex",
                                    "serve",
                                    "/etc/dex/cfg/config.yaml"
                                ],
                                "env": [
                                    {
                                        "name": "OPENSHIFT_OAUTH_CLIENT_SECRET",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "token",
                                                "name": "dex-client"
                                            }
                                        }
                                    },
                                    {
                                        "name": "OAUTH2_CLIENT_SECRET",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "client-secret",
                                                "name": "image-proxy-client-secret"
                                            }
                                        }
                                    }
                                ],
                                "image": "ghcr.io/dexidp/dex:v2.32.0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "dex",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 5558,
                                        "name": "telemetry",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz/ready",
                                        "port": "telemetry",
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/dex/cfg",
                                        "name": "dex"
                                    },
                                    {
                                        "mountPath": "/etc/dex/tls",
                                        "name": "tls"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "dex",
                        "serviceAccountName": "dex",
                        "terminationGracePeriodSeconds": 30,
                        "topologySpreadConstraints": [
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "app": "dex"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "topology.kubernetes.io/zone",
                                "whenUnsatisfiable": "ScheduleAnyway"
                            }
                        ],
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "dex-config.yaml",
                                            "path": "config.yaml"
                                        }
                                    ],
                                    "name": "dex-9mgh6c988h"
                                },
                                "name": "dex"
                            },
                            {
                                "name": "tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "dex-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "image-rbac-proxy-in-cluster-local:apps/Deployment:image-rbac-proxy/image-rbac-proxy",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "2"
                },
                "creationTimestamp": "2026-04-19T19:15:04Z",
                "generation": 1,
                "labels": {
                    "app": "image-rbac-proxy",
                    "pod-template-hash": "5ddc5d569c"
                },
                "name": "image-rbac-proxy-5ddc5d569c",
                "namespace": "image-rbac-proxy",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "image-rbac-proxy",
                        "uid": "eb1568e6-5347-4a13-9f05-3f91610baab5"
                    }
                ],
                "resourceVersion": "28293",
                "uid": "771a3491-93c3-4aeb-afdf-4ff26de82e0a"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "image-rbac-proxy",
                        "pod-template-hash": "5ddc5d569c"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "kubectl.kubernetes.io/restartedAt": "2026-04-19T19:15:04Z"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "image-rbac-proxy",
                            "pod-template-hash": "5ddc5d569c"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "QUAY_USERNAME",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "quay-username",
                                                "name": "quay-robot-account"
                                            }
                                        }
                                    },
                                    {
                                        "name": "QUAY_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "quay-password",
                                                "name": "quay-robot-account"
                                            }
                                        }
                                    },
                                    {
                                        "name": "BACKEND_URL",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "backend-url",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "BACKEND_NAMESPACE",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "backend-namespace",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CLUSTER_URL",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "cluster-url",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "PROXY_URL",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "proxy-url",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "MEMCACHE_SERVERS",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "memcache-servers",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "OAUTH_TOKEN",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "token",
                                                "name": "image-rbac-proxy-token"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DEX_URL",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "dex-url",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DEX_CLIENT_ID",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "dex-client-id",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DEX_CLIENT_SECRET",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "client-secret",
                                                "name": "image-proxy-client-secret"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/image-rbac-proxy:8fc718007abb984ee2f29acb860601f2bd1cdce6",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/_ping",
                                        "port": 4000,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 15,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "image-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 4000,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/_ping",
                                        "port": 4000,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "250m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/certs",
                                        "name": "tls"
                                    },
                                    {
                                        "mountPath": "/etc/ssl/certs",
                                        "name": "trusted-ca",
                                        "readOnly": true
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "-m",
                                    "64"
                                ],
                                "image": "quay.io/kubearchive/memcached:1.6.39",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "memcache",
                                "ports": [
                                    {
                                        "containerPort": 11211,
                                        "name": "memcache",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "200m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "proxy-tls"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "ca-bundle.crt"
                                        }
                                    ],
                                    "name": "trusted-ca",
                                    "optional": true
                                },
                                "name": "trusted-ca"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "image-rbac-proxy-in-cluster-local:apps/Deployment:image-rbac-proxy/image-rbac-proxy",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:00Z",
                "generation": 2,
                "labels": {
                    "app": "image-rbac-proxy",
                    "pod-template-hash": "78d5f49544"
                },
                "name": "image-rbac-proxy-78d5f49544",
                "namespace": "image-rbac-proxy",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "image-rbac-proxy",
                        "uid": "eb1568e6-5347-4a13-9f05-3f91610baab5"
                    }
                ],
                "resourceVersion": "28316",
                "uid": "b197dbcf-3483-4476-9997-ecea11a7bc3e"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "app": "image-rbac-proxy",
                        "pod-template-hash": "78d5f49544"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "image-rbac-proxy",
                            "pod-template-hash": "78d5f49544"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "QUAY_USERNAME",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "quay-username",
                                                "name": "quay-robot-account"
                                            }
                                        }
                                    },
                                    {
                                        "name": "QUAY_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "quay-password",
                                                "name": "quay-robot-account"
                                            }
                                        }
                                    },
                                    {
                                        "name": "BACKEND_URL",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "backend-url",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "BACKEND_NAMESPACE",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "backend-namespace",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CLUSTER_URL",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "cluster-url",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "PROXY_URL",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "proxy-url",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "MEMCACHE_SERVERS",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "memcache-servers",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "OAUTH_TOKEN",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "token",
                                                "name": "image-rbac-proxy-token"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DEX_URL",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "dex-url",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DEX_CLIENT_ID",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "dex-client-id",
                                                "name": "image-rbac-proxy"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DEX_CLIENT_SECRET",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "client-secret",
                                                "name": "image-proxy-client-secret"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/image-rbac-proxy:8fc718007abb984ee2f29acb860601f2bd1cdce6",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/_ping",
                                        "port": 4000,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 15,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "image-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 4000,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/_ping",
                                        "port": 4000,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "250m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/certs",
                                        "name": "tls"
                                    },
                                    {
                                        "mountPath": "/etc/ssl/certs",
                                        "name": "trusted-ca",
                                        "readOnly": true
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "-m",
                                    "64"
                                ],
                                "image": "quay.io/kubearchive/memcached:1.6.39",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "memcache",
                                "ports": [
                                    {
                                        "containerPort": 11211,
                                        "name": "memcache",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "200m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "proxy-tls"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "ca-bundle.crt"
                                        }
                                    ],
                                    "name": "trusted-ca",
                                    "optional": true
                                },
                                "name": "trusted-ca"
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 2,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "integration-in-cluster-local:apps/Deployment:integration-service/integration-service-controller-manager",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:38Z",
                "generation": 1,
                "labels": {
                    "control-plane": "controller-manager",
                    "pod-template-hash": "5c6cbdd477"
                },
                "name": "integration-service-controller-manager-5c6cbdd477",
                "namespace": "integration-service",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "integration-service-controller-manager",
                        "uid": "f19c114a-dd48-475e-a30a-9c54ae69766c"
                    }
                ],
                "resourceVersion": "25875",
                "uid": "03497c27-0893-4f94-af8d-bb8932fd55f0"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "control-plane": "controller-manager",
                        "pod-template-hash": "5c6cbdd477"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "kubectl.kubernetes.io/default-container": "manager"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "control-plane": "controller-manager",
                            "pod-template-hash": "5c6cbdd477"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--leader-elect=false"
                                ],
                                "command": [
                                    "/manager"
                                ],
                                "env": [
                                    {
                                        "name": "CONSOLE_NAME",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "CONSOLE_NAME",
                                                "name": "integration-config-h96k4ckh4c",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "CONSOLE_URL",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "CONSOLE_URL",
                                                "name": "integration-config-h96k4ckh4c",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "CONSOLE_URL_TASKLOG",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "CONSOLE_URL_TASKLOG",
                                                "name": "integration-config-h96k4ckh4c",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "PIPELINE_TIMEOUT",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "PIPELINE_TIMEOUT",
                                                "name": "pipelinerun-options-g6875ct7d8",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "TASKS_TIMEOUT",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "TASKS_TIMEOUT",
                                                "name": "pipelinerun-options-g6875ct7d8",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "FINALLY_TIMEOUT",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "FINALLY_TIMEOUT",
                                                "name": "pipelinerun-options-g6875ct7d8",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "INTEGRATION_NS",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "INTEGRATION_NS",
                                                "name": "integration-config-h96k4ckh4c",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "PAC_SECRET",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "PAC_SECRET",
                                                "name": "integration-config-h96k4ckh4c",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "GITHUBAPPLICATION_ID",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "GITHUBAPPLICATION_ID",
                                                "name": "integration-config-h96k4ckh4c",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "GITHUBPRIVATE_KEY",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "GITHUBPRIVATE_KEY",
                                                "name": "integration-config-h96k4ckh4c",
                                                "optional": true
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/integration-service:07e3f6374d1e62c0273d9e06fe84fa4c6c591f3e",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "webhook-server",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8081,
                                        "name": "probes",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "1Gi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "20Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "trusted-ca",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/tmp/k8s-webhook-server/serving-certs",
                                        "name": "cert",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true
                        },
                        "serviceAccount": "integration-service-controller-manager",
                        "serviceAccountName": "integration-service-controller-manager",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "trusted-ca-6ct58987ht"
                                },
                                "name": "trusted-ca"
                            },
                            {
                                "name": "cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "webhook-server-cert"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "knative-eventing-in-cluster-local:apps/Deployment:knative-eventing/eventing-controller",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:26Z",
                "generation": 1,
                "labels": {
                    "app": "eventing-controller",
                    "app.kubernetes.io/component": "eventing-controller",
                    "app.kubernetes.io/name": "knative-eventing",
                    "app.kubernetes.io/version": "1.16.7",
                    "pod-template-hash": "779579b56"
                },
                "name": "eventing-controller-779579b56",
                "namespace": "knative-eventing",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "eventing-controller",
                        "uid": "b0bd32e3-25c3-422c-8940-07b6ad5218ab"
                    }
                ],
                "resourceVersion": "26233",
                "uid": "7343b8f3-73bf-438e-9425-041401cde440"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "eventing-controller",
                        "pod-template-hash": "779579b56"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "eventing-controller",
                            "app.kubernetes.io/component": "eventing-controller",
                            "app.kubernetes.io/name": "knative-eventing",
                            "app.kubernetes.io/version": "1.16.7",
                            "pod-template-hash": "779579b56"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "app": "eventing-controller"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "APISERVER_RA_IMAGE",
                                        "value": "quay.io/kubearchive/eventing-adapter:remove-sar"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "config-observability"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "knative.dev/eventing"
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/kubearchive/eventing-controller:remove-sar",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": "probes",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 20,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "eventing-controller",
                                "ports": [
                                    {
                                        "containerPort": 9090,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8008,
                                        "name": "profiling",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8080,
                                        "name": "probes",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readiness",
                                        "port": "probes",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 20,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "200m",
                                        "memory": "500Mi"
                                    },
                                    "requests": {
                                        "cpu": "200m",
                                        "memory": "500Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": false,
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "eventing-controller",
                        "serviceAccountName": "eventing-controller",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "knative-eventing-in-cluster-local:apps/Deployment:knative-eventing/eventing-webhook",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:27Z",
                "generation": 1,
                "labels": {
                    "app": "eventing-webhook",
                    "app.kubernetes.io/component": "eventing-webhook",
                    "app.kubernetes.io/name": "knative-eventing",
                    "app.kubernetes.io/version": "1.16.7",
                    "pod-template-hash": "779c8ffc7c",
                    "role": "eventing-webhook"
                },
                "name": "eventing-webhook-779c8ffc7c",
                "namespace": "knative-eventing",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "eventing-webhook",
                        "uid": "19fe3c89-f76d-4c72-9a7d-aad256e6e45b"
                    }
                ],
                "resourceVersion": "25153",
                "uid": "e6475c18-4b4a-43d8-b270-1bade9a48832"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "eventing-webhook",
                        "pod-template-hash": "779c8ffc7c",
                        "role": "eventing-webhook"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "eventing-webhook",
                            "app.kubernetes.io/component": "eventing-webhook",
                            "app.kubernetes.io/name": "knative-eventing",
                            "app.kubernetes.io/version": "1.16.7",
                            "pod-template-hash": "779c8ffc7c",
                            "role": "eventing-webhook"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "app": "eventing-webhook"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "knative.dev/eventing"
                                    },
                                    {
                                        "name": "WEBHOOK_NAME",
                                        "value": "eventing-webhook"
                                    },
                                    {
                                        "name": "WEBHOOK_PORT",
                                        "value": "8443"
                                    },
                                    {
                                        "name": "SINK_BINDING_SELECTION_MODE",
                                        "value": "exclusion"
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    }
                                ],
                                "image": "gcr.io/knative-releases/knative.dev/eventing/cmd/webhook@sha256:b904a052b34366a9ad8aba9ea040085e9332f87521324857ffc4bacb0c580d09",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "httpHeaders": [
                                            {
                                                "name": "k-kubelet-probe",
                                                "value": "webhook"
                                            }
                                        ],
                                        "path": "/",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 120,
                                    "periodSeconds": 1,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "eventing-webhook",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https-webhook",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9090,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8008,
                                        "name": "profiling",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "httpHeaders": [
                                            {
                                                "name": "k-kubelet-probe",
                                                "value": "webhook"
                                            }
                                        ],
                                        "path": "/",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 1,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "200m",
                                        "memory": "200Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "50Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": false,
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "eventing-webhook",
                        "serviceAccountName": "eventing-webhook",
                        "terminationGracePeriodSeconds": 300
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "knative-eventing-in-cluster-local:apps/Deployment:knative-eventing/imc-controller",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:26Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "imc-controller",
                    "app.kubernetes.io/name": "knative-eventing",
                    "app.kubernetes.io/version": "1.16.7",
                    "messaging.knative.dev/channel": "in-memory-channel",
                    "messaging.knative.dev/role": "controller",
                    "pod-template-hash": "64cd67c879"
                },
                "name": "imc-controller-64cd67c879",
                "namespace": "knative-eventing",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "imc-controller",
                        "uid": "e007267d-b32c-4307-ba66-f8ddd40ae8ad"
                    }
                ],
                "resourceVersion": "25374",
                "uid": "a4253bf9-b095-4e8f-bfa6-cbd17cab282a"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "messaging.knative.dev/channel": "in-memory-channel",
                        "messaging.knative.dev/role": "controller",
                        "pod-template-hash": "64cd67c879"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "imc-controller",
                            "app.kubernetes.io/name": "knative-eventing",
                            "app.kubernetes.io/version": "1.16.7",
                            "messaging.knative.dev/channel": "in-memory-channel",
                            "messaging.knative.dev/role": "controller",
                            "pod-template-hash": "64cd67c879"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "messaging.knative.dev/channel": "in-memory-channel",
                                                    "messaging.knative.dev/role": "controller"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "WEBHOOK_NAME",
                                        "value": "inmemorychannel-webhook"
                                    },
                                    {
                                        "name": "WEBHOOK_PORT",
                                        "value": "8443"
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "config-observability"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "knative.dev/inmemorychannel-controller"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DISPATCHER_IMAGE",
                                        "value": "gcr.io/knative-releases/knative.dev/eventing/cmd/in_memory/channel_dispatcher@sha256:5a1eccadf43ae80b1bb02361da0018e0748fc3a89f0cbbf5395a91760937ce2f"
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    }
                                ],
                                "image": "gcr.io/knative-releases/knative.dev/eventing/cmd/in_memory/channel_controller@sha256:62c0aaf048b327b5a2b263c15d21147fb099293c8ea7bbe369e3bfe97c0865da",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "httpHeaders": [
                                            {
                                                "name": "k-kubelet-probe",
                                                "value": "webhook"
                                            }
                                        ],
                                        "path": "/",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 120,
                                    "periodSeconds": 1,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "controller",
                                "ports": [
                                    {
                                        "containerPort": 9090,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8008,
                                        "name": "profiling",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8443,
                                        "name": "https-webhook",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "httpHeaders": [
                                            {
                                                "name": "k-kubelet-probe",
                                                "value": "webhook"
                                            }
                                        ],
                                        "path": "/",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 1,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "150m",
                                        "memory": "1Gi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "1Gi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": false,
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "imc-controller",
                        "serviceAccountName": "imc-controller",
                        "terminationGracePeriodSeconds": 300
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "knative-eventing-in-cluster-local:apps/Deployment:knative-eventing/imc-dispatcher",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:27Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "imc-dispatcher",
                    "app.kubernetes.io/name": "knative-eventing",
                    "app.kubernetes.io/version": "1.16.7",
                    "messaging.knative.dev/channel": "in-memory-channel",
                    "messaging.knative.dev/role": "dispatcher",
                    "pod-template-hash": "65fd79f75f"
                },
                "name": "imc-dispatcher-65fd79f75f",
                "namespace": "knative-eventing",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "imc-dispatcher",
                        "uid": "9af427f1-9a06-4b03-ac04-9eed1085be9a"
                    }
                ],
                "resourceVersion": "25028",
                "uid": "76f74d58-46d7-45c5-ab55-fdc98cf4df78"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "messaging.knative.dev/channel": "in-memory-channel",
                        "messaging.knative.dev/role": "dispatcher",
                        "pod-template-hash": "65fd79f75f"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "imc-dispatcher",
                            "app.kubernetes.io/name": "knative-eventing",
                            "app.kubernetes.io/version": "1.16.7",
                            "messaging.knative.dev/channel": "in-memory-channel",
                            "messaging.knative.dev/role": "dispatcher",
                            "pod-template-hash": "65fd79f75f"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "messaging.knative.dev/channel": "in-memory-channel",
                                                    "messaging.knative.dev/role": "dispatcher"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "config-observability"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "knative.dev/inmemorychannel-dispatcher"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CONTAINER_NAME",
                                        "value": "dispatcher"
                                    },
                                    {
                                        "name": "MAX_IDLE_CONNS",
                                        "value": "1000"
                                    },
                                    {
                                        "name": "MAX_IDLE_CONNS_PER_HOST",
                                        "value": "1000"
                                    }
                                ],
                                "image": "gcr.io/knative-releases/knative.dev/eventing/cmd/in_memory/channel_dispatcher@sha256:5a1eccadf43ae80b1bb02361da0018e0748fc3a89f0cbbf5395a91760937ce2f",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 2,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "dispatcher",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "http",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9090,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 2,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "150m",
                                        "memory": "200Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "100Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": false,
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "imc-dispatcher",
                        "serviceAccountName": "imc-dispatcher",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "knative-eventing-in-cluster-local:apps/Deployment:knative-eventing/job-sink",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:26Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "job-sink",
                    "app.kubernetes.io/name": "knative-eventing",
                    "app.kubernetes.io/version": "1.16.7",
                    "pod-template-hash": "656f7ff7bc",
                    "sinks.knative.dev/sink": "job-sink"
                },
                "name": "job-sink-656f7ff7bc",
                "namespace": "knative-eventing",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "job-sink",
                        "uid": "0556b6cf-9f80-425a-b61d-a76d5b3ef715"
                    }
                ],
                "resourceVersion": "25325",
                "uid": "a9bccf29-5c77-43df-af94-124d58f88c73"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "pod-template-hash": "656f7ff7bc",
                        "sinks.knative.dev/sink": "job-sink"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "job-sink",
                            "app.kubernetes.io/name": "knative-eventing",
                            "app.kubernetes.io/version": "1.16.7",
                            "pod-template-hash": "656f7ff7bc",
                            "sinks.knative.dev/sink": "job-sink"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "sinks.knative.dev/sink": "job-sink"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CONTAINER_NAME",
                                        "value": "job-sink"
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "config-observability"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "knative.dev/internal/eventing"
                                    },
                                    {
                                        "name": "INGRESS_PORT",
                                        "value": "8080"
                                    },
                                    {
                                        "name": "INGRESS_PORT_HTTPS",
                                        "value": "8443"
                                    }
                                ],
                                "image": "gcr.io/knative-releases/knative.dev/eventing/cmd/jobsink@sha256:936332d6b61a407a69f235d178e454088ebf1828325da7901a967848b46af18a",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 2,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "job-sink",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "http",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9092,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 2,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "1",
                                        "memory": "2Gi"
                                    },
                                    "requests": {
                                        "cpu": "125m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": false,
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "job-sink",
                        "serviceAccountName": "job-sink",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "knative-eventing-in-cluster-local:apps/Deployment:knative-eventing/mt-broker-controller",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/unset-memory-requirements": "\"Startup traverses all the cluster. Its a known problem, being solved on upstream. See https://github.com/knative/eventing/pull/8418\"\n"
                },
                "creationTimestamp": "2026-04-19T19:14:27Z",
                "generation": 1,
                "labels": {
                    "app": "mt-broker-controller",
                    "app.kubernetes.io/component": "broker-controller",
                    "app.kubernetes.io/name": "knative-eventing",
                    "app.kubernetes.io/version": "1.16.7",
                    "pod-template-hash": "6cc85b5cb5"
                },
                "name": "mt-broker-controller-6cc85b5cb5",
                "namespace": "knative-eventing",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "mt-broker-controller",
                        "uid": "0730dfbb-848c-4894-a1d0-9556c0cdcb81"
                    }
                ],
                "resourceVersion": "25335",
                "uid": "842611ba-8a89-4eb7-ae0a-58b5905ae1cb"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "mt-broker-controller",
                        "pod-template-hash": "6cc85b5cb5"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "mt-broker-controller",
                            "app.kubernetes.io/component": "broker-controller",
                            "app.kubernetes.io/name": "knative-eventing",
                            "app.kubernetes.io/version": "1.16.7",
                            "pod-template-hash": "6cc85b5cb5"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "app": "mt-broker-controller"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "config-observability"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "knative.dev/eventing"
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    }
                                ],
                                "image": "gcr.io/knative-releases/knative.dev/eventing/cmd/mtchannel_broker@sha256:2a079941b5d4f235190928d169071d9bd2398c456dd236d89dc0e9855f2e321d",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "mt-broker-controller",
                                "ports": [
                                    {
                                        "containerPort": 9090,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8008,
                                        "name": "profiling",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "150m"
                                    },
                                    "requests": {
                                        "cpu": "150m",
                                        "memory": "400Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": false,
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "eventing-controller",
                        "serviceAccountName": "eventing-controller",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "knative-eventing-in-cluster-local:apps/Deployment:knative-eventing/mt-broker-filter",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:27Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "broker-filter",
                    "app.kubernetes.io/name": "knative-eventing",
                    "app.kubernetes.io/version": "1.16.7",
                    "eventing.knative.dev/brokerRole": "filter",
                    "pod-template-hash": "bfc9bd7f6"
                },
                "name": "mt-broker-filter-bfc9bd7f6",
                "namespace": "knative-eventing",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "mt-broker-filter",
                        "uid": "cc3af750-2400-4e48-8aa1-e542d658b093"
                    }
                ],
                "resourceVersion": "25331",
                "uid": "e29eaf93-edb3-4621-9c5e-6e86fb061459"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "eventing.knative.dev/brokerRole": "filter",
                        "pod-template-hash": "bfc9bd7f6"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "broker-filter",
                            "app.kubernetes.io/name": "knative-eventing",
                            "app.kubernetes.io/version": "1.16.7",
                            "eventing.knative.dev/brokerRole": "filter",
                            "pod-template-hash": "bfc9bd7f6"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CONTAINER_NAME",
                                        "value": "filter"
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "config-observability"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "knative.dev/internal/eventing"
                                    },
                                    {
                                        "name": "FILTER_PORT",
                                        "value": "8080"
                                    },
                                    {
                                        "name": "FILTER_PORT_HTTPS",
                                        "value": "8443"
                                    }
                                ],
                                "image": "gcr.io/knative-releases/knative.dev/eventing/cmd/broker/filter@sha256:484c6f41e19485725b036fe85c30d47f73d5d5f29d42603806e384805a40982d",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 2,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "filter",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "http",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9092,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 2,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "150m",
                                        "memory": "200Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "100Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": false,
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "mt-broker-filter",
                        "serviceAccountName": "mt-broker-filter",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "knative-eventing-in-cluster-local:apps/Deployment:knative-eventing/mt-broker-ingress",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:27Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "broker-ingress",
                    "app.kubernetes.io/name": "knative-eventing",
                    "app.kubernetes.io/version": "1.16.7",
                    "eventing.knative.dev/brokerRole": "ingress",
                    "pod-template-hash": "75c8c58675"
                },
                "name": "mt-broker-ingress-75c8c58675",
                "namespace": "knative-eventing",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "mt-broker-ingress",
                        "uid": "ceffa7e6-caa2-4f98-b285-835c0e0905b1"
                    }
                ],
                "resourceVersion": "25315",
                "uid": "ffc27f13-af4d-4c4b-a7a9-893c4732bbd9"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "eventing.knative.dev/brokerRole": "ingress",
                        "pod-template-hash": "75c8c58675"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "broker-ingress",
                            "app.kubernetes.io/name": "knative-eventing",
                            "app.kubernetes.io/version": "1.16.7",
                            "eventing.knative.dev/brokerRole": "ingress",
                            "pod-template-hash": "75c8c58675"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CONTAINER_NAME",
                                        "value": "ingress"
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "config-observability"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "knative.dev/internal/eventing"
                                    },
                                    {
                                        "name": "INGRESS_PORT",
                                        "value": "8080"
                                    },
                                    {
                                        "name": "INGRESS_PORT_HTTPS",
                                        "value": "8443"
                                    }
                                ],
                                "image": "gcr.io/knative-releases/knative.dev/eventing/cmd/broker/ingress@sha256:b486f702b9b45a1b889b6d5ec04a167677ed5a582e7e6c7e6f100f1b47caace3",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 2,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "ingress",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "http",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9092,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 2,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "150m",
                                        "memory": "200Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "100Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": false,
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "mt-broker-ingress",
                        "serviceAccountName": "mt-broker-ingress",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "knative-eventing-in-cluster-local:apps/Deployment:knative-eventing/pingsource-mt-adapter",
                    "deployment.kubernetes.io/desired-replicas": "0",
                    "deployment.kubernetes.io/max-replicas": "0",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:27Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "pingsource-mt-adapter",
                    "app.kubernetes.io/name": "knative-eventing",
                    "app.kubernetes.io/version": "1.16.7",
                    "eventing.knative.dev/source": "ping-source-controller",
                    "pod-template-hash": "7689f6f9d",
                    "sources.knative.dev/role": "adapter"
                },
                "name": "pingsource-mt-adapter-7689f6f9d",
                "namespace": "knative-eventing",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "pingsource-mt-adapter",
                        "uid": "2f82c88e-3e08-4da9-9c06-05ebdb2f797b"
                    }
                ],
                "resourceVersion": "24753",
                "uid": "5e8b7b27-172b-4afc-9a0f-e507437b8760"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "eventing.knative.dev/source": "ping-source-controller",
                        "pod-template-hash": "7689f6f9d",
                        "sources.knative.dev/role": "adapter"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "pingsource-mt-adapter",
                            "app.kubernetes.io/name": "knative-eventing",
                            "app.kubernetes.io/version": "1.16.7",
                            "eventing.knative.dev/source": "ping-source-controller",
                            "pod-template-hash": "7689f6f9d",
                            "sources.knative.dev/role": "adapter"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "eventing.knative.dev/source": "ping-source-controller",
                                                    "sources.knative.dev/role": "adapter"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "K_METRICS_CONFIG"
                                    },
                                    {
                                        "name": "K_LOGGING_CONFIG"
                                    },
                                    {
                                        "name": "K_LEADER_ELECTION_CONFIG"
                                    },
                                    {
                                        "name": "K_NO_SHUTDOWN_AFTER"
                                    },
                                    {
                                        "name": "K_SINK_TIMEOUT",
                                        "value": "-1"
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    }
                                ],
                                "image": "gcr.io/knative-releases/knative.dev/eventing/cmd/mtping@sha256:4c56cef6351b48d78129ff01779e7472e78186b3186b7733fcf751a5c25802be",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "dispatcher",
                                "ports": [
                                    {
                                        "containerPort": 9090,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "1",
                                        "memory": "2Gi"
                                    },
                                    "requests": {
                                        "cpu": "125m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": false,
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "pingsource-mt-adapter",
                        "serviceAccountName": "pingsource-mt-adapter",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "observedGeneration": 1,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "disaster-recovery-in-cluster-local:triggers.tekton.dev/EventListener:konflux-disaster-recovery/cron-listener",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:19:21Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/managed-by": "EventListener",
                    "app.kubernetes.io/part-of": "Triggers",
                    "eventlistener": "cron-listener",
                    "pod-template-hash": "5b47d864c4"
                },
                "name": "el-cron-listener-5b47d864c4",
                "namespace": "konflux-disaster-recovery",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "el-cron-listener",
                        "uid": "52244a6e-fc6c-4daf-8b8b-ad5b79d7121b"
                    }
                ],
                "resourceVersion": "38301",
                "uid": "11f3c5f1-b2e9-4a67-a5ed-f12127ab1a12"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/managed-by": "EventListener",
                        "app.kubernetes.io/part-of": "Triggers",
                        "eventlistener": "cron-listener",
                        "pod-template-hash": "5b47d864c4"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/managed-by": "EventListener",
                            "app.kubernetes.io/part-of": "Triggers",
                            "eventlistener": "cron-listener",
                            "pod-template-hash": "5b47d864c4"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--el-name=cron-listener",
                                    "--el-namespace=konflux-disaster-recovery",
                                    "--port=8080",
                                    "--readtimeout=5",
                                    "--writetimeout=40",
                                    "--idletimeout=120",
                                    "--timeouthandler=30",
                                    "--httpclient-readtimeout=30",
                                    "--httpclient-keep-alive=30",
                                    "--httpclient-tlshandshaketimeout=10",
                                    "--httpclient-responseheadertimeout=10",
                                    "--httpclient-expectcontinuetimeout=1",
                                    "--is-multi-ns=false",
                                    "--payload-validation=true",
                                    "--cloudevent-uri=",
                                    "--tls-cert=",
                                    "--tls-key="
                                ],
                                "env": [
                                    {
                                        "name": "K_LOGGING_CONFIG",
                                        "value": "{\"zap-logger-config\":\"{\\n  \\\"level\\\": \\\"info\\\",\\n  \\\"development\\\": false,\\n  \\\"sampling\\\": {\\n    \\\"initial\\\": 100,\\n    \\\"thereafter\\\": 100\\n  },\\n  \\\"outputPaths\\\": [\\\"stdout\\\"],\\n  \\\"errorOutputPaths\\\": [\\\"stderr\\\"],\\n  \\\"encoding\\\": \\\"json\\\",\\n  \\\"encoderConfig\\\": {\\n    \\\"timeKey\\\": \\\"ts\\\",\\n    \\\"levelKey\\\": \\\"level\\\",\\n    \\\"nameKey\\\": \\\"logger\\\",\\n    \\\"callerKey\\\": \\\"caller\\\",\\n    \\\"messageKey\\\": \\\"msg\\\",\\n    \\\"stacktraceKey\\\": \\\"stacktrace\\\",\\n    \\\"lineEnding\\\": \\\"\\\",\\n    \\\"levelEncoder\\\": \\\"\\\",\\n    \\\"timeEncoder\\\": \\\"iso8601\\\",\\n    \\\"durationEncoder\\\": \\\"string\\\",\\n    \\\"callerEncoder\\\": \\\"\\\"\\n  }\\n}\\n\"}"
                                    },
                                    {
                                        "name": "K_METRICS_CONFIG",
                                        "value": "{\"Domain\":\"tekton.dev/triggers\",\"Component\":\"eventlistener\",\"PrometheusPort\":0,\"PrometheusHost\":\"\",\"ConfigMap\":{}}"
                                    },
                                    {
                                        "name": "K_TRACING_CONFIG",
                                        "value": "{\"backend\":\"none\",\"debug\":\"false\",\"sample-rate\":\"0.1\"}"
                                    },
                                    {
                                        "name": "NAMESPACE",
                                        "value": "konflux-disaster-recovery"
                                    },
                                    {
                                        "name": "NAME",
                                        "value": "cron-listener"
                                    },
                                    {
                                        "name": "EL_EVENT",
                                        "value": "enable"
                                    },
                                    {
                                        "name": "K_SINK_TIMEOUT",
                                        "value": "30"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "METRICS_PROMETHEUS_PORT",
                                        "value": "9000"
                                    },
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-triggers-eventlistenersink-rhel9@sha256:87d66a6582beff7f95f7843a9e454069d6cecca1f68c350d3e9af28e86825b71",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/live",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "event-listener",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9000,
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/live",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "cron-trigger",
                        "serviceAccountName": "cron-trigger",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "konflux-kite-in-cluster-local:apps/Deployment:konflux-kite/konflux-kite",
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:13:59Z",
                "generation": 48,
                "labels": {
                    "app": "konflux-kite",
                    "component": "backend",
                    "pod-template-hash": "6ddcb745d7",
                    "version": "1.0.0"
                },
                "name": "konflux-kite-6ddcb745d7",
                "namespace": "konflux-kite",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "konflux-kite",
                        "uid": "01640cc8-bb7a-4893-97e5-a6ec5a524679"
                    }
                ],
                "resourceVersion": "107758",
                "uid": "a963a74b-f17f-4900-bfd6-26bc3a7b9a5a"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "app": "konflux-kite",
                        "component": "backend",
                        "pod-template-hash": "6ddcb745d7"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "config.openshift.io/inject-trusted-cabundle": "true"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "konflux-kite",
                            "component": "backend",
                            "pod-template-hash": "6ddcb745d7",
                            "version": "1.0.0"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchExpressions": [
                                                    {
                                                        "key": "app",
                                                        "operator": "In",
                                                        "values": [
                                                            "konflux-kite"
                                                        ]
                                                    }
                                                ]
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "KITE_DB_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "DB_PASSWORD",
                                                "name": "kite-database-credentials-52d679kdb7"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KITE_DB_USER",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "DB_USER",
                                                "name": "kite-database-credentials-52d679kdb7"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KITE_DB_HOST",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "DB_HOST",
                                                "name": "kite-database-credentials-52d679kdb7"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KITE_DB_PORT",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "DB_PORT",
                                                "name": "kite-database-credentials-52d679kdb7"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KITE_DB_NAME",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "DB_NAME",
                                                "name": "kite-database-credentials-52d679kdb7"
                                            }
                                        }
                                    }
                                ],
                                "envFrom": [
                                    {
                                        "configMapRef": {
                                            "name": "kite-config-k5fck89tk9"
                                        }
                                    },
                                    {
                                        "secretRef": {
                                            "name": "kite-database-credentials-52d679kdb7"
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/kite-prod:a8f90611b6e50cd7fa53287cf409e5f7940d2de9",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/api/v1/health/",
                                        "port": "kite-port",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 30,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "kite-api",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "kite-port",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/api/v1/health/",
                                        "port": "kite-port",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 10,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 3
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "200m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "startupProbe": {
                                    "failureThreshold": 30,
                                    "httpGet": {
                                        "path": "/api/v1/health/",
                                        "port": "kite-port",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 10,
                                    "periodSeconds": 5,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 3
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/tls",
                                        "name": "tls",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "initContainers": [
                            {
                                "env": [
                                    {
                                        "name": "KITE_DB_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "DB_PASSWORD",
                                                "name": "kite-database-credentials-52d679kdb7"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KITE_DB_USER",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "DB_USER",
                                                "name": "kite-database-credentials-52d679kdb7"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KITE_DB_HOST",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "DB_HOST",
                                                "name": "kite-database-credentials-52d679kdb7"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KITE_DB_PORT",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "DB_PORT",
                                                "name": "kite-database-credentials-52d679kdb7"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KITE_DB_NAME",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "DB_NAME",
                                                "name": "kite-database-credentials-52d679kdb7"
                                            }
                                        }
                                    }
                                ],
                                "envFrom": [
                                    {
                                        "configMapRef": {
                                            "name": "kite-config-k5fck89tk9"
                                        }
                                    },
                                    {
                                        "secretRef": {
                                            "name": "kite-database-credentials-52d679kdb7"
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/kite-init:a8f90611b6e50cd7fa53287cf409e5f7940d2de9",
                                "imagePullPolicy": "Always",
                                "name": "kite-init-container",
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "konflux-kite",
                        "serviceAccountName": "konflux-kite",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "konflux-kite-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 48,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "konflux-kite-in-cluster-local:apps/Deployment:konflux-kite/postgresql",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Postgres requires to write on root fs and\n this should only be used in development, so lets ignore it.\"\n"
                },
                "creationTimestamp": "2026-04-19T19:13:59Z",
                "generation": 1,
                "labels": {
                    "app": "postgresql",
                    "pod-template-hash": "785c4db684"
                },
                "name": "postgresql-785c4db684",
                "namespace": "konflux-kite",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "postgresql",
                        "uid": "389ef674-560c-4372-8038-7e6184e2a251"
                    }
                ],
                "resourceVersion": "23466",
                "uid": "a91fc7a1-992a-4a06-b6b6-868285079d57"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "postgresql",
                        "pod-template-hash": "785c4db684"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "postgresql",
                            "pod-template-hash": "785c4db684"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "-c",
                                    "ssl=on",
                                    "-c",
                                    "ssl_cert_file=/var/lib/postgresql/ssl/tls.crt",
                                    "-c",
                                    "ssl_key_file=/var/lib/postgresql/ssl/tls.key"
                                ],
                                "command": [
                                    "/usr/bin/run-postgresql"
                                ],
                                "env": [
                                    {
                                        "name": "POSTGRESQL_USER",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "DB_USER",
                                                "name": "kite-database-credentials-52d679kdb7"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POSTGRESQL_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "DB_PASSWORD",
                                                "name": "kite-database-credentials-52d679kdb7"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POSTGRESQL_DATABASE",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "DB_NAME",
                                                "name": "kite-database-credentials-52d679kdb7"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-kite/postgresql:15",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "postgresql",
                                "ports": [
                                    {
                                        "containerPort": 5432,
                                        "name": "postgresql",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": false,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/lib/pgsql/data",
                                        "name": "postgresql-data"
                                    },
                                    {
                                        "mountPath": "/var/lib/postgresql/ssl/",
                                        "name": "ssl-certs",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "emptyDir": {},
                                "name": "postgresql-data"
                            },
                            {
                                "name": "ssl-certs",
                                "secret": {
                                    "defaultMode": 384,
                                    "secretName": "postgresql-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "kyverno-in-cluster-local:apps/Deployment:konflux-kyverno/kyverno-admission-controller",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:26Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "admission-controller",
                    "app.kubernetes.io/instance": "kyverno",
                    "app.kubernetes.io/managed-by": "Helm",
                    "app.kubernetes.io/part-of": "konflux-kyverno",
                    "app.kubernetes.io/version": "3.5.2",
                    "helm.sh/chart": "kyverno-3.5.2",
                    "pod-template-hash": "5cbb799dc8"
                },
                "name": "kyverno-admission-controller-5cbb799dc8",
                "namespace": "konflux-kyverno",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "kyverno-admission-controller",
                        "uid": "d58d5c50-4a51-4036-a3fd-aab8ec70a8fb"
                    }
                ],
                "resourceVersion": "31833",
                "uid": "e051a226-3ea2-40b4-97f3-5980ee0debc0"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "admission-controller",
                        "app.kubernetes.io/instance": "kyverno",
                        "app.kubernetes.io/part-of": "konflux-kyverno",
                        "pod-template-hash": "5cbb799dc8"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "admission-controller",
                            "app.kubernetes.io/instance": "kyverno",
                            "app.kubernetes.io/managed-by": "Helm",
                            "app.kubernetes.io/part-of": "konflux-kyverno",
                            "app.kubernetes.io/version": "3.5.2",
                            "helm.sh/chart": "kyverno-3.5.2",
                            "pod-template-hash": "5cbb799dc8"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchExpressions": [
                                                    {
                                                        "key": "app.kubernetes.io/component",
                                                        "operator": "In",
                                                        "values": [
                                                            "admission-controller"
                                                        ]
                                                    }
                                                ]
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 1
                                    }
                                ]
                            }
                        },
                        "automountServiceAccountToken": true,
                        "containers": [
                            {
                                "args": [
                                    "--caSecretName=konflux-kyverno-svc.konflux-kyverno.svc.kyverno-tls-ca",
                                    "--tlsSecretName=konflux-kyverno-svc.konflux-kyverno.svc.kyverno-tls-pair",
                                    "--backgroundServiceAccountName=system:serviceaccount:konflux-kyverno:kyverno-background-controller",
                                    "--servicePort=443",
                                    "--webhookServerPort=9443",
                                    "--resyncPeriod=15m",
                                    "--crdWatcher=false",
                                    "--disableMetrics=false",
                                    "--otelConfig=prometheus",
                                    "--metricsPort=8000",
                                    "--admissionReports=false",
                                    "--maxAdmissionReports=1000",
                                    "--autoUpdateWebhooks=true",
                                    "--enableConfigMapCaching=true",
                                    "--controllerRuntimeMetricsAddress=:8080",
                                    "--enableDeferredLoading=true",
                                    "--dumpPayload=false",
                                    "--forceFailurePolicyIgnore=false",
                                    "--generateValidatingAdmissionPolicy=true",
                                    "--generateMutatingAdmissionPolicy=false",
                                    "--dumpPatches=false",
                                    "--maxAPICallResponseLength=2000000",
                                    "--loggingFormat=text",
                                    "--v=2",
                                    "--omitEvents=PolicyApplied,PolicySkipped",
                                    "--enablePolicyException=false",
                                    "--protectManagedResources=false",
                                    "--allowInsecureRegistry=false",
                                    "--registryCredentialHelpers=default,google,amazon,azure,github",
                                    "--enableReporting=",
                                    "--leaderElectionRetryPeriod=26s"
                                ],
                                "env": [
                                    {
                                        "name": "INIT_CONFIG",
                                        "value": "konflux-kyverno"
                                    },
                                    {
                                        "name": "METRICS_CONFIG",
                                        "value": "konflux-kyverno-metrics"
                                    },
                                    {
                                        "name": "KYVERNO_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KYVERNO_POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KYVERNO_SERVICEACCOUNT_NAME",
                                        "value": "kyverno-admission-controller"
                                    },
                                    {
                                        "name": "KYVERNO_ROLE_NAME",
                                        "value": "konflux-kyverno:admission-controller"
                                    },
                                    {
                                        "name": "KYVERNO_SVC",
                                        "value": "konflux-kyverno-svc"
                                    },
                                    {
                                        "name": "TUF_ROOT",
                                        "value": "/.sigstore"
                                    },
                                    {
                                        "name": "KYVERNO_DEPLOYMENT",
                                        "value": "kyverno-admission-controller"
                                    }
                                ],
                                "image": "quay.io/konflux-ci/kyverno/kyverno:98fb01cc292a1089bb92e1de884e534e21b671fe",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 2,
                                    "httpGet": {
                                        "path": "/health/liveness",
                                        "port": 9443,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "kyverno",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8000,
                                        "name": "metrics-port",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 6,
                                    "httpGet": {
                                        "path": "/health/readiness",
                                        "port": 9443,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {
                                    "limits": {
                                        "memory": "384Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "privileged": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "startupProbe": {
                                    "failureThreshold": 20,
                                    "httpGet": {
                                        "path": "/health/liveness",
                                        "port": 9443,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 2,
                                    "periodSeconds": 6,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/.sigstore",
                                        "name": "sigstore"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "initContainers": [
                            {
                                "args": [
                                    "--loggingFormat=text",
                                    "--v=2",
                                    "--openreportsEnabled=false"
                                ],
                                "env": [
                                    {
                                        "name": "KYVERNO_SERVICEACCOUNT_NAME",
                                        "value": "kyverno-admission-controller"
                                    },
                                    {
                                        "name": "KYVERNO_ROLE_NAME",
                                        "value": "konflux-kyverno:admission-controller"
                                    },
                                    {
                                        "name": "INIT_CONFIG",
                                        "value": "konflux-kyverno"
                                    },
                                    {
                                        "name": "METRICS_CONFIG",
                                        "value": "konflux-kyverno-metrics"
                                    },
                                    {
                                        "name": "KYVERNO_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KYVERNO_POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KYVERNO_DEPLOYMENT",
                                        "value": "kyverno-admission-controller"
                                    },
                                    {
                                        "name": "KYVERNO_SVC",
                                        "value": "konflux-kyverno-svc"
                                    }
                                ],
                                "image": "quay.io/konflux-ci/kyverno/kyverno-init:98fb01cc292a1089bb92e1de884e534e21b671fe",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kyverno-pre",
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "privileged": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "kyverno-admission-controller",
                        "serviceAccountName": "kyverno-admission-controller",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "emptyDir": {},
                                "name": "sigstore"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "kyverno-in-cluster-local:apps/Deployment:konflux-kyverno/kyverno-background-controller",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:26Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "background-controller",
                    "app.kubernetes.io/instance": "kyverno",
                    "app.kubernetes.io/managed-by": "Helm",
                    "app.kubernetes.io/part-of": "konflux-kyverno",
                    "app.kubernetes.io/version": "3.5.2",
                    "helm.sh/chart": "kyverno-3.5.2",
                    "pod-template-hash": "9bc79c6d5"
                },
                "name": "kyverno-background-controller-9bc79c6d5",
                "namespace": "konflux-kyverno",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "kyverno-background-controller",
                        "uid": "1b5645c1-2a2c-4dfe-b1ea-4a7065300a48"
                    }
                ],
                "resourceVersion": "31374",
                "uid": "6855a470-bed6-4ab9-8d0e-6af6cab6b8fd"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "background-controller",
                        "app.kubernetes.io/instance": "kyverno",
                        "app.kubernetes.io/part-of": "konflux-kyverno",
                        "pod-template-hash": "9bc79c6d5"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "background-controller",
                            "app.kubernetes.io/instance": "kyverno",
                            "app.kubernetes.io/managed-by": "Helm",
                            "app.kubernetes.io/part-of": "konflux-kyverno",
                            "app.kubernetes.io/version": "3.5.2",
                            "helm.sh/chart": "kyverno-3.5.2",
                            "pod-template-hash": "9bc79c6d5"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchExpressions": [
                                                    {
                                                        "key": "app.kubernetes.io/component",
                                                        "operator": "In",
                                                        "values": [
                                                            "background-controller"
                                                        ]
                                                    }
                                                ]
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 1
                                    }
                                ]
                            }
                        },
                        "automountServiceAccountToken": true,
                        "containers": [
                            {
                                "args": [
                                    "--disableMetrics=false",
                                    "--otelConfig=prometheus",
                                    "--metricsPort=8000",
                                    "--resyncPeriod=15m",
                                    "--enableConfigMapCaching=true",
                                    "--enableDeferredLoading=true",
                                    "--maxAPICallResponseLength=2000000",
                                    "--loggingFormat=text",
                                    "--v=2",
                                    "--omitEvents=PolicyApplied,PolicySkipped",
                                    "--enablePolicyException=false",
                                    "--enableReporting=",
                                    "--leaderElectionRetryPeriod=26s"
                                ],
                                "env": [
                                    {
                                        "name": "KYVERNO_SERVICEACCOUNT_NAME",
                                        "value": "kyverno-background-controller"
                                    },
                                    {
                                        "name": "KYVERNO_DEPLOYMENT",
                                        "value": "kyverno-background-controller"
                                    },
                                    {
                                        "name": "INIT_CONFIG",
                                        "value": "konflux-kyverno"
                                    },
                                    {
                                        "name": "METRICS_CONFIG",
                                        "value": "konflux-kyverno-metrics"
                                    },
                                    {
                                        "name": "KYVERNO_POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KYVERNO_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/kyverno/kyverno-background:98fb01cc292a1089bb92e1de884e534e21b671fe",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "controller",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8000,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "privileged": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "kyverno-background-controller",
                        "serviceAccountName": "kyverno-background-controller",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "kyverno-in-cluster-local:apps/Deployment:konflux-kyverno/kyverno-cleanup-controller",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:26Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "cleanup-controller",
                    "app.kubernetes.io/instance": "kyverno",
                    "app.kubernetes.io/managed-by": "Helm",
                    "app.kubernetes.io/part-of": "konflux-kyverno",
                    "app.kubernetes.io/version": "3.5.2",
                    "helm.sh/chart": "kyverno-3.5.2",
                    "pod-template-hash": "955df97b8"
                },
                "name": "kyverno-cleanup-controller-955df97b8",
                "namespace": "konflux-kyverno",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "kyverno-cleanup-controller",
                        "uid": "8c057382-892d-4773-b6e1-aaaad67d9cc9"
                    }
                ],
                "resourceVersion": "31826",
                "uid": "d23eff75-6fe0-44b2-b27e-4e18cf060403"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "cleanup-controller",
                        "app.kubernetes.io/instance": "kyverno",
                        "app.kubernetes.io/part-of": "konflux-kyverno",
                        "pod-template-hash": "955df97b8"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "cleanup-controller",
                            "app.kubernetes.io/instance": "kyverno",
                            "app.kubernetes.io/managed-by": "Helm",
                            "app.kubernetes.io/part-of": "konflux-kyverno",
                            "app.kubernetes.io/version": "3.5.2",
                            "helm.sh/chart": "kyverno-3.5.2",
                            "pod-template-hash": "955df97b8"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchExpressions": [
                                                    {
                                                        "key": "app.kubernetes.io/component",
                                                        "operator": "In",
                                                        "values": [
                                                            "cleanup-controller"
                                                        ]
                                                    }
                                                ]
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 1
                                    }
                                ]
                            }
                        },
                        "automountServiceAccountToken": true,
                        "containers": [
                            {
                                "args": [
                                    "--caSecretName=kyverno-cleanup-controller.konflux-kyverno.svc.kyverno-tls-ca",
                                    "--tlsSecretName=kyverno-cleanup-controller.konflux-kyverno.svc.kyverno-tls-pair",
                                    "--servicePort=443",
                                    "--cleanupServerPort=9443",
                                    "--webhookServerPort=9443",
                                    "--resyncPeriod=15m",
                                    "--disableMetrics=false",
                                    "--otelConfig=prometheus",
                                    "--metricsPort=8000",
                                    "--enableDeferredLoading=true",
                                    "--dumpPayload=false",
                                    "--maxAPICallResponseLength=2000000",
                                    "--loggingFormat=text",
                                    "--v=2",
                                    "--protectManagedResources=false",
                                    "--ttlReconciliationInterval=1m",
                                    "--leaderElectionRetryPeriod=26s"
                                ],
                                "env": [
                                    {
                                        "name": "KYVERNO_DEPLOYMENT",
                                        "value": "kyverno-cleanup-controller"
                                    },
                                    {
                                        "name": "INIT_CONFIG",
                                        "value": "konflux-kyverno"
                                    },
                                    {
                                        "name": "METRICS_CONFIG",
                                        "value": "konflux-kyverno-metrics"
                                    },
                                    {
                                        "name": "KYVERNO_POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KYVERNO_SERVICEACCOUNT_NAME",
                                        "value": "kyverno-cleanup-controller"
                                    },
                                    {
                                        "name": "KYVERNO_ROLE_NAME",
                                        "value": "konflux-kyverno:cleanup-controller"
                                    },
                                    {
                                        "name": "KYVERNO_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KYVERNO_SVC",
                                        "value": "kyverno-cleanup-controller"
                                    }
                                ],
                                "image": "quay.io/konflux-ci/kyverno/kyverno-cleanup:98fb01cc292a1089bb92e1de884e534e21b671fe",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 2,
                                    "httpGet": {
                                        "path": "/health/liveness",
                                        "port": 9443,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "controller",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8000,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 6,
                                    "httpGet": {
                                        "path": "/health/readiness",
                                        "port": 9443,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {
                                    "limits": {
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "privileged": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "startupProbe": {
                                    "failureThreshold": 20,
                                    "httpGet": {
                                        "path": "/health/liveness",
                                        "port": 9443,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 2,
                                    "periodSeconds": 6,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "kyverno-cleanup-controller",
                        "serviceAccountName": "kyverno-cleanup-controller",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "tracing-workload-otel-collector-in-cluster-local:apps/Deployment:konflux-otel/open-telemetry-opentelemetry-collector",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:09Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/instance": "tracing-workload-otel-collector-in-cluster-local",
                    "app.kubernetes.io/name": "opentelemetry-collector",
                    "component": "standalone-collector",
                    "pod-template-hash": "585d6cd6f4"
                },
                "name": "open-telemetry-opentelemetry-collector-585d6cd6f4",
                "namespace": "konflux-otel",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "open-telemetry-opentelemetry-collector",
                        "uid": "b3b14a07-e860-489c-aef2-0ad18711bf78"
                    }
                ],
                "resourceVersion": "24612",
                "uid": "1f8bc73f-6a67-4364-a319-36b2508726f8"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/instance": "tracing-workload-otel-collector-in-cluster-local",
                        "app.kubernetes.io/name": "opentelemetry-collector",
                        "component": "standalone-collector",
                        "pod-template-hash": "585d6cd6f4"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "checksum/config": "1c8b1f87e49744c53b99e5d7ce4a216e54039a875c383f60d9558c9dff939a0a"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/instance": "tracing-workload-otel-collector-in-cluster-local",
                            "app.kubernetes.io/name": "opentelemetry-collector",
                            "component": "standalone-collector",
                            "pod-template-hash": "585d6cd6f4"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--config=/conf/relay.yaml"
                                ],
                                "command": [
                                    "/usr/local/bin/otel-collector-sp"
                                ],
                                "env": [
                                    {
                                        "name": "MY_POD_IP",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "status.podIP"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/factory2/otel-collector-sp/otel-binary-image:0.113.0",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/",
                                        "port": 13133,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "opentelemetry-collector",
                                "ports": [
                                    {
                                        "containerPort": 4317,
                                        "name": "otlp",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 4318,
                                        "name": "otlp-http",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/",
                                        "port": 13133,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {},
                                "securityContext": {},
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/conf",
                                        "name": "opentelemetry-collector-configmap"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "open-telemetry-opentelemetry-collector",
                        "serviceAccountName": "open-telemetry-opentelemetry-collector",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "relay",
                                            "path": "relay.yaml"
                                        }
                                    ],
                                    "name": "open-telemetry-opentelemetry-collector"
                                },
                                "name": "opentelemetry-collector-configmap"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/sync-wave": "10",
                    "argocd.argoproj.io/tracking-id": "kueue-in-cluster-local:apps/Deployment:kueue-external-admission/alert-mgr-kueue-admission-controller-manager",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:18:40Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/name": "alert-manager-kueue-admission",
                    "control-plane": "controller-manager",
                    "pod-template-hash": "548794f8bb"
                },
                "name": "alert-mgr-kueue-admission-controller-manager-548794f8bb",
                "namespace": "kueue-external-admission",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "alert-mgr-kueue-admission-controller-manager",
                        "uid": "2cf17a14-485b-4230-8f0d-c76313d3812d"
                    }
                ],
                "resourceVersion": "36952",
                "uid": "1f4128c4-0089-4519-bc3d-cec3e36c09b4"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "alert-manager-kueue-admission",
                        "control-plane": "controller-manager",
                        "pod-template-hash": "548794f8bb"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                            "argocd.argoproj.io/sync-wave": "10",
                            "kubectl.kubernetes.io/default-container": "manager"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "alert-manager-kueue-admission",
                            "control-plane": "controller-manager",
                            "pod-template-hash": "548794f8bb"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--metrics-bind-address=:8443",
                                    "--leader-elect",
                                    "--health-probe-bind-address=:8081"
                                ],
                                "command": [
                                    "/manager"
                                ],
                                "image": "quay.io/konflux-ci/kueue-external-admission:aa92aa7f658e34577a23b072204de2af5768b3cc",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "500m",
                                        "memory": "512Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "alert-mgr-kueue-admission-controller-manager",
                        "serviceAccountName": "alert-mgr-kueue-admission-controller-manager",
                        "terminationGracePeriodSeconds": 10
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/tracking-id": "pipeline-service-in-cluster-local:apps/Deployment:minio-operator/console",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "operator.min.io/authors": "MinIO, Inc.",
                    "operator.min.io/license": "AGPLv3",
                    "operator.min.io/support": "https://subnet.min.io"
                },
                "creationTimestamp": "2026-04-19T19:15:06Z",
                "generation": 1,
                "labels": {
                    "app": "console",
                    "app.kubernetes.io/instance": "minio-operator-console",
                    "app.kubernetes.io/name": "operator",
                    "pod-template-hash": "5579558f5f"
                },
                "name": "console-5579558f5f",
                "namespace": "minio-operator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "console",
                        "uid": "923efed1-ed48-4fe5-9edf-a8a31eccfa1e"
                    }
                ],
                "resourceVersion": "27256",
                "uid": "7584e963-638a-4a0c-83f8-47daec741392"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "console",
                        "pod-template-hash": "5579558f5f"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                            "operator.min.io/authors": "MinIO, Inc.",
                            "operator.min.io/license": "AGPLv3",
                            "operator.min.io/support": "https://subnet.min.io"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "console",
                            "app.kubernetes.io/instance": "minio-operator-console",
                            "app.kubernetes.io/name": "operator",
                            "pod-template-hash": "5579558f5f"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "ui",
                                    "--certs-dir=/tmp/certs"
                                ],
                                "image": "quay.io/minio/operator:v5.0.15",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "console",
                                "ports": [
                                    {
                                        "containerPort": 9090,
                                        "name": "http",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tmp/certs",
                                        "name": "tls-certificates"
                                    },
                                    {
                                        "mountPath": "/tmp/certs/CAs",
                                        "name": "tmp"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "console-sa",
                        "serviceAccountName": "console-sa",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "tls-certificates",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "secret": {
                                                "items": [
                                                    {
                                                        "key": "public.crt",
                                                        "path": "public.crt"
                                                    },
                                                    {
                                                        "key": "public.crt",
                                                        "path": "CAs/public.crt"
                                                    },
                                                    {
                                                        "key": "private.key",
                                                        "path": "private.key"
                                                    },
                                                    {
                                                        "key": "tls.crt",
                                                        "path": "tls.crt"
                                                    },
                                                    {
                                                        "key": "tls.crt",
                                                        "path": "CAs/tls.crt"
                                                    },
                                                    {
                                                        "key": "tls.key",
                                                        "path": "tls.key"
                                                    }
                                                ],
                                                "name": "console-tls",
                                                "optional": true
                                            }
                                        }
                                    ]
                                }
                            },
                            {
                                "emptyDir": {},
                                "name": "tmp"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/tracking-id": "pipeline-service-in-cluster-local:apps/Deployment:minio-operator/minio-operator",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "1",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/no-read-only-root-fs": "The operator needs to be able to write to /tmp",
                    "operator.min.io/authors": "MinIO, Inc.",
                    "operator.min.io/license": "AGPLv3",
                    "operator.min.io/support": "https://subnet.min.io"
                },
                "creationTimestamp": "2026-04-19T19:15:06Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/instance": "minio-operator",
                    "app.kubernetes.io/name": "operator",
                    "name": "minio-operator",
                    "pod-template-hash": "54646886cb"
                },
                "name": "minio-operator-54646886cb",
                "namespace": "minio-operator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "minio-operator",
                        "uid": "fb4e9db5-2ae2-4ded-8319-9dc2263855fc"
                    }
                ],
                "resourceVersion": "27266",
                "uid": "dd0cb7a2-a47c-47d8-815e-4fed12076966"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "name": "minio-operator",
                        "pod-template-hash": "54646886cb"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                            "operator.min.io/authors": "MinIO, Inc.",
                            "operator.min.io/license": "AGPLv3",
                            "operator.min.io/support": "https://subnet.min.io"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/instance": "minio-operator",
                            "app.kubernetes.io/name": "operator",
                            "name": "minio-operator",
                            "pod-template-hash": "54646886cb"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchExpressions": [
                                                {
                                                    "key": "name",
                                                    "operator": "In",
                                                    "values": [
                                                        "minio-operator"
                                                    ]
                                                }
                                            ]
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "controller"
                                ],
                                "env": [
                                    {
                                        "name": "MINIO_CONSOLE_TLS_ENABLE",
                                        "value": "off"
                                    },
                                    {
                                        "name": "OPERATOR_STS_ENABLED",
                                        "value": "on"
                                    }
                                ],
                                "image": "quay.io/minio/operator:v5.0.15",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "minio-operator",
                                "resources": {
                                    "limits": {
                                        "cpu": "200m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "minio-operator",
                        "serviceAccountName": "minio-operator",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/tracking-id": "mintmaker-in-cluster-local:apps/Deployment:mintmaker/mintmaker-controller-manager",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:17Z",
                "generation": 1,
                "labels": {
                    "control-plane": "controller-manager",
                    "pod-template-hash": "cb9575c4b"
                },
                "name": "mintmaker-controller-manager-cb9575c4b",
                "namespace": "mintmaker",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "mintmaker-controller-manager",
                        "uid": "737721c3-e557-417b-bb6a-b6ff9d7fe30b"
                    }
                ],
                "resourceVersion": "34200",
                "uid": "ea1a3549-09da-442a-9e82-cab037a8432d"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "control-plane": "controller-manager",
                        "pod-template-hash": "cb9575c4b"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                            "kubectl.kubernetes.io/default-container": "manager",
                            "mintmaker.appstudio.redhat.com/renovate-image": "quay.io/konflux-ci/mintmaker-renovate-image:latest"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "control-plane": "controller-manager",
                            "pod-template-hash": "cb9575c4b"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--metrics-bind-address=:8080",
                                    "--health-probe-bind-address=:8081",
                                    "--metrics-secure=false",
                                    "--metrics-bind-address=:8080"
                                ],
                                "command": [
                                    "/manager"
                                ],
                                "env": [
                                    {
                                        "name": "RENOVATE_IMAGE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.annotations['mintmaker.appstudio.redhat.com/renovate-image']"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/mintmaker:07fe9c32102074befdcbb951167824069868bc40",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "trusted-ca",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true
                        },
                        "serviceAccount": "mintmaker-controller-manager",
                        "serviceAccountName": "mintmaker-controller-manager",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "trusted-ca-6ct58987ht"
                                },
                                "name": "trusted-ca"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/tracking-id": "mintmaker-in-cluster-local:apps/Deployment:mintmaker/redis",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "1",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:17Z",
                "generation": 1,
                "labels": {
                    "app": "redis",
                    "pod-template-hash": "6f8fc9df97"
                },
                "name": "redis-6f8fc9df97",
                "namespace": "mintmaker",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "redis",
                        "uid": "1d838183-a6b5-477d-b9e5-3f654b4b8886"
                    }
                ],
                "resourceVersion": "26081",
                "uid": "f5a634e0-83b7-4c0c-85b5-3a8fd05e68b1"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "redis",
                        "pod-template-hash": "6f8fc9df97"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "redis",
                            "pod-template-hash": "6f8fc9df97"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "run-redis"
                                ],
                                "command": [
                                    "container-entrypoint"
                                ],
                                "image": "registry.redhat.io/rhel9/redis-7:9.5",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "exec": {
                                        "command": [
                                            "/bin/sh",
                                            "-c",
                                            "redis-cli ping | grep -q PONG"
                                        ]
                                    },
                                    "failureThreshold": 5,
                                    "initialDelaySeconds": 60,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 15
                                },
                                "name": "redis",
                                "ports": [
                                    {
                                        "containerPort": 6379,
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "exec": {
                                        "command": [
                                            "/bin/sh",
                                            "-c",
                                            "redis-cli ping | grep -q PONG"
                                        ]
                                    },
                                    "failureThreshold": 5,
                                    "initialDelaySeconds": 10,
                                    "periodSeconds": 15,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 10
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "300m",
                                        "memory": "800Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "250Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "runAsUser": 1001
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/lib/redis/data",
                                        "name": "redis-data"
                                    },
                                    {
                                        "mountPath": "/etc/redis/redis.conf",
                                        "name": "redis-config",
                                        "subPath": "redis.conf"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "fsGroup": 1001
                        },
                        "serviceAccount": "mintmaker-controller-manager",
                        "serviceAccountName": "mintmaker-controller-manager",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "redis-data",
                                "persistentVolumeClaim": {
                                    "claimName": "redis-pvc"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "redis-config"
                                },
                                "name": "redis-config"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "multi-platform-controller-in-cluster-local:apps/Deployment:multi-platform-controller/multi-platform-controller",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:54Z",
                "generation": 1,
                "labels": {
                    "app": "multi-platform-controller",
                    "pod-template-hash": "54d6cb7454"
                },
                "name": "multi-platform-controller-54d6cb7454",
                "namespace": "multi-platform-controller",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "multi-platform-controller",
                        "uid": "daf95567-ac5f-431e-acfc-0e77ef678d69"
                    }
                ],
                "resourceVersion": "33717",
                "uid": "bbaf3b68-64e7-46ad-9d87-853e7fae6427"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "multi-platform-controller",
                        "pod-template-hash": "54d6cb7454"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "multi-platform-controller",
                            "pod-template-hash": "54d6cb7454"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--metrics-bind-address=:8443",
                                    "--v=4",
                                    "--zap-log-level=info",
                                    "--zap-encoder=console",
                                    "--health-probe-bind-address=:8081",
                                    "--metrics-secure=true",
                                    "--zap-encoder=console"
                                ],
                                "env": [
                                    {
                                        "name": "POD_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/multi-platform-controller:93c18de0be493a99a6f08f8f5fb9ab373c838ad8",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "ports": [
                                    {
                                        "containerPort": 8081,
                                        "name": "probes",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "4Gi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "512Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true
                        },
                        "serviceAccount": "multi-platform-controller-controller-manager",
                        "serviceAccountName": "multi-platform-controller-controller-manager",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "multi-platform-controller-in-cluster-local:apps/Deployment:multi-platform-controller/multi-platform-otp-server",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:54Z",
                "generation": 1,
                "labels": {
                    "app": "multi-platform-otp-server",
                    "pod-template-hash": "8589b89c76"
                },
                "name": "multi-platform-otp-server-8589b89c76",
                "namespace": "multi-platform-controller",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "multi-platform-otp-server",
                        "uid": "cedf8251-2e4b-4538-9be0-500bfa3d0fbb"
                    }
                ],
                "resourceVersion": "32978",
                "uid": "c4b97c1d-9ea5-4683-b20a-0e0c9bf09bd1"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "multi-platform-otp-server",
                        "pod-template-hash": "8589b89c76"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "multi-platform-otp-server",
                            "pod-template-hash": "8589b89c76"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "POD_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/multi-platform-controller-otp-service:93c18de0be493a99a6f08f8f5fb9ab373c838ad8",
                                "imagePullPolicy": "Always",
                                "name": "multi-platform-otp-server",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "server",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tls",
                                        "name": "tls"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true
                        },
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "otp-tls-secrets"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:13:51Z",
                "generation": 1,
                "labels": {
                    "control-plane": "controller-manager",
                    "pod-template-hash": "dc998bfc9"
                },
                "name": "openshift-adp-controller-manager-dc998bfc9",
                "namespace": "openshift-adp",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "openshift-adp-controller-manager",
                        "uid": "5366a674-9b1f-4640-ae9c-71211d989338"
                    }
                ],
                "resourceVersion": "22688",
                "uid": "b976c5b2-1e85-4aa0-b052-ae7db039c8f3"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "control-plane": "controller-manager",
                        "pod-template-hash": "dc998bfc9"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "alm-examples": "[\n  {\n    \"apiVersion\": \"oadp.openshift.io/v1alpha1\",\n    \"kind\": \"DataProtectionApplication\",\n    \"metadata\": {\n      \"name\": \"velero-sample\"\n    },\n    \"spec\": {\n      \"backupLocations\": [\n        {\n          \"velero\": {\n            \"config\": {\n              \"profile\": \"default\",\n              \"region\": \"us-east-1\"\n            },\n            \"credential\": {\n              \"key\": \"cloud\",\n              \"name\": \"cloud-credentials\"\n            },\n            \"default\": true,\n            \"objectStorage\": {\n              \"bucket\": \"my-bucket-name\",\n              \"prefix\": \"velero\"\n            },\n            \"provider\": \"aws\"\n          }\n        }\n      ],\n      \"configuration\": {\n        \"nodeAgent\": {\n          \"enable\": true,\n          \"uploaderType\": \"restic\"\n        },\n        \"velero\": {\n          \"defaultPlugins\": [\n            \"openshift\",\n            \"aws\",\n            \"kubevirt\"\n          ]\n        }\n      },\n      \"snapshotLocations\": [\n        {\n          \"velero\": {\n            \"config\": {\n              \"profile\": \"default\",\n              \"region\": \"us-west-2\"\n            },\n            \"provider\": \"aws\"\n          }\n        }\n      ]\n    }\n  },\n  {\n    \"apiVersion\": \"velero.io/v1\",\n    \"kind\": \"Backup\",\n    \"metadata\": {\n      \"name\": \"backup\",\n      \"namespace\": \"openshift-adp\"\n    },\n    \"spec\": {}\n  },\n  {\n    \"apiVersion\": \"velero.io/v1\",\n    \"kind\": \"BackupStorageLocation\",\n    \"metadata\": {\n      \"name\": \"backupstoragelocation\",\n      \"namespace\": \"openshift-adp\"\n    },\n    \"spec\": {}\n  },\n  {\n    \"apiVersion\": \"velero.io/v1\",\n    \"kind\": \"DeleteBackupRequest\",\n    \"metadata\": {\n      \"name\": \"deletebackuprequest\",\n      \"namespace\": \"openshift-adp\"\n    },\n    \"spec\": {}\n  },\n  {\n    \"apiVersion\": \"velero.io/v1\",\n    \"kind\": \"DownloadRequest\",\n    \"metadata\": {\n      \"name\": \"downloadrequest\",\n      \"namespace\": \"openshift-adp\"\n    },\n    \"spec\": {}\n  },\n  {\n    \"apiVersion\": \"velero.io/v1\",\n    \"kind\": \"PodVolumeBackup\",\n    \"metadata\": {\n      \"name\": \"podvolumebackup\",\n      \"namespace\": \"openshift-adp\"\n    },\n    \"spec\": {}\n  },\n  {\n    \"apiVersion\": \"velero.io/v1\",\n    \"kind\": \"PodVolumeRestore\",\n    \"metadata\": {\n      \"name\": \"podvolumerestore\",\n      \"namespace\": \"openshift-adp\"\n    },\n    \"spec\": {}\n  },\n  {\n    \"apiVersion\": \"velero.io/v1\",\n    \"kind\": \"Restore\",\n    \"metadata\": {\n      \"name\": \"restore\",\n      \"namespace\": \"openshift-adp\"\n    },\n    \"spec\": {}\n  },\n  {\n    \"apiVersion\": \"velero.io/v1\",\n    \"kind\": \"Schedule\",\n    \"metadata\": {\n      \"name\": \"schedule\",\n      \"namespace\": \"openshift-adp\"\n    },\n    \"spec\": {}\n  },\n  {\n    \"apiVersion\": \"velero.io/v1\",\n    \"kind\": \"ServerStatusRequest\",\n    \"metadata\": {\n      \"name\": \"serverstatusrequest\",\n      \"namespace\": \"openshift-adp\"\n    },\n    \"spec\": {}\n  },\n  {\n    \"apiVersion\": \"velero.io/v1\",\n    \"kind\": \"VolumeSnapshotLocation\",\n    \"metadata\": {\n      \"name\": \"volumesnapshotlocation\",\n      \"namespace\": \"openshift-adp\"\n    },\n    \"spec\": {}\n  }\n]",
                            "capabilities": "Seamless Upgrades",
                            "categories": "Cloud Provider,Developer Tools,Modernization \u0026 Migration,OpenShift Optional,Storage\n",
                            "certified": "false",
                            "containerImage": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:b3b2f0fcbdbba6663beb566dd60ca1975fc3b24a3bbf7b1ce324dab02ff76656",
                            "createdAt": "2025-09-16T12:21:00Z",
                            "description": "OADP (OpenShift API for Data Protection) operator sets up and installs Data Protection Applications on the OpenShift platform.",
                            "features.operators.openshift.io/cnf": "false",
                            "features.operators.openshift.io/cni": "false",
                            "features.operators.openshift.io/csi": "false",
                            "features.operators.openshift.io/disconnected": "true",
                            "features.operators.openshift.io/fips-compliant": "true",
                            "features.operators.openshift.io/proxy-aware": "true",
                            "features.operators.openshift.io/tls-profiles": "false",
                            "features.operators.openshift.io/token-auth-aws": "true",
                            "features.operators.openshift.io/token-auth-azure": "false",
                            "features.operators.openshift.io/token-auth-gcp": "false",
                            "olm.operatorGroup": "openshift-adp",
                            "olm.operatorNamespace": "openshift-adp",
                            "olm.skipRange": "\u003e=0.0.0 \u003c1.4.9",
                            "olm.targetNamespaces": "openshift-adp",
                            "operatorframework.io/properties": "{\"properties\":[{\"type\":\"olm.gvk\",\"value\":{\"group\":\"oadp.openshift.io\",\"kind\":\"CloudStorage\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"oadp.openshift.io\",\"kind\":\"DataProtectionApplication\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"velero.io\",\"kind\":\"Backup\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"velero.io\",\"kind\":\"BackupRepository\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"velero.io\",\"kind\":\"BackupStorageLocation\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"velero.io\",\"kind\":\"DataDownload\",\"version\":\"v2alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"velero.io\",\"kind\":\"DataUpload\",\"version\":\"v2alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"velero.io\",\"kind\":\"DeleteBackupRequest\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"velero.io\",\"kind\":\"DownloadRequest\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"velero.io\",\"kind\":\"PodVolumeBackup\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"velero.io\",\"kind\":\"PodVolumeRestore\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"velero.io\",\"kind\":\"Restore\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"velero.io\",\"kind\":\"Schedule\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"velero.io\",\"kind\":\"ServerStatusRequest\",\"version\":\"v1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"velero.io\",\"kind\":\"VolumeSnapshotLocation\",\"version\":\"v1\"}},{\"type\":\"olm.package\",\"value\":{\"packageName\":\"redhat-oadp-operator\",\"version\":\"1.4.9\"}}]}",
                            "operatorframework.io/suggested-namespace": "openshift-adp",
                            "operators.openshift.io/infrastructure-features": "[\"Disconnected\"]",
                            "operators.openshift.io/must-gather-image": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:4a92d1bf0807e46b0c1e9be635db465028104090eaf16be448c40cf543ce5a7f",
                            "operators.openshift.io/valid-subscription": "[\"OpenShift Kubernetes Engine\", \"OpenShift Container Platform\", \"OpenShift Platform Plus\"]",
                            "operators.operatorframework.io/builder": "operator-sdk-v1.34.2",
                            "operators.operatorframework.io/project_layout": "go.kubebuilder.io/v3",
                            "repository": "https://github.com/openshift/oadp-operator",
                            "support": "Red Hat"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "control-plane": "controller-manager",
                            "pod-template-hash": "dc998bfc9"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--leader-elect"
                                ],
                                "command": [
                                    "/manager"
                                ],
                                "env": [
                                    {
                                        "name": "WATCH_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.annotations['olm.targetNamespaces']"
                                            }
                                        }
                                    },
                                    {
                                        "name": "RESTIC_PV_HOSTPATH"
                                    },
                                    {
                                        "name": "FS_PV_HOSTPATH"
                                    },
                                    {
                                        "name": "PLUGINS_HOSTPATH"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_VELERO",
                                        "value": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c1fce30641dec0001ffa3fbc50bf641e61141c1e787cdb8e0cbe78cd4c845d29"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_VELERO_RESTORE_HELPER",
                                        "value": "registry.redhat.io/oadp/oadp-velero-restic-restore-helper-rhel9@sha256:a75b01dee4d86c9b3bdb39826bd637ede580359d3991b50fdb9939c08df312c2"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_OPENSHIFT_VELERO_PLUGIN",
                                        "value": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc5dc692b2c4f6134a7be127bd8939cfdb0ba4e683e0fd95019804cb6f149b9f"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_VELERO_PLUGIN_FOR_AWS",
                                        "value": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:98f8914fba3f4131f7be7146f20b369827dafc62916b63d30ec379e151759213"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_VELERO_PLUGIN_FOR_LEGACY_AWS",
                                        "value": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:c5debdc06cf6d09eed41c5dcb0bc5454d499f28b1637ce65e049d2c7ca9efdc2"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_VELERO_PLUGIN_FOR_MICROSOFT_AZURE",
                                        "value": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:19250aa6136e525f62010394f10e103417a76315077aacefa72724cd85b4c1c4"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_VELERO_PLUGIN_FOR_GCP",
                                        "value": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:886b2a1cab974c79e9ef11a6e2894aefbf9dc05ff6ca3f4bc883f75c34928a5f"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_KUBEVIRT_VELERO_PLUGIN",
                                        "value": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:39e3df46c979ee143ce66c380c52bd52153d43da1e0c4b9317993666aed5344c"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_HYPERSHIFT_VELERO_PLUGIN",
                                        "value": "quay.io/redhat-user-workloads/ocp-art-tenant/oadp-hypershift-oadp-plugin-oadp-1-4"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_MUSTGATHER",
                                        "value": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:4a92d1bf0807e46b0c1e9be635db465028104090eaf16be448c40cf543ce5a7f"
                                    },
                                    {
                                        "name": "OPERATOR_CONDITION_NAME",
                                        "value": "oadp-operator.v1.4.9"
                                    }
                                ],
                                "image": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:b3b2f0fcbdbba6663beb566dd60ca1975fc3b24a3bbf7b1ce324dab02ff76656",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "1",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false
                                },
                                "startupProbe": {
                                    "failureThreshold": 12,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/secrets/openshift/serviceaccount",
                                        "name": "bound-sa-token",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true
                        },
                        "serviceAccount": "openshift-adp-controller-manager",
                        "serviceAccountName": "openshift-adp-controller-manager",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "name": "bound-sa-token",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "serviceAccountToken": {
                                                "audience": "openshift",
                                                "expirationSeconds": 3600,
                                                "path": "token"
                                            }
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:17:25Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "server",
                    "app.kubernetes.io/instance": "velero-aws",
                    "app.kubernetes.io/managed-by": "oadp-operator",
                    "app.kubernetes.io/name": "velero",
                    "component": "velero",
                    "deploy": "velero",
                    "openshift.io/oadp": "True",
                    "pod-template-hash": "5498cfc4db"
                },
                "name": "velero-5498cfc4db",
                "namespace": "openshift-adp",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "velero",
                        "uid": "4d5027c1-9d79-4b67-bf51-0f151f91ec00"
                    }
                ],
                "resourceVersion": "34443",
                "uid": "353f9401-8435-401d-8844-b8954af6046e"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "server",
                        "app.kubernetes.io/instance": "velero-aws",
                        "app.kubernetes.io/managed-by": "oadp-operator",
                        "app.kubernetes.io/name": "velero",
                        "component": "velero",
                        "deploy": "velero",
                        "openshift.io/oadp": "True",
                        "pod-template-hash": "5498cfc4db"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "prometheus.io/path": "/metrics",
                            "prometheus.io/port": "8085",
                            "prometheus.io/scrape": "true"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "server",
                            "app.kubernetes.io/instance": "velero-aws",
                            "app.kubernetes.io/managed-by": "oadp-operator",
                            "app.kubernetes.io/name": "velero",
                            "component": "velero",
                            "deploy": "velero",
                            "openshift.io/oadp": "True",
                            "pod-template-hash": "5498cfc4db"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "server",
                                    "--client-page-size=100",
                                    "--fs-backup-timeout=4h0m0s",
                                    "--restore-resource-priorities=securitycontextconstraints,customresourcedefinitions,klusterletconfigs.config.open-cluster-management.io,managedcluster.cluster.open-cluster-management.io,namespaces,roles,rolebindings,clusterrolebindings,klusterletaddonconfig.agent.open-cluster-management.io,managedclusteraddon.addon.open-cluster-management.io,storageclasses,volumesnapshotclass.snapshot.storage.k8s.io,volumesnapshotcontents.snapshot.storage.k8s.io,volumesnapshots.snapshot.storage.k8s.io,datauploads.velero.io,persistentvolumes,persistentvolumeclaims,serviceaccounts,secrets,configmaps,limitranges,pods,replicasets.apps,clusterclasses.cluster.x-k8s.io,endpoints,services,-,clusterbootstraps.run.tanzu.vmware.com,clusters.cluster.x-k8s.io,clusterresourcesets.addons.cluster.x-k8s.io",
                                    "--resource-timeout=30m",
                                    "--disable-informer-cache=false"
                                ],
                                "command": [
                                    "/velero"
                                ],
                                "env": [
                                    {
                                        "name": "VELERO_SCRATCH_DIR",
                                        "value": "/scratch"
                                    },
                                    {
                                        "name": "VELERO_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "LD_LIBRARY_PATH",
                                        "value": "/plugins"
                                    },
                                    {
                                        "name": "OPENSHIFT_IMAGESTREAM_BACKUP",
                                        "value": "true"
                                    }
                                ],
                                "image": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c1fce30641dec0001ffa3fbc50bf641e61141c1e787cdb8e0cbe78cd4c845d29",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "velero",
                                "ports": [
                                    {
                                        "containerPort": 8085,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/plugins",
                                        "name": "plugins"
                                    },
                                    {
                                        "mountPath": "/scratch",
                                        "name": "scratch"
                                    },
                                    {
                                        "mountPath": "/etc/ssl/certs",
                                        "name": "certs"
                                    },
                                    {
                                        "mountPath": "/var/run/secrets/openshift/serviceaccount",
                                        "name": "bound-sa-token",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "initContainers": [
                            {
                                "image": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc5dc692b2c4f6134a7be127bd8939cfdb0ba4e683e0fd95019804cb6f149b9f",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "openshift-velero-plugin",
                                "resources": {
                                    "requests": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/target",
                                        "name": "plugins"
                                    }
                                ]
                            },
                            {
                                "image": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:98f8914fba3f4131f7be7146f20b369827dafc62916b63d30ec379e151759213",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "velero-plugin-for-aws",
                                "resources": {
                                    "requests": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/target",
                                        "name": "plugins"
                                    }
                                ]
                            }
                        ],
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "velero",
                        "serviceAccountName": "velero",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "emptyDir": {},
                                "name": "plugins"
                            },
                            {
                                "emptyDir": {},
                                "name": "scratch"
                            },
                            {
                                "emptyDir": {},
                                "name": "certs"
                            },
                            {
                                "name": "bound-sa-token",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "serviceAccountToken": {
                                                "audience": "openshift",
                                                "expirationSeconds": 3600,
                                                "path": "token"
                                            }
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "capability.openshift.io/name": "openshift-samples",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "include.release.openshift.io/ibm-cloud-managed": "true"
                },
                "creationTimestamp": "2026-04-19T18:53:05Z",
                "generation": 1,
                "labels": {
                    "name": "cluster-samples-operator",
                    "pod-template-hash": "695d9bb6bd"
                },
                "name": "cluster-samples-operator-695d9bb6bd",
                "namespace": "openshift-cluster-samples-operator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "cluster-samples-operator",
                        "uid": "187e75ec-4992-4f90-9789-af9d05f9f7b6"
                    }
                ],
                "resourceVersion": "10573",
                "uid": "0ee3017f-10ee-4829-8714-77ce3fd44cdf"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "name": "cluster-samples-operator",
                        "pod-template-hash": "695d9bb6bd"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "name": "cluster-samples-operator",
                            "pod-template-hash": "695d9bb6bd"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "cluster-samples-operator"
                                ],
                                "env": [
                                    {
                                        "name": "WATCH_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "OPERATOR_NAME",
                                        "value": "cluster-samples-operator"
                                    },
                                    {
                                        "name": "RELEASE_VERSION",
                                        "value": "4.18.9"
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:d09ac899f3001937771c6cadd50802a983e7c833fa2e0bde1958e134458c76ae",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "cluster-samples-operator",
                                "ports": [
                                    {
                                        "containerPort": 60000,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "50Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/secrets",
                                        "name": "samples-operator-tls"
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--namespace=openshift-cluster-samples-operator",
                                    "--process-name=cluster-samples-operator",
                                    "--termination-grace-period=30s",
                                    "--files=/etc/secrets/tls.crt,/etc/secrets/tls.key"
                                ],
                                "command": [
                                    "cluster-samples-operator-watch",
                                    "file-watcher-watchdog"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:d09ac899f3001937771c6cadd50802a983e7c833fa2e0bde1958e134458c76ae",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "cluster-samples-operator-watch",
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "50Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "cluster-samples-operator",
                        "serviceAccountName": "cluster-samples-operator",
                        "shareProcessNamespace": true,
                        "terminationGracePeriodSeconds": 30,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/not-ready",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ],
                        "volumes": [
                            {
                                "name": "samples-operator-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "samples-operator-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "config.openshift.io/inject-proxy": "console-operator",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "include.release.openshift.io/hypershift": "true",
                    "include.release.openshift.io/ibm-cloud-managed": "true"
                },
                "creationTimestamp": "2026-04-19T18:53:09Z",
                "generation": 1,
                "labels": {
                    "name": "console-operator",
                    "pod-template-hash": "7d4ddc79d6"
                },
                "name": "console-operator-7d4ddc79d6",
                "namespace": "openshift-console-operator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "console-operator",
                        "uid": "b5ba2029-b51d-4275-80a3-d88b0a6409ca"
                    }
                ],
                "resourceVersion": "10579",
                "uid": "1b67e718-a8ef-4979-a38b-063b735c90b3"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "name": "console-operator",
                        "pod-template-hash": "7d4ddc79d6"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "name": "console-operator",
                            "pod-template-hash": "7d4ddc79d6"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--config=/var/run/configmaps/config/controller-config.yaml"
                                ],
                                "command": [
                                    "console",
                                    "operator"
                                ],
                                "env": [
                                    {
                                        "name": "CONSOLE_IMAGE",
                                        "value": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721"
                                    },
                                    {
                                        "name": "DOWNLOADS_IMAGE",
                                        "value": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:cdba3ca6e2b89d411b5ef466468bc8d91a07bf4bd14238baa65fb4397f54257d"
                                    },
                                    {
                                        "name": "OPERATOR_IMAGE_VERSION",
                                        "value": "4.18.9"
                                    },
                                    {
                                        "name": "OPERATOR_NAME",
                                        "value": "console-operator"
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:41029e57ece558b2e0b12174ce924647fd9d5c5d83aadf4bba03d6916d3f9f54",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "console-operator",
                                "ports": [
                                    {
                                        "containerPort": 60000,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "100Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/configmaps/config",
                                        "name": "config"
                                    },
                                    {
                                        "mountPath": "/var/run/secrets/serving-cert",
                                        "name": "serving-cert"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "trusted-ca"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "console-operator",
                        "serviceAccountName": "console-operator",
                        "terminationGracePeriodSeconds": 30,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/not-ready",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ],
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "console-operator-config"
                                },
                                "name": "config"
                            },
                            {
                                "name": "serving-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "serving-cert"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "trusted-ca"
                                },
                                "name": "trusted-ca"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "console.openshift.io/authn-ca-trust-config-version": "10501",
                    "console.openshift.io/console-config-version": "11017",
                    "console.openshift.io/image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                    "console.openshift.io/infrastructure-config-version": "1390",
                    "console.openshift.io/oauth-secret-version": "10499",
                    "console.openshift.io/proxy-config-version": "1408",
                    "console.openshift.io/service-ca-config-version": "11019",
                    "console.openshift.io/trusted-ca-config-version": "11020",
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "5",
                    "deployment.kubernetes.io/revision": "1",
                    "operator.openshift.io/spec-hash": "091759221fd08ab9c4308f007bd0bfb0cb9bd8a06c9744c829ede62c29db82bd"
                },
                "creationTimestamp": "2026-04-19T19:02:45Z",
                "generation": 3,
                "labels": {
                    "app": "console",
                    "component": "ui",
                    "pod-template-hash": "54b5bfd4b4"
                },
                "name": "console-54b5bfd4b4",
                "namespace": "openshift-console",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "console",
                        "uid": "0ae9ca99-8bed-4606-a380-22b822e66814"
                    }
                ],
                "resourceVersion": "11780",
                "uid": "bce7d39c-114c-4c43-b3e9-9e5ac8793a6c"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "app": "console",
                        "component": "ui",
                        "pod-template-hash": "54b5bfd4b4"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "console.openshift.io/authn-ca-trust-config-version": "10501",
                            "console.openshift.io/console-config-version": "11017",
                            "console.openshift.io/image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                            "console.openshift.io/infrastructure-config-version": "1390",
                            "console.openshift.io/oauth-secret-version": "10499",
                            "console.openshift.io/proxy-config-version": "1408",
                            "console.openshift.io/service-ca-config-version": "11019",
                            "console.openshift.io/trusted-ca-config-version": "11020",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "console",
                            "component": "ui",
                            "pod-template-hash": "54b5bfd4b4"
                        },
                        "name": "console"
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchExpressions": [
                                                {
                                                    "key": "component",
                                                    "operator": "In",
                                                    "values": [
                                                        "ui"
                                                    ]
                                                }
                                            ]
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "command": [
                                    "/opt/bridge/bin/bridge",
                                    "--public-dir=/opt/bridge/static",
                                    "--config=/var/console-config/console-config.yaml",
                                    "--service-ca-file=/var/service-ca/service-ca.crt",
                                    "--v=2"
                                ],
                                "env": [
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                                "imagePullPolicy": "IfNotPresent",
                                "lifecycle": {
                                    "preStop": {
                                        "exec": {
                                            "command": [
                                                "sleep",
                                                "25"
                                            ]
                                        }
                                    }
                                },
                                "livenessProbe": {
                                    "failureThreshold": 1,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 10
                                },
                                "name": "console",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "100Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": false
                                },
                                "startupProbe": {
                                    "failureThreshold": 30,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 10
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/serving-cert",
                                        "name": "console-serving-cert",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/oauth-config",
                                        "name": "console-oauth-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/console-config",
                                        "name": "console-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/service-ca",
                                        "name": "service-ca",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/oauth-serving-cert",
                                        "name": "oauth-serving-cert",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "console",
                        "serviceAccountName": "console",
                        "terminationGracePeriodSeconds": 40,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ],
                        "volumes": [
                            {
                                "name": "console-serving-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "console-serving-cert"
                                }
                            },
                            {
                                "name": "console-oauth-config",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "console-oauth-config"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "console-config"
                                },
                                "name": "console-config"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "service-ca"
                                },
                                "name": "service-ca"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "oauth-serving-cert"
                                },
                                "name": "oauth-serving-cert"
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 3,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "console.openshift.io/authn-ca-trust-config-version": "10501",
                    "console.openshift.io/console-config-version": "20045",
                    "console.openshift.io/image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                    "console.openshift.io/infrastructure-config-version": "1390",
                    "console.openshift.io/oauth-secret-version": "10499",
                    "console.openshift.io/proxy-config-version": "1408",
                    "console.openshift.io/service-ca-config-version": "11021",
                    "console.openshift.io/trusted-ca-config-version": "11056",
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "5",
                    "deployment.kubernetes.io/revision": "6",
                    "operator.openshift.io/spec-hash": "de16fbba61de5fa79619e8158dfa7052f4a25565b0925e2490ce50ad21173061"
                },
                "creationTimestamp": "2026-04-19T19:13:36Z",
                "generation": 1,
                "labels": {
                    "app": "console",
                    "component": "ui",
                    "pod-template-hash": "5d4977758d"
                },
                "name": "console-5d4977758d",
                "namespace": "openshift-console",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "console",
                        "uid": "0ae9ca99-8bed-4606-a380-22b822e66814"
                    }
                ],
                "resourceVersion": "23904",
                "uid": "02bfc999-6c61-4fbe-b295-a49cc41322e1"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "app": "console",
                        "component": "ui",
                        "pod-template-hash": "5d4977758d"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "console.openshift.io/authn-ca-trust-config-version": "10501",
                            "console.openshift.io/console-config-version": "20045",
                            "console.openshift.io/image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                            "console.openshift.io/infrastructure-config-version": "1390",
                            "console.openshift.io/oauth-secret-version": "10499",
                            "console.openshift.io/proxy-config-version": "1408",
                            "console.openshift.io/service-ca-config-version": "11021",
                            "console.openshift.io/trusted-ca-config-version": "11056",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "console",
                            "component": "ui",
                            "pod-template-hash": "5d4977758d"
                        },
                        "name": "console"
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchExpressions": [
                                                {
                                                    "key": "component",
                                                    "operator": "In",
                                                    "values": [
                                                        "ui"
                                                    ]
                                                }
                                            ]
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "command": [
                                    "/opt/bridge/bin/bridge",
                                    "--public-dir=/opt/bridge/static",
                                    "--config=/var/console-config/console-config.yaml",
                                    "--service-ca-file=/var/service-ca/service-ca.crt",
                                    "--v=2"
                                ],
                                "env": [
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                                "imagePullPolicy": "IfNotPresent",
                                "lifecycle": {
                                    "preStop": {
                                        "exec": {
                                            "command": [
                                                "sleep",
                                                "25"
                                            ]
                                        }
                                    }
                                },
                                "livenessProbe": {
                                    "failureThreshold": 1,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 10
                                },
                                "name": "console",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "100Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": false
                                },
                                "startupProbe": {
                                    "failureThreshold": 30,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 10
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/serving-cert",
                                        "name": "console-serving-cert",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/oauth-config",
                                        "name": "console-oauth-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/console-config",
                                        "name": "console-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/service-ca",
                                        "name": "service-ca",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "trusted-ca-bundle",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/oauth-serving-cert",
                                        "name": "oauth-serving-cert",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "console",
                        "serviceAccountName": "console",
                        "terminationGracePeriodSeconds": 40,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ],
                        "volumes": [
                            {
                                "name": "console-serving-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "console-serving-cert"
                                }
                            },
                            {
                                "name": "console-oauth-config",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "console-oauth-config"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "console-config"
                                },
                                "name": "console-config"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "service-ca"
                                },
                                "name": "service-ca"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "trusted-ca-bundle"
                                },
                                "name": "trusted-ca-bundle"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "oauth-serving-cert"
                                },
                                "name": "oauth-serving-cert"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 1,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "console.openshift.io/authn-ca-trust-config-version": "10501",
                    "console.openshift.io/console-config-version": "11017",
                    "console.openshift.io/image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                    "console.openshift.io/infrastructure-config-version": "1390",
                    "console.openshift.io/oauth-secret-version": "10499",
                    "console.openshift.io/proxy-config-version": "1408",
                    "console.openshift.io/service-ca-config-version": "11021",
                    "console.openshift.io/trusted-ca-config-version": "11056",
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "5",
                    "deployment.kubernetes.io/revision": "2",
                    "operator.openshift.io/spec-hash": "79ea9d18a39c2c1826ee053854519582f9909ff9b81cc162f56cfc16c3616bfa"
                },
                "creationTimestamp": "2026-04-19T19:02:49Z",
                "generation": 3,
                "labels": {
                    "app": "console",
                    "component": "ui",
                    "pod-template-hash": "6d7cf8fdc7"
                },
                "name": "console-6d7cf8fdc7",
                "namespace": "openshift-console",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "console",
                        "uid": "0ae9ca99-8bed-4606-a380-22b822e66814"
                    }
                ],
                "resourceVersion": "12020",
                "uid": "736c2e87-1cbf-4ed2-b3ba-d23cc77acd80"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "app": "console",
                        "component": "ui",
                        "pod-template-hash": "6d7cf8fdc7"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "console.openshift.io/authn-ca-trust-config-version": "10501",
                            "console.openshift.io/console-config-version": "11017",
                            "console.openshift.io/image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                            "console.openshift.io/infrastructure-config-version": "1390",
                            "console.openshift.io/oauth-secret-version": "10499",
                            "console.openshift.io/proxy-config-version": "1408",
                            "console.openshift.io/service-ca-config-version": "11021",
                            "console.openshift.io/trusted-ca-config-version": "11056",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "console",
                            "component": "ui",
                            "pod-template-hash": "6d7cf8fdc7"
                        },
                        "name": "console"
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchExpressions": [
                                                {
                                                    "key": "component",
                                                    "operator": "In",
                                                    "values": [
                                                        "ui"
                                                    ]
                                                }
                                            ]
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "command": [
                                    "/opt/bridge/bin/bridge",
                                    "--public-dir=/opt/bridge/static",
                                    "--config=/var/console-config/console-config.yaml",
                                    "--service-ca-file=/var/service-ca/service-ca.crt",
                                    "--v=2"
                                ],
                                "env": [
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                                "imagePullPolicy": "IfNotPresent",
                                "lifecycle": {
                                    "preStop": {
                                        "exec": {
                                            "command": [
                                                "sleep",
                                                "25"
                                            ]
                                        }
                                    }
                                },
                                "livenessProbe": {
                                    "failureThreshold": 1,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 10
                                },
                                "name": "console",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "100Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": false
                                },
                                "startupProbe": {
                                    "failureThreshold": 30,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 10
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/serving-cert",
                                        "name": "console-serving-cert",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/oauth-config",
                                        "name": "console-oauth-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/console-config",
                                        "name": "console-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/service-ca",
                                        "name": "service-ca",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "trusted-ca-bundle",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/oauth-serving-cert",
                                        "name": "oauth-serving-cert",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "console",
                        "serviceAccountName": "console",
                        "terminationGracePeriodSeconds": 40,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ],
                        "volumes": [
                            {
                                "name": "console-serving-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "console-serving-cert"
                                }
                            },
                            {
                                "name": "console-oauth-config",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "console-oauth-config"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "console-config"
                                },
                                "name": "console-config"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "service-ca"
                                },
                                "name": "service-ca"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "trusted-ca-bundle"
                                },
                                "name": "trusted-ca-bundle"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "oauth-serving-cert"
                                },
                                "name": "oauth-serving-cert"
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 3,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "console.openshift.io/authn-ca-trust-config-version": "10501",
                    "console.openshift.io/console-config-version": "11728",
                    "console.openshift.io/image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                    "console.openshift.io/infrastructure-config-version": "1390",
                    "console.openshift.io/oauth-secret-version": "10499",
                    "console.openshift.io/proxy-config-version": "1408",
                    "console.openshift.io/service-ca-config-version": "11021",
                    "console.openshift.io/trusted-ca-config-version": "11056",
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "5",
                    "deployment.kubernetes.io/revision": "3",
                    "operator.openshift.io/spec-hash": "ce6dfeee35155215045672be03a4beb720348fc7720ed24e3f9d2ea5e28105b6"
                },
                "creationTimestamp": "2026-04-19T19:02:53Z",
                "generation": 3,
                "labels": {
                    "app": "console",
                    "component": "ui",
                    "pod-template-hash": "774bb8c49b"
                },
                "name": "console-774bb8c49b",
                "namespace": "openshift-console",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "console",
                        "uid": "0ae9ca99-8bed-4606-a380-22b822e66814"
                    }
                ],
                "resourceVersion": "13084",
                "uid": "a14b9bf5-de3e-47c4-85ab-8a2c7ba3949c"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "app": "console",
                        "component": "ui",
                        "pod-template-hash": "774bb8c49b"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "console.openshift.io/authn-ca-trust-config-version": "10501",
                            "console.openshift.io/console-config-version": "11728",
                            "console.openshift.io/image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                            "console.openshift.io/infrastructure-config-version": "1390",
                            "console.openshift.io/oauth-secret-version": "10499",
                            "console.openshift.io/proxy-config-version": "1408",
                            "console.openshift.io/service-ca-config-version": "11021",
                            "console.openshift.io/trusted-ca-config-version": "11056",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "console",
                            "component": "ui",
                            "pod-template-hash": "774bb8c49b"
                        },
                        "name": "console"
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchExpressions": [
                                                {
                                                    "key": "component",
                                                    "operator": "In",
                                                    "values": [
                                                        "ui"
                                                    ]
                                                }
                                            ]
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "command": [
                                    "/opt/bridge/bin/bridge",
                                    "--public-dir=/opt/bridge/static",
                                    "--config=/var/console-config/console-config.yaml",
                                    "--service-ca-file=/var/service-ca/service-ca.crt",
                                    "--v=2"
                                ],
                                "env": [
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                                "imagePullPolicy": "IfNotPresent",
                                "lifecycle": {
                                    "preStop": {
                                        "exec": {
                                            "command": [
                                                "sleep",
                                                "25"
                                            ]
                                        }
                                    }
                                },
                                "livenessProbe": {
                                    "failureThreshold": 1,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 10
                                },
                                "name": "console",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "100Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": false
                                },
                                "startupProbe": {
                                    "failureThreshold": 30,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 10
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/serving-cert",
                                        "name": "console-serving-cert",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/oauth-config",
                                        "name": "console-oauth-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/console-config",
                                        "name": "console-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/service-ca",
                                        "name": "service-ca",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "trusted-ca-bundle",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/oauth-serving-cert",
                                        "name": "oauth-serving-cert",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "console",
                        "serviceAccountName": "console",
                        "terminationGracePeriodSeconds": 40,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ],
                        "volumes": [
                            {
                                "name": "console-serving-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "console-serving-cert"
                                }
                            },
                            {
                                "name": "console-oauth-config",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "console-oauth-config"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "console-config"
                                },
                                "name": "console-config"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "service-ca"
                                },
                                "name": "service-ca"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "trusted-ca-bundle"
                                },
                                "name": "trusted-ca-bundle"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "oauth-serving-cert"
                                },
                                "name": "oauth-serving-cert"
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 3,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "console.openshift.io/authn-ca-trust-config-version": "10501",
                    "console.openshift.io/console-config-version": "11980",
                    "console.openshift.io/image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                    "console.openshift.io/infrastructure-config-version": "1390",
                    "console.openshift.io/oauth-secret-version": "10499",
                    "console.openshift.io/proxy-config-version": "1408",
                    "console.openshift.io/service-ca-config-version": "11021",
                    "console.openshift.io/trusted-ca-config-version": "11056",
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "5",
                    "deployment.kubernetes.io/revision": "4",
                    "operator.openshift.io/spec-hash": "ee0e88e7a19fcd89d358a9c8d7654f57053228a561f419b235c4793e381f4d33"
                },
                "creationTimestamp": "2026-04-19T19:02:56Z",
                "generation": 3,
                "labels": {
                    "app": "console",
                    "component": "ui",
                    "pod-template-hash": "7b9b67c9dd"
                },
                "name": "console-7b9b67c9dd",
                "namespace": "openshift-console",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "console",
                        "uid": "0ae9ca99-8bed-4606-a380-22b822e66814"
                    }
                ],
                "resourceVersion": "13898",
                "uid": "232d9f7f-f614-418b-8fe4-d1e3898b9351"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "app": "console",
                        "component": "ui",
                        "pod-template-hash": "7b9b67c9dd"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "console.openshift.io/authn-ca-trust-config-version": "10501",
                            "console.openshift.io/console-config-version": "11980",
                            "console.openshift.io/image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                            "console.openshift.io/infrastructure-config-version": "1390",
                            "console.openshift.io/oauth-secret-version": "10499",
                            "console.openshift.io/proxy-config-version": "1408",
                            "console.openshift.io/service-ca-config-version": "11021",
                            "console.openshift.io/trusted-ca-config-version": "11056",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "console",
                            "component": "ui",
                            "pod-template-hash": "7b9b67c9dd"
                        },
                        "name": "console"
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchExpressions": [
                                                {
                                                    "key": "component",
                                                    "operator": "In",
                                                    "values": [
                                                        "ui"
                                                    ]
                                                }
                                            ]
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "command": [
                                    "/opt/bridge/bin/bridge",
                                    "--public-dir=/opt/bridge/static",
                                    "--config=/var/console-config/console-config.yaml",
                                    "--service-ca-file=/var/service-ca/service-ca.crt",
                                    "--v=2"
                                ],
                                "env": [
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                                "imagePullPolicy": "IfNotPresent",
                                "lifecycle": {
                                    "preStop": {
                                        "exec": {
                                            "command": [
                                                "sleep",
                                                "25"
                                            ]
                                        }
                                    }
                                },
                                "livenessProbe": {
                                    "failureThreshold": 1,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 10
                                },
                                "name": "console",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "100Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": false
                                },
                                "startupProbe": {
                                    "failureThreshold": 30,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 10
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/serving-cert",
                                        "name": "console-serving-cert",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/oauth-config",
                                        "name": "console-oauth-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/console-config",
                                        "name": "console-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/service-ca",
                                        "name": "service-ca",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "trusted-ca-bundle",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/oauth-serving-cert",
                                        "name": "oauth-serving-cert",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "console",
                        "serviceAccountName": "console",
                        "terminationGracePeriodSeconds": 40,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ],
                        "volumes": [
                            {
                                "name": "console-serving-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "console-serving-cert"
                                }
                            },
                            {
                                "name": "console-oauth-config",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "console-oauth-config"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "console-config"
                                },
                                "name": "console-config"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "service-ca"
                                },
                                "name": "service-ca"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "trusted-ca-bundle"
                                },
                                "name": "trusted-ca-bundle"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "oauth-serving-cert"
                                },
                                "name": "oauth-serving-cert"
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 3,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "console.openshift.io/authn-ca-trust-config-version": "10501",
                    "console.openshift.io/console-config-version": "13769",
                    "console.openshift.io/image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                    "console.openshift.io/infrastructure-config-version": "1390",
                    "console.openshift.io/oauth-secret-version": "10499",
                    "console.openshift.io/proxy-config-version": "1408",
                    "console.openshift.io/service-ca-config-version": "11021",
                    "console.openshift.io/trusted-ca-config-version": "11056",
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "5",
                    "deployment.kubernetes.io/revision": "5",
                    "operator.openshift.io/spec-hash": "efcce63e8ea1d85c80186c3070359ccda632b8c28cb11664e3470682b92dd48a"
                },
                "creationTimestamp": "2026-04-19T19:04:16Z",
                "generation": 3,
                "labels": {
                    "app": "console",
                    "component": "ui",
                    "pod-template-hash": "86b789bff"
                },
                "name": "console-86b789bff",
                "namespace": "openshift-console",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "console",
                        "uid": "0ae9ca99-8bed-4606-a380-22b822e66814"
                    }
                ],
                "resourceVersion": "21326",
                "uid": "a8df9465-9548-44d6-ba9e-dbd02a52bb6a"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "app": "console",
                        "component": "ui",
                        "pod-template-hash": "86b789bff"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "console.openshift.io/authn-ca-trust-config-version": "10501",
                            "console.openshift.io/console-config-version": "13769",
                            "console.openshift.io/image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                            "console.openshift.io/infrastructure-config-version": "1390",
                            "console.openshift.io/oauth-secret-version": "10499",
                            "console.openshift.io/proxy-config-version": "1408",
                            "console.openshift.io/service-ca-config-version": "11021",
                            "console.openshift.io/trusted-ca-config-version": "11056",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "console",
                            "component": "ui",
                            "pod-template-hash": "86b789bff"
                        },
                        "name": "console"
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchExpressions": [
                                                {
                                                    "key": "component",
                                                    "operator": "In",
                                                    "values": [
                                                        "ui"
                                                    ]
                                                }
                                            ]
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "command": [
                                    "/opt/bridge/bin/bridge",
                                    "--public-dir=/opt/bridge/static",
                                    "--config=/var/console-config/console-config.yaml",
                                    "--service-ca-file=/var/service-ca/service-ca.crt",
                                    "--v=2"
                                ],
                                "env": [
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:7b84f135cfa446962ac6a1a03888a874e2e0ddedeefe32a30a70f535dcd2c721",
                                "imagePullPolicy": "IfNotPresent",
                                "lifecycle": {
                                    "preStop": {
                                        "exec": {
                                            "command": [
                                                "sleep",
                                                "25"
                                            ]
                                        }
                                    }
                                },
                                "livenessProbe": {
                                    "failureThreshold": 1,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 10
                                },
                                "name": "console",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "100Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": false
                                },
                                "startupProbe": {
                                    "failureThreshold": 30,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 10
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/serving-cert",
                                        "name": "console-serving-cert",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/oauth-config",
                                        "name": "console-oauth-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/console-config",
                                        "name": "console-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/service-ca",
                                        "name": "service-ca",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "trusted-ca-bundle",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/oauth-serving-cert",
                                        "name": "oauth-serving-cert",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "console",
                        "serviceAccountName": "console",
                        "terminationGracePeriodSeconds": 40,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ],
                        "volumes": [
                            {
                                "name": "console-serving-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "console-serving-cert"
                                }
                            },
                            {
                                "name": "console-oauth-config",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "console-oauth-config"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "console-config"
                                },
                                "name": "console-config"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "service-ca"
                                },
                                "name": "service-ca"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "trusted-ca-bundle"
                                },
                                "name": "trusted-ca-bundle"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "oauth-serving-cert"
                                },
                                "name": "oauth-serving-cert"
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 3,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "5",
                    "deployment.kubernetes.io/revision": "1",
                    "operator.openshift.io/spec-hash": "d5a0ecafbc6da39b11300e610cad32356dc1fb7aedd0f02976153facbcd526a7"
                },
                "creationTimestamp": "2026-04-19T19:02:38Z",
                "generation": 1,
                "labels": {
                    "app": "console",
                    "component": "downloads",
                    "pod-template-hash": "6d4c9b4b6c"
                },
                "name": "downloads-6d4c9b4b6c",
                "namespace": "openshift-console",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "downloads",
                        "uid": "bdd46a4e-35f8-4797-afbc-8cab381f3d12"
                    }
                ],
                "resourceVersion": "12249",
                "uid": "f5896715-7545-4e21-bafc-cc2f46efeccf"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "app": "console",
                        "component": "downloads",
                        "pod-template-hash": "6d4c9b4b6c"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "console",
                            "component": "downloads",
                            "pod-template-hash": "6d4c9b4b6c"
                        },
                        "name": "downloads"
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchExpressions": [
                                                {
                                                    "key": "component",
                                                    "operator": "In",
                                                    "values": [
                                                        "downloads"
                                                    ]
                                                }
                                            ]
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "-c",
                                    "cat \u003c\u003cEOF \u003e\u003e/tmp/serve.py\nimport errno, http.server, os, re, signal, socket, sys, tarfile, tempfile, threading, time, zipfile\n\nsignal.signal(signal.SIGTERM, lambda signum, frame: sys.exit(0))\n\ndef write_index(path, message):\n  with open(path, 'wb') as f:\n    f.write('\\n'.join([\n      '\u003c!doctype html\u003e',\n      '\u003chtml lang=\"en\"\u003e',\n      '\u003chead\u003e',\n      '  \u003cmeta charset=\"utf-8\"\u003e',\n      '\u003c/head\u003e',\n      '\u003cbody\u003e',\n      '  {}'.format(message),\n      '\u003c/body\u003e',\n      '\u003c/html\u003e',\n      '',\n    ]).encode('utf-8'))\n\n# Launch multiple listeners as threads\nclass Thread(threading.Thread):\n  def __init__(self, i, socket):\n    threading.Thread.__init__(self)\n    self.i = i\n    self.socket = socket\n    self.daemon = True\n    self.start()\n\n  def run(self):\n    server = http.server.SimpleHTTPRequestHandler\n    server.server_version = \"OpenShift Downloads Server\"\n    server.sys_version = \"\"\n    httpd = http.server.HTTPServer(addr, server, False)\n\n    # Prevent the HTTP server from re-binding every handler.\n    # https://stackoverflow.com/questions/46210672/\n    httpd.socket = self.socket\n    httpd.server_bind = self.server_close = lambda self: None\n\n    httpd.serve_forever()\n\ntemp_dir = tempfile.mkdtemp()\nprint('serving from {}'.format(temp_dir))\nos.chdir(temp_dir)\nfor arch in ['amd64', 'arm64', 'ppc64le', 's390x']:\n  os.mkdir(arch)\ncontent = ['\u003ca href=\"oc-license\"\u003elicense\u003c/a\u003e']\nos.symlink('/usr/share/openshift/LICENSE', 'oc-license')\n\nfor arch, operating_system, path in [\n    ('amd64', 'linux', '/usr/share/openshift/linux_amd64/oc'),\n    ('amd64', 'mac', '/usr/share/openshift/mac/oc'),\n    ('amd64', 'windows', '/usr/share/openshift/windows/oc.exe'),\n    ('arm64', 'linux', '/usr/share/openshift/linux_arm64/oc'),\n    ('arm64', 'mac', '/usr/share/openshift/mac_arm64/oc'),\n    ('ppc64le', 'linux', '/usr/share/openshift/linux_ppc64le/oc'),\n    ('s390x', 'linux', '/usr/share/openshift/linux_s390x/oc'),\n    ]:\n  basename = os.path.basename(path)\n  target_path = os.path.join(arch, operating_system, basename)\n  os.mkdir(os.path.join(arch, operating_system))\n  os.symlink(path, target_path)\n  base_root, _ = os.path.splitext(basename)\n  archive_path_root = os.path.join(arch, operating_system, base_root)\n  with tarfile.open('{}.tar'.format(archive_path_root), 'w') as tar:\n    tar.add(path, basename)\n  with zipfile.ZipFile('{}.zip'.format(archive_path_root), 'w') as zip:\n    zip.write(path, basename)\n  content.append(\n    '\u003ca href=\"{0}\"\u003eoc ({1} {2})\u003c/a\u003e (\u003ca href=\"{3}.tar\"\u003etar\u003c/a\u003e \u003ca href=\"{3}.zip\"\u003ezip\u003c/a\u003e)'.format(\n      target_path, arch, operating_system, archive_path_root\n    )\n  )\n\nfor root, directories, filenames in os.walk(temp_dir):\n  root_link = os.path.relpath(temp_dir, os.path.join(root, 'child')).replace(os.path.sep, '/')\n  for directory in directories:\n    write_index(\n      path=os.path.join(root, directory, 'index.html'),\n      message='\u003cp\u003eDirectory listings are disabled.  See \u003ca href=\"{}\"\u003ehere\u003c/a\u003e for available content.\u003c/p\u003e'.format(root_link),\n    )\n\nwrite_index(\n  path=os.path.join(temp_dir, 'index.html'),\n  message='\\n'.join(\n    ['\u003cul\u003e'] +\n    ['  \u003cli\u003e{}\u003c/li\u003e'.format(entry) for entry in content] +\n    ['\u003c/ul\u003e']\n  ),\n)\n\n# Create socket\n# IPv6 should handle IPv4 passively so long as it is not bound to a\n# specific address or set to IPv6_ONLY\n# https://stackoverflow.com/questions/25817848/python-3-does-http-server-support-ipv6\ntry:\n  addr = ('::', 8080)\n  sock = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)\nexcept socket.error as err:\n  # errno.EAFNOSUPPORT is \"socket.error: [Errno 97] Address family not supported by protocol\"\n  # When IPv6 is disabled, socket will bind using IPv4.\n  if err.errno == errno.EAFNOSUPPORT:\n    addr = ('', 8080)\n    sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\n  else:\n    raise    \nsock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)\nsock.bind(addr)\nsock.listen(5)\n\n[Thread(i, socket=sock) for i in range(100)]\ntime.sleep(9e9)\nEOF\nexec python3 /tmp/serve.py\n"
                                ],
                                "command": [
                                    "/bin/sh"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:cdba3ca6e2b89d411b5ef466468bc8d91a07bf4bd14238baa65fb4397f54257d",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "download-server",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "http",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "50Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": false
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "terminationGracePeriodSeconds": 0,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 1,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:03:51Z",
                "generation": 2,
                "labels": {
                    "app": "deployment-validation-operator",
                    "name": "deployment-validation-operator",
                    "pod-template-hash": "5985dc4c97"
                },
                "name": "deployment-validation-operator-5985dc4c97",
                "namespace": "openshift-deployment-validation-operator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "deployment-validation-operator",
                        "uid": "6e23aa3c-6870-4ad4-9753-62279914ce41"
                    }
                ],
                "resourceVersion": "15370",
                "uid": "a383ab23-37c3-4a86-b812-52212e83fd24"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "app": "deployment-validation-operator",
                        "pod-template-hash": "5985dc4c97"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "capabilities": "Basic Install",
                            "categories": "Application Runtime, Monitoring, Security",
                            "certified": "false",
                            "containerImage": "quay.io/app-sre/deployment-validation-operator:0.1.568-g6f8f204",
                            "createdAt": "2026-03-10T08:28:54Z",
                            "description": "The deployment validation operator",
                            "olm.operatorGroup": "deployment-validation-operator-og",
                            "olm.operatorNamespace": "openshift-deployment-validation-operator",
                            "olm.targetNamespaces": "openshift-deployment-validation-operator",
                            "operatorframework.io/properties": "{\"properties\":[{\"type\":\"olm.package\",\"value\":{\"packageName\":\"deployment-validation-operator\",\"version\":\"0.1.568-g6f8f204\"}}]}",
                            "repository": "https://github.com/app-sre/deployment-validation-operator",
                            "support": "Best Effort"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "deployment-validation-operator",
                            "name": "deployment-validation-operator",
                            "pod-template-hash": "5985dc4c97"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "nodeAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "nodeSelectorTerms": [
                                        {
                                            "matchExpressions": [
                                                {
                                                    "key": "node-role.kubernetes.io/infra",
                                                    "operator": "Exists"
                                                }
                                            ]
                                        }
                                    ]
                                }
                            },
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchExpressions": [
                                                    {
                                                        "key": "app",
                                                        "operator": "In",
                                                        "values": [
                                                            "deployment-validation-operator"
                                                        ]
                                                    }
                                                ]
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "--config /config/deployment-validation-operator-config.yaml"
                                ],
                                "env": [
                                    {
                                        "name": "WATCH_NAMESPACE"
                                    },
                                    {
                                        "name": "OPERATOR_NAME",
                                        "value": "deployment-validation-operator"
                                    },
                                    {
                                        "name": "NAMESPACE_IGNORE_PATTERN",
                                        "value": "openshift.*|kube-.+|open-cluster-management-.*|default|dedicated-admin"
                                    },
                                    {
                                        "name": "RESOURCES_PER_LIST_QUERY",
                                        "value": "5"
                                    },
                                    {
                                        "name": "VALIDATION_CHECK_INTERVAL",
                                        "value": "2m"
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "OPERATOR_CONDITION_NAME",
                                        "value": "deployment-validation-operator.v0.1.568-g6f8f204"
                                    }
                                ],
                                "image": "quay.io/app-sre/deployment-validation-operator:0.1.568-g6f8f204",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 30,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 3
                                },
                                "name": "deployment-validation-operator",
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 3
                                },
                                "resources": {
                                    "limits": {
                                        "memory": "400Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "400Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/config",
                                        "name": "dvo-config"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/arch": "amd64"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "deployment-validation-operator",
                        "serviceAccountName": "deployment-validation-operator",
                        "terminationGracePeriodSeconds": 30,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/infra",
                                "operator": "Exists"
                            }
                        ],
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "deployment-validation-operator-config",
                                    "optional": true
                                },
                                "name": "dvo-config"
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 2,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "2"
                },
                "creationTimestamp": "2026-04-19T19:08:52Z",
                "generation": 1,
                "labels": {
                    "app": "deployment-validation-operator",
                    "name": "deployment-validation-operator",
                    "pod-template-hash": "d47bb8f88"
                },
                "name": "deployment-validation-operator-d47bb8f88",
                "namespace": "openshift-deployment-validation-operator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "deployment-validation-operator",
                        "uid": "6e23aa3c-6870-4ad4-9753-62279914ce41"
                    }
                ],
                "resourceVersion": "15359",
                "uid": "7148fa23-f719-44e3-94a0-e34be719306d"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "deployment-validation-operator",
                        "pod-template-hash": "d47bb8f88"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "capabilities": "Basic Install",
                            "categories": "Application Runtime, Monitoring, Security",
                            "certified": "false",
                            "containerImage": "quay.io/app-sre/deployment-validation-operator:0.1.568-g6f8f204",
                            "createdAt": "2026-03-10T08:28:54Z",
                            "description": "The deployment validation operator",
                            "olm.operatorGroup": "deployment-validation-operator-og",
                            "olm.operatorNamespace": "openshift-deployment-validation-operator",
                            "olm.targetNamespaces": "openshift-deployment-validation-operator",
                            "operatorframework.io/properties": "{\"properties\":[{\"type\":\"olm.package\",\"value\":{\"packageName\":\"deployment-validation-operator\",\"version\":\"0.1.568-g6f8f204\"}}]}",
                            "repository": "https://github.com/app-sre/deployment-validation-operator",
                            "support": "Best Effort"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "deployment-validation-operator",
                            "name": "deployment-validation-operator",
                            "pod-template-hash": "d47bb8f88"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchExpressions": [
                                                    {
                                                        "key": "app",
                                                        "operator": "In",
                                                        "values": [
                                                            "deployment-validation-operator"
                                                        ]
                                                    }
                                                ]
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "--config /config/deployment-validation-operator-config.yaml"
                                ],
                                "env": [
                                    {
                                        "name": "WATCH_NAMESPACE"
                                    },
                                    {
                                        "name": "OPERATOR_NAME",
                                        "value": "deployment-validation-operator"
                                    },
                                    {
                                        "name": "NAMESPACE_IGNORE_PATTERN",
                                        "value": "^(openshift.*|kube-.*|default|dedicated-admin|redhat-.*|acm|addon-dba-operator|codeready-.*|prow)$"
                                    },
                                    {
                                        "name": "RESOURCES_PER_LIST_QUERY",
                                        "value": "5"
                                    },
                                    {
                                        "name": "VALIDATION_CHECK_INTERVAL",
                                        "value": "2m"
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "OPERATOR_CONDITION_NAME",
                                        "value": "deployment-validation-operator.v0.1.568-g6f8f204"
                                    }
                                ],
                                "image": "quay.io/app-sre/deployment-validation-operator:0.1.568-g6f8f204",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 30,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 3
                                },
                                "name": "deployment-validation-operator",
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 3
                                },
                                "resources": {
                                    "limits": {
                                        "memory": "400Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "400Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/config",
                                        "name": "dvo-config"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/arch": "amd64"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "deployment-validation-operator",
                        "serviceAccountName": "deployment-validation-operator",
                        "terminationGracePeriodSeconds": 30,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/infra",
                                "operator": "Exists"
                            }
                        ],
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "deployment-validation-operator-config",
                                    "optional": true
                                },
                                "name": "dvo-config"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:11:40Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/name": "cluster",
                    "openshift.io/required-scc": "restricted-v2",
                    "pod-template-hash": "6459768798"
                },
                "name": "cluster-6459768798",
                "namespace": "openshift-gitops",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "cluster",
                        "uid": "776150f4-0fd0-4901-8775-1d8e81311334"
                    }
                ],
                "resourceVersion": "17084",
                "uid": "7358d695-f885-4eb4-b256-223e577ab19f"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "cluster",
                        "pod-template-hash": "6459768798"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "cluster",
                            "openshift.io/required-scc": "restricted-v2",
                            "pod-template-hash": "6459768798"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "INSECURE",
                                        "value": "true"
                                    }
                                ],
                                "image": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:5bda26e2c16beebf66dd8f3c3c55d48e2f00db870f2d9d4d44570d9d3b8bddb0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "cluster",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "http",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "250m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/gitops/ssl",
                                        "name": "backend-ssl",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "gitops-service-cluster",
                        "serviceAccountName": "gitops-service-cluster",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "backend-ssl",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "cluster"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:11:40Z",
                "generation": 1,
                "labels": {
                    "app": "gitops-plugin",
                    "pod-template-hash": "64f4967d99"
                },
                "name": "gitops-plugin-64f4967d99",
                "namespace": "openshift-gitops",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "gitops-plugin",
                        "uid": "c488133d-a9f4-4400-a5da-c24f6abadd52"
                    }
                ],
                "resourceVersion": "17166",
                "uid": "cf9525ce-c212-4005-b582-99b30e75594a"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "gitops-plugin",
                        "pod-template-hash": "64f4967d99"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "gitops-plugin",
                            "pod-template-hash": "64f4967d99"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "image": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:41717c27915251bda8afeef651b609b8a9ed410e0fa09c4cf8fa7e91d6a94292",
                                "imagePullPolicy": "Always",
                                "name": "gitops-plugin",
                                "ports": [
                                    {
                                        "containerPort": 9001,
                                        "name": "http",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "250m",
                                        "memory": "128Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/httpd-ssl/certs/tls.crt",
                                        "name": "console-serving-cert",
                                        "readOnly": true,
                                        "subPath": "tls.crt"
                                    },
                                    {
                                        "mountPath": "/etc/httpd-ssl/private/tls.key",
                                        "name": "console-serving-cert",
                                        "readOnly": true,
                                        "subPath": "tls.key"
                                    },
                                    {
                                        "mountPath": "/etc/httpd-cfg/httpd.conf",
                                        "name": "httpd-cfg",
                                        "readOnly": true,
                                        "subPath": "httpd.conf"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "console-serving-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "console-serving-cert"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "httpd-cfg"
                                },
                                "name": "httpd-cfg"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:11:45Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/name": "openshift-gitops-applicationset-controller",
                    "pod-template-hash": "85ff8f746b"
                },
                "name": "openshift-gitops-applicationset-controller-85ff8f746b",
                "namespace": "openshift-gitops",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "openshift-gitops-applicationset-controller",
                        "uid": "9bbaded5-5d32-432a-a776-86e3e6720a1a"
                    }
                ],
                "resourceVersion": "17370",
                "uid": "d539c88a-b47e-4f30-b663-b05629abcfaa"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "openshift-gitops-applicationset-controller",
                        "pod-template-hash": "85ff8f746b"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "openshift-gitops-applicationset-controller",
                            "pod-template-hash": "85ff8f746b"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "entrypoint.sh",
                                    "argocd-applicationset-controller",
                                    "--argocd-repo-server",
                                    "openshift-gitops-repo-server.openshift-gitops.svc.cluster.local:8081",
                                    "--loglevel",
                                    "info"
                                ],
                                "env": [
                                    {
                                        "name": "NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:911733d78ae6f36f642b4d63f044cd102b7eee170508eaf518ac7acf0f339698",
                                "imagePullPolicy": "Always",
                                "name": "argocd-applicationset-controller",
                                "ports": [
                                    {
                                        "containerPort": 7000,
                                        "name": "webhook",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8080,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "2",
                                        "memory": "1Gi"
                                    },
                                    "requests": {
                                        "cpu": "250m",
                                        "memory": "512Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/app/config/ssh",
                                        "name": "ssh-known-hosts"
                                    },
                                    {
                                        "mountPath": "/app/config/tls",
                                        "name": "tls-certs"
                                    },
                                    {
                                        "mountPath": "/app/config/gpg/source",
                                        "name": "gpg-keys"
                                    },
                                    {
                                        "mountPath": "/app/config/gpg/keys",
                                        "name": "gpg-keyring"
                                    },
                                    {
                                        "mountPath": "/tmp",
                                        "name": "tmp"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "openshift-gitops-applicationset-controller",
                        "serviceAccountName": "openshift-gitops-applicationset-controller",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "argocd-ssh-known-hosts-cm"
                                },
                                "name": "ssh-known-hosts"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "argocd-tls-certs-cm"
                                },
                                "name": "tls-certs"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "argocd-gpg-keys-cm"
                                },
                                "name": "gpg-keys"
                            },
                            {
                                "emptyDir": {},
                                "name": "gpg-keyring"
                            },
                            {
                                "emptyDir": {},
                                "name": "tmp"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "2"
                },
                "creationTimestamp": "2026-04-19T19:11:45Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/name": "openshift-gitops-dex-server",
                    "dex.config.changed": "04192026-191126-UTC",
                    "pod-template-hash": "56767d4648"
                },
                "name": "openshift-gitops-dex-server-56767d4648",
                "namespace": "openshift-gitops",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "openshift-gitops-dex-server",
                        "uid": "c8f7fe6c-7047-4715-81e5-eae1331b368c"
                    }
                ],
                "resourceVersion": "17624",
                "uid": "fad24169-c401-4cd3-a4c2-59fe0f40de36"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "openshift-gitops-dex-server",
                        "pod-template-hash": "56767d4648"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "openshift-gitops-dex-server",
                            "dex.config.changed": "04192026-191126-UTC",
                            "pod-template-hash": "56767d4648"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "/shared/argocd-dex",
                                    "rundex"
                                ],
                                "image": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a9e2360f00c5c9840a100a6748bd905b8f34169140a33fb0ca4af9cf6db71642",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz/live",
                                        "port": 5558,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 60,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "dex",
                                "ports": [
                                    {
                                        "containerPort": 5556,
                                        "name": "http",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 5557,
                                        "name": "grpc",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 5558,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "250m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/shared",
                                        "name": "static-files"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "initContainers": [
                            {
                                "command": [
                                    "cp",
                                    "-n",
                                    "/usr/local/bin/argocd",
                                    "/shared/argocd-dex"
                                ],
                                "image": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:911733d78ae6f36f642b4d63f044cd102b7eee170508eaf518ac7acf0f339698",
                                "imagePullPolicy": "Always",
                                "name": "copyutil",
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "250m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/shared",
                                        "name": "static-files"
                                    }
                                ]
                            }
                        ],
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "openshift-gitops-argocd-dex-server",
                        "serviceAccountName": "openshift-gitops-argocd-dex-server",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "emptyDir": {},
                                "name": "static-files"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:11:41Z",
                "generation": 2,
                "labels": {
                    "app.kubernetes.io/name": "openshift-gitops-dex-server",
                    "pod-template-hash": "574dfbf6dc"
                },
                "name": "openshift-gitops-dex-server-574dfbf6dc",
                "namespace": "openshift-gitops",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "openshift-gitops-dex-server",
                        "uid": "c8f7fe6c-7047-4715-81e5-eae1331b368c"
                    }
                ],
                "resourceVersion": "17637",
                "uid": "bef2b5e3-12f1-4898-a846-2c250adb7f69"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "openshift-gitops-dex-server",
                        "pod-template-hash": "574dfbf6dc"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "openshift-gitops-dex-server",
                            "pod-template-hash": "574dfbf6dc"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "/shared/argocd-dex",
                                    "rundex"
                                ],
                                "image": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a9e2360f00c5c9840a100a6748bd905b8f34169140a33fb0ca4af9cf6db71642",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz/live",
                                        "port": 5558,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 60,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "dex",
                                "ports": [
                                    {
                                        "containerPort": 5556,
                                        "name": "http",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 5557,
                                        "name": "grpc",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 5558,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "250m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/shared",
                                        "name": "static-files"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "initContainers": [
                            {
                                "command": [
                                    "cp",
                                    "-n",
                                    "/usr/local/bin/argocd",
                                    "/shared/argocd-dex"
                                ],
                                "image": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:911733d78ae6f36f642b4d63f044cd102b7eee170508eaf518ac7acf0f339698",
                                "imagePullPolicy": "Always",
                                "name": "copyutil",
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "250m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/shared",
                                        "name": "static-files"
                                    }
                                ]
                            }
                        ],
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "openshift-gitops-argocd-dex-server",
                        "serviceAccountName": "openshift-gitops-argocd-dex-server",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "emptyDir": {},
                                "name": "static-files"
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 2,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:11:44Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/name": "openshift-gitops-redis",
                    "pod-template-hash": "57fd4d6777"
                },
                "name": "openshift-gitops-redis-57fd4d6777",
                "namespace": "openshift-gitops",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "openshift-gitops-redis",
                        "uid": "3e5e2b9e-151a-4ec2-9bfe-94b6da33fe9d"
                    }
                ],
                "resourceVersion": "17553",
                "uid": "76ab2add-cbfa-4a0e-b227-ccf09ba2c1da"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "openshift-gitops-redis",
                        "pod-template-hash": "57fd4d6777"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "openshift-gitops-redis",
                            "pod-template-hash": "57fd4d6777"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "redis-server",
                                    "--protected-mode",
                                    "no",
                                    "--save",
                                    "",
                                    "--appendonly",
                                    "no",
                                    "--requirepass $(REDIS_PASSWORD)"
                                ],
                                "env": [
                                    {
                                        "name": "REDIS_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "admin.password",
                                                "name": "openshift-gitops-redis-initial-password"
                                            }
                                        }
                                    }
                                ],
                                "image": "registry.redhat.io/rhel9/redis-7@sha256:2fca0decc49230122f044afb2e7cd8f64921a00141c8c22c2f1402f3564f87f8",
                                "imagePullPolicy": "Always",
                                "name": "redis",
                                "ports": [
                                    {
                                        "containerPort": 6379,
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "250m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "runAsUser": 999,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/app/config/redis/tls",
                                        "name": "argocd-operator-redis-tls"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "openshift-gitops-argocd-redis",
                        "serviceAccountName": "openshift-gitops-argocd-redis",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "argocd-operator-redis-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "argocd-operator-redis-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "2"
                },
                "creationTimestamp": "2026-04-19T19:11:57Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/name": "openshift-gitops-repo-server",
                    "pod-template-hash": "7b646d56dd"
                },
                "name": "openshift-gitops-repo-server-7b646d56dd",
                "namespace": "openshift-gitops",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "openshift-gitops-repo-server",
                        "uid": "9d0f462e-9d11-4ad2-a55c-db214a6aa559"
                    }
                ],
                "resourceVersion": "18071",
                "uid": "2b597c4e-45d3-4bf8-9046-e58802075d08"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "openshift-gitops-repo-server",
                        "pod-template-hash": "7b646d56dd"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "openshift-gitops-repo-server",
                            "pod-template-hash": "7b646d56dd"
                        }
                    },
                    "spec": {
                        "automountServiceAccountToken": false,
                        "containers": [
                            {
                                "command": [
                                    "uid_entrypoint.sh",
                                    "argocd-repo-server",
                                    "--redis",
                                    "openshift-gitops-redis.openshift-gitops.svc.cluster.local:6379",
                                    "--loglevel",
                                    "info",
                                    "--logformat",
                                    "text"
                                ],
                                "env": [
                                    {
                                        "name": "ARGOCD_EXEC_TIMEOUT",
                                        "value": "5m"
                                    },
                                    {
                                        "name": "REDIS_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "admin.password",
                                                "name": "openshift-gitops-redis-initial-password"
                                            }
                                        }
                                    }
                                ],
                                "image": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:911733d78ae6f36f642b4d63f044cd102b7eee170508eaf518ac7acf0f339698",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "tcpSocket": {
                                        "port": 8081
                                    },
                                    "timeoutSeconds": 1
                                },
                                "name": "argocd-repo-server",
                                "ports": [
                                    {
                                        "containerPort": 8081,
                                        "name": "server",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8084,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "tcpSocket": {
                                        "port": 8081
                                    },
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "1",
                                        "memory": "1Gi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "100Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/app/config/ssh",
                                        "name": "ssh-known-hosts"
                                    },
                                    {
                                        "mountPath": "/app/config/tls",
                                        "name": "tls-certs"
                                    },
                                    {
                                        "mountPath": "/app/config/gpg/source",
                                        "name": "gpg-keys"
                                    },
                                    {
                                        "mountPath": "/app/config/gpg/keys",
                                        "name": "gpg-keyring"
                                    },
                                    {
                                        "mountPath": "/app/config/reposerver/tls",
                                        "name": "argocd-repo-server-tls"
                                    },
                                    {
                                        "mountPath": "/app/config/reposerver/tls/redis",
                                        "name": "argocd-operator-redis-tls"
                                    },
                                    {
                                        "mountPath": "/home/argocd/cmp-server/plugins",
                                        "name": "plugins"
                                    },
                                    {
                                        "mountPath": "/tmp",
                                        "name": "tmp"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "initContainers": [
                            {
                                "command": [
                                    "cp",
                                    "-n",
                                    "/usr/local/bin/argocd",
                                    "/var/run/argocd/argocd-cmp-server"
                                ],
                                "image": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:911733d78ae6f36f642b4d63f044cd102b7eee170508eaf518ac7acf0f339698",
                                "imagePullPolicy": "Always",
                                "name": "copyutil",
                                "resources": {
                                    "limits": {
                                        "cpu": "1",
                                        "memory": "1Gi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "100Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/argocd",
                                        "name": "var-files"
                                    }
                                ]
                            }
                        ],
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "argocd-ssh-known-hosts-cm"
                                },
                                "name": "ssh-known-hosts"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "argocd-tls-certs-cm"
                                },
                                "name": "tls-certs"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "argocd-gpg-keys-cm"
                                },
                                "name": "gpg-keys"
                            },
                            {
                                "emptyDir": {},
                                "name": "gpg-keyring"
                            },
                            {
                                "name": "argocd-repo-server-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "argocd-repo-server-tls"
                                }
                            },
                            {
                                "name": "argocd-operator-redis-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "argocd-operator-redis-tls"
                                }
                            },
                            {
                                "emptyDir": {},
                                "name": "var-files"
                            },
                            {
                                "emptyDir": {},
                                "name": "plugins"
                            },
                            {
                                "emptyDir": {},
                                "name": "tmp"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:11:44Z",
                "generation": 2,
                "labels": {
                    "app.kubernetes.io/name": "openshift-gitops-repo-server",
                    "pod-template-hash": "c995988c"
                },
                "name": "openshift-gitops-repo-server-c995988c",
                "namespace": "openshift-gitops",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "openshift-gitops-repo-server",
                        "uid": "9d0f462e-9d11-4ad2-a55c-db214a6aa559"
                    }
                ],
                "resourceVersion": "18086",
                "uid": "55f88032-9553-4672-8e5d-007c92bae91a"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "openshift-gitops-repo-server",
                        "pod-template-hash": "c995988c"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "openshift-gitops-repo-server",
                            "pod-template-hash": "c995988c"
                        }
                    },
                    "spec": {
                        "automountServiceAccountToken": false,
                        "containers": [
                            {
                                "command": [
                                    "uid_entrypoint.sh",
                                    "argocd-repo-server",
                                    "--redis",
                                    "openshift-gitops-redis.openshift-gitops.svc.cluster.local:6379",
                                    "--loglevel",
                                    "info",
                                    "--logformat",
                                    "text"
                                ],
                                "env": [
                                    {
                                        "name": "REDIS_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "admin.password",
                                                "name": "openshift-gitops-redis-initial-password"
                                            }
                                        }
                                    }
                                ],
                                "image": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:911733d78ae6f36f642b4d63f044cd102b7eee170508eaf518ac7acf0f339698",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "tcpSocket": {
                                        "port": 8081
                                    },
                                    "timeoutSeconds": 1
                                },
                                "name": "argocd-repo-server",
                                "ports": [
                                    {
                                        "containerPort": 8081,
                                        "name": "server",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8084,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "tcpSocket": {
                                        "port": 8081
                                    },
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "1",
                                        "memory": "1Gi"
                                    },
                                    "requests": {
                                        "cpu": "250m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/app/config/ssh",
                                        "name": "ssh-known-hosts"
                                    },
                                    {
                                        "mountPath": "/app/config/tls",
                                        "name": "tls-certs"
                                    },
                                    {
                                        "mountPath": "/app/config/gpg/source",
                                        "name": "gpg-keys"
                                    },
                                    {
                                        "mountPath": "/app/config/gpg/keys",
                                        "name": "gpg-keyring"
                                    },
                                    {
                                        "mountPath": "/app/config/reposerver/tls",
                                        "name": "argocd-repo-server-tls"
                                    },
                                    {
                                        "mountPath": "/app/config/reposerver/tls/redis",
                                        "name": "argocd-operator-redis-tls"
                                    },
                                    {
                                        "mountPath": "/home/argocd/cmp-server/plugins",
                                        "name": "plugins"
                                    },
                                    {
                                        "mountPath": "/tmp",
                                        "name": "tmp"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "initContainers": [
                            {
                                "command": [
                                    "cp",
                                    "-n",
                                    "/usr/local/bin/argocd",
                                    "/var/run/argocd/argocd-cmp-server"
                                ],
                                "image": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:911733d78ae6f36f642b4d63f044cd102b7eee170508eaf518ac7acf0f339698",
                                "imagePullPolicy": "Always",
                                "name": "copyutil",
                                "resources": {
                                    "limits": {
                                        "cpu": "1",
                                        "memory": "1Gi"
                                    },
                                    "requests": {
                                        "cpu": "250m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/argocd",
                                        "name": "var-files"
                                    }
                                ]
                            }
                        ],
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "argocd-ssh-known-hosts-cm"
                                },
                                "name": "ssh-known-hosts"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "argocd-tls-certs-cm"
                                },
                                "name": "tls-certs"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "argocd-gpg-keys-cm"
                                },
                                "name": "gpg-keys"
                            },
                            {
                                "emptyDir": {},
                                "name": "gpg-keyring"
                            },
                            {
                                "name": "argocd-repo-server-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "argocd-repo-server-tls"
                                }
                            },
                            {
                                "name": "argocd-operator-redis-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "argocd-operator-redis-tls"
                                }
                            },
                            {
                                "emptyDir": {},
                                "name": "var-files"
                            },
                            {
                                "emptyDir": {},
                                "name": "plugins"
                            },
                            {
                                "emptyDir": {},
                                "name": "tmp"
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 2,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:11:44Z",
                "generation": 2,
                "labels": {
                    "app.kubernetes.io/name": "openshift-gitops-server",
                    "pod-template-hash": "6944966b75"
                },
                "name": "openshift-gitops-server-6944966b75",
                "namespace": "openshift-gitops",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "openshift-gitops-server",
                        "uid": "122e558f-b504-48d3-af33-c065e1eb5856"
                    }
                ],
                "resourceVersion": "18267",
                "uid": "cf85b010-05a8-4c68-88ab-f8eea47c0a2f"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "openshift-gitops-server",
                        "pod-template-hash": "6944966b75"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "openshift-gitops-server",
                            "pod-template-hash": "6944966b75"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "argocd-server",
                                    "--staticassets",
                                    "/shared/app",
                                    "--dex-server",
                                    "https://openshift-gitops-dex-server.openshift-gitops.svc.cluster.local:5556",
                                    "--repo-server",
                                    "openshift-gitops-repo-server.openshift-gitops.svc.cluster.local:8081",
                                    "--redis",
                                    "openshift-gitops-redis.openshift-gitops.svc.cluster.local:6379",
                                    "--loglevel",
                                    "info",
                                    "--logformat",
                                    "text"
                                ],
                                "env": [
                                    {
                                        "name": "REDIS_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "admin.password",
                                                "name": "openshift-gitops-redis-initial-password"
                                            }
                                        }
                                    }
                                ],
                                "image": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:911733d78ae6f36f642b4d63f044cd102b7eee170508eaf518ac7acf0f339698",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 3,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "argocd-server",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8083,
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 3,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "125m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/app/config/ssh",
                                        "name": "ssh-known-hosts"
                                    },
                                    {
                                        "mountPath": "/app/config/tls",
                                        "name": "tls-certs"
                                    },
                                    {
                                        "mountPath": "/app/config/server/tls",
                                        "name": "argocd-repo-server-tls"
                                    },
                                    {
                                        "mountPath": "/app/config/server/tls/redis",
                                        "name": "argocd-operator-redis-tls"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "openshift-gitops-argocd-server",
                        "serviceAccountName": "openshift-gitops-argocd-server",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "argocd-ssh-known-hosts-cm"
                                },
                                "name": "ssh-known-hosts"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "argocd-tls-certs-cm"
                                },
                                "name": "tls-certs"
                            },
                            {
                                "name": "argocd-repo-server-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "argocd-repo-server-tls"
                                }
                            },
                            {
                                "name": "argocd-operator-redis-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "argocd-operator-redis-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 2,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "2"
                },
                "creationTimestamp": "2026-04-19T19:11:59Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/name": "openshift-gitops-server",
                    "pod-template-hash": "b5d776cf4"
                },
                "name": "openshift-gitops-server-b5d776cf4",
                "namespace": "openshift-gitops",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "openshift-gitops-server",
                        "uid": "122e558f-b504-48d3-af33-c065e1eb5856"
                    }
                ],
                "resourceVersion": "18255",
                "uid": "a38f8279-0fd7-4aeb-8d58-656aafc9d091"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "openshift-gitops-server",
                        "pod-template-hash": "b5d776cf4"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "kubectl.kubernetes.io/restartedAt": "2026-04-19T19:11:59Z"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "openshift-gitops-server",
                            "pod-template-hash": "b5d776cf4"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "argocd-server",
                                    "--staticassets",
                                    "/shared/app",
                                    "--dex-server",
                                    "https://openshift-gitops-dex-server.openshift-gitops.svc.cluster.local:5556",
                                    "--repo-server",
                                    "openshift-gitops-repo-server.openshift-gitops.svc.cluster.local:8081",
                                    "--redis",
                                    "openshift-gitops-redis.openshift-gitops.svc.cluster.local:6379",
                                    "--loglevel",
                                    "info",
                                    "--logformat",
                                    "text"
                                ],
                                "env": [
                                    {
                                        "name": "REDIS_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "admin.password",
                                                "name": "openshift-gitops-redis-initial-password"
                                            }
                                        }
                                    }
                                ],
                                "image": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:911733d78ae6f36f642b4d63f044cd102b7eee170508eaf518ac7acf0f339698",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 3,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "argocd-server",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8083,
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 3,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "125m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/app/config/ssh",
                                        "name": "ssh-known-hosts"
                                    },
                                    {
                                        "mountPath": "/app/config/tls",
                                        "name": "tls-certs"
                                    },
                                    {
                                        "mountPath": "/app/config/server/tls",
                                        "name": "argocd-repo-server-tls"
                                    },
                                    {
                                        "mountPath": "/app/config/server/tls/redis",
                                        "name": "argocd-operator-redis-tls"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "openshift-gitops-argocd-server",
                        "serviceAccountName": "openshift-gitops-argocd-server",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "argocd-ssh-known-hosts-cm"
                                },
                                "name": "ssh-known-hosts"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "argocd-tls-certs-cm"
                                },
                                "name": "tls-certs"
                            },
                            {
                                "name": "argocd-repo-server-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "argocd-repo-server-tls"
                                }
                            },
                            {
                                "name": "argocd-operator-redis-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "argocd-operator-redis-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1",
                    "imageregistry.operator.openshift.io/checksum": "sha256:b09cd37cb18d258c233d4c213b38d2d5749e64c11114d50d9443e0535f179152",
                    "operator.openshift.io/spec-hash": "bcec34a8599b30dcd7fca89bc6cad4053d55de8d7efe7f18757667af6ee0e351",
                    "release.openshift.io/version": "4.18.9"
                },
                "creationTimestamp": "2026-04-19T18:53:17Z",
                "generation": 3,
                "labels": {
                    "docker-registry": "default",
                    "pod-template-hash": "5d569dddb9"
                },
                "name": "image-registry-5d569dddb9",
                "namespace": "openshift-image-registry",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "image-registry",
                        "uid": "c82bc2eb-dad3-40bb-80e9-a36678f1ee98"
                    }
                ],
                "resourceVersion": "10177",
                "uid": "ee108fcd-4974-49ed-abee-620d0ee97e31"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "docker-registry": "default",
                        "pod-template-hash": "5d569dddb9"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "imageregistry.operator.openshift.io/dependencies-checksum": "sha256:685caa687cf47ea5cc125b30057632332b0910def8f743d8af0cac5d6445d9fd",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "docker-registry": "default",
                            "pod-template-hash": "5d569dddb9"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "docker-registry": "default"
                                            }
                                        },
                                        "namespaces": [
                                            "openshift-image-registry"
                                        ],
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "command": [
                                    "/bin/sh",
                                    "-c",
                                    "mkdir -p /etc/pki/ca-trust/extracted/edk2 /etc/pki/ca-trust/extracted/java /etc/pki/ca-trust/extracted/openssl /etc/pki/ca-trust/extracted/pem \u0026\u0026 update-ca-trust extract --output /etc/pki/ca-trust/extracted/ \u0026\u0026 exec /usr/bin/dockerregistry"
                                ],
                                "env": [
                                    {
                                        "name": "REGISTRY_STORAGE",
                                        "value": "s3"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_BUCKET",
                                        "value": "2ppd9c4auvsipollhdfcqnc3puklh1r4-image-registry-us-east-1-dhvl"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_REGION",
                                        "value": "us-east-1"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_ENCRYPT",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_FORCEPATHSTYLE",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_CREDENTIALSCONFIGPATH",
                                        "value": "/var/run/secrets/cloud/credentials"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_USEDUALSTACK",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_ADDR",
                                        "value": ":5000"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_NET",
                                        "value": "tcp"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_SECRET",
                                        "value": "5efdc3c32652c36d816d2d778670c8fd4f9728f6287da5e91d663b712a7648f5a4133f20a7ae6aa1922747ffc3750473e8c3734820f61be81858476177d24f2b"
                                    },
                                    {
                                        "name": "REGISTRY_LOG_LEVEL",
                                        "value": "info"
                                    },
                                    {
                                        "name": "REGISTRY_OPENSHIFT_QUOTA_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_CACHE_BLOBDESCRIPTOR",
                                        "value": "inmemory"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_DELETE_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_HEALTH_STORAGEDRIVER_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_HEALTH_STORAGEDRIVER_INTERVAL",
                                        "value": "10s"
                                    },
                                    {
                                        "name": "REGISTRY_HEALTH_STORAGEDRIVER_THRESHOLD",
                                        "value": "1"
                                    },
                                    {
                                        "name": "REGISTRY_OPENSHIFT_METRICS_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_OPENSHIFT_SERVER_ADDR",
                                        "value": "image-registry.openshift-image-registry.svc:5000"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_TLS_CERTIFICATE",
                                        "value": "/etc/secrets/tls.crt"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_TLS_KEY",
                                        "value": "/etc/secrets/tls.key"
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:0242cefbf0bb876101c4d67ab4e07401cb0ba6c02be2b73a4f17ba33b2960005",
                                "imagePullPolicy": "IfNotPresent",
                                "lifecycle": {
                                    "preStop": {
                                        "exec": {
                                            "command": [
                                                "sleep",
                                                "25"
                                            ]
                                        }
                                    }
                                },
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 5000,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "registry",
                                "ports": [
                                    {
                                        "containerPort": 5000,
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 5000,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/secrets/cloud",
                                        "name": "image-registry-private-configuration",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/secrets",
                                        "name": "registry-tls"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted",
                                        "name": "ca-trust-extracted"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/source/anchors",
                                        "name": "registry-certificates"
                                    },
                                    {
                                        "mountPath": "/usr/share/pki/ca-trust-source",
                                        "name": "trusted-ca"
                                    },
                                    {
                                        "mountPath": "/var/lib/kubelet/",
                                        "name": "installation-pull-secrets"
                                    },
                                    {
                                        "mountPath": "/var/run/secrets/openshift/serviceaccount",
                                        "name": "bound-sa-token",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "fsGroup": 1000290000,
                            "fsGroupChangePolicy": "OnRootMismatch"
                        },
                        "serviceAccount": "registry",
                        "serviceAccountName": "registry",
                        "terminationGracePeriodSeconds": 55,
                        "topologySpreadConstraints": [
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "docker-registry": "default"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "kubernetes.io/hostname",
                                "whenUnsatisfiable": "DoNotSchedule"
                            },
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "docker-registry": "default"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "node-role.kubernetes.io/worker",
                                "whenUnsatisfiable": "DoNotSchedule"
                            }
                        ],
                        "volumes": [
                            {
                                "name": "image-registry-private-configuration",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": false,
                                    "secretName": "image-registry-private-configuration"
                                }
                            },
                            {
                                "name": "registry-tls",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "secret": {
                                                "name": "image-registry-tls"
                                            }
                                        }
                                    ]
                                }
                            },
                            {
                                "emptyDir": {},
                                "name": "ca-trust-extracted"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "image-registry-certificates"
                                },
                                "name": "registry-certificates"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "anchors/ca-bundle.crt"
                                        }
                                    ],
                                    "name": "trusted-ca",
                                    "optional": true
                                },
                                "name": "trusted-ca"
                            },
                            {
                                "name": "installation-pull-secrets",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": ".dockerconfigjson",
                                            "path": "config.json"
                                        }
                                    ],
                                    "optional": true,
                                    "secretName": "installation-pull-secrets"
                                }
                            },
                            {
                                "name": "bound-sa-token",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "serviceAccountToken": {
                                                "audience": "openshift",
                                                "expirationSeconds": 3600,
                                                "path": "token"
                                            }
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 3,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "3",
                    "imageregistry.operator.openshift.io/checksum": "sha256:1ed6eb05a63f4d6bc23a65b8cde8d97b1088abb7d1257d98f912979ff4246820",
                    "operator.openshift.io/spec-hash": "7bb7395e79c68dd1cfc17da4bf0334db651dcab7cc4b1dbfadcc4eb3362cf35b",
                    "release.openshift.io/version": "4.18.9"
                },
                "creationTimestamp": "2026-04-19T19:02:20Z",
                "generation": 4,
                "labels": {
                    "docker-registry": "default",
                    "pod-template-hash": "644bbddc8c"
                },
                "name": "image-registry-644bbddc8c",
                "namespace": "openshift-image-registry",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "image-registry",
                        "uid": "c82bc2eb-dad3-40bb-80e9-a36678f1ee98"
                    }
                ],
                "resourceVersion": "12271",
                "uid": "891c8d90-b0ca-49b1-80f9-036eab3f8067"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "docker-registry": "default",
                        "pod-template-hash": "644bbddc8c"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "imageregistry.operator.openshift.io/dependencies-checksum": "sha256:049a53afc0f4f2eb9db39e5fd3fe7e25e8de5c51b28f1767aeec9ea3460e60f4",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "docker-registry": "default",
                            "pod-template-hash": "644bbddc8c"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "docker-registry": "default"
                                            }
                                        },
                                        "namespaces": [
                                            "openshift-image-registry"
                                        ],
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "command": [
                                    "/bin/sh",
                                    "-c",
                                    "mkdir -p /etc/pki/ca-trust/extracted/edk2 /etc/pki/ca-trust/extracted/java /etc/pki/ca-trust/extracted/openssl /etc/pki/ca-trust/extracted/pem \u0026\u0026 update-ca-trust extract --output /etc/pki/ca-trust/extracted/ \u0026\u0026 exec /usr/bin/dockerregistry"
                                ],
                                "env": [
                                    {
                                        "name": "REGISTRY_STORAGE",
                                        "value": "s3"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_BUCKET",
                                        "value": "2ppd9c4auvsipollhdfcqnc3puklh1r4-image-registry-us-east-1-dhvl"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_REGION",
                                        "value": "us-east-1"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_ENCRYPT",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_FORCEPATHSTYLE",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_CREDENTIALSCONFIGPATH",
                                        "value": "/var/run/secrets/cloud/credentials"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_USEDUALSTACK",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_ADDR",
                                        "value": ":5000"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_NET",
                                        "value": "tcp"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_SECRET",
                                        "value": "5efdc3c32652c36d816d2d778670c8fd4f9728f6287da5e91d663b712a7648f5a4133f20a7ae6aa1922747ffc3750473e8c3734820f61be81858476177d24f2b"
                                    },
                                    {
                                        "name": "REGISTRY_LOG_LEVEL",
                                        "value": "info"
                                    },
                                    {
                                        "name": "REGISTRY_OPENSHIFT_QUOTA_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_CACHE_BLOBDESCRIPTOR",
                                        "value": "inmemory"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_DELETE_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_HEALTH_STORAGEDRIVER_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_HEALTH_STORAGEDRIVER_INTERVAL",
                                        "value": "10s"
                                    },
                                    {
                                        "name": "REGISTRY_HEALTH_STORAGEDRIVER_THRESHOLD",
                                        "value": "1"
                                    },
                                    {
                                        "name": "REGISTRY_OPENSHIFT_METRICS_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_OPENSHIFT_SERVER_ADDR",
                                        "value": "image-registry.openshift-image-registry.svc:5000"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_TLS_CERTIFICATE",
                                        "value": "/etc/secrets/tls.crt"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_TLS_KEY",
                                        "value": "/etc/secrets/tls.key"
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:0242cefbf0bb876101c4d67ab4e07401cb0ba6c02be2b73a4f17ba33b2960005",
                                "imagePullPolicy": "IfNotPresent",
                                "lifecycle": {
                                    "preStop": {
                                        "exec": {
                                            "command": [
                                                "sleep",
                                                "25"
                                            ]
                                        }
                                    }
                                },
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 5000,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "registry",
                                "ports": [
                                    {
                                        "containerPort": 5000,
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 5000,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/secrets/cloud",
                                        "name": "image-registry-private-configuration",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/secrets",
                                        "name": "registry-tls"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted",
                                        "name": "ca-trust-extracted"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/source/anchors",
                                        "name": "registry-certificates"
                                    },
                                    {
                                        "mountPath": "/usr/share/pki/ca-trust-source",
                                        "name": "trusted-ca"
                                    },
                                    {
                                        "mountPath": "/var/lib/kubelet/",
                                        "name": "installation-pull-secrets"
                                    },
                                    {
                                        "mountPath": "/var/run/secrets/openshift/serviceaccount",
                                        "name": "bound-sa-token",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "fsGroup": 1000290000,
                            "fsGroupChangePolicy": "OnRootMismatch"
                        },
                        "serviceAccount": "registry",
                        "serviceAccountName": "registry",
                        "terminationGracePeriodSeconds": 55,
                        "topologySpreadConstraints": [
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "docker-registry": "default"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "kubernetes.io/hostname",
                                "whenUnsatisfiable": "DoNotSchedule"
                            },
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "docker-registry": "default"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "node-role.kubernetes.io/worker",
                                "whenUnsatisfiable": "DoNotSchedule"
                            },
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "docker-registry": "default"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "topology.kubernetes.io/zone",
                                "whenUnsatisfiable": "DoNotSchedule"
                            }
                        ],
                        "volumes": [
                            {
                                "name": "image-registry-private-configuration",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": false,
                                    "secretName": "image-registry-private-configuration"
                                }
                            },
                            {
                                "name": "registry-tls",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "secret": {
                                                "name": "image-registry-tls"
                                            }
                                        }
                                    ]
                                }
                            },
                            {
                                "emptyDir": {},
                                "name": "ca-trust-extracted"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "image-registry-certificates"
                                },
                                "name": "registry-certificates"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "anchors/ca-bundle.crt"
                                        }
                                    ],
                                    "name": "trusted-ca",
                                    "optional": true
                                },
                                "name": "trusted-ca"
                            },
                            {
                                "name": "installation-pull-secrets",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": ".dockerconfigjson",
                                            "path": "config.json"
                                        }
                                    ],
                                    "optional": true,
                                    "secretName": "installation-pull-secrets"
                                }
                            },
                            {
                                "name": "bound-sa-token",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "serviceAccountToken": {
                                                "audience": "openshift",
                                                "expirationSeconds": 3600,
                                                "path": "token"
                                            }
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 4,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "2",
                    "imageregistry.operator.openshift.io/checksum": "sha256:2d471afcea818a19b2a5d429b655393945e09c86da94967c0a51c5817e6e4852",
                    "operator.openshift.io/spec-hash": "d97260e0fa4e56aa4eb33d814df50c674d163f597b8ab352454cacb34193d480",
                    "release.openshift.io/version": "4.18.9"
                },
                "creationTimestamp": "2026-04-19T19:01:13Z",
                "generation": 4,
                "labels": {
                    "docker-registry": "default",
                    "pod-template-hash": "6f56b488c8"
                },
                "name": "image-registry-6f56b488c8",
                "namespace": "openshift-image-registry",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "image-registry",
                        "uid": "c82bc2eb-dad3-40bb-80e9-a36678f1ee98"
                    }
                ],
                "resourceVersion": "10650",
                "uid": "c7c429fd-5e4a-4bd6-a42b-143f5be8367a"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "docker-registry": "default",
                        "pod-template-hash": "6f56b488c8"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "imageregistry.operator.openshift.io/dependencies-checksum": "sha256:685caa687cf47ea5cc125b30057632332b0910def8f743d8af0cac5d6445d9fd",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "docker-registry": "default",
                            "pod-template-hash": "6f56b488c8"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "docker-registry": "default"
                                            }
                                        },
                                        "namespaces": [
                                            "openshift-image-registry"
                                        ],
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "command": [
                                    "/bin/sh",
                                    "-c",
                                    "mkdir -p /etc/pki/ca-trust/extracted/edk2 /etc/pki/ca-trust/extracted/java /etc/pki/ca-trust/extracted/openssl /etc/pki/ca-trust/extracted/pem \u0026\u0026 update-ca-trust extract --output /etc/pki/ca-trust/extracted/ \u0026\u0026 exec /usr/bin/dockerregistry"
                                ],
                                "env": [
                                    {
                                        "name": "REGISTRY_STORAGE",
                                        "value": "s3"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_BUCKET",
                                        "value": "2ppd9c4auvsipollhdfcqnc3puklh1r4-image-registry-us-east-1-dhvl"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_REGION",
                                        "value": "us-east-1"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_ENCRYPT",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_FORCEPATHSTYLE",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_CREDENTIALSCONFIGPATH",
                                        "value": "/var/run/secrets/cloud/credentials"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_USEDUALSTACK",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_ADDR",
                                        "value": ":5000"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_NET",
                                        "value": "tcp"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_SECRET",
                                        "value": "5efdc3c32652c36d816d2d778670c8fd4f9728f6287da5e91d663b712a7648f5a4133f20a7ae6aa1922747ffc3750473e8c3734820f61be81858476177d24f2b"
                                    },
                                    {
                                        "name": "REGISTRY_LOG_LEVEL",
                                        "value": "info"
                                    },
                                    {
                                        "name": "REGISTRY_OPENSHIFT_QUOTA_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_CACHE_BLOBDESCRIPTOR",
                                        "value": "inmemory"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_DELETE_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_HEALTH_STORAGEDRIVER_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_HEALTH_STORAGEDRIVER_INTERVAL",
                                        "value": "10s"
                                    },
                                    {
                                        "name": "REGISTRY_HEALTH_STORAGEDRIVER_THRESHOLD",
                                        "value": "1"
                                    },
                                    {
                                        "name": "REGISTRY_OPENSHIFT_METRICS_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_OPENSHIFT_SERVER_ADDR",
                                        "value": "image-registry.openshift-image-registry.svc:5000"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_TLS_CERTIFICATE",
                                        "value": "/etc/secrets/tls.crt"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_TLS_KEY",
                                        "value": "/etc/secrets/tls.key"
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:0242cefbf0bb876101c4d67ab4e07401cb0ba6c02be2b73a4f17ba33b2960005",
                                "imagePullPolicy": "IfNotPresent",
                                "lifecycle": {
                                    "preStop": {
                                        "exec": {
                                            "command": [
                                                "sleep",
                                                "25"
                                            ]
                                        }
                                    }
                                },
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 5000,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "registry",
                                "ports": [
                                    {
                                        "containerPort": 5000,
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 5000,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/secrets/cloud",
                                        "name": "image-registry-private-configuration",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/secrets",
                                        "name": "registry-tls"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted",
                                        "name": "ca-trust-extracted"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/source/anchors",
                                        "name": "registry-certificates"
                                    },
                                    {
                                        "mountPath": "/usr/share/pki/ca-trust-source",
                                        "name": "trusted-ca"
                                    },
                                    {
                                        "mountPath": "/var/lib/kubelet/",
                                        "name": "installation-pull-secrets"
                                    },
                                    {
                                        "mountPath": "/var/run/secrets/openshift/serviceaccount",
                                        "name": "bound-sa-token",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "fsGroup": 1000290000,
                            "fsGroupChangePolicy": "OnRootMismatch"
                        },
                        "serviceAccount": "registry",
                        "serviceAccountName": "registry",
                        "terminationGracePeriodSeconds": 55,
                        "topologySpreadConstraints": [
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "docker-registry": "default"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "kubernetes.io/hostname",
                                "whenUnsatisfiable": "DoNotSchedule"
                            },
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "docker-registry": "default"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "node-role.kubernetes.io/worker",
                                "whenUnsatisfiable": "DoNotSchedule"
                            },
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "docker-registry": "default"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "topology.kubernetes.io/zone",
                                "whenUnsatisfiable": "DoNotSchedule"
                            }
                        ],
                        "volumes": [
                            {
                                "name": "image-registry-private-configuration",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": false,
                                    "secretName": "image-registry-private-configuration"
                                }
                            },
                            {
                                "name": "registry-tls",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "secret": {
                                                "name": "image-registry-tls"
                                            }
                                        }
                                    ]
                                }
                            },
                            {
                                "emptyDir": {},
                                "name": "ca-trust-extracted"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "image-registry-certificates"
                                },
                                "name": "registry-certificates"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "anchors/ca-bundle.crt"
                                        }
                                    ],
                                    "name": "trusted-ca",
                                    "optional": true
                                },
                                "name": "trusted-ca"
                            },
                            {
                                "name": "installation-pull-secrets",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": ".dockerconfigjson",
                                            "path": "config.json"
                                        }
                                    ],
                                    "optional": true,
                                    "secretName": "installation-pull-secrets"
                                }
                            },
                            {
                                "name": "bound-sa-token",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "serviceAccountToken": {
                                                "audience": "openshift",
                                                "expirationSeconds": 3600,
                                                "path": "token"
                                            }
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 4,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "4",
                    "imageregistry.operator.openshift.io/checksum": "sha256:3a60016a52d91ab427c404be4b4f59cdd81c11e177c83803a8ddce886b282fb5",
                    "operator.openshift.io/spec-hash": "af8210883a1bec8547a246731443b4ea47af9f05c2c6d09878c35a5022f9c4ba",
                    "release.openshift.io/version": "4.18.9"
                },
                "creationTimestamp": "2026-04-19T19:02:38Z",
                "generation": 2,
                "labels": {
                    "docker-registry": "default",
                    "pod-template-hash": "cf5df59fb"
                },
                "name": "image-registry-cf5df59fb",
                "namespace": "openshift-image-registry",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "image-registry",
                        "uid": "c82bc2eb-dad3-40bb-80e9-a36678f1ee98"
                    }
                ],
                "resourceVersion": "12951",
                "uid": "f98b07a5-6b34-4046-9d5b-d7bc1a53568b"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "docker-registry": "default",
                        "pod-template-hash": "cf5df59fb"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "imageregistry.operator.openshift.io/dependencies-checksum": "sha256:b7f34ea14190e2f9b8c6212f76d49bcf438231855567c4f0391f567cccaa2952",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "docker-registry": "default",
                            "pod-template-hash": "cf5df59fb"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "docker-registry": "default"
                                            }
                                        },
                                        "namespaces": [
                                            "openshift-image-registry"
                                        ],
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "command": [
                                    "/bin/sh",
                                    "-c",
                                    "mkdir -p /etc/pki/ca-trust/extracted/edk2 /etc/pki/ca-trust/extracted/java /etc/pki/ca-trust/extracted/openssl /etc/pki/ca-trust/extracted/pem \u0026\u0026 update-ca-trust extract --output /etc/pki/ca-trust/extracted/ \u0026\u0026 exec /usr/bin/dockerregistry"
                                ],
                                "env": [
                                    {
                                        "name": "REGISTRY_STORAGE",
                                        "value": "s3"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_BUCKET",
                                        "value": "2ppd9c4auvsipollhdfcqnc3puklh1r4-image-registry-us-east-1-dhvl"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_REGION",
                                        "value": "us-east-1"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_ENCRYPT",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_FORCEPATHSTYLE",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_CREDENTIALSCONFIGPATH",
                                        "value": "/var/run/secrets/cloud/credentials"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_S3_USEDUALSTACK",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_ADDR",
                                        "value": ":5000"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_NET",
                                        "value": "tcp"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_SECRET",
                                        "value": "5efdc3c32652c36d816d2d778670c8fd4f9728f6287da5e91d663b712a7648f5a4133f20a7ae6aa1922747ffc3750473e8c3734820f61be81858476177d24f2b"
                                    },
                                    {
                                        "name": "REGISTRY_LOG_LEVEL",
                                        "value": "info"
                                    },
                                    {
                                        "name": "REGISTRY_OPENSHIFT_QUOTA_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_CACHE_BLOBDESCRIPTOR",
                                        "value": "inmemory"
                                    },
                                    {
                                        "name": "REGISTRY_STORAGE_DELETE_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_HEALTH_STORAGEDRIVER_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_HEALTH_STORAGEDRIVER_INTERVAL",
                                        "value": "10s"
                                    },
                                    {
                                        "name": "REGISTRY_HEALTH_STORAGEDRIVER_THRESHOLD",
                                        "value": "1"
                                    },
                                    {
                                        "name": "REGISTRY_OPENSHIFT_METRICS_ENABLED",
                                        "value": "true"
                                    },
                                    {
                                        "name": "REGISTRY_OPENSHIFT_SERVER_ADDR",
                                        "value": "image-registry.openshift-image-registry.svc:5000"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_TLS_CERTIFICATE",
                                        "value": "/etc/secrets/tls.crt"
                                    },
                                    {
                                        "name": "REGISTRY_HTTP_TLS_KEY",
                                        "value": "/etc/secrets/tls.key"
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:0242cefbf0bb876101c4d67ab4e07401cb0ba6c02be2b73a4f17ba33b2960005",
                                "imagePullPolicy": "IfNotPresent",
                                "lifecycle": {
                                    "preStop": {
                                        "exec": {
                                            "command": [
                                                "sleep",
                                                "25"
                                            ]
                                        }
                                    }
                                },
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 5000,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "registry",
                                "ports": [
                                    {
                                        "containerPort": 5000,
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 5000,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/secrets/cloud",
                                        "name": "image-registry-private-configuration",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/secrets",
                                        "name": "registry-tls"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted",
                                        "name": "ca-trust-extracted"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/source/anchors",
                                        "name": "registry-certificates"
                                    },
                                    {
                                        "mountPath": "/usr/share/pki/ca-trust-source",
                                        "name": "trusted-ca"
                                    },
                                    {
                                        "mountPath": "/var/lib/kubelet/",
                                        "name": "installation-pull-secrets"
                                    },
                                    {
                                        "mountPath": "/var/run/secrets/openshift/serviceaccount",
                                        "name": "bound-sa-token",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "fsGroup": 1000290000,
                            "fsGroupChangePolicy": "OnRootMismatch"
                        },
                        "serviceAccount": "registry",
                        "serviceAccountName": "registry",
                        "terminationGracePeriodSeconds": 55,
                        "topologySpreadConstraints": [
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "docker-registry": "default"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "kubernetes.io/hostname",
                                "whenUnsatisfiable": "DoNotSchedule"
                            },
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "docker-registry": "default"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "node-role.kubernetes.io/worker",
                                "whenUnsatisfiable": "DoNotSchedule"
                            },
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "docker-registry": "default"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "topology.kubernetes.io/zone",
                                "whenUnsatisfiable": "DoNotSchedule"
                            }
                        ],
                        "volumes": [
                            {
                                "name": "image-registry-private-configuration",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": false,
                                    "secretName": "image-registry-private-configuration"
                                }
                            },
                            {
                                "name": "registry-tls",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "secret": {
                                                "name": "image-registry-tls"
                                            }
                                        }
                                    ]
                                }
                            },
                            {
                                "emptyDir": {},
                                "name": "ca-trust-extracted"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "image-registry-certificates"
                                },
                                "name": "registry-certificates"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "anchors/ca-bundle.crt"
                                        }
                                    ],
                                    "name": "trusted-ca",
                                    "optional": true
                                },
                                "name": "trusted-ca"
                            },
                            {
                                "name": "installation-pull-secrets",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": ".dockerconfigjson",
                                            "path": "config.json"
                                        }
                                    ],
                                    "optional": true,
                                    "secretName": "installation-pull-secrets"
                                }
                            },
                            {
                                "name": "bound-sa-token",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "serviceAccountToken": {
                                                "audience": "openshift",
                                                "expirationSeconds": 3600,
                                                "path": "token"
                                            }
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 2,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "2"
                },
                "creationTimestamp": "2026-04-19T18:56:18Z",
                "generation": 2,
                "labels": {
                    "ingresscontroller.operator.openshift.io/deployment-ingresscontroller": "default",
                    "ingresscontroller.operator.openshift.io/hash": "866c44ffd5",
                    "pod-template-hash": "5c7ddcfd85"
                },
                "name": "router-default-5c7ddcfd85",
                "namespace": "openshift-ingress",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "router-default",
                        "uid": "e421314f-eb73-464b-bf77-2b2a54427caf"
                    }
                ],
                "resourceVersion": "12300",
                "uid": "6425fecc-c43c-4055-a3ea-3d1061b73921"
            },
            "spec": {
                "minReadySeconds": 30,
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "ingresscontroller.operator.openshift.io/deployment-ingresscontroller": "default",
                        "pod-template-hash": "5c7ddcfd85"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "ingresscontroller.operator.openshift.io/deployment-ingresscontroller": "default",
                            "ingresscontroller.operator.openshift.io/hash": "866c44ffd5",
                            "pod-template-hash": "5c7ddcfd85"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "nodeAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "nodeSelectorTerms": [
                                        {
                                            "matchExpressions": [
                                                {
                                                    "key": "node.openshift.io/remote-worker",
                                                    "operator": "NotIn",
                                                    "values": [
                                                        ""
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            },
                            "podAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchExpressions": [
                                                    {
                                                        "key": "ingresscontroller.operator.openshift.io/deployment-ingresscontroller",
                                                        "operator": "In",
                                                        "values": [
                                                            "default"
                                                        ]
                                                    },
                                                    {
                                                        "key": "ingresscontroller.operator.openshift.io/hash",
                                                        "operator": "NotIn",
                                                        "values": [
                                                            "866c44ffd5"
                                                        ]
                                                    }
                                                ]
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            },
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchExpressions": [
                                                {
                                                    "key": "ingresscontroller.operator.openshift.io/deployment-ingresscontroller",
                                                    "operator": "In",
                                                    "values": [
                                                        "default"
                                                    ]
                                                },
                                                {
                                                    "key": "ingresscontroller.operator.openshift.io/hash",
                                                    "operator": "In",
                                                    "values": [
                                                        "866c44ffd5"
                                                    ]
                                                }
                                            ]
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "DEFAULT_CERTIFICATE_DIR",
                                        "value": "/etc/pki/tls/private"
                                    },
                                    {
                                        "name": "DEFAULT_DESTINATION_CA_PATH",
                                        "value": "/var/run/configmaps/service-ca/service-ca.crt"
                                    },
                                    {
                                        "name": "RELOAD_INTERVAL",
                                        "value": "5s"
                                    },
                                    {
                                        "name": "ROUTER_ALLOW_WILDCARD_ROUTES",
                                        "value": "false"
                                    },
                                    {
                                        "name": "ROUTER_CANONICAL_HOSTNAME",
                                        "value": "router-default.apps.rosa.kx-57f411fb01.8wft.p3.openshiftapps.com"
                                    },
                                    {
                                        "name": "ROUTER_CIPHERS",
                                        "value": "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384"
                                    },
                                    {
                                        "name": "ROUTER_CIPHERSUITES",
                                        "value": "TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256"
                                    },
                                    {
                                        "name": "ROUTER_DISABLE_HTTP2",
                                        "value": "true"
                                    },
                                    {
                                        "name": "ROUTER_DISABLE_NAMESPACE_OWNERSHIP_CHECK",
                                        "value": "false"
                                    },
                                    {
                                        "name": "ROUTER_DOMAIN",
                                        "value": "apps.rosa.kx-57f411fb01.8wft.p3.openshiftapps.com"
                                    },
                                    {
                                        "name": "ROUTER_IDLE_CLOSE_ON_RESPONSE",
                                        "value": "true"
                                    },
                                    {
                                        "name": "ROUTER_LOAD_BALANCE_ALGORITHM",
                                        "value": "random"
                                    },
                                    {
                                        "name": "ROUTER_METRICS_TLS_CERT_FILE",
                                        "value": "/etc/pki/tls/metrics-certs/tls.crt"
                                    },
                                    {
                                        "name": "ROUTER_METRICS_TLS_KEY_FILE",
                                        "value": "/etc/pki/tls/metrics-certs/tls.key"
                                    },
                                    {
                                        "name": "ROUTER_METRICS_TYPE",
                                        "value": "haproxy"
                                    },
                                    {
                                        "name": "ROUTER_SERVICE_NAME",
                                        "value": "default"
                                    },
                                    {
                                        "name": "ROUTER_SERVICE_NAMESPACE",
                                        "value": "openshift-ingress"
                                    },
                                    {
                                        "name": "ROUTER_SET_FORWARDED_HEADERS",
                                        "value": "append"
                                    },
                                    {
                                        "name": "ROUTER_TCP_BALANCE_SCHEME",
                                        "value": "source"
                                    },
                                    {
                                        "name": "ROUTER_THREADS",
                                        "value": "4"
                                    },
                                    {
                                        "name": "SSL_MIN_VERSION",
                                        "value": "TLSv1.2"
                                    },
                                    {
                                        "name": "STATS_PASSWORD_FILE",
                                        "value": "/var/lib/haproxy/conf/metrics-auth/statsPassword"
                                    },
                                    {
                                        "name": "STATS_PORT",
                                        "value": "1936"
                                    },
                                    {
                                        "name": "STATS_USERNAME_FILE",
                                        "value": "/var/lib/haproxy/conf/metrics-auth/statsUsername"
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:0c1abef76d6d2832ddcff31e950ffafeb4e0f6fad80a5f5dca94591de0fc9581",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 1936,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "terminationGracePeriodSeconds": 10,
                                    "timeoutSeconds": 1
                                },
                                "name": "router",
                                "ports": [
                                    {
                                        "containerPort": 80,
                                        "name": "http",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 1936,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz/ready",
                                        "port": 1936,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": true,
                                    "readOnlyRootFilesystem": false
                                },
                                "startupProbe": {
                                    "failureThreshold": 120,
                                    "httpGet": {
                                        "path": "/healthz/ready",
                                        "port": 1936,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 1,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/pki/tls/private",
                                        "name": "default-certificate",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/run/configmaps/service-ca",
                                        "name": "service-ca-bundle",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/lib/haproxy/conf/metrics-auth",
                                        "name": "stats-auth",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/pki/tls/metrics-certs",
                                        "name": "metrics-certs",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux",
                            "node-role.kubernetes.io/worker": ""
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "router",
                        "serviceAccountName": "router",
                        "terminationGracePeriodSeconds": 3600,
                        "tolerations": [
                            {
                                "effect": "NoExecute",
                                "key": "kubernetes.io/e2e-evict-taint-key",
                                "operator": "Equal",
                                "value": "evictTaintVal"
                            }
                        ],
                        "topologySpreadConstraints": [
                            {
                                "labelSelector": {
                                    "matchExpressions": [
                                        {
                                            "key": "ingresscontroller.operator.openshift.io/hash",
                                            "operator": "In",
                                            "values": [
                                                "866c44ffd5"
                                            ]
                                        }
                                    ]
                                },
                                "maxSkew": 1,
                                "topologyKey": "topology.kubernetes.io/zone",
                                "whenUnsatisfiable": "ScheduleAnyway"
                            }
                        ],
                        "volumes": [
                            {
                                "name": "default-certificate",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "2ppd9c4auvsipollhdfcqnc3puklh1r4-primary-cert-bundle-secret"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "service-ca.crt",
                                            "path": "service-ca.crt"
                                        }
                                    ],
                                    "name": "service-ca-bundle",
                                    "optional": false
                                },
                                "name": "service-ca-bundle"
                            },
                            {
                                "name": "stats-auth",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "router-stats-default"
                                }
                            },
                            {
                                "name": "metrics-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "router-metrics-certs-default"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 2,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T18:53:02Z",
                "generation": 3,
                "labels": {
                    "ingresscontroller.operator.openshift.io/deployment-ingresscontroller": "default",
                    "ingresscontroller.operator.openshift.io/hash": "5b646cdcf",
                    "pod-template-hash": "698f75dd85"
                },
                "name": "router-default-698f75dd85",
                "namespace": "openshift-ingress",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "router-default",
                        "uid": "e421314f-eb73-464b-bf77-2b2a54427caf"
                    }
                ],
                "resourceVersion": "12314",
                "uid": "0a8c1797-94bb-400a-a3d4-4945c74f1acf"
            },
            "spec": {
                "minReadySeconds": 30,
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "ingresscontroller.operator.openshift.io/deployment-ingresscontroller": "default",
                        "pod-template-hash": "698f75dd85"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "ingresscontroller.operator.openshift.io/deployment-ingresscontroller": "default",
                            "ingresscontroller.operator.openshift.io/hash": "5b646cdcf",
                            "pod-template-hash": "698f75dd85"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "nodeAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "nodeSelectorTerms": [
                                        {
                                            "matchExpressions": [
                                                {
                                                    "key": "node.openshift.io/remote-worker",
                                                    "operator": "NotIn",
                                                    "values": [
                                                        ""
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            },
                            "podAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchExpressions": [
                                                    {
                                                        "key": "ingresscontroller.operator.openshift.io/deployment-ingresscontroller",
                                                        "operator": "In",
                                                        "values": [
                                                            "default"
                                                        ]
                                                    },
                                                    {
                                                        "key": "ingresscontroller.operator.openshift.io/hash",
                                                        "operator": "NotIn",
                                                        "values": [
                                                            "5b646cdcf"
                                                        ]
                                                    }
                                                ]
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            },
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchExpressions": [
                                                {
                                                    "key": "ingresscontroller.operator.openshift.io/deployment-ingresscontroller",
                                                    "operator": "In",
                                                    "values": [
                                                        "default"
                                                    ]
                                                },
                                                {
                                                    "key": "ingresscontroller.operator.openshift.io/hash",
                                                    "operator": "In",
                                                    "values": [
                                                        "5b646cdcf"
                                                    ]
                                                }
                                            ]
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "DEFAULT_CERTIFICATE_DIR",
                                        "value": "/etc/pki/tls/private"
                                    },
                                    {
                                        "name": "DEFAULT_DESTINATION_CA_PATH",
                                        "value": "/var/run/configmaps/service-ca/service-ca.crt"
                                    },
                                    {
                                        "name": "RELOAD_INTERVAL",
                                        "value": "5s"
                                    },
                                    {
                                        "name": "ROUTER_ALLOW_WILDCARD_ROUTES",
                                        "value": "false"
                                    },
                                    {
                                        "name": "ROUTER_CANONICAL_HOSTNAME",
                                        "value": "router-default.apps.rosa.kx-57f411fb01.8wft.p3.openshiftapps.com"
                                    },
                                    {
                                        "name": "ROUTER_CIPHERS",
                                        "value": "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384"
                                    },
                                    {
                                        "name": "ROUTER_CIPHERSUITES",
                                        "value": "TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256"
                                    },
                                    {
                                        "name": "ROUTER_DISABLE_HTTP2",
                                        "value": "true"
                                    },
                                    {
                                        "name": "ROUTER_DISABLE_NAMESPACE_OWNERSHIP_CHECK",
                                        "value": "false"
                                    },
                                    {
                                        "name": "ROUTER_DOMAIN",
                                        "value": "apps.rosa.kx-57f411fb01.8wft.p3.openshiftapps.com"
                                    },
                                    {
                                        "name": "ROUTER_IDLE_CLOSE_ON_RESPONSE",
                                        "value": "true"
                                    },
                                    {
                                        "name": "ROUTER_LOAD_BALANCE_ALGORITHM",
                                        "value": "random"
                                    },
                                    {
                                        "name": "ROUTER_METRICS_TLS_CERT_FILE",
                                        "value": "/etc/pki/tls/metrics-certs/tls.crt"
                                    },
                                    {
                                        "name": "ROUTER_METRICS_TLS_KEY_FILE",
                                        "value": "/etc/pki/tls/metrics-certs/tls.key"
                                    },
                                    {
                                        "name": "ROUTER_METRICS_TYPE",
                                        "value": "haproxy"
                                    },
                                    {
                                        "name": "ROUTER_SERVICE_NAME",
                                        "value": "default"
                                    },
                                    {
                                        "name": "ROUTER_SERVICE_NAMESPACE",
                                        "value": "openshift-ingress"
                                    },
                                    {
                                        "name": "ROUTER_SET_FORWARDED_HEADERS",
                                        "value": "append"
                                    },
                                    {
                                        "name": "ROUTER_TCP_BALANCE_SCHEME",
                                        "value": "source"
                                    },
                                    {
                                        "name": "ROUTER_THREADS",
                                        "value": "4"
                                    },
                                    {
                                        "name": "SSL_MIN_VERSION",
                                        "value": "TLSv1.2"
                                    },
                                    {
                                        "name": "STATS_PASSWORD_FILE",
                                        "value": "/var/lib/haproxy/conf/metrics-auth/statsPassword"
                                    },
                                    {
                                        "name": "STATS_PORT",
                                        "value": "1936"
                                    },
                                    {
                                        "name": "STATS_USERNAME_FILE",
                                        "value": "/var/lib/haproxy/conf/metrics-auth/statsUsername"
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:0c1abef76d6d2832ddcff31e950ffafeb4e0f6fad80a5f5dca94591de0fc9581",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 1936,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "terminationGracePeriodSeconds": 10,
                                    "timeoutSeconds": 1
                                },
                                "name": "router",
                                "ports": [
                                    {
                                        "containerPort": 80,
                                        "name": "http",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 1936,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz/ready",
                                        "port": 1936,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": true,
                                    "readOnlyRootFilesystem": false
                                },
                                "startupProbe": {
                                    "failureThreshold": 120,
                                    "httpGet": {
                                        "path": "/healthz/ready",
                                        "port": 1936,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 1,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/pki/tls/private",
                                        "name": "default-certificate",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/run/configmaps/service-ca",
                                        "name": "service-ca-bundle",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/lib/haproxy/conf/metrics-auth",
                                        "name": "stats-auth",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/pki/tls/metrics-certs",
                                        "name": "metrics-certs",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux",
                            "node-role.kubernetes.io/worker": ""
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "router",
                        "serviceAccountName": "router",
                        "terminationGracePeriodSeconds": 3600,
                        "tolerations": [
                            {
                                "effect": "NoExecute",
                                "key": "kubernetes.io/e2e-evict-taint-key",
                                "operator": "Equal",
                                "value": "evictTaintVal"
                            }
                        ],
                        "topologySpreadConstraints": [
                            {
                                "labelSelector": {
                                    "matchExpressions": [
                                        {
                                            "key": "ingresscontroller.operator.openshift.io/hash",
                                            "operator": "In",
                                            "values": [
                                                "5b646cdcf"
                                            ]
                                        }
                                    ]
                                },
                                "maxSkew": 1,
                                "topologyKey": "topology.kubernetes.io/zone",
                                "whenUnsatisfiable": "ScheduleAnyway"
                            }
                        ],
                        "volumes": [
                            {
                                "name": "default-certificate",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "default-ingress-cert"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "service-ca.crt",
                                            "path": "service-ca.crt"
                                        }
                                    ],
                                    "name": "service-ca-bundle",
                                    "optional": false
                                },
                                "name": "service-ca-bundle"
                            },
                            {
                                "name": "stats-auth",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "router-stats-default"
                                }
                            },
                            {
                                "name": "metrics-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "router-metrics-certs-default"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 3,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "capability.openshift.io/name": "Insights",
                    "config.openshift.io/inject-proxy": "insights-operator",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "1",
                    "deployment.kubernetes.io/revision": "1",
                    "include.release.openshift.io/hypershift": "true",
                    "include.release.openshift.io/ibm-cloud-managed": "true"
                },
                "creationTimestamp": "2026-04-19T18:53:09Z",
                "generation": 1,
                "labels": {
                    "app": "insights-operator",
                    "pod-template-hash": "6fd96f47fd"
                },
                "name": "insights-operator-6fd96f47fd",
                "namespace": "openshift-insights",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "insights-operator",
                        "uid": "6d85af9c-b330-4550-b4a3-e8568d1c65f6"
                    }
                ],
                "resourceVersion": "13348",
                "uid": "c431d2e6-ef24-461f-8bc1-33e987eb962d"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "insights-operator",
                        "pod-template-hash": "6fd96f47fd"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "insights-operator",
                            "pod-template-hash": "6fd96f47fd"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "start",
                                    "--config=/etc/insights-operator/server.yaml"
                                ],
                                "env": [
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "RELEASE_VERSION",
                                        "value": "4.18.9"
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:bb83c9ed575eb45b3d1b046c430011e8ab5172d8bd61ba20309aa8157b65a8d7",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "insights-operator",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "54Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/lib/insights-operator",
                                        "name": "snapshots"
                                    },
                                    {
                                        "mountPath": "/var/run/configmaps/trusted-ca-bundle",
                                        "name": "trusted-ca-bundle",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/run/configmaps/service-ca-bundle",
                                        "name": "service-ca-bundle",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/run/secrets/serving-cert",
                                        "name": "serving-cert"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "operator",
                        "serviceAccountName": "operator",
                        "terminationGracePeriodSeconds": 30,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 900
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/not-ready",
                                "operator": "Exists",
                                "tolerationSeconds": 900
                            }
                        ],
                        "volumes": [
                            {
                                "emptyDir": {},
                                "name": "snapshots"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "trusted-ca-bundle",
                                    "optional": true
                                },
                                "name": "trusted-ca-bundle"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "service-ca-bundle",
                                    "optional": true
                                },
                                "name": "service-ca-bundle"
                            },
                            {
                                "name": "serving-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "openshift-insights-serving-cert"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "1",
                    "deployment.kubernetes.io/revision": "1",
                    "include.release.openshift.io/hypershift": "true",
                    "include.release.openshift.io/ibm-cloud-managed": "true"
                },
                "creationTimestamp": "2026-04-19T18:53:35Z",
                "generation": 1,
                "labels": {
                    "app": "kube-storage-version-migrator-operator",
                    "pod-template-hash": "66d58888b9"
                },
                "name": "kube-storage-version-migrator-operator-66d58888b9",
                "namespace": "openshift-kube-storage-version-migrator-operator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "kube-storage-version-migrator-operator",
                        "uid": "f170b772-4726-4da3-a714-0a1f79a0c2cd"
                    }
                ],
                "resourceVersion": "13012",
                "uid": "a406e11d-db7d-4604-ac47-a74a102abca7"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "kube-storage-version-migrator-operator",
                        "pod-template-hash": "66d58888b9"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "nonroot-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "kube-storage-version-migrator-operator",
                            "pod-template-hash": "66d58888b9"
                        },
                        "name": "kube-storage-version-migrator-operator"
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--config=/var/run/configmaps/config/config.yaml"
                                ],
                                "command": [
                                    "cluster-kube-storage-version-migrator-operator",
                                    "start"
                                ],
                                "env": [
                                    {
                                        "name": "IMAGE",
                                        "value": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:e6ebfeb84922f87603af2498ef3bf8a4665127b28ddc87209a0fc48c229b1448"
                                    },
                                    {
                                        "name": "OPERATOR_IMAGE",
                                        "value": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:9428a5c3cc3a3e5f5a250abcd306499ffb0983a9a7cd064ae5c11dd0cf4fa98c"
                                    },
                                    {
                                        "name": "OPERATOR_IMAGE_VERSION",
                                        "value": "4.18.9"
                                    },
                                    {
                                        "name": "OPERAND_IMAGE_VERSION",
                                        "value": "4.18.9"
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:9428a5c3cc3a3e5f5a250abcd306499ffb0983a9a7cd064ae5c11dd0cf4fa98c",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-storage-version-migrator-operator",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "50Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsUser": 1001
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/configmaps/config",
                                        "name": "config"
                                    },
                                    {
                                        "mountPath": "/var/run/secrets/serving-cert",
                                        "name": "serving-cert"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "kube-storage-version-migrator-operator",
                        "serviceAccountName": "kube-storage-version-migrator-operator",
                        "terminationGracePeriodSeconds": 30,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/not-ready",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ],
                        "volumes": [
                            {
                                "name": "serving-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "serving-cert"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "config"
                                },
                                "name": "config"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "operator.openshift.io/spec-hash": "82b034ec71c9941cc8c82ccb033622ff17b75ab250e2c3077a900d8831871090"
                },
                "creationTimestamp": "2026-04-19T19:02:12Z",
                "generation": 1,
                "labels": {
                    "app": "migrator",
                    "pod-template-hash": "6cf78d8f89"
                },
                "name": "migrator-6cf78d8f89",
                "namespace": "openshift-kube-storage-version-migrator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "migrator",
                        "uid": "20742716-0ffc-4327-98df-75f2b5896e3e"
                    }
                ],
                "resourceVersion": "10061",
                "uid": "38c5b684-ade0-4a0d-9b00-f981f8bc6b37"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "migrator",
                        "pod-template-hash": "6cf78d8f89"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "nonroot-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "migrator",
                            "pod-template-hash": "6cf78d8f89"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "trap 'echo \"Termination signal received, but ignored. Continuing...\"; sleep infinity' TERM\nmigrator \"$@\" \u0026 wait $!",
                                    "bash",
                                    "--alsologtostderr",
                                    "--v=2"
                                ],
                                "command": [
                                    "/bin/bash",
                                    "-c"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:e6ebfeb84922f87603af2498ef3bf8a4665127b28ddc87209a0fc48c229b1448",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "migrator",
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "200Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsUser": 1001
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            },
                            {
                                "args": [
                                    "trap 'echo \"Gracefully sleeping for 25s to let another pod start...\"; sleep 25; exit' EXIT\nwhile true; do echo \"Waiting for termination...\"; sleep 3600 \u0026 wait $!; done"
                                ],
                                "command": [
                                    "/bin/bash",
                                    "-c"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:e6ebfeb84922f87603af2498ef3bf8a4665127b28ddc87209a0fc48c229b1448",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "graceful-termination",
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "1Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsUser": 1001
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "kube-storage-version-migrator-sa",
                        "serviceAccountName": "kube-storage-version-migrator-sa",
                        "terminationGracePeriodSeconds": 30,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/not-ready",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "2",
                    "operator.openshift.io/spec-hash": "aa08e76e418f35ccb6ae45365f850bfee5e38e117c50a84ec5604f6bde2d8d7a"
                },
                "creationTimestamp": "2026-04-19T19:18:48Z",
                "generation": 2,
                "labels": {
                    "app.kubernetes.io/name": "kueue",
                    "app.openshift.io/name": "kueue",
                    "control-plane": "controller-manager",
                    "pod-template-hash": "6c84594c95"
                },
                "name": "kueue-controller-manager-6c84594c95",
                "namespace": "openshift-kueue-operator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "kueue-controller-manager",
                        "uid": "41c4a26d-496a-4479-b0f7-d4cd3242c9f1"
                    }
                ],
                "resourceVersion": "37463",
                "uid": "3ef4b0e7-4cf1-4b9f-a0db-9e833ed7b70a"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "control-plane": "controller-manager",
                        "pod-template-hash": "6c84594c95"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "apiservice/v1beta1.visibility.kueue.x-k8s.io": "9f5316102e8678185f353114550813f87bf6633d2bbac784f062b2ea90cbb6bc",
                            "certificate/kueue-visibility-server-cert": "112884663d1d65aa2e086bd7145de39089016a820cba725423888aa998164b31",
                            "certificate/metrics-certs": "4b8f6e46959aa8b6518f9eb6395891efe1c19fe90896a1ce82f3c40ba023fca2",
                            "certificate/webhook-cert": "82b2fba9dc0a2af79de1992794fd62b6487ea62c9a448a256b449a6e28b5896f",
                            "clusterrole/kueue-clusterqueue-editor-role": "9554667a2b4a5afab16805607fc912a5229a474328d7e141668c210b19cde259",
                            "clusterrole/kueue-clusterqueue-viewer-role": "27430dc524cdb406f6885b0bacf79643e00a9a5e586987263fae20107080e919",
                            "clusterrole/kueue-cohort-editor-role": "f48c461c79990bd6597b8df9891d1750cd49a7e37867ec7d908561bf3783b16c",
                            "clusterrole/kueue-cohort-viewer-role": "f1a8300e7fb80c262b05a03ebaf6c6afe186ab0ee82ede9205b300adaf41962d",
                            "clusterrole/kueue-jaxjob-editor-role": "c66c63d72e388c07a69c48abd0e74550182a095b9b19eed37d53bb79f62eaadf",
                            "clusterrole/kueue-jaxjob-viewer-role": "415025a9f98432a2903b7198e1c0d32c337fd5b8c98dc2c069b5a63aa666c334",
                            "clusterrole/kueue-job-editor-role": "31969e3653a4af4c61c796282530e3b26c6d927032bed3447bd0757805f94b7b",
                            "clusterrole/kueue-job-viewer-role": "ea59780fe640a5694187c68a97cc690833979faa3253e3b2962a5c2779c22edd",
                            "clusterrole/kueue-jobset-editor-role": "21c09044062a912478d92c45866b5f154bf876301e8e47e88e7be0f2de91634c",
                            "clusterrole/kueue-jobset-viewer-role": "b1fb1abb986409a9ee24b54f968085c82ea09ebb1cff0012bb474f1d850905dc",
                            "clusterrole/kueue-localqueue-editor-role": "2e8351331ea22d4106892302f32aa07f35ffe7b6cd2d4d3235021a5a781cbad7",
                            "clusterrole/kueue-localqueue-viewer-role": "6acc8c50d988d270c95ef767a31ca8f228bd1bd342689e006249f00efa4afb2c",
                            "clusterrole/kueue-manager-role": "6369f3de48c5e21aff4cd006ba93a18762bc6ca4e773de859f2064f5990eef9f",
                            "clusterrole/kueue-metrics-auth-role": "26c3e8d08e5dd279fc194c8699f5377dc9efd87e2083c9b05561d8754c9f9af5",
                            "clusterrole/kueue-metrics-reader": "7a16b32612f51ee1b7e47aebbe68754ce2b70922111ccc6b273c83f72a0a106a",
                            "clusterrole/kueue-mpijob-editor-role": "34d10b747863cb080738289c5c569b589c3612c2a6c412136b65e9bc40811410",
                            "clusterrole/kueue-mpijob-viewer-role": "4af7224a17de7698b65a3eea27594cc0a5c745a390189c53bb7baa4f380d4e51",
                            "clusterrole/kueue-mxjob-editor-role": "90b83557c4b76a4f29bfb208d72699058c917f38c43cb1328d63752022385a44",
                            "clusterrole/kueue-mxjob-viewer-role": "e6b2d26957074476db9fd8e89f1f7fcd8a1d7bcfb8d9a338f4ff8d4828fa1113",
                            "clusterrole/kueue-openshift-roles": "985f12bb839eb3cf977559bb291a3b58d325c8912ac8bacb05fca02955a3bf69",
                            "clusterrole/kueue-paddlejob-editor-role": "649d19223dd1e2779c70585d62e96a848f4673539032b3888af8bf546d491cb5",
                            "clusterrole/kueue-paddlejob-viewer-role": "f3b52afcae7cdbe460ed418b653e7fd1627b8b711391d253cbb922280d8602f0",
                            "clusterrole/kueue-pending-workloads-cq-viewer-role": "fbb0e1ed5c28ae7a6965b06e35e9371c21ba3bd9ec1fea94c89145030706939a",
                            "clusterrole/kueue-pending-workloads-lq-viewer-role": "03ec0aea59fc76abb1efd95c64c9e6e8b150762d00f2e7cfd2530d5fe1ea3db0",
                            "clusterrole/kueue-proxy-role": "26c3e8d08e5dd279fc194c8699f5377dc9efd87e2083c9b05561d8754c9f9af5",
                            "clusterrole/kueue-pytorchjob-editor-role": "b48b530a15b65da6c2609e5002c802fee40d705df4f9208c95d6adaffb129128",
                            "clusterrole/kueue-pytorchjob-viewer-role": "af8bb85c8ec142051cb592f0fbdeeef473b0e4f4497364560e0416d54dbeddac",
                            "clusterrole/kueue-raycluster-editor-role": "0296c797be4d9f812d4ca3de2c58de030b770176b0d3f2e3354dce61da67ada1",
                            "clusterrole/kueue-raycluster-viewer-role": "27c1256bf4bd0e82ae3b68a793681aa76abd8729002cbdaee2b981561a61bbed",
                            "clusterrole/kueue-rayjob-editor-role": "367d6f26e47126239669a4ea946877452b1b6055b950e335a30aeca4b60d7c1a",
                            "clusterrole/kueue-rayjob-viewer-role": "ac0c22258f6121bd37d7a2472134eb9a357e4586877ea4dd513cb04d73e27482",
                            "clusterrole/kueue-resourceflavor-editor-role": "02512f1702f2fc683a608c3713374e0f169d9a81638954a4f11d560e16db246a",
                            "clusterrole/kueue-resourceflavor-viewer-role": "e4d0076d3090e2da4f58a2ab3dc42968797200c249dfcd2cd58a9476e60d654b",
                            "clusterrole/kueue-tfjob-editor-role": "c7cd19e486b7f7f75bb18b0b7852cb86b9401d9ae0b0808780c935c2e0287cfc",
                            "clusterrole/kueue-tfjob-viewer-role": "2d4359daaef02f8321b463a758c1186c4484c062dea3e57fa29aa5a274c07d23",
                            "clusterrole/kueue-topology-editor-role": "36d1205d6884def955398b411f2bc95ea333880b33ccdd62f97917aab2405a5e",
                            "clusterrole/kueue-topology-viewer-role": "12a0f7ff19e03da40da4be77ca27c6af44e6ad549cbbead8dc7303bd03907662",
                            "clusterrole/kueue-trainjob-editor-role": "e4ab9ba12996b31b302b5d49b263a9aa9b3de0b05b8bbc6679a47730fff8174e",
                            "clusterrole/kueue-trainjob-viewer-role": "8dfa1f3e232ebb6db284a2b698f1fc82130689fa7b9c934322c76e8b88711000",
                            "clusterrole/kueue-workload-editor-role": "7f4c2628cc95a5c2ba0b624791c7643827b9587ff6dc78e1c5c36bded5dfd4ec",
                            "clusterrole/kueue-workload-viewer-role": "e39a5bb4b7c677a069a45d8fd250d62f851b01cdd9dbd9467762f4df0b9c7ce1",
                            "clusterrole/kueue-xgboostjob-editor-role": "a03e320306b7096031d05317e59e69f2436e41f64acdedd6962f7b1101b6c3b9",
                            "clusterrole/kueue-xgboostjob-viewer-role": "e08b1bff6bcc7784a356b557e3d89951bcadeb05772b158f4f58144c860ef5c5",
                            "clusterrolebinding/kueue-manager-rolebinding": "251b645ba8b89d5b2ecc92727df3de13a91f9971382cf0f015d14098528db2ab",
                            "clusterrolebinding/kueue-metrics-auth-rolebinding": "59f611e2ea670200b2555133627e0070a5ed6184cbae33ab292924a377346c21",
                            "clusterrolebinding/kueue-metrics-monitoring-rolebinding": "cf2ef46accd61883d33f9b862bd663e1f46e04fd8b8c89d2bf112fa5b60498b5",
                            "clusterrolebinding/kueue-metrics-rolebinding": "c66294c14eb751536089f487546d840883de67a6ff211b8291dac6cdf80cc7b0",
                            "clusterrolebinding/kueue-openshift-cluster-role-binding": "3d055dd15cfb788dc19ef3e06cc9e83a1b511966ea923e00296369499f926858",
                            "clusterrolebinding/kueue-proxy-rolebinding": "2acc2e649eeb8aeb06ca82c2bce86cb706e42b65c2752b3a2e88e4fa47c75053",
                            "configmap/kueue-manager-config": "9fa25aeabe6c2623add7b68608f42c2af1e6a98b39806b293db411666f332471",
                            "crd/admissionchecks.kueue.x-k8s.io": "86fbf4ac23b88c75d3deba3123e7cb571a9c23ff9613e0b0a219431cb7d5ffa9",
                            "crd/clusterqueues.kueue.x-k8s.io": "7eb00c2f652c7097e0bef3d6fe70fc267cb3ce6306c6c6178e130947efd3c42c",
                            "crd/cohorts.kueue.x-k8s.io": "858a6a64e0a96c078ccedabaa6a518dbbf9abcc17dd0dec4b2e234cfdbb3e650",
                            "crd/localqueues.kueue.x-k8s.io": "2a27b8b8a7f006321187de05d24630afde8bf6d5701da5febedab5153f063c1b",
                            "crd/multikueueclusters.kueue.x-k8s.io": "aa810c3670b7104dd7deead8fc64107939d30e476fc7025302dcdad9d7654f50",
                            "crd/multikueueconfigs.kueue.x-k8s.io": "725124df859490f9a79a0da8d3a6a75e832fab3245d4d01db31f78a967938ea1",
                            "crd/provisioningrequestconfigs.kueue.x-k8s.io": "aa41a9da0076828e4a7acd75a869a15ec6093e58f16dbc1156b7c057492b24dd",
                            "crd/resourceflavors.kueue.x-k8s.io": "264868cda1a14160f739b3280687ccc6067298864624ce04bd2e5770540acb1b",
                            "crd/topologies.kueue.x-k8s.io": "c3136fc7e9b2ce560826b45a01cdb6b77a2c730d842eea1c959c227ddeaf11fa",
                            "crd/workloadpriorityclasses.kueue.x-k8s.io": "f4aa5333170700ee0d91e0ca0d2ea53848382e4f0a6a0a34a3c77e24ac1b0a9a",
                            "crd/workloads.kueue.x-k8s.io": "cd69b12c68983260d6db02bd38ea3d9419ebceff9ea6b6cd731060e44616e926",
                            "flowschema/visibility": "0a96aa38edd3df911a1788fdb9da6cd4cf89e1697ceb5b48b01f0b506df4c426",
                            "issuer/selfsigned": "0900ddeba4433364db66e3771b8ee0edf4603c2007360d6e3bca995cb50294d2",
                            "kubectl.kubernetes.io/default-container": "manager",
                            "kueueoperator.kueue.openshift.io/cluster": "1",
                            "mutatingwebhook/kueue-mutating-webhook-configuration": "95cf3989ed26f0ca373b07005c7dcdc69f5fc59b85617c4e1f0a79c7ba5f7a47",
                            "networkpolicy/kueue-allow-egress-cluster-dns": "9f2bb82df4a48856d05aa0a4355ba72483a56aa743456705dce215f6219d28e7",
                            "networkpolicy/kueue-allow-egress-kube-apiserver": "9a3340cad1f911db4a97368af28380bcec9404ac4b4d5a8346006985c8282de5",
                            "networkpolicy/kueue-allow-ingress-egress-metrics": "1638409b04c26380a4bd8a346faafa19327985f64a925c1930bc653b47e28a62",
                            "networkpolicy/kueue-allow-ingress-egress-visibility": "a08e18e830feb3a848f70a864ee1ce802dc645a2de8d014e7e21b96e66f47c44",
                            "networkpolicy/kueue-allow-ingress-egress-webhook": "ffbe6f77858631e9c9df88e67e310af4a1b606b2d9f295b87c24190c80489a40",
                            "networkpolicy/kueue-deny-all": "ef12fdba96fac76c868127514eeb3035dfb57e2897e3534c499ba101ea8765f4",
                            "prioritylevelconfiguration/kueue-visibility": "30ce48efdd314a0154daf774edc8e45e024d3ec5d4ccfbf89f6f8c0d79b237cb",
                            "role/kueue-leader-election-role": "18e2271791b5d42aef0b69d73d7ed0a7f70854dd4cacec95a8c1edc1ec959e74",
                            "role/prometheus-k8s": "2944ed6f306638b937eca0eb70b160fd39b3db3824901afdfebde5e610bc351d",
                            "rolebinding/kueue-leader-election-rolebinding": "afaa9a6c3c8e987928e7b1646a2e2e805311e3841946fc3941f6dedd9f86a786",
                            "rolebinding/kueue-visibility-server-auth-reader": "732bf8672f336a4d1565d352d0bab80baa668c9d544a25ec060841bc39fa55cb",
                            "rolebinding/prometheus-k8s": "406315d10cd3c802c59cec323716a3b36ac66a9acec6a433a666d888f1e11bf7",
                            "service/kueue-controller-manager-metrics-service": "6d6db5694efd6b0fb58b704124d1b60376d2788c7540b5ee1808051bdc7e96d5",
                            "service/kueue-visibility-server": "7a2bf3f2f94b2276f6e37f04e9c7ea57995d7471da37fd3e6134989499bd0b54",
                            "service/kueue-webhook-service": "edc81ac076518ca0c133452afef31fe86c93ed808b2cc1b19e1250659f20e11d",
                            "serviceaccounts/kueue-controller-manager": "35b253e4ee3b543a7e43189bee3b90f50b3d73844d0d5b3e0c332fe9128fb516",
                            "servicemonitor/kueue-metrics": "5f203a145798afed031a08433fc2bccab34783b5879d9971bc54b1d6f34647af",
                            "validatingwebhook/kueue-validating-webhook-configuration": "1ee719c22d34f4772988f1f3bd1af81129d25cdba3c2e2f57bded6eb33945e39"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "kueue",
                            "app.openshift.io/name": "kueue",
                            "control-plane": "controller-manager",
                            "pod-template-hash": "6c84594c95"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "app.kubernetes.io/name": "kueue",
                                                    "control-plane": "controller-manager"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "--config=/controller_manager_config.yaml",
                                    "--zap-log-level=2"
                                ],
                                "command": [
                                    "/manager"
                                ],
                                "image": "registry.redhat.io/kueue/kueue-rhel9@sha256:bdf48afa3c62beec7402edddac8803363e793cf74c1c4cf908ae81845296ce3b",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8082,
                                        "name": "visibility",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9443,
                                        "name": "webhook-server",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "500m",
                                        "memory": "512Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/visibility",
                                        "name": "visibility"
                                    },
                                    {
                                        "mountPath": "/tmp/k8s-webhook-server/serving-certs",
                                        "name": "cert",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/controller_manager_config.yaml",
                                        "name": "manager-config",
                                        "subPath": "controller_manager_config.yaml"
                                    },
                                    {
                                        "mountPath": "/etc/kueue/metrics/certs",
                                        "name": "metrics-certs",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "kueue-controller-manager",
                        "serviceAccountName": "kueue-controller-manager",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "name": "visibility",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca.crt",
                                            "path": "ca.crt"
                                        },
                                        {
                                            "key": "tls.crt",
                                            "path": "tls.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "tls.key"
                                        }
                                    ],
                                    "optional": false,
                                    "secretName": "kueue-visibility-server-cert"
                                }
                            },
                            {
                                "name": "cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "kueue-webhook-server-cert"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "kueue-manager-config"
                                },
                                "name": "manager-config"
                            },
                            {
                                "name": "metrics-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "metrics-server-cert"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 2,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1",
                    "operator.openshift.io/spec-hash": "be0881362a780d5942e0b69946ba2942d88025e2592085701c36b26e81874520"
                },
                "creationTimestamp": "2026-04-19T19:18:47Z",
                "generation": 3,
                "labels": {
                    "app.kubernetes.io/name": "kueue",
                    "app.openshift.io/name": "kueue",
                    "control-plane": "controller-manager",
                    "pod-template-hash": "7785ffd556"
                },
                "name": "kueue-controller-manager-7785ffd556",
                "namespace": "openshift-kueue-operator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "kueue-controller-manager",
                        "uid": "41c4a26d-496a-4479-b0f7-d4cd3242c9f1"
                    }
                ],
                "resourceVersion": "37452",
                "uid": "938d46c0-4c17-4a14-9ce3-b7bb37d3cd59"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "control-plane": "controller-manager",
                        "pod-template-hash": "7785ffd556"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "apiservice/v1beta1.visibility.kueue.x-k8s.io": "fd38a796f24e77f0dc1b11ef72f841fe98aed092ba5fee2303a9a1a7d74ff6c6",
                            "certificate/kueue-visibility-server-cert": "112884663d1d65aa2e086bd7145de39089016a820cba725423888aa998164b31",
                            "certificate/metrics-certs": "4b8f6e46959aa8b6518f9eb6395891efe1c19fe90896a1ce82f3c40ba023fca2",
                            "certificate/webhook-cert": "82b2fba9dc0a2af79de1992794fd62b6487ea62c9a448a256b449a6e28b5896f",
                            "clusterrole/kueue-clusterqueue-editor-role": "9554667a2b4a5afab16805607fc912a5229a474328d7e141668c210b19cde259",
                            "clusterrole/kueue-clusterqueue-viewer-role": "27430dc524cdb406f6885b0bacf79643e00a9a5e586987263fae20107080e919",
                            "clusterrole/kueue-cohort-editor-role": "f48c461c79990bd6597b8df9891d1750cd49a7e37867ec7d908561bf3783b16c",
                            "clusterrole/kueue-cohort-viewer-role": "f1a8300e7fb80c262b05a03ebaf6c6afe186ab0ee82ede9205b300adaf41962d",
                            "clusterrole/kueue-jaxjob-editor-role": "c66c63d72e388c07a69c48abd0e74550182a095b9b19eed37d53bb79f62eaadf",
                            "clusterrole/kueue-jaxjob-viewer-role": "415025a9f98432a2903b7198e1c0d32c337fd5b8c98dc2c069b5a63aa666c334",
                            "clusterrole/kueue-job-editor-role": "31969e3653a4af4c61c796282530e3b26c6d927032bed3447bd0757805f94b7b",
                            "clusterrole/kueue-job-viewer-role": "ea59780fe640a5694187c68a97cc690833979faa3253e3b2962a5c2779c22edd",
                            "clusterrole/kueue-jobset-editor-role": "21c09044062a912478d92c45866b5f154bf876301e8e47e88e7be0f2de91634c",
                            "clusterrole/kueue-jobset-viewer-role": "b1fb1abb986409a9ee24b54f968085c82ea09ebb1cff0012bb474f1d850905dc",
                            "clusterrole/kueue-localqueue-editor-role": "2e8351331ea22d4106892302f32aa07f35ffe7b6cd2d4d3235021a5a781cbad7",
                            "clusterrole/kueue-localqueue-viewer-role": "6acc8c50d988d270c95ef767a31ca8f228bd1bd342689e006249f00efa4afb2c",
                            "clusterrole/kueue-manager-role": "6369f3de48c5e21aff4cd006ba93a18762bc6ca4e773de859f2064f5990eef9f",
                            "clusterrole/kueue-metrics-auth-role": "26c3e8d08e5dd279fc194c8699f5377dc9efd87e2083c9b05561d8754c9f9af5",
                            "clusterrole/kueue-metrics-reader": "7a16b32612f51ee1b7e47aebbe68754ce2b70922111ccc6b273c83f72a0a106a",
                            "clusterrole/kueue-mpijob-editor-role": "34d10b747863cb080738289c5c569b589c3612c2a6c412136b65e9bc40811410",
                            "clusterrole/kueue-mpijob-viewer-role": "4af7224a17de7698b65a3eea27594cc0a5c745a390189c53bb7baa4f380d4e51",
                            "clusterrole/kueue-mxjob-editor-role": "90b83557c4b76a4f29bfb208d72699058c917f38c43cb1328d63752022385a44",
                            "clusterrole/kueue-mxjob-viewer-role": "e6b2d26957074476db9fd8e89f1f7fcd8a1d7bcfb8d9a338f4ff8d4828fa1113",
                            "clusterrole/kueue-openshift-roles": "985f12bb839eb3cf977559bb291a3b58d325c8912ac8bacb05fca02955a3bf69",
                            "clusterrole/kueue-paddlejob-editor-role": "649d19223dd1e2779c70585d62e96a848f4673539032b3888af8bf546d491cb5",
                            "clusterrole/kueue-paddlejob-viewer-role": "f3b52afcae7cdbe460ed418b653e7fd1627b8b711391d253cbb922280d8602f0",
                            "clusterrole/kueue-pending-workloads-cq-viewer-role": "fbb0e1ed5c28ae7a6965b06e35e9371c21ba3bd9ec1fea94c89145030706939a",
                            "clusterrole/kueue-pending-workloads-lq-viewer-role": "03ec0aea59fc76abb1efd95c64c9e6e8b150762d00f2e7cfd2530d5fe1ea3db0",
                            "clusterrole/kueue-proxy-role": "26c3e8d08e5dd279fc194c8699f5377dc9efd87e2083c9b05561d8754c9f9af5",
                            "clusterrole/kueue-pytorchjob-editor-role": "b48b530a15b65da6c2609e5002c802fee40d705df4f9208c95d6adaffb129128",
                            "clusterrole/kueue-pytorchjob-viewer-role": "af8bb85c8ec142051cb592f0fbdeeef473b0e4f4497364560e0416d54dbeddac",
                            "clusterrole/kueue-raycluster-editor-role": "0296c797be4d9f812d4ca3de2c58de030b770176b0d3f2e3354dce61da67ada1",
                            "clusterrole/kueue-raycluster-viewer-role": "27c1256bf4bd0e82ae3b68a793681aa76abd8729002cbdaee2b981561a61bbed",
                            "clusterrole/kueue-rayjob-editor-role": "367d6f26e47126239669a4ea946877452b1b6055b950e335a30aeca4b60d7c1a",
                            "clusterrole/kueue-rayjob-viewer-role": "ac0c22258f6121bd37d7a2472134eb9a357e4586877ea4dd513cb04d73e27482",
                            "clusterrole/kueue-resourceflavor-editor-role": "02512f1702f2fc683a608c3713374e0f169d9a81638954a4f11d560e16db246a",
                            "clusterrole/kueue-resourceflavor-viewer-role": "e4d0076d3090e2da4f58a2ab3dc42968797200c249dfcd2cd58a9476e60d654b",
                            "clusterrole/kueue-tfjob-editor-role": "c7cd19e486b7f7f75bb18b0b7852cb86b9401d9ae0b0808780c935c2e0287cfc",
                            "clusterrole/kueue-tfjob-viewer-role": "2d4359daaef02f8321b463a758c1186c4484c062dea3e57fa29aa5a274c07d23",
                            "clusterrole/kueue-topology-editor-role": "36d1205d6884def955398b411f2bc95ea333880b33ccdd62f97917aab2405a5e",
                            "clusterrole/kueue-topology-viewer-role": "12a0f7ff19e03da40da4be77ca27c6af44e6ad549cbbead8dc7303bd03907662",
                            "clusterrole/kueue-trainjob-editor-role": "e4ab9ba12996b31b302b5d49b263a9aa9b3de0b05b8bbc6679a47730fff8174e",
                            "clusterrole/kueue-trainjob-viewer-role": "8dfa1f3e232ebb6db284a2b698f1fc82130689fa7b9c934322c76e8b88711000",
                            "clusterrole/kueue-workload-editor-role": "7f4c2628cc95a5c2ba0b624791c7643827b9587ff6dc78e1c5c36bded5dfd4ec",
                            "clusterrole/kueue-workload-viewer-role": "e39a5bb4b7c677a069a45d8fd250d62f851b01cdd9dbd9467762f4df0b9c7ce1",
                            "clusterrole/kueue-xgboostjob-editor-role": "a03e320306b7096031d05317e59e69f2436e41f64acdedd6962f7b1101b6c3b9",
                            "clusterrole/kueue-xgboostjob-viewer-role": "e08b1bff6bcc7784a356b557e3d89951bcadeb05772b158f4f58144c860ef5c5",
                            "clusterrolebinding/kueue-manager-rolebinding": "251b645ba8b89d5b2ecc92727df3de13a91f9971382cf0f015d14098528db2ab",
                            "clusterrolebinding/kueue-metrics-auth-rolebinding": "59f611e2ea670200b2555133627e0070a5ed6184cbae33ab292924a377346c21",
                            "clusterrolebinding/kueue-metrics-monitoring-rolebinding": "cf2ef46accd61883d33f9b862bd663e1f46e04fd8b8c89d2bf112fa5b60498b5",
                            "clusterrolebinding/kueue-metrics-rolebinding": "c66294c14eb751536089f487546d840883de67a6ff211b8291dac6cdf80cc7b0",
                            "clusterrolebinding/kueue-openshift-cluster-role-binding": "3d055dd15cfb788dc19ef3e06cc9e83a1b511966ea923e00296369499f926858",
                            "clusterrolebinding/kueue-proxy-rolebinding": "2acc2e649eeb8aeb06ca82c2bce86cb706e42b65c2752b3a2e88e4fa47c75053",
                            "configmap/kueue-manager-config": "9fa25aeabe6c2623add7b68608f42c2af1e6a98b39806b293db411666f332471",
                            "crd/admissionchecks.kueue.x-k8s.io": "86fbf4ac23b88c75d3deba3123e7cb571a9c23ff9613e0b0a219431cb7d5ffa9",
                            "crd/clusterqueues.kueue.x-k8s.io": "7eb00c2f652c7097e0bef3d6fe70fc267cb3ce6306c6c6178e130947efd3c42c",
                            "crd/cohorts.kueue.x-k8s.io": "858a6a64e0a96c078ccedabaa6a518dbbf9abcc17dd0dec4b2e234cfdbb3e650",
                            "crd/localqueues.kueue.x-k8s.io": "2a27b8b8a7f006321187de05d24630afde8bf6d5701da5febedab5153f063c1b",
                            "crd/multikueueclusters.kueue.x-k8s.io": "aa810c3670b7104dd7deead8fc64107939d30e476fc7025302dcdad9d7654f50",
                            "crd/multikueueconfigs.kueue.x-k8s.io": "725124df859490f9a79a0da8d3a6a75e832fab3245d4d01db31f78a967938ea1",
                            "crd/provisioningrequestconfigs.kueue.x-k8s.io": "aa41a9da0076828e4a7acd75a869a15ec6093e58f16dbc1156b7c057492b24dd",
                            "crd/resourceflavors.kueue.x-k8s.io": "264868cda1a14160f739b3280687ccc6067298864624ce04bd2e5770540acb1b",
                            "crd/topologies.kueue.x-k8s.io": "c3136fc7e9b2ce560826b45a01cdb6b77a2c730d842eea1c959c227ddeaf11fa",
                            "crd/workloadpriorityclasses.kueue.x-k8s.io": "f4aa5333170700ee0d91e0ca0d2ea53848382e4f0a6a0a34a3c77e24ac1b0a9a",
                            "crd/workloads.kueue.x-k8s.io": "cd69b12c68983260d6db02bd38ea3d9419ebceff9ea6b6cd731060e44616e926",
                            "flowschema/visibility": "0a96aa38edd3df911a1788fdb9da6cd4cf89e1697ceb5b48b01f0b506df4c426",
                            "issuer/selfsigned": "0900ddeba4433364db66e3771b8ee0edf4603c2007360d6e3bca995cb50294d2",
                            "kubectl.kubernetes.io/default-container": "manager",
                            "kueueoperator.kueue.openshift.io/cluster": "1",
                            "mutatingwebhook/kueue-mutating-webhook-configuration": "73b4dda482f1a00a9debdd2d39a8e3a7790836cfba164d692b5ea561825bc59b",
                            "networkpolicy/kueue-allow-egress-cluster-dns": "9f2bb82df4a48856d05aa0a4355ba72483a56aa743456705dce215f6219d28e7",
                            "networkpolicy/kueue-allow-egress-kube-apiserver": "9a3340cad1f911db4a97368af28380bcec9404ac4b4d5a8346006985c8282de5",
                            "networkpolicy/kueue-allow-ingress-egress-metrics": "1638409b04c26380a4bd8a346faafa19327985f64a925c1930bc653b47e28a62",
                            "networkpolicy/kueue-allow-ingress-egress-visibility": "a08e18e830feb3a848f70a864ee1ce802dc645a2de8d014e7e21b96e66f47c44",
                            "networkpolicy/kueue-allow-ingress-egress-webhook": "ffbe6f77858631e9c9df88e67e310af4a1b606b2d9f295b87c24190c80489a40",
                            "networkpolicy/kueue-deny-all": "ef12fdba96fac76c868127514eeb3035dfb57e2897e3534c499ba101ea8765f4",
                            "prioritylevelconfiguration/kueue-visibility": "30ce48efdd314a0154daf774edc8e45e024d3ec5d4ccfbf89f6f8c0d79b237cb",
                            "role/kueue-leader-election-role": "18e2271791b5d42aef0b69d73d7ed0a7f70854dd4cacec95a8c1edc1ec959e74",
                            "role/prometheus-k8s": "2944ed6f306638b937eca0eb70b160fd39b3db3824901afdfebde5e610bc351d",
                            "rolebinding/kueue-leader-election-rolebinding": "afaa9a6c3c8e987928e7b1646a2e2e805311e3841946fc3941f6dedd9f86a786",
                            "rolebinding/kueue-visibility-server-auth-reader": "732bf8672f336a4d1565d352d0bab80baa668c9d544a25ec060841bc39fa55cb",
                            "rolebinding/prometheus-k8s": "406315d10cd3c802c59cec323716a3b36ac66a9acec6a433a666d888f1e11bf7",
                            "service/kueue-controller-manager-metrics-service": "6d6db5694efd6b0fb58b704124d1b60376d2788c7540b5ee1808051bdc7e96d5",
                            "service/kueue-visibility-server": "7a2bf3f2f94b2276f6e37f04e9c7ea57995d7471da37fd3e6134989499bd0b54",
                            "service/kueue-webhook-service": "edc81ac076518ca0c133452afef31fe86c93ed808b2cc1b19e1250659f20e11d",
                            "serviceaccounts/kueue-controller-manager": "d960989453b206221c23a0f7bdc846c0147475f0bdf01c0b009c56db5a265a46",
                            "servicemonitor/kueue-metrics": "5f203a145798afed031a08433fc2bccab34783b5879d9971bc54b1d6f34647af",
                            "validatingwebhook/kueue-validating-webhook-configuration": "df13619347db63bc920e89dd0f507f2bcf50d321fe2344f9b82f89115a9e3f04"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "kueue",
                            "app.openshift.io/name": "kueue",
                            "control-plane": "controller-manager",
                            "pod-template-hash": "7785ffd556"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "app.kubernetes.io/name": "kueue",
                                                    "control-plane": "controller-manager"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "--config=/controller_manager_config.yaml",
                                    "--zap-log-level=2"
                                ],
                                "command": [
                                    "/manager"
                                ],
                                "image": "registry.redhat.io/kueue/kueue-rhel9@sha256:bdf48afa3c62beec7402edddac8803363e793cf74c1c4cf908ae81845296ce3b",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8082,
                                        "name": "visibility",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9443,
                                        "name": "webhook-server",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "500m",
                                        "memory": "512Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/visibility",
                                        "name": "visibility"
                                    },
                                    {
                                        "mountPath": "/tmp/k8s-webhook-server/serving-certs",
                                        "name": "cert",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/controller_manager_config.yaml",
                                        "name": "manager-config",
                                        "subPath": "controller_manager_config.yaml"
                                    },
                                    {
                                        "mountPath": "/etc/kueue/metrics/certs",
                                        "name": "metrics-certs",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "kueue-controller-manager",
                        "serviceAccountName": "kueue-controller-manager",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "name": "visibility",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca.crt",
                                            "path": "ca.crt"
                                        },
                                        {
                                            "key": "tls.crt",
                                            "path": "tls.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "tls.key"
                                        }
                                    ],
                                    "optional": false,
                                    "secretName": "kueue-visibility-server-cert"
                                }
                            },
                            {
                                "name": "cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "kueue-webhook-server-cert"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "kueue-manager-config"
                                },
                                "name": "manager-config"
                            },
                            {
                                "name": "metrics-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "metrics-server-cert"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 3,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:15:28Z",
                "generation": 1,
                "labels": {
                    "app.openshift.io/component": "operator",
                    "app.openshift.io/name": "kueue",
                    "name": "openshift-kueue-operator",
                    "pod-template-hash": "9b5f6767d"
                },
                "name": "openshift-kueue-operator-9b5f6767d",
                "namespace": "openshift-kueue-operator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "openshift-kueue-operator",
                        "uid": "fa509894-10e3-4b4b-a37f-ad794a0cfa85"
                    }
                ],
                "resourceVersion": "28091",
                "uid": "90b22a0c-9f41-4b5c-be74-658b75464ae6"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "name": "openshift-kueue-operator",
                        "pod-template-hash": "9b5f6767d"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "alm-examples": "[\n  {\n    \"apiVersion\": \"kueue.openshift.io/v1\",\n    \"kind\": \"Kueue\",\n    \"metadata\": {\n      \"labels\": {\n        \"app.kubernetes.io/managed-by\": \"kustomize\",\n        \"app.kubernetes.io/name\": \"kueue-operator\"\n      },\n      \"name\": \"cluster\"\n    },\n    \"spec\": {\n      \"config\": {\n        \"integrations\": {\n          \"frameworks\": [\n            \"BatchJob\"\n          ]\n        }\n      },\n      \"managementState\": \"Managed\"\n    }\n  }\n]",
                            "capabilities": "Basic Install",
                            "console.openshift.io/operator-monitoring-default": "true",
                            "createdAt": "2025-11-14T19:51:19Z",
                            "features.operators.openshift.io/cnf": "false",
                            "features.operators.openshift.io/cni": "false",
                            "features.operators.openshift.io/csi": "false",
                            "features.operators.openshift.io/disconnected": "true",
                            "features.operators.openshift.io/fips-compliant": "true",
                            "features.operators.openshift.io/proxy-aware": "false",
                            "features.operators.openshift.io/tls-profiles": "false",
                            "features.operators.openshift.io/token-auth-aws": "false",
                            "features.operators.openshift.io/token-auth-azure": "false",
                            "features.operators.openshift.io/token-auth-gcp": "false",
                            "olm.operatorGroup": "openshift-kueue-operatorgroup",
                            "olm.operatorNamespace": "openshift-kueue-operator",
                            "olm.targetNamespaces": "",
                            "operatorframework.io/cluster-monitoring": "true",
                            "operatorframework.io/properties": "{\"properties\":[{\"type\":\"olm.gvk\",\"value\":{\"group\":\"kueue.openshift.io\",\"kind\":\"Kueue\",\"version\":\"v1\"}},{\"type\":\"olm.package\",\"value\":{\"packageName\":\"kueue-operator\",\"version\":\"1.2.0\"}}]}",
                            "operatorframework.io/suggested-namespace": "openshift-kueue-operator",
                            "operators.openshift.io/valid-subscription": "[\"OpenShift Kubernetes Engine\", \"OpenShift Container Platform\", \"OpenShift Platform Plus\"]",
                            "operators.operatorframework.io/builder": "operator-sdk-v1.37.0",
                            "operators.operatorframework.io/project_layout": "go.kubebuilder.io/v4"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.openshift.io/component": "operator",
                            "app.openshift.io/name": "kueue",
                            "name": "openshift-kueue-operator",
                            "pod-template-hash": "9b5f6767d"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "operator"
                                ],
                                "command": [
                                    "kueue-operator"
                                ],
                                "env": [
                                    {
                                        "name": "WATCH_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.annotations['olm.targetNamespaces']"
                                            }
                                        }
                                    },
                                    {
                                        "name": "OPERATOR_NAME",
                                        "value": "openshift-kueue-operator"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_OPERAND_IMAGE",
                                        "value": "registry.redhat.io/kueue/kueue-rhel9@sha256:bdf48afa3c62beec7402edddac8803363e793cf74c1c4cf908ae81845296ce3b"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_MUST_GATHER",
                                        "value": "registry.redhat.io/kueue/kueue-must-gather-rhel9@sha256:0d6fe9adb309e62104deb675c5f1b72a4e62821991f2f673182a025cbaa795d0"
                                    },
                                    {
                                        "name": "OPERATOR_CONDITION_NAME",
                                        "value": "kueue-operator.v1.2.0"
                                    }
                                ],
                                "image": "registry.redhat.io/kueue/kueue-rhel9-operator@sha256:0e99e54d7b740518813788ca79def5a31ecaae9c154d9b243afb681c30cb5b66",
                                "imagePullPolicy": "Always",
                                "name": "openshift-kueue-operator",
                                "ports": [
                                    {
                                        "containerPort": 60000,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tmp",
                                        "name": "tmp"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "openshift-kueue-operator",
                        "serviceAccountName": "openshift-kueue-operator",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "emptyDir": {},
                                "name": "tmp"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 1,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "include.release.openshift.io/ibm-cloud-managed": "true"
                },
                "creationTimestamp": "2026-04-19T18:52:55Z",
                "generation": 1,
                "labels": {
                    "app": "cluster-monitoring-operator",
                    "app.kubernetes.io/name": "cluster-monitoring-operator",
                    "pod-template-hash": "5bfb944964"
                },
                "name": "cluster-monitoring-operator-5bfb944964",
                "namespace": "openshift-monitoring",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "cluster-monitoring-operator",
                        "uid": "7d380376-6445-454d-972b-43d547b264b0"
                    }
                ],
                "resourceVersion": "10574",
                "uid": "273d8f28-fcea-4578-a998-394b717b2ea6"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "cluster-monitoring-operator",
                        "pod-template-hash": "5bfb944964"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "cluster-monitoring-operator",
                            "app.kubernetes.io/name": "cluster-monitoring-operator",
                            "pod-template-hash": "5bfb944964"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "-namespace=openshift-monitoring",
                                    "-namespace-user-workload=openshift-user-workload-monitoring",
                                    "-configmap=cluster-monitoring-config",
                                    "-release-version=$(RELEASE_VERSION)",
                                    "-v=2",
                                    "-cert-file=/etc/tls/private/tls.crt",
                                    "-key-file=/etc/tls/private/tls.key",
                                    "-images=prometheus-operator=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:8c1fac1dd497afa5ea5d8f89d3cce6f30fef8c9cde34940058fc8d98dad38692",
                                    "-images=prometheus-config-reloader=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:8e158c83ec12b3e0237fab9a221630bd691e79c079a111f346354ff43b8199df",
                                    "-images=prometheus-operator-admission-webhook=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:221622a101db9797df0622b4534e3e42c4498df458f355a8a02fad8d65f8e3f2",
                                    "-images=configmap-reloader=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:a5af62b7c675b596035059ce47d76d499b419fa482305a1c3099a990415dbed8",
                                    "-images=prometheus=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:c8ba3078651d566566f7855c51c53baedfe6b6c743d316275e81b6e9d242bfb6",
                                    "-images=alertmanager=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:753017c5c3fd579e45e9c112b3473b8d9f49bd9b137ee86c196c61e59a8ad213",
                                    "-images=node-exporter=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:68abf16a3b6c33fdd22a823c7d00f96aaaa8015d370116962a5835984908645a",
                                    "-images=kube-state-metrics=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:cbcaf981e14fc28664f280f59a0953e3bf2a70f09c25d4433730951684fbdb59",
                                    "-images=openshift-state-metrics=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:09b3e9e6a4f382fb4bbdb67bc945bcf19d66f604b7c8ffd66d4d4a2c94224248",
                                    "-images=kube-rbac-proxy=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                    "-images=telemeter-client=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:70f4702845ec5b627d49504a53a13d997c0578630cddffb89aba5cfebe04fc25",
                                    "-images=prom-label-proxy=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:2897724cec17bc13acc133181f64ccb8d54ce5dc9582f9cecf704c2540e15600",
                                    "-images=thanos=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:8f34d18e3a237f96e2b9e9a071e5bf159c04f978ed12af457f1d065e6796220d",
                                    "-images=monitoring-plugin=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:cf34884c4154c8b470328a8f1fd45ad5f250b8899c57b897bfa0af41fa6efe18",
                                    "-images=kube-metrics-server=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:6c12532a36e461e69227c6d5266dce4506e963567ec689a8cf6fd2e70ae20bf4"
                                ],
                                "env": [
                                    {
                                        "name": "RELEASE_VERSION",
                                        "value": "4.18.9"
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:30ff5e5b72f274598704ca69f1832eba1040cc25da47386004fd59500b6e4c55",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "cluster-monitoring-operator",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "75Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "cluster-monitoring-operator-tls",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/cluster-monitoring-operator/telemetry",
                                        "name": "telemetry-config",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "cluster-monitoring-operator",
                        "serviceAccountName": "cluster-monitoring-operator",
                        "terminationGracePeriodSeconds": 30,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node.kubernetes.io/memory-pressure",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/not-ready",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ],
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "telemetry-config"
                                },
                                "name": "telemetry-config"
                            },
                            {
                                "name": "cluster-monitoring-operator-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "cluster-monitoring-operator-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:02:47Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "exporter",
                    "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                    "app.kubernetes.io/name": "kube-state-metrics",
                    "app.kubernetes.io/part-of": "openshift-monitoring",
                    "app.kubernetes.io/version": "2.13.0",
                    "pod-template-hash": "748c6b784b"
                },
                "name": "kube-state-metrics-748c6b784b",
                "namespace": "openshift-monitoring",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "kube-state-metrics",
                        "uid": "5f9399cd-be6e-4b96-a4cc-0de47b17b5b7"
                    }
                ],
                "resourceVersion": "11581",
                "uid": "49c6a449-6bad-45a4-bc12-74db2738dc24"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "exporter",
                        "app.kubernetes.io/name": "kube-state-metrics",
                        "app.kubernetes.io/part-of": "openshift-monitoring",
                        "pod-template-hash": "748c6b784b"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "kubectl.kubernetes.io/default-container": "kube-state-metrics",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "exporter",
                            "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                            "app.kubernetes.io/name": "kube-state-metrics",
                            "app.kubernetes.io/part-of": "openshift-monitoring",
                            "app.kubernetes.io/version": "2.13.0",
                            "pod-template-hash": "748c6b784b"
                        }
                    },
                    "spec": {
                        "automountServiceAccountToken": true,
                        "containers": [
                            {
                                "args": [
                                    "--host=127.0.0.1",
                                    "--port=8081",
                                    "--telemetry-host=127.0.0.1",
                                    "--telemetry-port=8082",
                                    "--metric-denylist=\n^kube_secret_labels$,\n^kube_.+_annotations$\n^kube_customresource_.+_annotations_info$,\n^kube_customresource_.+_labels_info$,\n",
                                    "--metric-labels-allowlist=pods=[*],nodes=[*],namespaces=[*],persistentvolumes=[*],persistentvolumeclaims=[*],poddisruptionbudgets=[*]",
                                    "--metric-denylist=\n^kube_.+_created$,\n^kube_.+_metadata_resource_version$,\n^kube_replicaset_metadata_generation$,\n^kube_replicaset_status_observed_generation$,\n^kube_pod_restart_policy$,\n^kube_pod_init_container_status_terminated$,\n^kube_pod_init_container_status_running$,\n^kube_pod_container_status_terminated$,\n^kube_pod_container_status_running$,\n^kube_pod_completion_time$,\n^kube_pod_status_scheduled$\n"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:cbcaf981e14fc28664f280f59a0953e3bf2a70f09c25d4433730951684fbdb59",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-state-metrics",
                                "resources": {
                                    "requests": {
                                        "cpu": "2m",
                                        "memory": "80Mi"
                                    }
                                },
                                "securityContext": {},
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tmp",
                                        "name": "volume-directive-shadow"
                                    },
                                    {
                                        "mountPath": "/etc/kube-state-metrics",
                                        "name": "kube-state-metrics-custom-resource-state-configmap",
                                        "readOnly": true
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=:8443",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--upstream=http://127.0.0.1:8081/",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--client-ca-file=/etc/tls/client/client-ca.crt",
                                    "--config-file=/etc/kube-rbac-policy/config.yaml",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy-main",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https-main",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {},
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "kube-state-metrics-tls"
                                    },
                                    {
                                        "mountPath": "/etc/tls/client",
                                        "name": "metrics-client-ca"
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-policy",
                                        "name": "kube-state-metrics-kube-rbac-proxy-config",
                                        "readOnly": true
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=:9443",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--upstream=http://127.0.0.1:8082/",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--client-ca-file=/etc/tls/client/client-ca.crt",
                                    "--config-file=/etc/kube-rbac-policy/config.yaml",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy-self",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "https-self",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {},
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "kube-state-metrics-tls"
                                    },
                                    {
                                        "mountPath": "/etc/tls/client",
                                        "name": "metrics-client-ca"
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-policy",
                                        "name": "kube-state-metrics-kube-rbac-proxy-config",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "kube-state-metrics",
                        "serviceAccountName": "kube-state-metrics",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "emptyDir": {},
                                "name": "volume-directive-shadow"
                            },
                            {
                                "name": "kube-state-metrics-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "kube-state-metrics-tls"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "metrics-client-ca"
                                },
                                "name": "metrics-client-ca"
                            },
                            {
                                "name": "kube-state-metrics-kube-rbac-proxy-config",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "kube-state-metrics-kube-rbac-proxy-config"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "kube-state-metrics-custom-resource-state-configmap"
                                },
                                "name": "kube-state-metrics-custom-resource-state-configmap"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:02:52Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "metrics-server",
                    "app.kubernetes.io/name": "metrics-server",
                    "app.kubernetes.io/part-of": "openshift-monitoring",
                    "pod-template-hash": "6cb6c9b559"
                },
                "name": "metrics-server-6cb6c9b559",
                "namespace": "openshift-monitoring",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "metrics-server",
                        "uid": "0a3c8903-8ce1-46ca-9783-4bdf81c59797"
                    }
                ],
                "resourceVersion": "13118",
                "uid": "253603c9-c643-4383-ac24-d3c7e550f9aa"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "metrics-server",
                        "app.kubernetes.io/name": "metrics-server",
                        "app.kubernetes.io/part-of": "openshift-monitoring",
                        "pod-template-hash": "6cb6c9b559"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "monitoring.openshift.io/kubelet-serving-ca-bundle-hash": "csc956be0le8t",
                            "monitoring.openshift.io/metrics-client-cert-hash": "9k0s5mbqdh81n",
                            "monitoring.openshift.io/serving-ca-secret-hash": "9ecc217pc3atn",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "metrics-server",
                            "app.kubernetes.io/name": "metrics-server",
                            "app.kubernetes.io/part-of": "openshift-monitoring",
                            "pod-template-hash": "6cb6c9b559"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "app.kubernetes.io/component": "metrics-server",
                                                "app.kubernetes.io/name": "metrics-server",
                                                "app.kubernetes.io/part-of": "openshift-monitoring"
                                            }
                                        },
                                        "namespaces": [
                                            "openshift-monitoring"
                                        ],
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "--secure-port=10250",
                                    "--kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname",
                                    "--kubelet-use-node-status-port",
                                    "--metric-resolution=15s",
                                    "--kubelet-certificate-authority=/etc/tls/kubelet-serving-ca-bundle/ca-bundle.crt",
                                    "--kubelet-client-certificate=/etc/tls/metrics-client-certs/tls.crt",
                                    "--kubelet-client-key=/etc/tls/metrics-client-certs/tls.key",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--shutdown-send-retry-after=true",
                                    "--shutdown-delay-duration=150s",
                                    "--disable-http2-serving=true",
                                    "--tls-min-version=VersionTLS12",
                                    "--client-ca-file=/etc/client-ca-bundle/client-ca-file",
                                    "--requestheader-client-ca-file=/etc/client-ca-bundle/requestheader-client-ca-file",
                                    "--requestheader-allowed-names=kube-apiserver-proxy,system:kube-apiserver-proxy,system:openshift-aggregator",
                                    "--requestheader-extra-headers-prefix=X-Remote-Extra-",
                                    "--requestheader-group-headers=X-Remote-Group",
                                    "--requestheader-username-headers=X-Remote-User",
                                    "--audit-policy-file=/etc/audit/metadata-profile.yaml",
                                    "--audit-log-path=/var/log/metrics-server/audit.log",
                                    "--audit-log-maxsize=100",
                                    "--audit-log-maxbackup=5",
                                    "--audit-log-compress=true"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:6c12532a36e461e69227c6d5266dce4506e963567ec689a8cf6fd2e70ae20bf4",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/livez",
                                        "port": "https",
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "metrics-server",
                                "ports": [
                                    {
                                        "containerPort": 10250,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 6,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": "https",
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 20,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "40Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "secret-metrics-server-tls"
                                    },
                                    {
                                        "mountPath": "/etc/tls/metrics-client-certs",
                                        "name": "secret-metrics-client-certs"
                                    },
                                    {
                                        "mountPath": "/etc/tls/kubelet-serving-ca-bundle",
                                        "name": "configmap-kubelet-serving-ca-bundle"
                                    },
                                    {
                                        "mountPath": "/etc/audit",
                                        "name": "metrics-server-audit-profiles",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/log/metrics-server",
                                        "name": "audit-log"
                                    },
                                    {
                                        "mountPath": "/etc/client-ca-bundle",
                                        "name": "client-ca-bundle",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "metrics-server",
                        "serviceAccountName": "metrics-server",
                        "terminationGracePeriodSeconds": 170,
                        "volumes": [
                            {
                                "name": "secret-metrics-client-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "metrics-client-certs"
                                }
                            },
                            {
                                "name": "secret-metrics-server-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "metrics-server-tls"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "kubelet-serving-ca-bundle"
                                },
                                "name": "configmap-kubelet-serving-ca-bundle"
                            },
                            {
                                "emptyDir": {},
                                "name": "audit-log"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "metrics-server-audit-profiles"
                                },
                                "name": "metrics-server-audit-profiles"
                            },
                            {
                                "name": "client-ca-bundle",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "metrics-server-22a5jdcro7t0n"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 1,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:02:52Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "monitoring-plugin",
                    "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                    "app.kubernetes.io/name": "monitoring-plugin",
                    "app.kubernetes.io/part-of": "openshift-monitoring",
                    "pod-template-hash": "7dd8cdbc97"
                },
                "name": "monitoring-plugin-7dd8cdbc97",
                "namespace": "openshift-monitoring",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "monitoring-plugin",
                        "uid": "b9bcab35-6892-4df6-ab1c-4cfd2ecd321f"
                    }
                ],
                "resourceVersion": "12033",
                "uid": "2799a5ef-2dfd-4f08-b667-5aa7bb9ff931"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "monitoring-plugin",
                        "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                        "app.kubernetes.io/name": "monitoring-plugin",
                        "app.kubernetes.io/part-of": "openshift-monitoring",
                        "pod-template-hash": "7dd8cdbc97"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "monitoring.openshift.io/cert-hash": "4703vq7pvoha8",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "monitoring-plugin",
                            "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                            "app.kubernetes.io/name": "monitoring-plugin",
                            "app.kubernetes.io/part-of": "openshift-monitoring",
                            "pod-template-hash": "7dd8cdbc97"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "app.kubernetes.io/component": "monitoring-plugin",
                                                "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                                                "app.kubernetes.io/name": "monitoring-plugin",
                                                "app.kubernetes.io/part-of": "openshift-monitoring"
                                            }
                                        },
                                        "namespaces": [
                                            "openshift-monitoring"
                                        ],
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "automountServiceAccountToken": false,
                        "containers": [
                            {
                                "args": [
                                    "-config-path=/opt/app-root/web/dist",
                                    "-static-path=/opt/app-root/web/dist",
                                    "-cert=/var/cert/tls.crt",
                                    "-key=/var/cert/tls.key"
                                ],
                                "command": [
                                    "/opt/app-root/plugin-backend"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:cf34884c4154c8b470328a8f1fd45ad5f250b8899c57b897bfa0af41fa6efe18",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "monitoring-plugin",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": "https",
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "50Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/cert",
                                        "name": "monitoring-plugin-cert",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "monitoring-plugin-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "monitoring-plugin-cert"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 1,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:02:47Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "exporter",
                    "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                    "app.kubernetes.io/name": "openshift-state-metrics",
                    "app.kubernetes.io/part-of": "openshift-monitoring",
                    "pod-template-hash": "774bc9686d"
                },
                "name": "openshift-state-metrics-774bc9686d",
                "namespace": "openshift-monitoring",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "openshift-state-metrics",
                        "uid": "f97b019d-dd21-469c-8127-bb2b8d715b5a"
                    }
                ],
                "resourceVersion": "11440",
                "uid": "38025803-07bf-4e35-a684-397b36c6b68a"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "exporter",
                        "app.kubernetes.io/name": "openshift-state-metrics",
                        "pod-template-hash": "774bc9686d"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "exporter",
                            "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                            "app.kubernetes.io/name": "openshift-state-metrics",
                            "app.kubernetes.io/part-of": "openshift-monitoring",
                            "pod-template-hash": "774bc9686d"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--secure-listen-address=:8443",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--upstream=http://127.0.0.1:8081/",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--config-file=/etc/kube-rbac-policy/config.yaml",
                                    "--client-ca-file=/etc/tls/client/client-ca.crt",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy-main",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https-main",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "20Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "openshift-state-metrics-tls"
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-policy",
                                        "name": "openshift-state-metrics-kube-rbac-proxy-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/tls/client",
                                        "name": "metrics-client-ca",
                                        "readOnly": true
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=:9443",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--upstream=http://127.0.0.1:8082/",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--config-file=/etc/kube-rbac-policy/config.yaml",
                                    "--client-ca-file=/etc/tls/client/client-ca.crt",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy-self",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "https-self",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "20Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "openshift-state-metrics-tls"
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-policy",
                                        "name": "openshift-state-metrics-kube-rbac-proxy-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/tls/client",
                                        "name": "metrics-client-ca",
                                        "readOnly": true
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--host=127.0.0.1",
                                    "--port=8081",
                                    "--telemetry-host=127.0.0.1",
                                    "--telemetry-port=8082"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:09b3e9e6a4f382fb4bbdb67bc945bcf19d66f604b7c8ffd66d4d4a2c94224248",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "openshift-state-metrics",
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "32Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "openshift-state-metrics",
                        "serviceAccountName": "openshift-state-metrics",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "openshift-state-metrics-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "openshift-state-metrics-tls"
                                }
                            },
                            {
                                "name": "openshift-state-metrics-kube-rbac-proxy-config",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "openshift-state-metrics-kube-rbac-proxy-config"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "metrics-client-ca"
                                },
                                "name": "metrics-client-ca"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:02:41Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "controller",
                    "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                    "app.kubernetes.io/name": "prometheus-operator",
                    "app.kubernetes.io/part-of": "openshift-monitoring",
                    "app.kubernetes.io/version": "0.78.1",
                    "pod-template-hash": "6995c4db54"
                },
                "name": "prometheus-operator-6995c4db54",
                "namespace": "openshift-monitoring",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "prometheus-operator",
                        "uid": "7903a740-8080-4f85-937f-f1de666fbd9a"
                    }
                ],
                "resourceVersion": "10997",
                "uid": "df4edf5e-6911-4f6f-91c9-1398771de4df"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "controller",
                        "app.kubernetes.io/name": "prometheus-operator",
                        "app.kubernetes.io/part-of": "openshift-monitoring",
                        "pod-template-hash": "6995c4db54"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "kubectl.kubernetes.io/default-container": "prometheus-operator",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "controller",
                            "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                            "app.kubernetes.io/name": "prometheus-operator",
                            "app.kubernetes.io/part-of": "openshift-monitoring",
                            "app.kubernetes.io/version": "0.78.1",
                            "pod-template-hash": "6995c4db54"
                        }
                    },
                    "spec": {
                        "automountServiceAccountToken": true,
                        "containers": [
                            {
                                "args": [
                                    "--kubelet-service=kube-system/kubelet",
                                    "--prometheus-config-reloader=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:8e158c83ec12b3e0237fab9a221630bd691e79c079a111f346354ff43b8199df",
                                    "--kubelet-endpoints=true",
                                    "--kubelet-endpointslice=false",
                                    "--prometheus-instance-namespaces=openshift-monitoring",
                                    "--thanos-ruler-instance-namespaces=openshift-monitoring",
                                    "--alertmanager-instance-namespaces=openshift-monitoring",
                                    "--config-reloader-cpu-limit=0",
                                    "--config-reloader-memory-limit=0",
                                    "--config-reloader-cpu-request=1m",
                                    "--config-reloader-memory-request=10Mi",
                                    "--web.listen-address=127.0.0.1:8080",
                                    "--controller-id=openshift-monitoring/prometheus-operator"
                                ],
                                "env": [
                                    {
                                        "name": "GOGC",
                                        "value": "30"
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:8c1fac1dd497afa5ea5d8f89d3cce6f30fef8c9cde34940058fc8d98dad38692",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "prometheus-operator",
                                "resources": {
                                    "requests": {
                                        "cpu": "5m",
                                        "memory": "150Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            },
                            {
                                "args": [
                                    "--secure-listen-address=:8443",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--upstream=http://localhost:8080/",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--client-ca-file=/etc/tls/client/client-ca.crt",
                                    "--config-file=/etc/kube-rbac-policy/config.yaml",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {},
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "prometheus-operator-tls",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/tls/client",
                                        "name": "metrics-client-ca",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-policy",
                                        "name": "prometheus-operator-kube-rbac-proxy-config",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "prometheus-operator",
                        "serviceAccountName": "prometheus-operator",
                        "terminationGracePeriodSeconds": 30,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            }
                        ],
                        "volumes": [
                            {
                                "name": "prometheus-operator-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "prometheus-operator-tls"
                                }
                            },
                            {
                                "name": "prometheus-operator-kube-rbac-proxy-config",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "prometheus-operator-kube-rbac-proxy-config"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "metrics-client-ca"
                                },
                                "name": "metrics-client-ca"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:02:38Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                    "app.kubernetes.io/name": "prometheus-operator-admission-webhook",
                    "app.kubernetes.io/part-of": "openshift-monitoring",
                    "app.kubernetes.io/version": "0.78.1",
                    "pod-template-hash": "7d979c648b"
                },
                "name": "prometheus-operator-admission-webhook-7d979c648b",
                "namespace": "openshift-monitoring",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "prometheus-operator-admission-webhook",
                        "uid": "39187a28-425f-4597-87db-340b492c8861"
                    }
                ],
                "resourceVersion": "10822",
                "uid": "76f168f3-0163-4b22-aac5-620f4a3639f5"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "prometheus-operator-admission-webhook",
                        "app.kubernetes.io/part-of": "openshift-monitoring",
                        "pod-template-hash": "7d979c648b"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "kubectl.kubernetes.io/default-container": "prometheus-operator-admission-webhook",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                            "app.kubernetes.io/name": "prometheus-operator-admission-webhook",
                            "app.kubernetes.io/part-of": "openshift-monitoring",
                            "app.kubernetes.io/version": "0.78.1",
                            "pod-template-hash": "7d979c648b"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "app.kubernetes.io/name": "prometheus-operator-admission-webhook",
                                                "app.kubernetes.io/part-of": "openshift-monitoring"
                                            }
                                        },
                                        "namespaces": [
                                            "openshift-monitoring"
                                        ],
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "automountServiceAccountToken": false,
                        "containers": [
                            {
                                "args": [
                                    "--web.enable-tls=true",
                                    "--web.cert-file=/etc/tls/private/tls.crt",
                                    "--web.key-file=/etc/tls/private/tls.key",
                                    "--web.tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--web.tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:221622a101db9797df0622b4534e3e42c4498df458f355a8a02fad8d65f8e3f2",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": "https",
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "prometheus-operator-admission-webhook",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": "https",
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "5m",
                                        "memory": "30Mi"
                                    }
                                },
                                "securityContext": {},
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "tls-certificates",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "prometheus-operator-admission-webhook",
                        "serviceAccountName": "prometheus-operator-admission-webhook",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "tls-certificates",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "tls.crt",
                                            "path": "tls.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "tls.key"
                                        }
                                    ],
                                    "secretName": "prometheus-operator-admission-webhook-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 1,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:02:52Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "telemetry-metrics-collector",
                    "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                    "app.kubernetes.io/name": "telemeter-client",
                    "app.kubernetes.io/part-of": "openshift-monitoring",
                    "pod-template-hash": "7fd9ffcdfc"
                },
                "name": "telemeter-client-7fd9ffcdfc",
                "namespace": "openshift-monitoring",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "telemeter-client",
                        "uid": "07c35a9a-0830-4c41-bc36-331a5cbc9afe"
                    }
                ],
                "resourceVersion": "11972",
                "uid": "8b931cff-0d29-403e-8e75-47f114ee614b"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "telemetry-metrics-collector",
                        "app.kubernetes.io/name": "telemeter-client",
                        "pod-template-hash": "7fd9ffcdfc"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}",
                            "telemeter-token-hash": "eahooiiipj3qr"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "telemetry-metrics-collector",
                            "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                            "app.kubernetes.io/name": "telemeter-client",
                            "app.kubernetes.io/part-of": "openshift-monitoring",
                            "pod-template-hash": "7fd9ffcdfc"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "/usr/bin/telemeter-client",
                                    "--id=$(ID)",
                                    "--from=$(FROM)",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--from-ca-file=/etc/serving-certs-ca-bundle/service-ca.crt",
                                    "--from-token-file=/var/run/secrets/kubernetes.io/serviceaccount/token",
                                    "--to=$(TO)",
                                    "--to-token-file=/etc/telemeter/token",
                                    "--listen=localhost:8080",
                                    "--anonymize-salt-file=/etc/telemeter/salt",
                                    "--anonymize-labels=$(ANONYMIZE_LABELS)",
                                    "--match={__name__=~\"cluster:usage:.*\"}",
                                    "--match={__name__=\"count:up0\"}",
                                    "--match={__name__=\"count:up1\"}",
                                    "--match={__name__=\"cluster_version\"}",
                                    "--match={__name__=\"cluster_version_available_updates\"}",
                                    "--match={__name__=\"cluster_version_capability\"}",
                                    "--match={__name__=\"cluster_operator_up\"}",
                                    "--match={__name__=\"cluster_operator_conditions\"}",
                                    "--match={__name__=\"cluster_version_payload\"}",
                                    "--match={__name__=\"cluster_installer\"}",
                                    "--match={__name__=\"cluster_infrastructure_provider\"}",
                                    "--match={__name__=\"cluster_feature_set\"}",
                                    "--match={__name__=\"instance:etcd_object_counts:sum\"}",
                                    "--match={__name__=\"ALERTS\",alertstate=\"firing\",severity=~\"critical|warning|info|none\"}",
                                    "--match={__name__=\"code:apiserver_request_total:rate:sum\"}",
                                    "--match={__name__=\"cluster:capacity_cpu_cores:sum\"}",
                                    "--match={__name__=\"cluster:capacity_memory_bytes:sum\"}",
                                    "--match={__name__=\"cluster:cpu_usage_cores:sum\"}",
                                    "--match={__name__=\"cluster:memory_usage_bytes:sum\"}",
                                    "--match={__name__=\"openshift:cpu_usage_cores:sum\"}",
                                    "--match={__name__=\"openshift:memory_usage_bytes:sum\"}",
                                    "--match={__name__=\"workload:cpu_usage_cores:sum\"}",
                                    "--match={__name__=\"workload:memory_usage_bytes:sum\"}",
                                    "--match={__name__=\"cluster:virt_platform_nodes:sum\"}",
                                    "--match={__name__=\"cluster:node_instance_type_count:sum\"}",
                                    "--match={__name__=\"cnv:vmi_status_running:count\"}",
                                    "--match={__name__=\"cnv_abnormal\", reason=~\"memory_working_set_delta_from_request|memory_rss_delta_from_request\"}",
                                    "--match={__name__=\"cluster:vmi_request_cpu_cores:sum\"}",
                                    "--match={__name__=\"node_role_os_version_machine:cpu_capacity_cores:sum\"}",
                                    "--match={__name__=\"node_role_os_version_machine:cpu_capacity_sockets:sum\"}",
                                    "--match={__name__=\"subscription_sync_total\"}",
                                    "--match={__name__=\"olm_resolution_duration_seconds\"}",
                                    "--match={__name__=\"csv_succeeded\"}",
                                    "--match={__name__=\"csv_abnormal\"}",
                                    "--match={__name__=\"cluster:kube_persistentvolumeclaim_resource_requests_storage_bytes:provisioner:sum\"}",
                                    "--match={__name__=\"cluster:kubelet_volume_stats_used_bytes:provisioner:sum\"}",
                                    "--match={__name__=\"ceph_cluster_total_bytes\"}",
                                    "--match={__name__=\"ceph_cluster_total_used_raw_bytes\"}",
                                    "--match={__name__=\"ceph_health_status\"}",
                                    "--match={__name__=\"odf_system_raw_capacity_total_bytes\"}",
                                    "--match={__name__=\"odf_system_raw_capacity_used_bytes\"}",
                                    "--match={__name__=\"odf_system_health_status\"}",
                                    "--match={__name__=\"job:ceph_osd_metadata:count\"}",
                                    "--match={__name__=\"job:kube_pv:count\"}",
                                    "--match={__name__=\"job:odf_system_pvs:count\"}",
                                    "--match={__name__=\"job:ceph_pools_iops:total\"}",
                                    "--match={__name__=\"job:ceph_pools_iops_bytes:total\"}",
                                    "--match={__name__=\"job:ceph_versions_running:count\"}",
                                    "--match={__name__=\"job:noobaa_total_unhealthy_buckets:sum\"}",
                                    "--match={__name__=\"job:noobaa_bucket_count:sum\"}",
                                    "--match={__name__=\"job:noobaa_total_object_count:sum\"}",
                                    "--match={__name__=\"odf_system_bucket_count\", system_type=\"OCS\", system_vendor=\"Red Hat\"}",
                                    "--match={__name__=\"odf_system_objects_total\", system_type=\"OCS\", system_vendor=\"Red Hat\"}",
                                    "--match={__name__=\"noobaa_accounts_num\"}",
                                    "--match={__name__=\"noobaa_total_usage\"}",
                                    "--match={__name__=\"console_url\"}",
                                    "--match={__name__=\"cluster:console_auth_login_requests_total:sum\"}",
                                    "--match={__name__=\"cluster:console_auth_login_successes_total:sum\"}",
                                    "--match={__name__=\"cluster:console_auth_login_failures_total:sum\"}",
                                    "--match={__name__=\"cluster:console_auth_logout_requests_total:sum\"}",
                                    "--match={__name__=\"cluster:console_usage_users:max\"}",
                                    "--match={__name__=\"cluster:console_plugins_info:max\"}",
                                    "--match={__name__=\"cluster:console_customization_perspectives_info:max\"}",
                                    "--match={__name__=\"cluster:ovnkube_controller_egress_routing_via_host:max\"}",
                                    "--match={__name__=\"cluster:ovnkube_controller_admin_network_policies_db_objects:max\",table_name=~\"ACL|Address_Set\"}",
                                    "--match={__name__=\"cluster:ovnkube_controller_baseline_admin_network_policies_db_objects:max\",table_name=~\"ACL|Address_Set\"}",
                                    "--match={__name__=\"cluster:ovnkube_controller_admin_network_policies_rules:max\",direction=~\"Ingress|Egress\",action=~\"Pass|Allow|Deny\"}",
                                    "--match={__name__=\"cluster:ovnkube_controller_baseline_admin_network_policies_rules:max\",direction=~\"Ingress|Egress\",action=~\"Allow|Deny\"}",
                                    "--match={__name__=\"cluster:network_attachment_definition_instances:max\"}",
                                    "--match={__name__=\"cluster:network_attachment_definition_enabled_instance_up:max\"}",
                                    "--match={__name__=\"cluster:ingress_controller_aws_nlb_active:sum\"}",
                                    "--match={__name__=\"cluster:route_metrics_controller_routes_per_shard:min\"}",
                                    "--match={__name__=\"cluster:route_metrics_controller_routes_per_shard:max\"}",
                                    "--match={__name__=\"cluster:route_metrics_controller_routes_per_shard:avg\"}",
                                    "--match={__name__=\"cluster:route_metrics_controller_routes_per_shard:median\"}",
                                    "--match={__name__=\"cluster:openshift_route_info:tls_termination:sum\"}",
                                    "--match={__name__=\"insightsclient_request_send_total\"}",
                                    "--match={__name__=\"cam_app_workload_migrations\"}",
                                    "--match={__name__=\"cluster:apiserver_current_inflight_requests:sum:max_over_time:2m\"}",
                                    "--match={__name__=\"cluster:alertmanager_integrations:max\"}",
                                    "--match={__name__=\"cluster:telemetry_selected_series:count\"}",
                                    "--match={__name__=\"openshift:prometheus_tsdb_head_series:sum\"}",
                                    "--match={__name__=\"openshift:prometheus_tsdb_head_samples_appended_total:sum\"}",
                                    "--match={__name__=\"monitoring:container_memory_working_set_bytes:sum\"}",
                                    "--match={__name__=\"namespace_job:scrape_series_added:topk3_sum1h\"}",
                                    "--match={__name__=\"namespace_job:scrape_samples_post_metric_relabeling:topk3\"}",
                                    "--match={__name__=\"monitoring:haproxy_server_http_responses_total:sum\"}",
                                    "--match={__name__=\"profile:cluster_monitoring_operator_collection_profile:max\"}",
                                    "--match={__name__=\"vendor_model:node_accelerator_cards:sum\",vendor=~\"NVIDIA|AMD|GAUDI|INTEL|QUALCOMM\"}",
                                    "--match={__name__=\"rhmi_status\"}",
                                    "--match={__name__=\"status:upgrading:version:rhoam_state:max\"}",
                                    "--match={__name__=\"state:rhoam_critical_alerts:max\"}",
                                    "--match={__name__=\"state:rhoam_warning_alerts:max\"}",
                                    "--match={__name__=\"rhoam_7d_slo_percentile:max\"}",
                                    "--match={__name__=\"rhoam_7d_slo_remaining_error_budget:max\"}",
                                    "--match={__name__=\"cluster_legacy_scheduler_policy\"}",
                                    "--match={__name__=\"cluster_master_schedulable\"}",
                                    "--match={__name__=\"che_workspace_status\"}",
                                    "--match={__name__=\"che_workspace_started_total\"}",
                                    "--match={__name__=\"che_workspace_failure_total\"}",
                                    "--match={__name__=\"che_workspace_start_time_seconds_sum\"}",
                                    "--match={__name__=\"che_workspace_start_time_seconds_count\"}",
                                    "--match={__name__=\"cco_credentials_mode\"}",
                                    "--match={__name__=\"cluster:kube_persistentvolume_plugin_type_counts:sum\"}",
                                    "--match={__name__=\"acm_managed_cluster_info\"}",
                                    "--match={__name__=\"acm_managed_cluster_worker_cores:max\"}",
                                    "--match={__name__=\"acm_console_page_count:sum\", page=~\"overview-classic|overview-fleet|search|search-details|clusters|application|governance\"}",
                                    "--match={__name__=\"cluster:vsphere_vcenter_info:sum\"}",
                                    "--match={__name__=\"cluster:vsphere_esxi_version_total:sum\"}",
                                    "--match={__name__=\"cluster:vsphere_node_hw_version_total:sum\"}",
                                    "--match={__name__=\"openshift:build_by_strategy:sum\"}",
                                    "--match={__name__=\"rhods_aggregate_availability\"}",
                                    "--match={__name__=\"rhods_total_users\"}",
                                    "--match={__name__=\"instance:etcd_disk_wal_fsync_duration_seconds:histogram_quantile\",quantile=\"0.99\"}",
                                    "--match={__name__=\"instance:etcd_mvcc_db_total_size_in_bytes:sum\"}",
                                    "--match={__name__=\"instance:etcd_network_peer_round_trip_time_seconds:histogram_quantile\",quantile=\"0.99\"}",
                                    "--match={__name__=\"instance:etcd_mvcc_db_total_size_in_use_in_bytes:sum\"}",
                                    "--match={__name__=\"instance:etcd_disk_backend_commit_duration_seconds:histogram_quantile\",quantile=\"0.99\"}",
                                    "--match={__name__=\"jaeger_operator_instances_storage_types\"}",
                                    "--match={__name__=\"jaeger_operator_instances_strategies\"}",
                                    "--match={__name__=\"jaeger_operator_instances_agent_strategies\"}",
                                    "--match={__name__=\"type:tempo_operator_tempostack_storage_backend:sum\",type=~\"azure|gcs|s3\"}",
                                    "--match={__name__=\"state:tempo_operator_tempostack_managed:sum\",state=~\"Managed|Unmanaged\"}",
                                    "--match={__name__=\"type:tempo_operator_tempostack_multi_tenancy:sum\",type=~\"enabled|disabled\"}",
                                    "--match={__name__=\"enabled:tempo_operator_tempostack_jaeger_ui:sum\",enabled=~\"true|false\"}",
                                    "--match={__name__=\"type:opentelemetry_collector_receivers:sum\",type=~\"jaegerreceiver|hostmetricsreceiver|opencensusreceiver|prometheusreceiver|zipkinreceiver|kafkareceiver|filelogreceiver|journaldreceiver|k8seventsreceiver|kubeletstatsreceiver|k8sclusterreceiver|k8sobjectsreceiver\"}",
                                    "--match={__name__=\"type:opentelemetry_collector_exporters:sum\",type=~\"debugexporter|loggingexporter|otlpexporter|otlphttpexporter|prometheusexporter|lokiexporter|kafkaexporter|awscloudwatchlogsexporter|loadbalancingexporter\"}",
                                    "--match={__name__=\"type:opentelemetry_collector_processors:sum\",type=~\"batchprocessor|memorylimiterprocessor|attributesprocessor|resourceprocessor|spanprocessor|k8sattributesprocessor|resourcedetectionprocessor|filterprocessor|routingprocessor|cumulativetodeltaprocessor|groupbyattrsprocessor\"}",
                                    "--match={__name__=\"type:opentelemetry_collector_extensions:sum\",type=~\"zpagesextension|ballastextension|memorylimiterextension|jaegerremotesampling|healthcheckextension|pprofextension|oauth2clientauthextension|oidcauthextension|bearertokenauthextension|filestorage\"}",
                                    "--match={__name__=\"type:opentelemetry_collector_connectors:sum\",type=~\"spanmetricsconnector|forwardconnector\"}",
                                    "--match={__name__=\"type:opentelemetry_collector_info:sum\",type=~\"deployment|daemonset|sidecar|statefulset\"}",
                                    "--match={__name__=\"appsvcs:cores_by_product:sum\"}",
                                    "--match={__name__=\"nto_custom_profiles:count\"}",
                                    "--match={__name__=\"openshift_csi_share_configmap\"}",
                                    "--match={__name__=\"openshift_csi_share_secret\"}",
                                    "--match={__name__=\"openshift_csi_share_mount_failures_total\"}",
                                    "--match={__name__=\"openshift_csi_share_mount_requests_total\"}",
                                    "--match={__name__=\"eo_es_storage_info\"}",
                                    "--match={__name__=\"eo_es_redundancy_policy_info\"}",
                                    "--match={__name__=\"eo_es_defined_delete_namespaces_total\"}",
                                    "--match={__name__=\"eo_es_misconfigured_memory_resources_info\"}",
                                    "--match={__name__=\"cluster:eo_es_data_nodes_total:max\"}",
                                    "--match={__name__=\"cluster:eo_es_documents_created_total:sum\"}",
                                    "--match={__name__=\"cluster:eo_es_documents_deleted_total:sum\"}",
                                    "--match={__name__=\"pod:eo_es_shards_total:max\"}",
                                    "--match={__name__=\"eo_es_cluster_management_state_info\"}",
                                    "--match={__name__=\"imageregistry:imagestreamtags_count:sum\"}",
                                    "--match={__name__=\"imageregistry:operations_count:sum\"}",
                                    "--match={__name__=\"log_logging_info\"}",
                                    "--match={__name__=\"log_collector_error_count_total\"}",
                                    "--match={__name__=\"log_forwarder_pipeline_info\"}",
                                    "--match={__name__=\"log_forwarder_input_info\"}",
                                    "--match={__name__=\"log_forwarder_output_info\"}",
                                    "--match={__name__=\"cluster:log_collected_bytes_total:sum\"}",
                                    "--match={__name__=\"cluster:log_logged_bytes_total:sum\"}",
                                    "--match={__name__=\"openshift_logging:log_forwarder_pipelines:sum\"}",
                                    "--match={__name__=\"openshift_logging:log_forwarders:sum\"}",
                                    "--match={__name__=\"openshift_logging:log_forwarder_input_type:sum\"}",
                                    "--match={__name__=\"openshift_logging:log_forwarder_output_type:sum\"}",
                                    "--match={__name__=\"openshift_logging:vector_component_received_bytes_total:rate5m\"}",
                                    "--match={__name__=\"cluster:kata_monitor_running_shim_count:sum\"}",
                                    "--match={__name__=\"platform:hypershift_hostedclusters:max\"}",
                                    "--match={__name__=\"platform:hypershift_nodepools:max\"}",
                                    "--match={__name__=\"cluster_name:hypershift_nodepools_size:sum\"}",
                                    "--match={__name__=\"cluster_name:hypershift_nodepools_available_replicas:sum\"}",
                                    "--match={__name__=\"namespace:noobaa_unhealthy_bucket_claims:max\"}",
                                    "--match={__name__=\"namespace:noobaa_buckets_claims:max\"}",
                                    "--match={__name__=\"namespace:noobaa_unhealthy_namespace_resources:max\"}",
                                    "--match={__name__=\"namespace:noobaa_namespace_resources:max\"}",
                                    "--match={__name__=\"namespace:noobaa_unhealthy_namespace_buckets:max\"}",
                                    "--match={__name__=\"namespace:noobaa_namespace_buckets:max\"}",
                                    "--match={__name__=\"namespace:noobaa_accounts:max\"}",
                                    "--match={__name__=\"namespace:noobaa_usage:max\"}",
                                    "--match={__name__=\"namespace:noobaa_system_health_status:max\"}",
                                    "--match={__name__=\"ocs_advanced_feature_usage\"}",
                                    "--match={__name__=\"os_image_url_override:sum\"}",
                                    "--match={__name__=\"cluster:vsphere_topology_tags:max\"}",
                                    "--match={__name__=\"cluster:vsphere_infrastructure_failure_domains:max\"}",
                                    "--match={__name__=\"apiserver_list_watch_request_success_total:rate:sum\", verb=~\"LIST|WATCH\"}",
                                    "--match={__name__=\"rhacs:telemetry:rox_central_info\"}",
                                    "--match={__name__=\"rhacs:telemetry:rox_central_secured_clusters\"}",
                                    "--match={__name__=\"rhacs:telemetry:rox_central_secured_nodes\"}",
                                    "--match={__name__=\"rhacs:telemetry:rox_central_secured_vcpus\"}",
                                    "--match={__name__=\"rhacs:telemetry:rox_sensor_info\"}",
                                    "--match={__name__=\"cluster:volume_manager_selinux_pod_context_mismatch_total\"}",
                                    "--match={__name__=\"cluster:volume_manager_selinux_volume_context_mismatch_warnings_total\"}",
                                    "--match={__name__=\"cluster:volume_manager_selinux_volume_context_mismatch_errors_total\"}",
                                    "--match={__name__=\"cluster:volume_manager_selinux_volumes_admitted_total\"}",
                                    "--match={__name__=\"ols:provider_model_configuration\"}",
                                    "--match={__name__=\"ols:rest_api_query_calls_total:2xx\"}",
                                    "--match={__name__=\"ols:rest_api_query_calls_total:4xx\"}",
                                    "--match={__name__=\"ols:rest_api_query_calls_total:5xx\"}",
                                    "--match={__name__=\"openshift:openshift_network_operator_ipsec_state:info\"}",
                                    "--match={__name__=\"cluster:health:group_severity:count\", severity=~\"critical|warning|info|none\"}",
                                    "--limit-bytes=5242880"
                                ],
                                "env": [
                                    {
                                        "name": "ANONYMIZE_LABELS"
                                    },
                                    {
                                        "name": "FROM",
                                        "value": "https://prometheus-k8s.openshift-monitoring.svc:9091"
                                    },
                                    {
                                        "name": "ID",
                                        "value": "c9b7db62-a048-4c9f-be86-e065df0d257b"
                                    },
                                    {
                                        "name": "TO",
                                        "value": "https://infogw.api.openshift.com/"
                                    },
                                    {
                                        "name": "HTTP_PROXY"
                                    },
                                    {
                                        "name": "HTTPS_PROXY"
                                    },
                                    {
                                        "name": "NO_PROXY"
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:70f4702845ec5b627d49504a53a13d997c0578630cddffb89aba5cfebe04fc25",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "telemeter-client",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "http",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "40Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/serving-certs-ca-bundle",
                                        "name": "serving-certs-ca-bundle"
                                    },
                                    {
                                        "mountPath": "/etc/telemeter",
                                        "name": "secret-telemeter-client"
                                    },
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "federate-client-tls"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem/",
                                        "name": "telemeter-trusted-ca-bundle",
                                        "readOnly": true
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--reload-url=http://localhost:8080/-/reload",
                                    "--watched-dir=/etc/serving-certs-ca-bundle"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:8e158c83ec12b3e0237fab9a221630bd691e79c079a111f346354ff43b8199df",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "reload",
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "10Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/serving-certs-ca-bundle",
                                        "name": "serving-certs-ca-bundle"
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=:8443",
                                    "--upstream=http://127.0.0.1:8080/",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--config-file=/etc/kube-rbac-policy/config.yaml",
                                    "--client-ca-file=/etc/tls/client/client-ca.crt",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "20Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "telemeter-client-tls"
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-policy",
                                        "name": "secret-telemeter-client-kube-rbac-proxy-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/tls/client",
                                        "name": "metrics-client-ca",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "telemeter-client",
                        "serviceAccountName": "telemeter-client",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "telemeter-client-serving-certs-ca-bundle"
                                },
                                "name": "serving-certs-ca-bundle"
                            },
                            {
                                "name": "secret-telemeter-client",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "telemeter-client"
                                }
                            },
                            {
                                "name": "telemeter-client-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "telemeter-client-tls"
                                }
                            },
                            {
                                "name": "federate-client-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "federate-client-certs"
                                }
                            },
                            {
                                "name": "secret-telemeter-client-kube-rbac-proxy-config",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "telemeter-client-kube-rbac-proxy-config"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "metrics-client-ca"
                                },
                                "name": "metrics-client-ca"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "telemeter-trusted-ca-bundle-56c9b9fa8d9gs",
                                    "optional": true
                                },
                                "name": "telemeter-trusted-ca-bundle"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "2"
                },
                "creationTimestamp": "2026-04-19T19:13:39Z",
                "generation": 2,
                "labels": {
                    "app.kubernetes.io/component": "query-layer",
                    "app.kubernetes.io/instance": "thanos-querier",
                    "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                    "app.kubernetes.io/name": "thanos-query",
                    "app.kubernetes.io/part-of": "openshift-monitoring",
                    "app.kubernetes.io/version": "0.36.1",
                    "pod-template-hash": "5b66f6d566"
                },
                "name": "thanos-querier-5b66f6d566",
                "namespace": "openshift-monitoring",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "thanos-querier",
                        "uid": "72248323-dad3-496c-aad4-95fec7617640"
                    }
                ],
                "resourceVersion": "21532",
                "uid": "6ece126b-2fb1-49d1-9bd1-27c56ab14763"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "query-layer",
                        "app.kubernetes.io/instance": "thanos-querier",
                        "app.kubernetes.io/name": "thanos-query",
                        "app.kubernetes.io/part-of": "openshift-monitoring",
                        "pod-template-hash": "5b66f6d566"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "query-layer",
                            "app.kubernetes.io/instance": "thanos-querier",
                            "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                            "app.kubernetes.io/name": "thanos-query",
                            "app.kubernetes.io/part-of": "openshift-monitoring",
                            "app.kubernetes.io/version": "0.36.1",
                            "pod-template-hash": "5b66f6d566"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "app.kubernetes.io/component": "query-layer",
                                                "app.kubernetes.io/instance": "thanos-querier",
                                                "app.kubernetes.io/name": "thanos-query",
                                                "app.kubernetes.io/part-of": "openshift-monitoring"
                                            }
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "query",
                                    "--grpc-address=127.0.0.1:10901",
                                    "--http-address=127.0.0.1:9090",
                                    "--log.format=logfmt",
                                    "--query.replica-label=prometheus_replica",
                                    "--query.replica-label=thanos_ruler_replica",
                                    "--endpoint=dnssrv+_grpc._tcp.prometheus-operated.openshift-monitoring.svc.cluster.local",
                                    "--query.auto-downsampling",
                                    "--store.sd-dns-resolver=miekgdns",
                                    "--grpc-client-tls-secure",
                                    "--grpc-client-tls-cert=/etc/tls/grpc/client.crt",
                                    "--grpc-client-tls-key=/etc/tls/grpc/client.key",
                                    "--grpc-client-tls-ca=/etc/tls/grpc/ca.crt",
                                    "--grpc-client-server-name=prometheus-grpc",
                                    "--rule=dnssrv+_grpc._tcp.prometheus-operated.openshift-monitoring.svc.cluster.local",
                                    "--target=dnssrv+_grpc._tcp.prometheus-operated.openshift-monitoring.svc.cluster.local",
                                    "--store=dnssrv+_grpc._tcp.prometheus-operated.openshift-user-workload-monitoring.svc.cluster.local",
                                    "--store=dnssrv+_grpc._tcp.thanos-ruler-operated.openshift-user-workload-monitoring.svc.cluster.local",
                                    "--rule=dnssrv+_grpc._tcp.prometheus-operated.openshift-user-workload-monitoring.svc.cluster.local",
                                    "--rule=dnssrv+_grpc._tcp.thanos-ruler-operated.openshift-user-workload-monitoring.svc.cluster.local",
                                    "--target=dnssrv+_grpc._tcp.prometheus-operated.openshift-user-workload-monitoring.svc.cluster.local",
                                    "--web.disable-cors"
                                ],
                                "env": [
                                    {
                                        "name": "HOST_IP_ADDRESS",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "status.hostIP"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:8f34d18e3a237f96e2b9e9a071e5bf159c04f978ed12af457f1d065e6796220d",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "thanos-query",
                                "ports": [
                                    {
                                        "containerPort": 9090,
                                        "name": "http",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "12Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": false,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/grpc",
                                        "name": "secret-grpc-tls"
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:9091",
                                    "--upstream=http://127.0.0.1:9090",
                                    "--config-file=/etc/kube-rbac-proxy/config.yaml",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--ignore-paths=/-/healthy,/-/ready",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 4,
                                    "httpGet": {
                                        "path": "/-/healthy",
                                        "port": 9091,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "kube-rbac-proxy-web",
                                "ports": [
                                    {
                                        "containerPort": 9091,
                                        "name": "web",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 20,
                                    "httpGet": {
                                        "path": "/-/ready",
                                        "port": 9091,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 5,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "secret-thanos-querier-tls"
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-proxy",
                                        "name": "secret-thanos-querier-kube-rbac-proxy-web"
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:9092",
                                    "--upstream=http://127.0.0.1:9095",
                                    "--config-file=/etc/kube-rbac-proxy/config.yaml",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--allow-paths=/api/v1/query,/api/v1/query_range,/api/v1/labels,/api/v1/label/*/values,/api/v1/series",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 9092,
                                        "name": "tenancy",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "secret-thanos-querier-tls"
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-proxy",
                                        "name": "secret-thanos-querier-kube-rbac-proxy"
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--insecure-listen-address=127.0.0.1:9095",
                                    "--upstream=http://127.0.0.1:9090",
                                    "--label=namespace",
                                    "--enable-label-apis",
                                    "--error-on-replace",
                                    "--rules-with-active-alerts"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:2897724cec17bc13acc133181f64ccb8d54ce5dc9582f9cecf704c2540e15600",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "prom-label-proxy",
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            },
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:9093",
                                    "--upstream=http://127.0.0.1:9095",
                                    "--config-file=/etc/kube-rbac-proxy/config.yaml",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--allow-paths=/api/v1/rules,/api/v1/alerts",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy-rules",
                                "ports": [
                                    {
                                        "containerPort": 9093,
                                        "name": "tenancy-rules",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "secret-thanos-querier-tls"
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-proxy",
                                        "name": "secret-thanos-querier-kube-rbac-proxy-rules"
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:9094",
                                    "--upstream=http://127.0.0.1:9090",
                                    "--config-file=/etc/kube-rbac-proxy/config.yaml",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--client-ca-file=/etc/tls/client/client-ca.crt",
                                    "--allow-paths=/metrics",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy-metrics",
                                "ports": [
                                    {
                                        "containerPort": 9094,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "secret-thanos-querier-tls"
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-proxy",
                                        "name": "secret-thanos-querier-kube-rbac-proxy-metrics"
                                    },
                                    {
                                        "mountPath": "/etc/tls/client",
                                        "name": "metrics-client-ca",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "thanos-querier",
                        "serviceAccountName": "thanos-querier",
                        "terminationGracePeriodSeconds": 120,
                        "volumes": [
                            {
                                "name": "secret-thanos-querier-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "thanos-querier-tls"
                                }
                            },
                            {
                                "name": "secret-thanos-querier-kube-rbac-proxy",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "thanos-querier-kube-rbac-proxy"
                                }
                            },
                            {
                                "name": "secret-thanos-querier-kube-rbac-proxy-web",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "thanos-querier-kube-rbac-proxy-web"
                                }
                            },
                            {
                                "name": "secret-thanos-querier-kube-rbac-proxy-rules",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "thanos-querier-kube-rbac-proxy-rules"
                                }
                            },
                            {
                                "name": "secret-thanos-querier-kube-rbac-proxy-metrics",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "thanos-querier-kube-rbac-proxy-metrics"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "metrics-client-ca"
                                },
                                "name": "metrics-client-ca"
                            },
                            {
                                "name": "secret-grpc-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "thanos-querier-grpc-tls-f03jsokds03ot"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 2,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:02:49Z",
                "generation": 3,
                "labels": {
                    "app.kubernetes.io/component": "query-layer",
                    "app.kubernetes.io/instance": "thanos-querier",
                    "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                    "app.kubernetes.io/name": "thanos-query",
                    "app.kubernetes.io/part-of": "openshift-monitoring",
                    "app.kubernetes.io/version": "0.36.1",
                    "pod-template-hash": "6f98bd6bdf"
                },
                "name": "thanos-querier-6f98bd6bdf",
                "namespace": "openshift-monitoring",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "thanos-querier",
                        "uid": "72248323-dad3-496c-aad4-95fec7617640"
                    }
                ],
                "resourceVersion": "21437",
                "uid": "7e38aee3-89c4-40f3-b25f-2de0872f55dd"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "query-layer",
                        "app.kubernetes.io/instance": "thanos-querier",
                        "app.kubernetes.io/name": "thanos-query",
                        "app.kubernetes.io/part-of": "openshift-monitoring",
                        "pod-template-hash": "6f98bd6bdf"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "query-layer",
                            "app.kubernetes.io/instance": "thanos-querier",
                            "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                            "app.kubernetes.io/name": "thanos-query",
                            "app.kubernetes.io/part-of": "openshift-monitoring",
                            "app.kubernetes.io/version": "0.36.1",
                            "pod-template-hash": "6f98bd6bdf"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "app.kubernetes.io/component": "query-layer",
                                                "app.kubernetes.io/instance": "thanos-querier",
                                                "app.kubernetes.io/name": "thanos-query",
                                                "app.kubernetes.io/part-of": "openshift-monitoring"
                                            }
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "query",
                                    "--grpc-address=127.0.0.1:10901",
                                    "--http-address=127.0.0.1:9090",
                                    "--log.format=logfmt",
                                    "--query.replica-label=prometheus_replica",
                                    "--query.replica-label=thanos_ruler_replica",
                                    "--endpoint=dnssrv+_grpc._tcp.prometheus-operated.openshift-monitoring.svc.cluster.local",
                                    "--query.auto-downsampling",
                                    "--store.sd-dns-resolver=miekgdns",
                                    "--grpc-client-tls-secure",
                                    "--grpc-client-tls-cert=/etc/tls/grpc/client.crt",
                                    "--grpc-client-tls-key=/etc/tls/grpc/client.key",
                                    "--grpc-client-tls-ca=/etc/tls/grpc/ca.crt",
                                    "--grpc-client-server-name=prometheus-grpc",
                                    "--rule=dnssrv+_grpc._tcp.prometheus-operated.openshift-monitoring.svc.cluster.local",
                                    "--target=dnssrv+_grpc._tcp.prometheus-operated.openshift-monitoring.svc.cluster.local",
                                    "--web.disable-cors"
                                ],
                                "env": [
                                    {
                                        "name": "HOST_IP_ADDRESS",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "status.hostIP"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:8f34d18e3a237f96e2b9e9a071e5bf159c04f978ed12af457f1d065e6796220d",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "thanos-query",
                                "ports": [
                                    {
                                        "containerPort": 9090,
                                        "name": "http",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "12Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": false,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/grpc",
                                        "name": "secret-grpc-tls"
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:9091",
                                    "--upstream=http://127.0.0.1:9090",
                                    "--config-file=/etc/kube-rbac-proxy/config.yaml",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--ignore-paths=/-/healthy,/-/ready",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 4,
                                    "httpGet": {
                                        "path": "/-/healthy",
                                        "port": 9091,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "kube-rbac-proxy-web",
                                "ports": [
                                    {
                                        "containerPort": 9091,
                                        "name": "web",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 20,
                                    "httpGet": {
                                        "path": "/-/ready",
                                        "port": 9091,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 5,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "secret-thanos-querier-tls"
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-proxy",
                                        "name": "secret-thanos-querier-kube-rbac-proxy-web"
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:9092",
                                    "--upstream=http://127.0.0.1:9095",
                                    "--config-file=/etc/kube-rbac-proxy/config.yaml",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--allow-paths=/api/v1/query,/api/v1/query_range,/api/v1/labels,/api/v1/label/*/values,/api/v1/series",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 9092,
                                        "name": "tenancy",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "secret-thanos-querier-tls"
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-proxy",
                                        "name": "secret-thanos-querier-kube-rbac-proxy"
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--insecure-listen-address=127.0.0.1:9095",
                                    "--upstream=http://127.0.0.1:9090",
                                    "--label=namespace",
                                    "--enable-label-apis",
                                    "--error-on-replace",
                                    "--rules-with-active-alerts"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:2897724cec17bc13acc133181f64ccb8d54ce5dc9582f9cecf704c2540e15600",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "prom-label-proxy",
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            },
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:9093",
                                    "--upstream=http://127.0.0.1:9095",
                                    "--config-file=/etc/kube-rbac-proxy/config.yaml",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--allow-paths=/api/v1/rules,/api/v1/alerts",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy-rules",
                                "ports": [
                                    {
                                        "containerPort": 9093,
                                        "name": "tenancy-rules",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "secret-thanos-querier-tls"
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-proxy",
                                        "name": "secret-thanos-querier-kube-rbac-proxy-rules"
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:9094",
                                    "--upstream=http://127.0.0.1:9090",
                                    "--config-file=/etc/kube-rbac-proxy/config.yaml",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--client-ca-file=/etc/tls/client/client-ca.crt",
                                    "--allow-paths=/metrics",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy-metrics",
                                "ports": [
                                    {
                                        "containerPort": 9094,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "secret-thanos-querier-tls"
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-proxy",
                                        "name": "secret-thanos-querier-kube-rbac-proxy-metrics"
                                    },
                                    {
                                        "mountPath": "/etc/tls/client",
                                        "name": "metrics-client-ca",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "thanos-querier",
                        "serviceAccountName": "thanos-querier",
                        "terminationGracePeriodSeconds": 120,
                        "volumes": [
                            {
                                "name": "secret-thanos-querier-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "thanos-querier-tls"
                                }
                            },
                            {
                                "name": "secret-thanos-querier-kube-rbac-proxy",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "thanos-querier-kube-rbac-proxy"
                                }
                            },
                            {
                                "name": "secret-thanos-querier-kube-rbac-proxy-web",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "thanos-querier-kube-rbac-proxy-web"
                                }
                            },
                            {
                                "name": "secret-thanos-querier-kube-rbac-proxy-rules",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "thanos-querier-kube-rbac-proxy-rules"
                                }
                            },
                            {
                                "name": "secret-thanos-querier-kube-rbac-proxy-metrics",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "thanos-querier-kube-rbac-proxy-metrics"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "metrics-client-ca"
                                },
                                "name": "metrics-client-ca"
                            },
                            {
                                "name": "secret-grpc-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "thanos-querier-grpc-tls-f03jsokds03ot"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 3,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1",
                    "kubernetes.io/description": "This deployment deploys the Networking console plugin pod which serves\nthe contents of the Networking section in OpenShift Console\n",
                    "networkoperator.openshift.io/non-critical": "",
                    "release.openshift.io/version": "4.18.9"
                },
                "creationTimestamp": "2026-04-19T18:53:36Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "networking-console-plugin",
                    "app.kubernetes.io/managed-by": "cluster-network-operator",
                    "app.kubernetes.io/name": "networking-console-plugin",
                    "app.kubernetes.io/part-of": "cluster-network-operator",
                    "pod-template-hash": "6d95f7dc7"
                },
                "name": "networking-console-plugin-6d95f7dc7",
                "namespace": "openshift-network-console",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "networking-console-plugin",
                        "uid": "4a4436dd-a5d3-46b9-b6d6-af16f7779369"
                    }
                ],
                "resourceVersion": "10937",
                "uid": "3d61272e-5869-462e-9f9f-7333a9156e6d"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "networking-console-plugin",
                        "app.kubernetes.io/managed-by": "cluster-network-operator",
                        "app.kubernetes.io/name": "networking-console-plugin",
                        "app.kubernetes.io/part-of": "cluster-network-operator",
                        "pod-template-hash": "6d95f7dc7"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "networking-console-plugin",
                            "app.kubernetes.io/managed-by": "cluster-network-operator",
                            "app.kubernetes.io/name": "networking-console-plugin",
                            "app.kubernetes.io/part-of": "cluster-network-operator",
                            "pod-template-hash": "6d95f7dc7"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "app.kubernetes.io/component": "networking-console-plugin",
                                                    "app.kubernetes.io/managed-by": "cluster-network-operator",
                                                    "app.kubernetes.io/name": "networking-console-plugin",
                                                    "app.kubernetes.io/part-of": "cluster-network-operator"
                                                }
                                            },
                                            "namespaces": [
                                                "openshift-network-console"
                                            ],
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 90
                                    }
                                ]
                            }
                        },
                        "automountServiceAccountToken": false,
                        "containers": [
                            {
                                "command": [
                                    "/bin/sh",
                                    "-c",
                                    "if echo \"$POD_IP\" | grep -qE '^([0-9]{1,3}\\.){3}[0-9]{1,3}$'; then\n  LISTEN_ADDRESS_PORT_REPLACED_AT_RUNTIME=\"9443\"\nelse\n  LISTEN_ADDRESS_PORT_REPLACED_AT_RUNTIME=\"[::]:9443\"\nfi\nsed \"s/LISTEN_ADDRESS_PORT_REPLACED_AT_RUNTIME/$LISTEN_ADDRESS_PORT_REPLACED_AT_RUNTIME/g\" /etc/nginx/nginx.conf \u003e /tmp/nginx.conf\nexec nginx -c /tmp/nginx.conf -g 'daemon off;'\n"
                                ],
                                "env": [
                                    {
                                        "name": "POD_IP",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "status.podIP"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:13aabbaf260d634ff0e9ac1af88af075b5ba671fd51313e33e74d7d2f7e54128",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "networking-console-plugin",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "50Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/cert",
                                        "name": "networking-console-plugin-cert",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/nginx/nginx.conf",
                                        "name": "nginx-conf",
                                        "readOnly": true,
                                        "subPath": "nginx.conf"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "networking-console-plugin"
                                },
                                "name": "nginx-conf"
                            },
                            {
                                "name": "networking-console-plugin-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "networking-console-plugin-cert"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 1,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "1",
                    "deployment.kubernetes.io/revision": "1",
                    "kubernetes.io/description": "This deployment deploys the network-check-source pod that performs\npod network connectivity checks\n",
                    "networkoperator.openshift.io/non-critical": "",
                    "release.openshift.io/version": "4.18.9"
                },
                "creationTimestamp": "2026-04-19T18:53:35Z",
                "generation": 1,
                "labels": {
                    "app": "network-check-source",
                    "kubernetes.io/os": "linux",
                    "pod-template-hash": "658d84f764"
                },
                "name": "network-check-source-658d84f764",
                "namespace": "openshift-network-diagnostics",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "network-check-source",
                        "uid": "d2830790-f103-4590-ace0-d59ebfe893ae"
                    }
                ],
                "resourceVersion": "9750",
                "uid": "55928a18-c434-4ee4-9dd6-e1f5da101a29"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "network-check-source",
                        "pod-template-hash": "658d84f764"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "network-check-source",
                            "kubernetes.io/os": "linux",
                            "pod-template-hash": "658d84f764"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--listen",
                                    "0.0.0.0:17698",
                                    "--namespace",
                                    "$(POD_NAMESPACE)"
                                ],
                                "command": [
                                    "cluster-network-check-endpoints"
                                ],
                                "env": [
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:894452e6587de55d04e37163d3da53e11fced8fb08bd0acf61e6d49f7964284e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "check-endpoints",
                                "ports": [
                                    {
                                        "containerPort": 17698,
                                        "name": "check-endpoints",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "40Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "openshift-user-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "network-diagnostics",
                        "serviceAccountName": "network-diagnostics",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:11:33Z",
                "generation": 1,
                "labels": {
                    "control-plane": "gitops-operator",
                    "pod-template-hash": "bb8466c85"
                },
                "name": "openshift-gitops-operator-controller-manager-bb8466c85",
                "namespace": "openshift-operators",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "openshift-gitops-operator-controller-manager",
                        "uid": "bb496998-c2db-400d-8f7c-6c5d1a6c3c6f"
                    }
                ],
                "resourceVersion": "16924",
                "uid": "2b01b493-1c02-4d9d-8aa6-59ffe741f263"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "control-plane": "gitops-operator",
                        "pod-template-hash": "bb8466c85"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "alm-examples": "[\n  {\n    \"apiVersion\": \"argoproj.io/v1alpha1\",\n    \"kind\": \"AppProject\",\n    \"metadata\": {\n      \"name\": \"example\"\n    },\n    \"spec\": null\n  },\n  {\n    \"apiVersion\": \"argoproj.io/v1alpha1\",\n    \"kind\": \"Application\",\n    \"metadata\": {\n      \"name\": \"example\"\n    },\n    \"spec\": null\n  },\n  {\n    \"apiVersion\": \"argoproj.io/v1alpha1\",\n    \"kind\": \"ApplicationSet\",\n    \"metadata\": {\n      \"name\": \"example\"\n    },\n    \"spec\": null\n  },\n  {\n    \"apiVersion\": \"argoproj.io/v1alpha1\",\n    \"kind\": \"NotificationsConfiguration\",\n    \"metadata\": {\n      \"name\": \"default-notifications-configuration\"\n    },\n    \"spec\": {\n      \"templates\": {\n        \"template.app-created\": \"email:\\n  subject: Application {{.app.metadata.name}} has been created.\\nmessage: Application {{.app.metadata.name}} has been created.\\nteams:\\n  title: Application {{.app.metadata.name}} has been created.\",\n        \"template.app-deleted\": \"email:\\n  subject: Application {{.app.metadata.name}} has been deleted.\\nmessage: Application {{.app.metadata.name}} has been deleted.\\nteams:\\n  title: Application {{.app.metadata.name}} has been deleted.\",\n        \"template.app-deployed\": \"email:\\n  subject: New version of an application {{.app.metadata.name}} is up and running.\\nmessage: |\\n  {{if eq .serviceType \\\"slack\\\"}}:white_check_mark:{{end}} Application {{.app.metadata.name}} is now running new version of deployments manifests.\\nslack:\\n  attachments: |\\n    [{\\n      \\\"title\\\": \\\"{{ .app.metadata.name}}\\\",\\n      \\\"title_link\\\":\\\"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}\\\",\\n      \\\"color\\\": \\\"#18be52\\\",\\n      \\\"fields\\\": [\\n      {\\n        \\\"title\\\": \\\"Sync Status\\\",\\n        \\\"value\\\": \\\"{{.app.status.sync.status}}\\\",\\n        \\\"short\\\": true\\n      },\\n      {\\n        \\\"title\\\": \\\"Repository\\\",\\n        \\\"value\\\": \\\"{{.app.spec.source.repoURL}}\\\",\\n        \\\"short\\\": true\\n      },\\n      {\\n        \\\"title\\\": \\\"Revision\\\",\\n        \\\"value\\\": \\\"{{.app.status.sync.revision}}\\\",\\n        \\\"short\\\": true\\n      }\\n      {{range $index, $c := .app.status.conditions}}\\n      {{if not $index}},{{end}}\\n      {{if $index}},{{end}}\\n      {\\n        \\\"title\\\": \\\"{{$c.type}}\\\",\\n        \\\"value\\\": \\\"{{$c.message}}\\\",\\n        \\\"short\\\": true\\n      }\\n      {{end}}\\n      ]\\n    }]\\n  deliveryPolicy: Post\\n  groupingKey: \\\"\\\"\\n  notifyBroadcast: false\\nteams:\\n  facts: |\\n    [{\\n      \\\"name\\\": \\\"Sync Status\\\",\\n      \\\"value\\\": \\\"{{.app.status.sync.status}}\\\"\\n    },\\n    {\\n      \\\"name\\\": \\\"Repository\\\",\\n      \\\"value\\\": \\\"{{.app.spec.source.repoURL}}\\\"\\n    },\\n    {\\n      \\\"name\\\": \\\"Revision\\\",\\n      \\\"value\\\": \\\"{{.app.status.sync.revision}}\\\"\\n    }\\n    {{range $index, $c := .app.status.conditions}}\\n      {{if not $index}},{{end}}\\n      {{if $index}},{{end}}\\n      {\\n        \\\"name\\\": \\\"{{$c.type}}\\\",\\n        \\\"value\\\": \\\"{{$c.message}}\\\"\\n      }\\n    {{end}}\\n    ]\\n  potentialAction: |-\\n    [{\\n      \\\"@type\\\":\\\"OpenUri\\\",\\n      \\\"name\\\":\\\"Operation Application\\\",\\n      \\\"targets\\\":[{\\n        \\\"os\\\":\\\"default\\\",\\n        \\\"uri\\\":\\\"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}\\\"\\n      }]\\n    },\\n    {\\n      \\\"@type\\\":\\\"OpenUri\\\",\\n      \\\"name\\\":\\\"Open Repository\\\",\\n      \\\"targets\\\":[{\\n        \\\"os\\\":\\\"default\\\",\\n        \\\"uri\\\":\\\"{{.app.spec.source.repoURL | call .repo.RepoURLToHTTPS}}\\\"\\n      }]\\n    }]\\n  themeColor: '#000080'\\n  title: New version of an application {{.app.metadata.name}} is up and running.\",\n        \"template.app-health-degraded\": \"email:\\n  subject: Application {{.app.metadata.name}} has degraded.\\nmessage: |\\n  {{if eq .serviceType \\\"slack\\\"}}:exclamation:{{end}} Application {{.app.metadata.name}} has degraded.\\n  Application details: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}.\\nslack:\\n  attachments: |\\n    [{\\n      \\\"title\\\": \\\"{{ .app.metadata.name}}\\\",\\n      \\\"title_link\\\": \\\"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}\\\",\\n      \\\"color\\\": \\\"#f4c030\\\",\\n      \\\"fields\\\": [\\n      {\\n        \\\"title\\\": \\\"Health Status\\\",\\n        \\\"value\\\": \\\"{{.app.status.health.status}}\\\",\\n        \\\"short\\\": true\\n      },\\n      {\\n        \\\"title\\\": \\\"Repository\\\",\\n        \\\"value\\\": \\\"{{.app.spec.source.repoURL}}\\\",\\n        \\\"short\\\": true\\n      }\\n      {{range $index, $c := .app.status.conditions}}\\n      {{if not $index}},{{end}}\\n      {{if $index}},{{end}}\\n      {\\n        \\\"title\\\": \\\"{{$c.type}}\\\",\\n        \\\"value\\\": \\\"{{$c.message}}\\\",\\n        \\\"short\\\": true\\n      }\\n      {{end}}\\n      ]\\n    }]\\n  deliveryPolicy: Post\\n  groupingKey: \\\"\\\"\\n  notifyBroadcast: false\\nteams:\\n  facts: |\\n    [{\\n      \\\"name\\\": \\\"Health Status\\\",\\n      \\\"value\\\": \\\"{{.app.status.health.status}}\\\"\\n    },\\n    {\\n      \\\"name\\\": \\\"Repository\\\",\\n      \\\"value\\\": \\\"{{.app.spec.source.repoURL}}\\\"\\n    }\\n    {{range $index, $c := .app.status.conditions}}\\n      {{if not $index}},{{end}}\\n      {{if $index}},{{end}}\\n      {\\n        \\\"name\\\": \\\"{{$c.type}}\\\",\\n        \\\"value\\\": \\\"{{$c.message}}\\\"\\n      }\\n    {{end}}\\n    ]\\n  potentialAction: |\\n    [{\\n      \\\"@type\\\":\\\"OpenUri\\\",\\n      \\\"name\\\":\\\"Open Application\\\",\\n      \\\"targets\\\":[{\\n        \\\"os\\\":\\\"default\\\",\\n        \\\"uri\\\":\\\"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}\\\"\\n      }]\\n    },\\n    {\\n      \\\"@type\\\":\\\"OpenUri\\\",\\n      \\\"name\\\":\\\"Open Repository\\\",\\n      \\\"targets\\\":[{\\n        \\\"os\\\":\\\"default\\\",\\n        \\\"uri\\\":\\\"{{.app.spec.source.repoURL | call .repo.RepoURLToHTTPS}}\\\"\\n      }]\\n    }]\\n  themeColor: '#FF0000'\\n  title: Application {{.app.metadata.name}} has degraded.\",\n        \"template.app-sync-failed\": \"email:\\n  subject: Failed to sync application {{.app.metadata.name}}.\\nmessage: |\\n  {{if eq .serviceType \\\"slack\\\"}}:exclamation:{{end}}  The sync operation of application {{.app.metadata.name}} has failed at {{.app.status.operationState.finishedAt}} with the following error: {{.app.status.operationState.message}}\\n  Sync operation details are available at: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}?operation=true .\\nslack:\\n  attachments: |\\n    [{\\n      \\\"title\\\": \\\"{{ .app.metadata.name}}\\\",\\n      \\\"title_link\\\":\\\"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}\\\",\\n      \\\"color\\\": \\\"#E96D76\\\",\\n      \\\"fields\\\": [\\n      {\\n        \\\"title\\\": \\\"Sync Status\\\",\\n        \\\"value\\\": \\\"{{.app.status.sync.status}}\\\",\\n        \\\"short\\\": true\\n      },\\n      {\\n        \\\"title\\\": \\\"Repository\\\",\\n        \\\"value\\\": \\\"{{.app.spec.source.repoURL}}\\\",\\n        \\\"short\\\": true\\n      }\\n      {{range $index, $c := .app.status.conditions}}\\n      {{if not $index}},{{end}}\\n      {{if $index}},{{end}}\\n      {\\n        \\\"title\\\": \\\"{{$c.type}}\\\",\\n        \\\"value\\\": \\\"{{$c.message}}\\\",\\n        \\\"short\\\": true\\n      }\\n      {{end}}\\n      ]\\n    }]\\n  deliveryPolicy: Post\\n  groupingKey: \\\"\\\"\\n  notifyBroadcast: false\\nteams:\\n  facts: |\\n    [{\\n      \\\"name\\\": \\\"Sync Status\\\",\\n      \\\"value\\\": \\\"{{.app.status.sync.status}}\\\"\\n    },\\n    {\\n      \\\"name\\\": \\\"Failed at\\\",\\n      \\\"value\\\": \\\"{{.app.status.operationState.finishedAt}}\\\"\\n    },\\n    {\\n      \\\"name\\\": \\\"Repository\\\",\\n      \\\"value\\\": \\\"{{.app.spec.source.repoURL}}\\\"\\n    }\\n    {{range $index, $c := .app.status.conditions}}\\n      {{if not $index}},{{end}}\\n      {{if $index}},{{end}}\\n      {\\n        \\\"name\\\": \\\"{{$c.type}}\\\",\\n        \\\"value\\\": \\\"{{$c.message}}\\\"\\n      }\\n    {{end}}\\n    ]\\n  potentialAction: |-\\n    [{\\n      \\\"@type\\\":\\\"OpenUri\\\",\\n      \\\"name\\\":\\\"Open Operation\\\",\\n      \\\"targets\\\":[{\\n        \\\"os\\\":\\\"default\\\",\\n        \\\"uri\\\":\\\"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}?operation=true\\\"\\n      }]\\n    },\\n    {\\n      \\\"@type\\\":\\\"OpenUri\\\",\\n      \\\"name\\\":\\\"Open Repository\\\",\\n      \\\"targets\\\":[{\\n        \\\"os\\\":\\\"default\\\",\\n        \\\"uri\\\":\\\"{{.app.spec.source.repoURL | call .repo.RepoURLToHTTPS}}\\\"\\n      }]\\n    }]\\n  themeColor: '#FF0000'\\n  title: Failed to sync application {{.app.metadata.name}}.\",\n        \"template.app-sync-running\": \"email:\\n  subject: Start syncing application {{.app.metadata.name}}.\\nmessage: |\\n  The sync operation of application {{.app.metadata.name}} has started at {{.app.status.operationState.startedAt}}.\\n  Sync operation details are available at: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}?operation=true .\\nslack:\\n  attachments: |\\n    [{\\n      \\\"title\\\": \\\"{{ .app.metadata.name}}\\\",\\n      \\\"title_link\\\":\\\"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}\\\",\\n      \\\"color\\\": \\\"#0DADEA\\\",\\n      \\\"fields\\\": [\\n      {\\n        \\\"title\\\": \\\"Sync Status\\\",\\n        \\\"value\\\": \\\"{{.app.status.sync.status}}\\\",\\n        \\\"short\\\": true\\n      },\\n      {\\n        \\\"title\\\": \\\"Repository\\\",\\n        \\\"value\\\": \\\"{{.app.spec.source.repoURL}}\\\",\\n        \\\"short\\\": true\\n      }\\n      {{range $index, $c := .app.status.conditions}}\\n      {{if not $index}},{{end}}\\n      {{if $index}},{{end}}\\n      {\\n        \\\"title\\\": \\\"{{$c.type}}\\\",\\n        \\\"value\\\": \\\"{{$c.message}}\\\",\\n        \\\"short\\\": true\\n      }\\n      {{end}}\\n      ]\\n    }]\\n  deliveryPolicy: Post\\n  groupingKey: \\\"\\\"\\n  notifyBroadcast: false\\nteams:\\n  facts: |\\n    [{\\n      \\\"name\\\": \\\"Sync Status\\\",\\n      \\\"value\\\": \\\"{{.app.status.sync.status}}\\\"\\n    },\\n    {\\n      \\\"name\\\": \\\"Started at\\\",\\n      \\\"value\\\": \\\"{{.app.status.operationState.startedAt}}\\\"\\n    },\\n    {\\n      \\\"name\\\": \\\"Repository\\\",\\n      \\\"value\\\": \\\"{{.app.spec.source.repoURL}}\\\"\\n    }\\n    {{range $index, $c := .app.status.conditions}}\\n      {{if not $index}},{{end}}\\n      {{if $index}},{{end}}\\n      {\\n        \\\"name\\\": \\\"{{$c.type}}\\\",\\n        \\\"value\\\": \\\"{{$c.message}}\\\"\\n      }\\n    {{end}}\\n    ]\\n  potentialAction: |-\\n    [{\\n      \\\"@type\\\":\\\"OpenUri\\\",\\n      \\\"name\\\":\\\"Open Operation\\\",\\n      \\\"targets\\\":[{\\n        \\\"os\\\":\\\"default\\\",\\n        \\\"uri\\\":\\\"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}?operation=true\\\"\\n      }]\\n    },\\n    {\\n      \\\"@type\\\":\\\"OpenUri\\\",\\n      \\\"name\\\":\\\"Open Repository\\\",\\n      \\\"targets\\\":[{\\n        \\\"os\\\":\\\"default\\\",\\n        \\\"uri\\\":\\\"{{.app.spec.source.repoURL | call .repo.RepoURLToHTTPS}}\\\"\\n      }]\\n    }]\\n  title: Start syncing application {{.app.metadata.name}}.\",\n        \"template.app-sync-status-unknown\": \"email:\\n  subject: Application {{.app.metadata.name}} sync status is 'Unknown'\\nmessage: |\\n  {{if eq .serviceType \\\"slack\\\"}}:exclamation:{{end}} Application {{.app.metadata.name}} sync is 'Unknown'.\\n  Application details: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}.\\n  {{if ne .serviceType \\\"slack\\\"}}\\n  {{range $c := .app.status.conditions}}\\n      * {{$c.message}}\\n  {{end}}\\n  {{end}}\\nslack:\\n  attachments: |\\n    [{\\n      \\\"title\\\": \\\"{{ .app.metadata.name}}\\\",\\n      \\\"title_link\\\":\\\"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}\\\",\\n      \\\"color\\\": \\\"#E96D76\\\",\\n      \\\"fields\\\": [\\n      {\\n        \\\"title\\\": \\\"Sync Status\\\",\\n        \\\"value\\\": \\\"{{.app.status.sync.status}}\\\",\\n        \\\"short\\\": true\\n      },\\n      {\\n        \\\"title\\\": \\\"Repository\\\",\\n        \\\"value\\\": \\\"{{.app.spec.source.repoURL}}\\\",\\n        \\\"short\\\": true\\n      }\\n      {{range $index, $c := .app.status.conditions}}\\n      {{if not $index}},{{end}}\\n      {{if $index}},{{end}}\\n      {\\n        \\\"title\\\": \\\"{{$c.type}}\\\",\\n        \\\"value\\\": \\\"{{$c.message}}\\\",\\n        \\\"short\\\": true\\n      }\\n      {{end}}\\n      ]\\n    }]\\n  deliveryPolicy: Post\\n  groupingKey: \\\"\\\"\\n  notifyBroadcast: false\\nteams:\\n  facts: |\\n    [{\\n      \\\"name\\\": \\\"Sync Status\\\",\\n      \\\"value\\\": \\\"{{.app.status.sync.status}}\\\"\\n    },\\n    {\\n      \\\"name\\\": \\\"Repository\\\",\\n      \\\"value\\\": \\\"{{.app.spec.source.repoURL}}\\\"\\n    }\\n    {{range $index, $c := .app.status.conditions}}\\n      {{if not $index}},{{end}}\\n      {{if $index}},{{end}}\\n      {\\n        \\\"name\\\": \\\"{{$c.type}}\\\",\\n        \\\"value\\\": \\\"{{$c.message}}\\\"\\n      }\\n    {{end}}\\n    ]\\n  potentialAction: |-\\n    [{\\n      \\\"@type\\\":\\\"OpenUri\\\",\\n      \\\"name\\\":\\\"Open Application\\\",\\n      \\\"targets\\\":[{\\n        \\\"os\\\":\\\"default\\\",\\n        \\\"uri\\\":\\\"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}\\\"\\n      }]\\n    },\\n    {\\n      \\\"@type\\\":\\\"OpenUri\\\",\\n      \\\"name\\\":\\\"Open Repository\\\",\\n      \\\"targets\\\":[{\\n        \\\"os\\\":\\\"default\\\",\\n        \\\"uri\\\":\\\"{{.app.spec.source.repoURL | call .repo.RepoURLToHTTPS}}\\\"\\n      }]\\n    }]\\n  title: Application {{.app.metadata.name}} sync status is 'Unknown'\",\n        \"template.app-sync-succeeded\": \"email:\\n  subject: Application {{.app.metadata.name}} has been successfully synced.\\nmessage: |\\n  {{if eq .serviceType \\\"slack\\\"}}:white_check_mark:{{end}} Application {{.app.metadata.name}} has been successfully synced at {{.app.status.operationState.finishedAt}}.\\n  Sync operation details are available at: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}?operation=true .\\nslack:\\n  attachments: |\\n    [{\\n      \\\"title\\\": \\\"{{ .app.metadata.name}}\\\",\\n      \\\"title_link\\\":\\\"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}\\\",\\n      \\\"color\\\": \\\"#18be52\\\",\\n      \\\"fields\\\": [\\n      {\\n        \\\"title\\\": \\\"Sync Status\\\",\\n        \\\"value\\\": \\\"{{.app.status.sync.status}}\\\",\\n        \\\"short\\\": true\\n      },\\n      {\\n        \\\"title\\\": \\\"Repository\\\",\\n        \\\"value\\\": \\\"{{.app.spec.source.repoURL}}\\\",\\n        \\\"short\\\": true\\n      }\\n      {{range $index, $c := .app.status.conditions}}\\n      {{if not $index}},{{end}}\\n      {{if $index}},{{end}}\\n      {\\n        \\\"title\\\": \\\"{{$c.type}}\\\",\\n        \\\"value\\\": \\\"{{$c.message}}\\\",\\n        \\\"short\\\": true\\n      }\\n      {{end}}\\n      ]\\n    }]\\n  deliveryPolicy: Post\\n  groupingKey: \\\"\\\"\\n  notifyBroadcast: false\\nteams:\\n  facts: |\\n    [{\\n      \\\"name\\\": \\\"Sync Status\\\",\\n      \\\"value\\\": \\\"{{.app.status.sync.status}}\\\"\\n    },\\n    {\\n      \\\"name\\\": \\\"Synced at\\\",\\n      \\\"value\\\": \\\"{{.app.status.operationState.finishedAt}}\\\"\\n    },\\n    {\\n      \\\"name\\\": \\\"Repository\\\",\\n      \\\"value\\\": \\\"{{.app.spec.source.repoURL}}\\\"\\n    }\\n    {{range $index, $c := .app.status.conditions}}\\n      {{if not $index}},{{end}}\\n      {{if $index}},{{end}}\\n      {\\n        \\\"name\\\": \\\"{{$c.type}}\\\",\\n        \\\"value\\\": \\\"{{$c.message}}\\\"\\n      }\\n    {{end}}\\n    ]\\n  potentialAction: |-\\n    [{\\n      \\\"@type\\\":\\\"OpenUri\\\",\\n      \\\"name\\\":\\\"Operation Details\\\",\\n      \\\"targets\\\":[{\\n        \\\"os\\\":\\\"default\\\",\\n        \\\"uri\\\":\\\"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}?operation=true\\\"\\n      }]\\n    },\\n    {\\n      \\\"@type\\\":\\\"OpenUri\\\",\\n      \\\"name\\\":\\\"Open Repository\\\",\\n      \\\"targets\\\":[{\\n        \\\"os\\\":\\\"default\\\",\\n        \\\"uri\\\":\\\"{{.app.spec.source.repoURL | call .repo.RepoURLToHTTPS}}\\\"\\n      }]\\n    }]\\n  themeColor: '#000080'\\n  title: Application {{.app.metadata.name}} has been successfully synced\"\n      },\n      \"triggers\": {\n        \"trigger.on-created\": \"- description: Application is created.\\n  oncePer: app.metadata.name\\n  send:\\n  - app-created\\n  when: \\\"true\\\"\",\n        \"trigger.on-deleted\": \"- description: Application is deleted.\\n  oncePer: app.metadata.name\\n  send:\\n  - app-deleted\\n  when: app.metadata.deletionTimestamp != nil\",\n        \"trigger.on-deployed\": \"- description: Application is synced and healthy. Triggered once per commit.\\n  oncePer: app.status.operationState.syncResult.revision\\n  send:\\n  - app-deployed\\n  when: app.status.operationState.phase in ['Succeeded'] and app.status.health.status\\n      == 'Healthy'\",\n        \"trigger.on-health-degraded\": \"- description: Application has degraded\\n  send:\\n  - app-health-degraded\\n  when: app.status.health.status == 'Degraded'\",\n        \"trigger.on-sync-failed\": \"- description: Application syncing has failed\\n  send:\\n  - app-sync-failed\\n  when: app.status.operationState.phase in ['Error', 'Failed']\",\n        \"trigger.on-sync-running\": \"- description: Application is being synced\\n  send:\\n  - app-sync-running\\n  when: app.status.operationState.phase in ['Running']\",\n        \"trigger.on-sync-status-unknown\": \"- description: Application status is 'Unknown'\\n  send:\\n  - app-sync-status-unknown\\n  when: app.status.sync.status == 'Unknown'\",\n        \"trigger.on-sync-succeeded\": \"- description: Application syncing has succeeded\\n  send:\\n  - app-sync-succeeded\\n  when: app.status.operationState.phase in ['Succeeded']\"\n      }\n    }\n  },\n  {\n    \"apiVersion\": \"argoproj.io/v1beta1\",\n    \"kind\": \"ArgoCD\",\n    \"metadata\": {\n      \"name\": \"argocd\"\n    },\n    \"spec\": {\n      \"controller\": {\n        \"resources\": {\n          \"limits\": {\n            \"cpu\": \"2000m\",\n            \"memory\": \"2048Mi\"\n          },\n          \"requests\": {\n            \"cpu\": \"250m\",\n            \"memory\": \"1024Mi\"\n          }\n        }\n      },\n      \"ha\": {\n        \"enabled\": false,\n        \"resources\": {\n          \"limits\": {\n            \"cpu\": \"500m\",\n            \"memory\": \"256Mi\"\n          },\n          \"requests\": {\n            \"cpu\": \"250m\",\n            \"memory\": \"128Mi\"\n          }\n        }\n      },\n      \"rbac\": {\n        \"defaultPolicy\": \"\",\n        \"policy\": \"g, system:cluster-admins, role:admin\\n\",\n        \"scopes\": \"[groups]\"\n      },\n      \"redis\": {\n        \"resources\": {\n          \"limits\": {\n            \"cpu\": \"500m\",\n            \"memory\": \"256Mi\"\n          },\n          \"requests\": {\n            \"cpu\": \"250m\",\n            \"memory\": \"128Mi\"\n          }\n        }\n      },\n      \"repo\": {\n        \"resources\": {\n          \"limits\": {\n            \"cpu\": \"1000m\",\n            \"memory\": \"1024Mi\"\n          },\n          \"requests\": {\n            \"cpu\": \"250m\",\n            \"memory\": \"256Mi\"\n          }\n        }\n      },\n      \"resourceExclusions\": \"- apiGroups:\\n  - tekton.dev\\n  clusters:\\n  - '*'\\n  kinds:\\n  - TaskRun\\n  - PipelineRun        \\n\",\n      \"server\": {\n        \"resources\": {\n          \"limits\": {\n            \"cpu\": \"500m\",\n            \"memory\": \"256Mi\"\n          },\n          \"requests\": {\n            \"cpu\": \"125m\",\n            \"memory\": \"128Mi\"\n          }\n        },\n        \"route\": {\n          \"enabled\": true\n        }\n      },\n      \"sso\": {\n        \"dex\": {\n          \"openShiftOAuth\": true,\n          \"resources\": {\n            \"limits\": {\n              \"cpu\": \"500m\",\n              \"memory\": \"256Mi\"\n            },\n            \"requests\": {\n              \"cpu\": \"250m\",\n              \"memory\": \"128Mi\"\n            }\n          }\n        },\n        \"provider\": \"dex\"\n      }\n    }\n  },\n  {\n    \"apiVersion\": \"pipelines.openshift.io/v1alpha1\",\n    \"kind\": \"GitopsService\",\n    \"metadata\": {\n      \"name\": \"gitopsservice-sample\"\n    },\n    \"spec\": null\n  }\n]",
                            "capabilities": "Deep Insights",
                            "console.openshift.io/plugins": "[\"gitops-plugin\"]",
                            "containerImage": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:ad49a3d14f843bde0d2365093d00ffa6d3b9d59a75c81e0c56710ad37b53bd92",
                            "createdAt": "2024-11-25T03:57:37Z",
                            "description": "Enables teams to adopt GitOps principles for managing cluster configurations and application delivery across hybrid multi-cluster Kubernetes environments.",
                            "features.operators.openshift.io/cnf": "false",
                            "features.operators.openshift.io/cni": "false",
                            "features.operators.openshift.io/csi": "false",
                            "features.operators.openshift.io/disconnected": "true",
                            "features.operators.openshift.io/fips-compliant": "false",
                            "features.operators.openshift.io/proxy-aware": "true",
                            "features.operators.openshift.io/tls-profiles": "false",
                            "features.operators.openshift.io/token-auth-aws": "false",
                            "features.operators.openshift.io/token-auth-azure": "false",
                            "features.operators.openshift.io/token-auth-gcp": "false",
                            "kubectl.kubernetes.io/default-container": "manager",
                            "olm.operatorGroup": "global-operators",
                            "olm.operatorNamespace": "openshift-operators",
                            "olm.skipRange": "",
                            "olm.targetNamespaces": "",
                            "olmcahash": "7a914ed4c36eef9c41fa249746bcd62af14ca3957c09c3ac93c25e634cc9f8ad",
                            "operatorframework.io/cluster-monitoring": "true",
                            "operatorframework.io/properties": "{\"properties\":[{\"type\":\"olm.gvk\",\"value\":{\"group\":\"argoproj.io\",\"kind\":\"AnalysisRun\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"argoproj.io\",\"kind\":\"AnalysisTemplate\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"argoproj.io\",\"kind\":\"AppProject\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"argoproj.io\",\"kind\":\"Application\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"argoproj.io\",\"kind\":\"ApplicationSet\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"argoproj.io\",\"kind\":\"ArgoCD\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"argoproj.io\",\"kind\":\"ArgoCD\",\"version\":\"v1beta1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"argoproj.io\",\"kind\":\"ClusterAnalysisTemplate\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"argoproj.io\",\"kind\":\"Experiment\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"argoproj.io\",\"kind\":\"NotificationsConfiguration\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"argoproj.io\",\"kind\":\"Rollout\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"argoproj.io\",\"kind\":\"RolloutManager\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"pipelines.openshift.io\",\"kind\":\"GitopsService\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.package\",\"value\":{\"packageName\":\"openshift-gitops-operator\",\"version\":\"1.15.4\"}}]}",
                            "operatorframework.io/suggested-namespace": "openshift-gitops-operator",
                            "operators.openshift.io/infrastructure-features": "[\"disconnected\"]",
                            "operators.openshift.io/valid-subscription": "[\"OpenShift Container Platform\", \"OpenShift Platform Plus\"]",
                            "operators.operatorframework.io/builder": "operator-sdk-v1.35.0",
                            "operators.operatorframework.io/internal-objects": "[\"gitopsservices.pipelines.openshift.io\"]",
                            "operators.operatorframework.io/project_layout": "go.kubebuilder.io/v4",
                            "repository": "https://github.com/redhat-developer/gitops-operator",
                            "support": "Red Hat"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "control-plane": "gitops-operator",
                            "pod-template-hash": "bb8466c85"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--health-probe-bind-address=:8081",
                                    "--metrics-bind-address=127.0.0.1:8080",
                                    "--leader-elect"
                                ],
                                "command": [
                                    "/usr/local/bin/manager"
                                ],
                                "env": [
                                    {
                                        "name": "ARGOCD_CLUSTER_CONFIG_NAMESPACES",
                                        "value": "openshift-gitops"
                                    },
                                    {
                                        "name": "CLUSTER_SCOPED_ARGO_ROLLOUTS_NAMESPACES",
                                        "value": "openshift-gitops"
                                    },
                                    {
                                        "name": "OPERATOR_NAME",
                                        "value": "gitops-operator"
                                    },
                                    {
                                        "name": "LABEL_SELECTOR"
                                    },
                                    {
                                        "name": "ENABLE_CONVERSION_WEBHOOK",
                                        "value": "true"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_ARGOCD_DEX_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a9e2360f00c5c9840a100a6748bd905b8f34169140a33fb0ca4af9cf6db71642"
                                    },
                                    {
                                        "name": "ARGOCD_DEX_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a9e2360f00c5c9840a100a6748bd905b8f34169140a33fb0ca4af9cf6db71642"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_ARGOCD_KEYCLOAK_IMAGE",
                                        "value": "registry.redhat.io/rh-sso-7/sso76-openshift-rhel8@sha256:4d945dd1a6fc0e8b6cfc16f4359128f1427b094e76efd4ff31325a1839246107"
                                    },
                                    {
                                        "name": "ARGOCD_KEYCLOAK_IMAGE",
                                        "value": "registry.redhat.io/rh-sso-7/sso76-openshift-rhel8@sha256:4d945dd1a6fc0e8b6cfc16f4359128f1427b094e76efd4ff31325a1839246107"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_BACKEND_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:5bda26e2c16beebf66dd8f3c3c55d48e2f00db870f2d9d4d44570d9d3b8bddb0"
                                    },
                                    {
                                        "name": "BACKEND_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/gitops-rhel8@sha256:5bda26e2c16beebf66dd8f3c3c55d48e2f00db870f2d9d4d44570d9d3b8bddb0"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_ARGOCD_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:911733d78ae6f36f642b4d63f044cd102b7eee170508eaf518ac7acf0f339698"
                                    },
                                    {
                                        "name": "ARGOCD_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:911733d78ae6f36f642b4d63f044cd102b7eee170508eaf518ac7acf0f339698"
                                    },
                                    {
                                        "name": "ARGOCD_REPOSERVER_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/argocd-rhel8@sha256:911733d78ae6f36f642b4d63f044cd102b7eee170508eaf518ac7acf0f339698"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_ARGOCD_REDIS_IMAGE",
                                        "value": "registry.redhat.io/rhel9/redis-7@sha256:2fca0decc49230122f044afb2e7cd8f64921a00141c8c22c2f1402f3564f87f8"
                                    },
                                    {
                                        "name": "ARGOCD_REDIS_IMAGE",
                                        "value": "registry.redhat.io/rhel9/redis-7@sha256:2fca0decc49230122f044afb2e7cd8f64921a00141c8c22c2f1402f3564f87f8"
                                    },
                                    {
                                        "name": "ARGOCD_REDIS_HA_IMAGE",
                                        "value": "registry.redhat.io/rhel9/redis-7@sha256:2fca0decc49230122f044afb2e7cd8f64921a00141c8c22c2f1402f3564f87f8"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_ARGOCD_REDIS_HA_PROXY_IMAGE",
                                        "value": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:2dd72760f736ab13e87d6e507e654c390d2d6af3154c6adb85610b5f58085b9c"
                                    },
                                    {
                                        "name": "ARGOCD_REDIS_HA_PROXY_IMAGE",
                                        "value": "registry.redhat.io/openshift4/ose-haproxy-router@sha256:2dd72760f736ab13e87d6e507e654c390d2d6af3154c6adb85610b5f58085b9c"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_GITOPS_CONSOLE_PLUGIN_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:41717c27915251bda8afeef651b609b8a9ed410e0fa09c4cf8fa7e91d6a94292"
                                    },
                                    {
                                        "name": "GITOPS_CONSOLE_PLUGIN_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/console-plugin-rhel8@sha256:41717c27915251bda8afeef651b609b8a9ed410e0fa09c4cf8fa7e91d6a94292"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_ARGOCD_EXTENSION_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c7f72546d0d918bfd21aff7157b983ff7c832b269f5efb84d2ed723a09bf612"
                                    },
                                    {
                                        "name": "ARGOCD_EXTENSION_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/argocd-extensions-rhel8@sha256:0c7f72546d0d918bfd21aff7157b983ff7c832b269f5efb84d2ed723a09bf612"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_ARGO_ROLLOUTS_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:d41454824632475f0e88aa6e0031ec643bd37e1d575df36cd3ee63daf1403281"
                                    },
                                    {
                                        "name": "ARGO_ROLLOUTS_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8@sha256:d41454824632475f0e88aa6e0031ec643bd37e1d575df36cd3ee63daf1403281"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_MUST_GATHER_IMAGE",
                                        "value": "registry.redhat.io/openshift-gitops-1/must-gather-rhel8@sha256:6cec76d7ea70d77923cf4285177e375d34e96e3aecbe77b68cd5ff769e6e540b"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_KUBE_RBAC_PROXY_IMAGE",
                                        "value": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:56653df97e4498ecd67b9645d75e44f65c625594e312dbcf0f09937b57d76010"
                                    },
                                    {
                                        "name": "OPERATOR_CONDITION_NAME",
                                        "value": "openshift-gitops-operator.v1.15.4"
                                    }
                                ],
                                "image": "registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator@sha256:ad49a3d14f843bde0d2365093d00ffa6d3b9d59a75c81e0c56710ad37b53bd92",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "webhook-server",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/apiserver.local.config/certificates",
                                        "name": "apiservice-cert"
                                    },
                                    {
                                        "mountPath": "/tmp/k8s-webhook-server/serving-certs",
                                        "name": "webhook-cert"
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:8443",
                                    "--upstream=http://127.0.0.1:8080",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--logtostderr=true",
                                    "--allow-paths=/metrics",
                                    "--http2-disable"
                                ],
                                "env": [
                                    {
                                        "name": "ARGOCD_CLUSTER_CONFIG_NAMESPACES",
                                        "value": "openshift-gitops"
                                    },
                                    {
                                        "name": "OPERATOR_CONDITION_NAME",
                                        "value": "openshift-gitops-operator.v1.15.4"
                                    }
                                ],
                                "image": "registry.redhat.io/openshift4/ose-kube-rbac-proxy@sha256:56653df97e4498ecd67b9645d75e44f65c625594e312dbcf0f09937b57d76010",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "15Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "kube-rbac-proxy-tls",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/apiserver.local.config/certificates",
                                        "name": "apiservice-cert"
                                    },
                                    {
                                        "mountPath": "/tmp/k8s-webhook-server/serving-certs",
                                        "name": "webhook-cert"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true
                        },
                        "serviceAccount": "openshift-gitops-operator-controller-manager",
                        "serviceAccountName": "openshift-gitops-operator-controller-manager",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "name": "kube-rbac-proxy-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "kube-rbac-proxy-tls"
                                }
                            },
                            {
                                "name": "apiservice-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "tls.crt",
                                            "path": "apiserver.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "apiserver.key"
                                        }
                                    ],
                                    "secretName": "openshift-gitops-operator-controller-manager-service-cert"
                                }
                            },
                            {
                                "name": "webhook-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "tls.crt",
                                            "path": "tls.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "tls.key"
                                        }
                                    ],
                                    "secretName": "openshift-gitops-operator-controller-manager-service-cert"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:15:43Z",
                "generation": 1,
                "labels": {
                    "app": "openshift-pipelines-operator",
                    "name": "openshift-pipelines-operator",
                    "pod-template-hash": "7c6fcf5565"
                },
                "name": "openshift-pipelines-operator-7c6fcf5565",
                "namespace": "openshift-operators",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "openshift-pipelines-operator",
                        "uid": "d4b98473-0b7c-4498-b937-b6281ab39e0d"
                    }
                ],
                "resourceVersion": "29185",
                "uid": "87a572dd-76ca-4a2e-8dcc-297e60d471b3"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "name": "openshift-pipelines-operator",
                        "pod-template-hash": "7c6fcf5565"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "alm-examples": "[\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"ManualApprovalGate\",\n    \"metadata\": {\n      \"name\": \"manual-approval-gate\"\n    },\n    \"spec\": {\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"OpenShiftPipelinesAsCode\",\n    \"metadata\": {\n      \"name\": \"pipelines-as-code\"\n    },\n    \"spec\": {\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonAddon\",\n    \"metadata\": {\n      \"name\": \"addon\"\n    },\n    \"spec\": {\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonChain\",\n    \"metadata\": {\n      \"name\": \"chain\"\n    },\n    \"spec\": {\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonConfig\",\n    \"metadata\": {\n      \"name\": \"config\"\n    },\n    \"spec\": {\n      \"addon\": {\n        \"params\": [\n          {\n            \"name\": \"pipelineTemplates\",\n            \"value\": \"true\"\n          },\n          {\n            \"name\": \"resolverTasks\",\n            \"value\": \"true\"\n          },\n          {\n            \"name\": \"resolverStepActions\",\n            \"value\": \"true\"\n          },\n          {\n            \"name\": \"communityResolverTasks\",\n            \"value\": \"true\"\n          }\n        ]\n      },\n      \"params\": [\n        {\n          \"name\": \"createRbacResource\",\n          \"value\": \"true\"\n        },\n        {\n          \"name\": \"legacyPipelineRbac\",\n          \"value\": \"true\"\n        },\n        {\n          \"name\": \"createCABundleConfigMaps\",\n          \"value\": \"true\"\n        }\n      ],\n      \"profile\": \"all\",\n      \"pruner\": {\n        \"keep\": 100,\n        \"resources\": [\n          \"pipelinerun\",\n          \"taskrun\"\n        ],\n        \"schedule\": \"0 8 * * *\"\n      },\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonHub\",\n    \"metadata\": {\n      \"name\": \"hub\"\n    },\n    \"spec\": {\n      \"api\": {\n        \"catalogRefreshInterval\": \"30m\"\n      },\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonInstallerSet\",\n    \"metadata\": {\n      \"name\": \"foo\"\n    },\n    \"spec\": {\n      \"manifests\": []\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonPipeline\",\n    \"metadata\": {\n      \"name\": \"pipeline\"\n    },\n    \"spec\": {\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonPruner\",\n    \"metadata\": {\n      \"name\": \"pruner\"\n    },\n    \"spec\": {\n      \"disabled\": true,\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonResult\",\n    \"metadata\": {\n      \"name\": \"result\"\n    },\n    \"spec\": {\n      \"auth_disable\": true,\n      \"db_enable_auto_migration\": true,\n      \"db_host\": \"tekton-results-postgres-service.openshift-pipelines.svc.cluster.local\",\n      \"db_port\": 5432,\n      \"log_level\": \"debug\",\n      \"logging_pvc_name\": \"tekton-logs\",\n      \"logs_api\": true,\n      \"logs_buffer_size\": 32768,\n      \"logs_path\": \"/logs\",\n      \"logs_type\": \"File\",\n      \"prometheus_port\": 9090,\n      \"server_port\": 8080,\n      \"targetNamespace\": \"openshift-pipelines\",\n      \"tls_hostname_override\": \"tekton-results-api-service.openshift-pipelines.svc.cluster.local\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonTrigger\",\n    \"metadata\": {\n      \"name\": \"trigger\"\n    },\n    \"spec\": {\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  }\n]",
                            "capabilities": "Full Lifecycle",
                            "categories": "Developer Tools, Integration \u0026 Delivery",
                            "certified": "false",
                            "console.openshift.io/plugins": "[\"pipelines-console-plugin\"]",
                            "containerImage": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@",
                            "description": "Red Hat OpenShift Pipelines is a cloud-native CI/CD solution for building pipelines using Tekton concepts which run natively on OpenShift and Kubernetes.",
                            "features.operators.openshift.io/cnf": "false",
                            "features.operators.openshift.io/cni": "false",
                            "features.operators.openshift.io/csi": "false",
                            "features.operators.openshift.io/disconnected": "true",
                            "features.operators.openshift.io/fips-compliant": "true",
                            "features.operators.openshift.io/proxy-aware": "true",
                            "features.operators.openshift.io/tls-profiles": "false",
                            "features.operators.openshift.io/token-auth-aws": "false",
                            "features.operators.openshift.io/token-auth-azure": "false",
                            "features.operators.openshift.io/token-auth-gcp": "false",
                            "olm.operatorGroup": "global-operators",
                            "olm.operatorNamespace": "openshift-operators",
                            "olm.skipRange": "\u003e=1.20.0 \u003c5.0.5-806",
                            "olm.targetNamespaces": "",
                            "operatorframework.io/properties": "{\"properties\":[{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"ManualApprovalGate\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"OpenShiftPipelinesAsCode\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"SyncerService\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonAddon\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonChain\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonConfig\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonHub\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonInstallerSet\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonMulticlusterProxyAAE\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonPipeline\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonPruner\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonResult\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonScheduler\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonTrigger\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.package\",\"value\":{\"packageName\":\"openshift-pipelines-operator-rh\",\"version\":\"5.0.5-806\"}}]}",
                            "operators.openshift.io/valid-subscription": "[\"OpenShift Container Platform\", \"OpenShift Platform Plus\"]",
                            "operators.operatorframework.io/builder": "operator-sdk-v1.37.0",
                            "operators.operatorframework.io/internal-objects": "[\"tektoninstallersets.operator.tekton.dev\", \"tektonconfigs.operator.tekton.dev\",\"tektonpipelines.operator.tekton.dev\",\"tektontriggers.operator.tekton.dev\",\"tektonaddons.operator.tekton.dev\", \"tektonhubs.operator.tekton.dev\", \"tektonresults.operator.tekton.dev\", \"tektonchains.operator.tekton.dev\", \"openshiftpipelinesascodes.operator.tekton.dev\", \"manualapprovalgates.operator.tekton.dev\",\"tektonpruners.operator.tekton.dev\",\"tektonschedulers.operator.tekton.dev\",\"tektonmulticlusterproxyaaes.operator.tekton.dev\",\"syncerservices.operator.tekton.dev\"]",
                            "operators.operatorframework.io/project_layout": "unknown",
                            "repository": "https://github.com/tektoncd/operator",
                            "support": "Red Hat"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "openshift-pipelines-operator",
                            "name": "openshift-pipelines-operator",
                            "pod-template-hash": "7c6fcf5565"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "-controllers",
                                    "tektonconfig,tektonpipeline,tektontrigger,tektonhub,tektonchain,tektonaddon,tektonresult,openshiftpipelinesascode,manualapprovalgate,tektonpruner,tektonscheduler,tektonmulticlusterproxyaae,syncerservice",
                                    "-unique-process-name",
                                    "tekton-operator-lifecycle"
                                ],
                                "env": [
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "PLATFORM",
                                        "value": "openshift"
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "OPERATOR_NAME",
                                        "value": "redhat-openshift-pipelines-operator"
                                    },
                                    {
                                        "name": "IMAGE_PIPELINES_PROXY",
                                        "value": "quay.io/openshift-pipeline/pipelines-operator-proxy-rhel9@sha256:47e28bbb46adb9a5cd58229853437f022202fe6dc279a6a061b760f74ec785ce"
                                    },
                                    {
                                        "name": "IMAGE_JOB_PRUNER_TKN",
                                        "value": "quay.io/openshift-pipeline/pipelines-cli-tkn-rhel9@sha256:342c6e38aa28db63ffed2914585e08723314a91d4fc5ce8a1cc9367b8e99eb36"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "tekton.dev/operator"
                                    },
                                    {
                                        "name": "VERSION",
                                        "value": "5.0.5-806"
                                    },
                                    {
                                        "name": "AUTOINSTALL_COMPONENTS",
                                        "value": "false"
                                    },
                                    {
                                        "name": "DEFAULT_TARGET_NAMESPACE",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "DEFAULT_TARGET_NAMESPACE",
                                                "name": "tekton-config-defaults"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "tekton-config-observability"
                                    },
                                    {
                                        "name": "CONFIG_LEADERELECTION_NAME",
                                        "value": "tekton-operator-controller-config-leader-election"
                                    },
                                    {
                                        "name": "IMAGE_HUB_TEKTON_HUB_DB",
                                        "value": "registry.redhat.io/rhel9/postgresql-15@sha256:90ec347a35ab8a5d530c8d09f5347b13cc71df04f3b994bfa8b1a409b1171d59"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_PARAM_BUILDER_IMAGE",
                                        "value": "registry.redhat.io/rhel9/buildah@sha256:0e29338c43fbf9847f2060d7685b872594e3b39bfcf56278f470279089e48048"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_PARAM_KN_IMAGE",
                                        "value": "registry.redhat.io/openshift-serverless-1/kn-client-kn-rhel9@sha256:e213fd263772c5286aa560132cd8c043cf2946f04f96eedf18cd240859bd8a48"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_MVN_SETTINGS",
                                        "value": "registry.redhat.io/ubi9/ubi-minimal@sha256:61d5ad475048c2e655cd46d0a55dfeaec182cc3faa6348cb85989a7c9e196483"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_SKOPEO_COPY",
                                        "value": "registry.redhat.io/rhel9/skopeo@sha256:3c1d54513adc2998955731da23ec354a15942fa7dd2e37dc818f85a947f400d4"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_GENERATE",
                                        "value": "registry.redhat.io/source-to-image/source-to-image-rhel9@sha256:bc10e7d6122ede5cf4f2882c200447683255465a1080e826761e90bfb983506e"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_GEN_ENV_FILE",
                                        "value": "registry.redhat.io/source-to-image/source-to-image-rhel9@sha256:bc10e7d6122ede5cf4f2882c200447683255465a1080e826761e90bfb983506e"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_PARAM_MAVEN_IMAGE",
                                        "value": "registry.redhat.io/ubi9/openjdk-17@sha256:d334d3c36867a1eef7daa598af10b5f620394ca0234b12e71b8b7e99bda9224e"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_OC",
                                        "value": "image-registry.openshift-image-registry.svc:5000/openshift/cli:latest"
                                    },
                                    {
                                        "name": "IMAGE_PIPELINES_TEKTON_PIPELINES_CONTROLLER",
                                        "value": "quay.io/openshift-pipeline/pipelines-controller-rhel9@sha256:0d3951e89c79b2ffedd410f230fb90f495ce54971cdd430d48ae95b109c4be51"
                                    },
                                    {
                                        "name": "IMAGE_PIPELINES_WEBHOOK",
                                        "value": "quay.io/openshift-pipeline/pipelines-webhook-rhel9@sha256:431fa1781faf88012bafd33b220ddf32b09e136fc571d8c6fdfccab804c4da3a"
                                    },
                                    {
                                        "name": "IMAGE_PIPELINES_CONTROLLER",
                                        "value": "quay.io/openshift-pipeline/pipelines-resolvers-rhel9@sha256:6a0977a2c1bff6eccccb6c0f43346e94c15e5a8f4efa04c86c07b16b034cadbe"
                                    },
                                    {
                                        "name": "IMAGE_PIPELINES_TEKTON_EVENTS_CONTROLLER",
                                        "value": "quay.io/openshift-pipeline/pipelines-events-rhel9@sha256:a47b316c25d4aab4fc205c28316a16ebce4c0682d02c8e397b7da7e69da39787"
                                    },
                                    {
                                        "name": "IMAGE_PIPELINES_ARG__ENTRYPOINT_IMAGE",
                                        "value": "quay.io/openshift-pipeline/pipelines-entrypoint-rhel9@sha256:897b6c837949216304d30c2ae0c31e8e52ae3420bd06c476a974b1ebe0b2e629"
                                    },
                                    {
                                        "name": "IMAGE_PIPELINES_ARG__GIT_IMAGE",
                                        "value": "quay.io/openshift-pipeline/pipelines-git-init-rhel9@sha256:fe655a00a6fe9f590272febd7008728dcba1f25d15462f02e51f33edfc748980"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_PARAM_GITINITIMAGE",
                                        "value": "quay.io/openshift-pipeline/pipelines-git-init-rhel9@sha256:fe655a00a6fe9f590272febd7008728dcba1f25d15462f02e51f33edfc748980"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_GIT_RUN",
                                        "value": "quay.io/openshift-pipeline/pipelines-git-init-rhel9@sha256:fe655a00a6fe9f590272febd7008728dcba1f25d15462f02e51f33edfc748980"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_REPORT",
                                        "value": "quay.io/openshift-pipeline/pipelines-git-init-rhel9@sha256:fe655a00a6fe9f590272febd7008728dcba1f25d15462f02e51f33edfc748980"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_GIT_CLONE",
                                        "value": "quay.io/openshift-pipeline/pipelines-git-init-rhel9@sha256:fe655a00a6fe9f590272febd7008728dcba1f25d15462f02e51f33edfc748980"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_PREPARE_AND_RUN",
                                        "value": "quay.io/openshift-pipeline/pipelines-git-init-rhel9@sha256:fe655a00a6fe9f590272febd7008728dcba1f25d15462f02e51f33edfc748980"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_CACHE_UPLOAD",
                                        "value": "quay.io/openshift-pipeline/pipelines-cache-rhel9@sha256:a68fd39499357f1ab21ea416a1a71b317d36002677ce0083b3676f91c4b69487"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_CACHE_FETCH",
                                        "value": "quay.io/openshift-pipeline/pipelines-cache-rhel9@sha256:a68fd39499357f1ab21ea416a1a71b317d36002677ce0083b3676f91c4b69487"
                                    },
                                    {
                                        "name": "IMAGE_PIPELINES_ARG__WORKINGDIRINIT_IMAGE",
                                        "value": "quay.io/openshift-pipeline/pipelines-workingdirinit-rhel9@sha256:858493470190ab600f3153f6e2d8bdbd9ae74736512a1a4c0edbd6c8dfeada4a"
                                    },
                                    {
                                        "name": "IMAGE_PIPELINES_ARG__SIDECARLOGRESULTS_IMAGE",
                                        "value": "quay.io/openshift-pipeline/pipelines-sidecarlogresults-rhel9@sha256:46cc729642ad2aaef01cc07cde8ecf33ee5e64c84837805f6efbba45c709b08b"
                                    },
                                    {
                                        "name": "IMAGE_PIPELINES_ARG__NOP_IMAGE",
                                        "value": "quay.io/openshift-pipeline/pipelines-nop-rhel9@sha256:395271295255bb03ee76a5210279a4013b70b0972d04c82ac50763cd6868f990"
                                    },
                                    {
                                        "name": "IMAGE_PIPELINES_ARG__SHELL_IMAGE",
                                        "value": "quay.io/openshift-pipeline/pipelines-entrypoint-rhel9@sha256:897b6c837949216304d30c2ae0c31e8e52ae3420bd06c476a974b1ebe0b2e629"
                                    },
                                    {
                                        "name": "IMAGE_TRIGGERS_TEKTON_TRIGGERS_CONTROLLER",
                                        "value": "quay.io/openshift-pipeline/pipelines-triggers-controller-rhel9@sha256:599724370cb0d5844a5719ef2da6885014f6c8e597d6539d1fecf1f528517959"
                                    },
                                    {
                                        "name": "IMAGE_TRIGGERS_WEBHOOK",
                                        "value": "quay.io/openshift-pipeline/pipelines-triggers-webhook-rhel9@sha256:ea481d2b778b145b8a7184d1564bd02befa7a4eee152329d05315e2ff9181ff3"
                                    },
                                    {
                                        "name": "IMAGE_TRIGGERS_TEKTON_TRIGGERS_CORE_INTERCEPTORS",
                                        "value": "quay.io/openshift-pipeline/pipelines-triggers-core-interceptors-rhel9@sha256:ecc4ff3814e912326c100ded0fa79a49e8b0706e830efcd06d7f1e8410ac8eb4"
                                    },
                                    {
                                        "name": "IMAGE_TRIGGERS_ARG__EL_IMAGE",
                                        "value": "quay.io/openshift-pipeline/pipelines-triggers-eventlistenersink-rhel9@sha256:87d66a6582beff7f95f7843a9e454069d6cecca1f68c350d3e9af28e86825b71"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_KN",
                                        "value": "registry.redhat.io/openshift-serverless-1/kn-client-kn-rhel9@sha256:e213fd263772c5286aa560132cd8c043cf2946f04f96eedf18cd240859bd8a48"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_OPC",
                                        "value": "quay.io/openshift-pipeline/pipelines-opc-rhel9@sha256:a2d1cc9bb82c8580fbdce8a02a03fea2cb3370164861fe4d41bbc0fd0cf6dc7a"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_SKOPEO_RESULTS",
                                        "value": "registry.redhat.io/rhel9/skopeo@sha256:3c1d54513adc2998955731da23ec354a15942fa7dd2e37dc818f85a947f400d4"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_BUILD",
                                        "value": "registry.redhat.io/rhel9/buildah@sha256:0e29338c43fbf9847f2060d7685b872594e3b39bfcf56278f470279089e48048"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_S2I_BUILD",
                                        "value": "registry.redhat.io/rhel9/buildah@sha256:0e29338c43fbf9847f2060d7685b872594e3b39bfcf56278f470279089e48048"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_S2I_GENERATE",
                                        "value": "registry.redhat.io/source-to-image/source-to-image-rhel9@sha256:bc10e7d6122ede5cf4f2882c200447683255465a1080e826761e90bfb983506e"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_LOAD_SCRIPTS",
                                        "value": "registry.redhat.io/ubi9/ubi-minimal@sha256:61d5ad475048c2e655cd46d0a55dfeaec182cc3faa6348cb85989a7c9e196483"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_MAVEN_GENERATE",
                                        "value": "registry.redhat.io/ubi9/ubi-minimal@sha256:61d5ad475048c2e655cd46d0a55dfeaec182cc3faa6348cb85989a7c9e196483"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_PREPARE",
                                        "value": "registry.redhat.io/ubi9/ubi-minimal@sha256:61d5ad475048c2e655cd46d0a55dfeaec182cc3faa6348cb85989a7c9e196483"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_PARAM_TKN_IMAGE",
                                        "value": "quay.io/openshift-pipeline/pipelines-cli-tkn-rhel9@sha256:342c6e38aa28db63ffed2914585e08723314a91d4fc5ce8a1cc9367b8e99eb36"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_TKN",
                                        "value": "quay.io/openshift-pipeline/pipelines-cli-tkn-rhel9@sha256:342c6e38aa28db63ffed2914585e08723314a91d4fc5ce8a1cc9367b8e99eb36"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_TKN_CLI_SERVE",
                                        "value": "quay.io/openshift-pipeline/pipelines-serve-tkn-cli-rhel9@sha256:b5a16892e0c7a4efeeb184cf19b4dacdeea2a491c21474fa98f8084bbf35ff8c"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_TKN_CLI_SERVE_INIT_CONFIG",
                                        "value": "quay.io/openshift-pipeline/pipelines-serve-tkn-cli-rhel9@sha256:b5a16892e0c7a4efeeb184cf19b4dacdeea2a491c21474fa98f8084bbf35ff8c"
                                    },
                                    {
                                        "name": "IMAGE_CHAINS_TEKTON_CHAINS_CONTROLLER",
                                        "value": "quay.io/openshift-pipeline/pipelines-chains-controller-rhel9@sha256:affc4c250d0f7651f34ea99654241084b4da28aabc0637f056e968e11cb452f6"
                                    },
                                    {
                                        "name": "IMAGE_RESULTS_POSTGRES",
                                        "value": "registry.redhat.io/rhel9/postgresql-15@sha256:90ec347a35ab8a5d530c8d09f5347b13cc71df04f3b994bfa8b1a409b1171d59"
                                    },
                                    {
                                        "name": "IMAGE_HUB_TEKTON_HUB_DB_MIGRATION",
                                        "value": "quay.io/openshift-pipeline/pipelines-hub-db-migration-rhel9@sha256:8d4909089723dfd14495719a65a57a9b2407b87a06022c992ee5fcc199f7888e"
                                    },
                                    {
                                        "name": "IMAGE_HUB_TEKTON_HUB_API",
                                        "value": "quay.io/openshift-pipeline/pipelines-hub-api-rhel9@sha256:b8395f0a7a4055530816430e023bb6c5677861304796a9cbb769a4919ccef91a"
                                    },
                                    {
                                        "name": "IMAGE_HUB_TEKTON_HUB_UI",
                                        "value": "quay.io/openshift-pipeline/pipelines-hub-ui-rhel9@sha256:522fb05761a3671ca0cbf46d7aac89e1ce99feb6ffab74bd00cf743b9c42ffe5"
                                    },
                                    {
                                        "name": "IMAGE_MAG_TEKTON_TASKGROUP_CONTROLLER",
                                        "value": "quay.io/openshift-pipeline/pipelines-manual-approval-gate-controller-rhel9@sha256:fab86ec1dfefdc4e6e546aae67c920c558d6adcba640ddc4e05a925ea71898f6"
                                    },
                                    {
                                        "name": "IMAGE_MAG_MANUAL_APPROVAL",
                                        "value": "quay.io/openshift-pipeline/pipelines-manual-approval-gate-webhook-rhel9@sha256:61480b73806b986c7bc55683425a16e730070146ce83ffdd19a6209764fed939"
                                    },
                                    {
                                        "name": "IMAGE_PRUNER_CONTROLLER",
                                        "value": "quay.io/openshift-pipeline/pipelines-pruner-controller-rhel9@sha256:00aed5711ab1c21b520b277de3bebac0bfc7a281059530f5be6d576fb60e13d1"
                                    },
                                    {
                                        "name": "IMAGE_SCHEDULER_MANAGER",
                                        "value": "quay.io/openshift-pipeline/pipelines-scheduler-rhel9@sha256:4b98fb176eed5b6dca8b19514cca9af7bfcc9b7482f8787ce6c85c01c29b437a"
                                    },
                                    {
                                        "name": "IMAGE_SCHEDULER_WEBHOOK",
                                        "value": "quay.io/openshift-pipeline/pipelines-scheduler-rhel9@sha256:4b98fb176eed5b6dca8b19514cca9af7bfcc9b7482f8787ce6c85c01c29b437a"
                                    },
                                    {
                                        "name": "IMAGE_MULTICLUSTERPROXYAAE_PROXY_AAE",
                                        "value": "quay.io/openshift-pipeline/pipelines-multicluster-proxy-aae-rhel9@sha256:cd39910d567dbde465b190f9acbcb39ec4f785ef421e50066f8c0f876e3676f3"
                                    },
                                    {
                                        "name": "IMAGE_SYNCER_SERVICE_WORKLOAD_CONTROLLER",
                                        "value": "quay.io/openshift-pipeline/pipelines-syncer-service-rhel9@sha256:3f4f8627d7a573c5ebb2c953320fd7a7f2e8beeb5179dc47467ddcd7cbca896f"
                                    },
                                    {
                                        "name": "IMAGE_PRUNER_WEBHOOK",
                                        "value": "quay.io/openshift-pipeline/pipelines-pruner-webhook-rhel9@sha256:6aec99e27529748c28644a469e244d591b07d8b0d3f6667f29e19b3dbc4f432d"
                                    },
                                    {
                                        "name": "IMAGE_PAC_PAC_CONTROLLER",
                                        "value": "quay.io/openshift-pipeline/pipelines-pipelines-as-code-controller-rhel9@sha256:ea6105f2681dcefeb9e03fd85cfe867d57b850d51a58110b74390cb6951e47c7"
                                    },
                                    {
                                        "name": "IMAGE_PAC_PAC_WEBHOOK",
                                        "value": "quay.io/openshift-pipeline/pipelines-pipelines-as-code-webhook-rhel9@sha256:946903b17efbf012aefe1a128c5c5bda7f0ca4c44ce5601dc3edf350c388e5a7"
                                    },
                                    {
                                        "name": "IMAGE_PAC_PAC_WATCHER",
                                        "value": "quay.io/openshift-pipeline/pipelines-pipelines-as-code-watcher-rhel9@sha256:0a78dbdde188a1ad1fce6e78350bdbc0524db257f47cdf16480128c4d1809102"
                                    },
                                    {
                                        "name": "IMAGE_PAC_PAC_CLI",
                                        "value": "quay.io/openshift-pipeline/pipelines-pipelines-as-code-cli-rhel9@sha256:b9a46678df7f06ba7f2bb97007f949970ca4272e86d4f249f8c155a7c8f1ca58"
                                    },
                                    {
                                        "name": "IMAGE_RESULTS_WATCHER",
                                        "value": "quay.io/openshift-pipeline/pipelines-results-watcher-rhel9@sha256:8bad4a81e8fbe47228330c888308b616f79ebd70d4d11869215e279f70d7a4a2"
                                    },
                                    {
                                        "name": "IMAGE_RESULTS_API",
                                        "value": "quay.io/openshift-pipeline/pipelines-results-api-rhel9@sha256:2be6730b49e09c5ee8026ba5c2c0e9570eef59c060d14b3dd93633565eb47f2d"
                                    },
                                    {
                                        "name": "IMAGE_RESULTS_RETENTION_POLICY_AGENT",
                                        "value": "quay.io/openshift-pipeline/pipelines-results-retention-policy-agent-rhel9@sha256:833e2fa93ca772b4c8a0e962aa23e9e663914c83d16406fdcc89ac2af3921fa9"
                                    },
                                    {
                                        "name": "IMAGE_ADDONS_MAVEN_GOALS",
                                        "value": "registry.redhat.io/ubi9/openjdk-17@sha256:d334d3c36867a1eef7daa598af10b5f620394ca0234b12e71b8b7e99bda9224e"
                                    },
                                    {
                                        "name": "IMAGE_PIPELINES_CONSOLE_PLUGIN",
                                        "value": "quay.io/openshift-pipeline/pipelines-console-plugin-rhel9@sha256:bb058b3de08a97a38b1eb1c65df636dcb0632194c30c4d57569762097f9b6b86"
                                    },
                                    {
                                        "name": "OPERATOR_CONDITION_NAME",
                                        "value": "openshift-pipelines-operator-rh.v5.0.5-806"
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-rhel9-operator@sha256:0bf56f0e754cdadcefaef95fe648ac86954cf8b9de5a2b48c83a61e850cc0d9c",
                                "imagePullPolicy": "Always",
                                "name": "openshift-pipelines-operator-lifecycle",
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            },
                            {
                                "args": [
                                    "-controllers",
                                    "tektoninstallerset",
                                    "-unique-process-name",
                                    "tekton-operator-cluster-operations"
                                ],
                                "env": [
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "OPERATOR_NAME",
                                        "value": "redhat-openshift-pipelines-operator"
                                    },
                                    {
                                        "name": "PROFILING_PORT",
                                        "value": "9009"
                                    },
                                    {
                                        "name": "VERSION",
                                        "value": "devel"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "tekton.dev/operator"
                                    },
                                    {
                                        "name": "CONFIG_LEADERELECTION_NAME",
                                        "value": "tekton-operator-controller-config-leader-election"
                                    },
                                    {
                                        "name": "AUTOINSTALL_COMPONENTS",
                                        "value": "false"
                                    },
                                    {
                                        "name": "OPERATOR_CONDITION_NAME",
                                        "value": "openshift-pipelines-operator-rh.v5.0.5-806"
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-rhel9-operator@sha256:0bf56f0e754cdadcefaef95fe648ac86954cf8b9de5a2b48c83a61e850cc0d9c",
                                "imagePullPolicy": "Always",
                                "name": "openshift-pipelines-operator-cluster-operations",
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "openshift-pipelines-operator",
                        "serviceAccountName": "openshift-pipelines-operator",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:15:43Z",
                "generation": 1,
                "labels": {
                    "app": "tekton-operator",
                    "name": "tekton-operator-webhook",
                    "pod-template-hash": "7559d6f94f"
                },
                "name": "tekton-operator-webhook-7559d6f94f",
                "namespace": "openshift-operators",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-operator-webhook",
                        "uid": "32d857e4-5633-4c2e-941b-f42cd033c464"
                    }
                ],
                "resourceVersion": "29083",
                "uid": "69345a86-ce5c-475a-8dd9-d3f3fb5d6a0c"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "name": "tekton-operator-webhook",
                        "pod-template-hash": "7559d6f94f"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "alm-examples": "[\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"ManualApprovalGate\",\n    \"metadata\": {\n      \"name\": \"manual-approval-gate\"\n    },\n    \"spec\": {\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"OpenShiftPipelinesAsCode\",\n    \"metadata\": {\n      \"name\": \"pipelines-as-code\"\n    },\n    \"spec\": {\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonAddon\",\n    \"metadata\": {\n      \"name\": \"addon\"\n    },\n    \"spec\": {\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonChain\",\n    \"metadata\": {\n      \"name\": \"chain\"\n    },\n    \"spec\": {\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonConfig\",\n    \"metadata\": {\n      \"name\": \"config\"\n    },\n    \"spec\": {\n      \"addon\": {\n        \"params\": [\n          {\n            \"name\": \"pipelineTemplates\",\n            \"value\": \"true\"\n          },\n          {\n            \"name\": \"resolverTasks\",\n            \"value\": \"true\"\n          },\n          {\n            \"name\": \"resolverStepActions\",\n            \"value\": \"true\"\n          },\n          {\n            \"name\": \"communityResolverTasks\",\n            \"value\": \"true\"\n          }\n        ]\n      },\n      \"params\": [\n        {\n          \"name\": \"createRbacResource\",\n          \"value\": \"true\"\n        },\n        {\n          \"name\": \"legacyPipelineRbac\",\n          \"value\": \"true\"\n        },\n        {\n          \"name\": \"createCABundleConfigMaps\",\n          \"value\": \"true\"\n        }\n      ],\n      \"profile\": \"all\",\n      \"pruner\": {\n        \"keep\": 100,\n        \"resources\": [\n          \"pipelinerun\",\n          \"taskrun\"\n        ],\n        \"schedule\": \"0 8 * * *\"\n      },\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonHub\",\n    \"metadata\": {\n      \"name\": \"hub\"\n    },\n    \"spec\": {\n      \"api\": {\n        \"catalogRefreshInterval\": \"30m\"\n      },\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonInstallerSet\",\n    \"metadata\": {\n      \"name\": \"foo\"\n    },\n    \"spec\": {\n      \"manifests\": []\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonPipeline\",\n    \"metadata\": {\n      \"name\": \"pipeline\"\n    },\n    \"spec\": {\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonPruner\",\n    \"metadata\": {\n      \"name\": \"pruner\"\n    },\n    \"spec\": {\n      \"disabled\": true,\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonResult\",\n    \"metadata\": {\n      \"name\": \"result\"\n    },\n    \"spec\": {\n      \"auth_disable\": true,\n      \"db_enable_auto_migration\": true,\n      \"db_host\": \"tekton-results-postgres-service.openshift-pipelines.svc.cluster.local\",\n      \"db_port\": 5432,\n      \"log_level\": \"debug\",\n      \"logging_pvc_name\": \"tekton-logs\",\n      \"logs_api\": true,\n      \"logs_buffer_size\": 32768,\n      \"logs_path\": \"/logs\",\n      \"logs_type\": \"File\",\n      \"prometheus_port\": 9090,\n      \"server_port\": 8080,\n      \"targetNamespace\": \"openshift-pipelines\",\n      \"tls_hostname_override\": \"tekton-results-api-service.openshift-pipelines.svc.cluster.local\"\n    }\n  },\n  {\n    \"apiVersion\": \"operator.tekton.dev/v1alpha1\",\n    \"kind\": \"TektonTrigger\",\n    \"metadata\": {\n      \"name\": \"trigger\"\n    },\n    \"spec\": {\n      \"targetNamespace\": \"openshift-pipelines\"\n    }\n  }\n]",
                            "capabilities": "Full Lifecycle",
                            "categories": "Developer Tools, Integration \u0026 Delivery",
                            "certified": "false",
                            "console.openshift.io/plugins": "[\"pipelines-console-plugin\"]",
                            "containerImage": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@",
                            "description": "Red Hat OpenShift Pipelines is a cloud-native CI/CD solution for building pipelines using Tekton concepts which run natively on OpenShift and Kubernetes.",
                            "features.operators.openshift.io/cnf": "false",
                            "features.operators.openshift.io/cni": "false",
                            "features.operators.openshift.io/csi": "false",
                            "features.operators.openshift.io/disconnected": "true",
                            "features.operators.openshift.io/fips-compliant": "true",
                            "features.operators.openshift.io/proxy-aware": "true",
                            "features.operators.openshift.io/tls-profiles": "false",
                            "features.operators.openshift.io/token-auth-aws": "false",
                            "features.operators.openshift.io/token-auth-azure": "false",
                            "features.operators.openshift.io/token-auth-gcp": "false",
                            "olm.operatorGroup": "global-operators",
                            "olm.operatorNamespace": "openshift-operators",
                            "olm.skipRange": "\u003e=1.20.0 \u003c5.0.5-806",
                            "olm.targetNamespaces": "",
                            "operatorframework.io/properties": "{\"properties\":[{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"ManualApprovalGate\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"OpenShiftPipelinesAsCode\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"SyncerService\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonAddon\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonChain\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonConfig\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonHub\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonInstallerSet\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonMulticlusterProxyAAE\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonPipeline\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonPruner\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonResult\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonScheduler\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"operator.tekton.dev\",\"kind\":\"TektonTrigger\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.package\",\"value\":{\"packageName\":\"openshift-pipelines-operator-rh\",\"version\":\"5.0.5-806\"}}]}",
                            "operators.openshift.io/valid-subscription": "[\"OpenShift Container Platform\", \"OpenShift Platform Plus\"]",
                            "operators.operatorframework.io/builder": "operator-sdk-v1.37.0",
                            "operators.operatorframework.io/internal-objects": "[\"tektoninstallersets.operator.tekton.dev\", \"tektonconfigs.operator.tekton.dev\",\"tektonpipelines.operator.tekton.dev\",\"tektontriggers.operator.tekton.dev\",\"tektonaddons.operator.tekton.dev\", \"tektonhubs.operator.tekton.dev\", \"tektonresults.operator.tekton.dev\", \"tektonchains.operator.tekton.dev\", \"openshiftpipelinesascodes.operator.tekton.dev\", \"manualapprovalgates.operator.tekton.dev\",\"tektonpruners.operator.tekton.dev\",\"tektonschedulers.operator.tekton.dev\",\"tektonmulticlusterproxyaaes.operator.tekton.dev\",\"syncerservices.operator.tekton.dev\"]",
                            "operators.operatorframework.io/project_layout": "unknown",
                            "repository": "https://github.com/tektoncd/operator",
                            "support": "Red Hat"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "tekton-operator",
                            "name": "tekton-operator-webhook",
                            "pod-template-hash": "7559d6f94f"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "WEBHOOK_POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging"
                                    },
                                    {
                                        "name": "CONFIG_LEADERELECTION_NAME",
                                        "value": "tekton-operator-webhook-config-leader-election"
                                    },
                                    {
                                        "name": "WEBHOOK_SERVICE_NAME",
                                        "value": "tekton-operator-webhook"
                                    },
                                    {
                                        "name": "WEBHOOK_SECRET_NAME",
                                        "value": "tekton-operator-webhook-certs"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "tekton.dev/operator"
                                    },
                                    {
                                        "name": "PLATFORM",
                                        "value": "openshift"
                                    },
                                    {
                                        "name": "AUTOINSTALL_COMPONENTS",
                                        "value": "false"
                                    },
                                    {
                                        "name": "OPERATOR_CONDITION_NAME",
                                        "value": "openshift-pipelines-operator-rh.v5.0.5-806"
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-operator-webhook-rhel9@sha256:e7eec141fd666848a599284bdb6e935785d19530b67a50c6cb0e5c1bed637bf0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "tekton-operator-webhook",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https-webhook",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "openshift-pipelines-operator",
                        "serviceAccountName": "openshift-pipelines-operator",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/sync-wave": "0",
                    "argocd.argoproj.io/tracking-id": "pipeline-service-in-cluster-local:apps/Deployment:openshift-pipelines/pipeline-metrics-exporter",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:15:06Z",
                "generation": 1,
                "labels": {
                    "app": "pipeline-metrics-exporter",
                    "pod-template-hash": "67ffb9cd8b"
                },
                "name": "pipeline-metrics-exporter-67ffb9cd8b",
                "namespace": "openshift-pipelines",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "pipeline-metrics-exporter",
                        "uid": "a75def70-0092-42fc-a513-29e799a42231"
                    }
                ],
                "resourceVersion": "27371",
                "uid": "63c2dea2-0dff-4247-8bcd-2452dedf4c8a"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "pipeline-metrics-exporter",
                        "pod-template-hash": "67ffb9cd8b"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "pipeline-metrics-exporter",
                            "pod-template-hash": "67ffb9cd8b"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "-pprof-address",
                                    "6060",
                                    "-zap-log-level=6"
                                ],
                                "image": "quay.io/konflux-ci/pipeline-service-exporter:9d2439c8a77d2ce0527cc5aea3fc6561b7671b48",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "pipeline-metrics-exporter",
                                "ports": [
                                    {
                                        "containerPort": 9117,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "250m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "pipeline-service-exporter",
                        "serviceAccountName": "pipeline-service-exporter",
                        "terminationGracePeriodSeconds": 30
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:18:34Z",
                "generation": 1,
                "labels": {
                    "app": "pipelines-as-code-controller",
                    "app.kubernetes.io/component": "controller",
                    "app.kubernetes.io/instance": "default",
                    "app.kubernetes.io/name": "controller",
                    "app.kubernetes.io/part-of": "pipelines-as-code",
                    "app.kubernetes.io/version": "v0.43.0",
                    "operator.tekton.dev/deployment-spec-applied-hash": "f910749d42adb072202b89b8555de5da",
                    "pod-template-hash": "6b988b7dd"
                },
                "name": "pipelines-as-code-controller-6b988b7dd",
                "namespace": "openshift-pipelines",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "pipelines-as-code-controller",
                        "uid": "1f83323f-3178-43c8-b9f6-50e721a035ea"
                    }
                ],
                "resourceVersion": "36331",
                "uid": "907d19b4-b936-405d-92ed-f42b83d9dede"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "controller",
                        "app.kubernetes.io/instance": "default",
                        "app.kubernetes.io/name": "controller",
                        "app.kubernetes.io/part-of": "pipelines-as-code",
                        "pod-template-hash": "6b988b7dd"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "pipelines-as-code-controller",
                            "app.kubernetes.io/component": "controller",
                            "app.kubernetes.io/instance": "default",
                            "app.kubernetes.io/name": "controller",
                            "app.kubernetes.io/part-of": "pipelines-as-code",
                            "app.kubernetes.io/version": "v0.43.0",
                            "operator.tekton.dev/deployment-spec-applied-hash": "f910749d42adb072202b89b8555de5da",
                            "pod-template-hash": "6b988b7dd"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "/ko-app/pipelines-as-code-controller"
                                ],
                                "env": [
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "pac-config-logging"
                                    },
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    },
                                    {
                                        "name": "K_METRICS_CONFIG",
                                        "value": "{\"Domain\":\"pipelinesascode.tekton.dev/controller\",\"Component\":\"pac_controller\",\"PrometheusPort\":9090,\"ConfigMap\":{\"name\":\"pipelines-as-code-config-observability\"}}"
                                    },
                                    {
                                        "name": "K_SINK_TIMEOUT",
                                        "value": "30"
                                    },
                                    {
                                        "name": "K_TRACING_CONFIG",
                                        "value": "{\"backend\":\"prometheus\",\"debug\":\"false\",\"sample-rate\":\"0\"}"
                                    },
                                    {
                                        "name": "PAC_CONTROLLER_CONFIGMAP",
                                        "value": "pipelines-as-code"
                                    },
                                    {
                                        "name": "PAC_CONTROLLER_LABEL",
                                        "value": "default"
                                    },
                                    {
                                        "name": "PAC_CONTROLLER_SECRET",
                                        "value": "pipelines-as-code-secret"
                                    },
                                    {
                                        "name": "SSL_CERT_DIR",
                                        "value": "/tekton-custom-certs:/etc/ssl/certs:/etc/pki/tls/certs"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "TLS_CERT",
                                        "value": "cert"
                                    },
                                    {
                                        "name": "TLS_KEY",
                                        "value": "key"
                                    },
                                    {
                                        "name": "TLS_SECRET_NAME",
                                        "value": "pipelines-as-code-tls-secret"
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-pipelines-as-code-controller-rhel9@sha256:ea6105f2681dcefeb9e03fd85cfe867d57b850d51a58110b74390cb6951e47c7",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/live",
                                        "port": "api",
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 15,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "pac-controller",
                                "ports": [
                                    {
                                        "containerPort": 8082,
                                        "name": "api",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9090,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/live",
                                        "port": "api",
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 15,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/pipelines-as-code/tls",
                                        "name": "tls",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/tekton-custom-certs/ca-bundle.crt",
                                        "name": "config-trusted-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "ca-bundle.crt"
                                    },
                                    {
                                        "mountPath": "/tekton-custom-certs/service-ca.crt",
                                        "name": "config-service-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "service-ca.crt"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "config-trusted-system-cabundle-volume",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "pipelines-as-code-controller",
                        "serviceAccountName": "pipelines-as-code-controller",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "pipelines-as-code-tls-secret"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "ca-bundle.crt"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "service-ca.crt",
                                            "path": "service-ca.crt"
                                        }
                                    ],
                                    "name": "config-service-cabundle"
                                },
                                "name": "config-service-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-system-cabundle-volume"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:18:34Z",
                "generation": 1,
                "labels": {
                    "app": "pipelines-as-code-watcher",
                    "app.kubernetes.io/component": "watcher",
                    "app.kubernetes.io/instance": "default",
                    "app.kubernetes.io/name": "watcher",
                    "app.kubernetes.io/part-of": "pipelines-as-code",
                    "app.kubernetes.io/version": "v0.43.0",
                    "operator.tekton.dev/deployment-spec-applied-hash": "6563a2b6f606702390c85c84dd82bb09",
                    "pod-template-hash": "69b794d878"
                },
                "name": "pipelines-as-code-watcher-69b794d878",
                "namespace": "openshift-pipelines",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "pipelines-as-code-watcher",
                        "uid": "cbfe3186-9eb5-4df4-a387-88ce7c1899b6"
                    }
                ],
                "resourceVersion": "36685",
                "uid": "c2b1d313-4b21-4575-b446-e50d732e043d"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "watcher",
                        "app.kubernetes.io/instance": "default",
                        "app.kubernetes.io/name": "watcher",
                        "app.kubernetes.io/part-of": "pipelines-as-code",
                        "pod-template-hash": "69b794d878"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "pipelines-as-code-watcher",
                            "app.kubernetes.io/component": "watcher",
                            "app.kubernetes.io/instance": "default",
                            "app.kubernetes.io/name": "watcher",
                            "app.kubernetes.io/part-of": "pipelines-as-code",
                            "app.kubernetes.io/version": "v0.43.0",
                            "operator.tekton.dev/deployment-spec-applied-hash": "6563a2b6f606702390c85c84dd82bb09",
                            "pod-template-hash": "69b794d878"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "/ko-app/pipelines-as-code-watcher"
                                ],
                                "env": [
                                    {
                                        "name": "CONFIG_LEADERELECTION_NAME",
                                        "value": "pac-watcher-config-leader-election"
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "pac-config-logging"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "pipelines-as-code-config-observability"
                                    },
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "tekton.dev/pipelinesascode"
                                    },
                                    {
                                        "name": "SSL_CERT_DIR",
                                        "value": "/tekton-custom-certs:/etc/ssl/certs:/etc/pki/tls/certs"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-pipelines-as-code-watcher-rhel9@sha256:0a78dbdde188a1ad1fce6e78350bdbc0524db257f47cdf16480128c4d1809102",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/live",
                                        "port": "probes",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "pac-watcher",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "probes",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9090,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/live",
                                        "port": "probes",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tekton-custom-certs/ca-bundle.crt",
                                        "name": "config-trusted-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "ca-bundle.crt"
                                    },
                                    {
                                        "mountPath": "/tekton-custom-certs/service-ca.crt",
                                        "name": "config-service-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "service-ca.crt"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "config-trusted-system-cabundle-volume",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "pipelines-as-code-watcher",
                        "serviceAccountName": "pipelines-as-code-watcher",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "ca-bundle.crt"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "service-ca.crt",
                                            "path": "service-ca.crt"
                                        }
                                    ],
                                    "name": "config-service-cabundle"
                                },
                                "name": "config-service-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-system-cabundle-volume"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 1,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:18:34Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "webhook",
                    "app.kubernetes.io/instance": "default",
                    "app.kubernetes.io/name": "webhook",
                    "app.kubernetes.io/part-of": "pipelines-as-code",
                    "app.kubernetes.io/version": "v0.43.0",
                    "operator.tekton.dev/deployment-spec-applied-hash": "2834660c8ee5c52ac5c1f649e61df9bb",
                    "pod-template-hash": "6867cd455b"
                },
                "name": "pipelines-as-code-webhook-6867cd455b",
                "namespace": "openshift-pipelines",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "pipelines-as-code-webhook",
                        "uid": "abaa4252-8af7-4c9a-beb2-78872ec09ca1"
                    }
                ],
                "resourceVersion": "36281",
                "uid": "a98ec594-38be-4619-aef8-eee263e4043e"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "webhook",
                        "app.kubernetes.io/instance": "default",
                        "app.kubernetes.io/name": "webhook",
                        "app.kubernetes.io/part-of": "pipelines-as-code",
                        "pod-template-hash": "6867cd455b"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "webhook",
                            "app.kubernetes.io/instance": "default",
                            "app.kubernetes.io/name": "webhook",
                            "app.kubernetes.io/part-of": "pipelines-as-code",
                            "app.kubernetes.io/version": "v0.43.0",
                            "operator.tekton.dev/deployment-spec-applied-hash": "2834660c8ee5c52ac5c1f649e61df9bb",
                            "pod-template-hash": "6867cd455b"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "/ko-app/pipelines-as-code-webhook"
                                ],
                                "env": [
                                    {
                                        "name": "CONFIG_LEADERELECTION_NAME",
                                        "value": "pac-webhook-config-leader-election"
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "pac-config-logging"
                                    },
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "tekton.dev/pipelinesascode"
                                    },
                                    {
                                        "name": "SSL_CERT_DIR",
                                        "value": "/tekton-custom-certs:/etc/ssl/certs:/etc/pki/tls/certs"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "WEBHOOK_SECRET_NAME",
                                        "value": "pipelines-as-code-webhook-certs"
                                    },
                                    {
                                        "name": "WEBHOOK_SERVICE_NAME",
                                        "value": "pipelines-as-code-webhook"
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-pipelines-as-code-webhook-rhel9@sha256:946903b17efbf012aefe1a128c5c5bda7f0ca4c44ce5601dc3edf350c388e5a7",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "pac-webhook",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https-webhook",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tekton-custom-certs/ca-bundle.crt",
                                        "name": "config-trusted-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "ca-bundle.crt"
                                    },
                                    {
                                        "mountPath": "/tekton-custom-certs/service-ca.crt",
                                        "name": "config-service-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "service-ca.crt"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "config-trusted-system-cabundle-volume",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "pipelines-as-code-webhook",
                        "serviceAccountName": "pipelines-as-code-webhook",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "ca-bundle.crt"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "service-ca.crt",
                                            "path": "service-ca.crt"
                                        }
                                    ],
                                    "name": "config-service-cabundle"
                                },
                                "name": "config-service-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-system-cabundle-volume"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 1,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:18:47Z",
                "generation": 1,
                "labels": {
                    "app": "pipelines-console-plugin",
                    "app.kubernetes.io/part-of": "tekton-config",
                    "name": "pipelines-console-plugin",
                    "pod-template-hash": "75f8fb8bcc"
                },
                "name": "pipelines-console-plugin-75f8fb8bcc",
                "namespace": "openshift-pipelines",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "pipelines-console-plugin",
                        "uid": "dea87562-e740-45a2-be39-26262f34b0a5"
                    }
                ],
                "resourceVersion": "37027",
                "uid": "29afe53a-453f-4285-97be-f5ed252d32f8"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "pipelines-console-plugin",
                        "name": "pipelines-console-plugin",
                        "pod-template-hash": "75f8fb8bcc"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "pipelines-console-plugin",
                            "app.kubernetes.io/part-of": "tekton-config",
                            "name": "pipelines-console-plugin",
                            "pod-template-hash": "75f8fb8bcc"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "image": "quay.io/openshift-pipeline/pipelines-console-plugin-rhel9@sha256:bb058b3de08a97a38b1eb1c65df636dcb0632194c30c4d57569762097f9b6b86",
                                "imagePullPolicy": "Always",
                                "name": "pipelines-console-plugin",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/cert",
                                        "name": "pipelines-console-plugin-cert",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/nginx/nginx.conf",
                                        "name": "nginx-conf",
                                        "readOnly": true,
                                        "subPath": "nginx.conf"
                                    },
                                    {
                                        "mountPath": "/var/lib/nginx/tmp",
                                        "name": "nginx-tmp"
                                    },
                                    {
                                        "mountPath": "/var/cache/nginx",
                                        "name": "nginx-cache"
                                    },
                                    {
                                        "mountPath": "/var/run",
                                        "name": "nginx-run"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "pipelines-console-plugin-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "pipelines-console-plugin-cert"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "pipelines-console-plugin"
                                },
                                "name": "nginx-conf"
                            },
                            {
                                "emptyDir": {},
                                "name": "nginx-tmp"
                            },
                            {
                                "emptyDir": {},
                                "name": "nginx-cache"
                            },
                            {
                                "emptyDir": {},
                                "name": "nginx-run"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:17:33Z",
                "generation": 1,
                "labels": {
                    "app": "tekton-chains-controller",
                    "app.kubernetes.io/component": "controller",
                    "app.kubernetes.io/instance": "default",
                    "app.kubernetes.io/name": "controller",
                    "app.kubernetes.io/part-of": "tekton-chains",
                    "deployment.spec.replicas": "1",
                    "operator.tekton.dev/deployment-spec-applied-hash": "cf9af05a15df2ab04f61569661597506",
                    "pipeline.tekton.dev/release": "v0.26.2",
                    "pod-template-hash": "78bdf5dd4d",
                    "version": "v0.26.2"
                },
                "name": "tekton-chains-controller-78bdf5dd4d",
                "namespace": "openshift-pipelines",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-chains-controller",
                        "uid": "357dd827-385b-4b70-adb0-483518a2a709"
                    }
                ],
                "resourceVersion": "34490",
                "uid": "cfa81d95-75db-400f-87a4-695a1de6fdc7"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "controller",
                        "app.kubernetes.io/instance": "default",
                        "app.kubernetes.io/name": "controller",
                        "app.kubernetes.io/part-of": "tekton-chains",
                        "pod-template-hash": "78bdf5dd4d"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "cluster-autoscaler.kubernetes.io/safe-to-evict": "false"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "tekton-chains-controller",
                            "app.kubernetes.io/component": "controller",
                            "app.kubernetes.io/instance": "default",
                            "app.kubernetes.io/name": "controller",
                            "app.kubernetes.io/part-of": "tekton-chains",
                            "deployment.spec.replicas": "1",
                            "operator.tekton.dev/deployment-spec-applied-hash": "cf9af05a15df2ab04f61569661597506",
                            "pipeline.tekton.dev/release": "v0.26.2",
                            "pod-template-hash": "78bdf5dd4d",
                            "version": "v0.26.2"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "nodeAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "nodeSelectorTerms": [
                                        {
                                            "matchExpressions": [
                                                {
                                                    "key": "kubernetes.io/os",
                                                    "operator": "NotIn",
                                                    "values": [
                                                        "windows"
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            },
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "app.kubernetes.io/component": "controller",
                                                    "app.kubernetes.io/instance": "default",
                                                    "app.kubernetes.io/name": "controller",
                                                    "app.kubernetes.io/part-of": "tekton-chains"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "--threads-per-controller=32",
                                    "--kube-api-qps=50",
                                    "--kube-api-burst=50"
                                ],
                                "env": [
                                    {
                                        "name": "CONFIG_LEADERELECTION_NAME",
                                        "value": "tekton-chains-config-leader-election"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "tekton-chains-config-observability"
                                    },
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "tekton.dev/chains"
                                    },
                                    {
                                        "name": "SSL_CERT_DIR",
                                        "value": "/tekton-custom-certs:/etc/ssl/certs:/etc/pki/tls/certs"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-chains-controller-rhel9@sha256:affc4c250d0f7651f34ea99654241084b4da28aabc0637f056e968e11cb452f6",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "tekton-chains-controller",
                                "ports": [
                                    {
                                        "containerPort": 9090,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/signing-secrets",
                                        "name": "signing-secrets"
                                    },
                                    {
                                        "mountPath": "/var/run/sigstore/cosign",
                                        "name": "oidc-info"
                                    },
                                    {
                                        "mountPath": "/tekton-custom-certs/ca-bundle.crt",
                                        "name": "config-trusted-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "ca-bundle.crt"
                                    },
                                    {
                                        "mountPath": "/tekton-custom-certs/service-ca.crt",
                                        "name": "config-service-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "service-ca.crt"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "config-trusted-system-cabundle-volume",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "tekton-chains-controller",
                        "serviceAccountName": "tekton-chains-controller",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "signing-secrets",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "signing-secrets"
                                }
                            },
                            {
                                "name": "oidc-info",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "serviceAccountToken": {
                                                "audience": "sigstore",
                                                "expirationSeconds": 600,
                                                "path": "oidc-token"
                                            }
                                        }
                                    ]
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "ca-bundle.crt"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "service-ca.crt",
                                            "path": "service-ca.crt"
                                        }
                                    ],
                                    "name": "config-service-cabundle"
                                },
                                "name": "config-service-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-system-cabundle-volume"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:36Z",
                "generation": 1,
                "labels": {
                    "app": "tekton-events-controller",
                    "app.kubernetes.io/component": "events",
                    "app.kubernetes.io/instance": "default",
                    "app.kubernetes.io/name": "events",
                    "app.kubernetes.io/part-of": "tekton-pipelines",
                    "app.kubernetes.io/version": "v1.10.2",
                    "operator.tekton.dev/deployment-spec-applied-hash": "c3ebc6502c52a89fde78ccf58d11bba5",
                    "pipeline.tekton.dev/release": "v1.10.2",
                    "pod-template-hash": "8f9d64c65",
                    "version": "v1.10.2"
                },
                "name": "tekton-events-controller-8f9d64c65",
                "namespace": "openshift-pipelines",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-events-controller",
                        "uid": "fd338767-163a-4690-9b7a-0e7f623c1378"
                    }
                ],
                "resourceVersion": "32209",
                "uid": "02c4ce21-b4ee-4eeb-9c59-9648351be7c7"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "events",
                        "app.kubernetes.io/instance": "default",
                        "app.kubernetes.io/name": "events",
                        "app.kubernetes.io/part-of": "tekton-pipelines",
                        "pod-template-hash": "8f9d64c65"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "tekton-events-controller",
                            "app.kubernetes.io/component": "events",
                            "app.kubernetes.io/instance": "default",
                            "app.kubernetes.io/name": "events",
                            "app.kubernetes.io/part-of": "tekton-pipelines",
                            "app.kubernetes.io/version": "v1.10.2",
                            "operator.tekton.dev/deployment-spec-applied-hash": "c3ebc6502c52a89fde78ccf58d11bba5",
                            "pipeline.tekton.dev/release": "v1.10.2",
                            "pod-template-hash": "8f9d64c65",
                            "version": "v1.10.2"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "nodeAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "nodeSelectorTerms": [
                                        {
                                            "matchExpressions": [
                                                {
                                                    "key": "kubernetes.io/os",
                                                    "operator": "NotIn",
                                                    "values": [
                                                        "windows"
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "CONFIG_DEFAULTS_NAME",
                                        "value": "config-defaults"
                                    },
                                    {
                                        "name": "CONFIG_LEADERELECTION_NAME",
                                        "value": "config-leader-election-events"
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "config-observability"
                                    },
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    },
                                    {
                                        "name": "SSL_CERT_DIR",
                                        "value": "/etc/ssl/certs"
                                    },
                                    {
                                        "name": "SSL_CERT_FILE",
                                        "value": "/etc/config-registry-cert/cert"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-events-rhel9@sha256:a47b316c25d4aab4fc205c28316a16ebce4c0682d02c8e397b7da7e69da39787",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": "probes",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "tekton-events-controller",
                                "ports": [
                                    {
                                        "containerPort": 9090,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8008,
                                        "name": "profiling",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8080,
                                        "name": "probes",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readiness",
                                        "port": "probes",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "100Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsGroup": 65532,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/config-logging",
                                        "name": "config-logging"
                                    },
                                    {
                                        "mountPath": "/etc/config-registry-cert",
                                        "name": "config-registry-cert"
                                    },
                                    {
                                        "mountPath": "/etc/ssl/certs/ca-bundle.crt",
                                        "name": "config-trusted-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "ca-bundle.crt"
                                    },
                                    {
                                        "mountPath": "/etc/ssl/certs/service-ca.crt",
                                        "name": "config-service-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "service-ca.crt"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "config-trusted-system-cabundle-volume",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "tekton-events-controller",
                        "serviceAccountName": "tekton-events-controller",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "config-logging"
                                },
                                "name": "config-logging"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "config-registry-cert"
                                },
                                "name": "config-registry-cert"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "ca-bundle.crt"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "service-ca.crt",
                                            "path": "service-ca.crt"
                                        }
                                    ],
                                    "name": "config-service-cabundle"
                                },
                                "name": "config-service-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-system-cabundle-volume"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:36Z",
                "generation": 1,
                "labels": {
                    "app": "tekton-operator",
                    "name": "tekton-operator",
                    "operator.tekton.dev/deployment-spec-applied-hash": "4d2a184eb4714e6a3e0adbf170c3bb9f",
                    "pod-template-hash": "869f68d957"
                },
                "name": "tekton-operator-proxy-webhook-869f68d957",
                "namespace": "openshift-pipelines",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-operator-proxy-webhook",
                        "uid": "173db447-6483-48a7-833b-64d4f5b26954"
                    }
                ],
                "resourceVersion": "31948",
                "uid": "d52292c6-2137-4860-8661-4da8b9fc49c7"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "name": "tekton-operator",
                        "pod-template-hash": "869f68d957"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "tekton-operator",
                            "name": "tekton-operator",
                            "operator.tekton.dev/deployment-spec-applied-hash": "4d2a184eb4714e6a3e0adbf170c3bb9f",
                            "pod-template-hash": "869f68d957"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "CONFIG_LEADERELECTION_NAME",
                                        "value": "tekton-operator-proxy-webhook-config-leader-election"
                                    },
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "tekton.dev/operator"
                                    },
                                    {
                                        "name": "SSL_CERT_DIR",
                                        "value": "/tekton-custom-certs:/etc/ssl/certs:/etc/pki/tls/certs"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "WEBHOOK_SECRET_NAME",
                                        "value": "proxy-webhook-certs"
                                    },
                                    {
                                        "name": "WEBHOOK_SERVICE_NAME",
                                        "value": "tekton-operator-proxy-webhook"
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-operator-proxy-rhel9@sha256:47e28bbb46adb9a5cd58229853437f022202fe6dc279a6a061b760f74ec785ce",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "proxy",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https-webhook",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "250m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tekton-custom-certs/ca-bundle.crt",
                                        "name": "config-trusted-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "ca-bundle.crt"
                                    },
                                    {
                                        "mountPath": "/tekton-custom-certs/service-ca.crt",
                                        "name": "config-service-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "service-ca.crt"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "config-trusted-system-cabundle-volume",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "tekton-operators-proxy-webhook",
                        "serviceAccountName": "tekton-operators-proxy-webhook",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "ca-bundle.crt"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "service-ca.crt",
                                            "path": "service-ca.crt"
                                        }
                                    ],
                                    "name": "config-service-cabundle"
                                },
                                "name": "config-service-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-system-cabundle-volume"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 1,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "6",
                    "deployment.kubernetes.io/max-replicas": "8",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:36Z",
                "generation": 5,
                "labels": {
                    "app": "tekton-pipelines-webhook",
                    "app.kubernetes.io/component": "webhook",
                    "app.kubernetes.io/instance": "default",
                    "app.kubernetes.io/name": "webhook",
                    "app.kubernetes.io/part-of": "tekton-pipelines",
                    "app.kubernetes.io/version": "v1.10.2",
                    "operator.tekton.dev/deployment-spec-applied-hash": "af44353b6d478bfb4178de6024fbdee7",
                    "pipeline.tekton.dev/release": "v1.10.2",
                    "pod-template-hash": "77fdf798f",
                    "version": "v1.10.2"
                },
                "name": "tekton-pipelines-webhook-77fdf798f",
                "namespace": "openshift-pipelines",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-pipelines-webhook",
                        "uid": "e122bb2d-2054-4828-9ee0-d669cb08b437"
                    }
                ],
                "resourceVersion": "62070",
                "uid": "b0c07a1b-b719-48d5-b0fb-bff57566d948"
            },
            "spec": {
                "replicas": 6,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "webhook",
                        "app.kubernetes.io/instance": "default",
                        "app.kubernetes.io/name": "webhook",
                        "app.kubernetes.io/part-of": "tekton-pipelines",
                        "pod-template-hash": "77fdf798f"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "tekton-pipelines-webhook",
                            "app.kubernetes.io/component": "webhook",
                            "app.kubernetes.io/instance": "default",
                            "app.kubernetes.io/name": "webhook",
                            "app.kubernetes.io/part-of": "tekton-pipelines",
                            "app.kubernetes.io/version": "v1.10.2",
                            "operator.tekton.dev/deployment-spec-applied-hash": "af44353b6d478bfb4178de6024fbdee7",
                            "pipeline.tekton.dev/release": "v1.10.2",
                            "pod-template-hash": "77fdf798f",
                            "version": "v1.10.2"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "nodeAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "nodeSelectorTerms": [
                                        {
                                            "matchExpressions": [
                                                {
                                                    "key": "kubernetes.io/os",
                                                    "operator": "NotIn",
                                                    "values": [
                                                        "windows"
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            },
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "app.kubernetes.io/component": "webhook",
                                                    "app.kubernetes.io/instance": "default",
                                                    "app.kubernetes.io/name": "webhook",
                                                    "app.kubernetes.io/part-of": "tekton-pipelines"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "CONFIG_FEATURE_FLAGS_NAME",
                                        "value": "feature-flags"
                                    },
                                    {
                                        "name": "CONFIG_LEADERELECTION_NAME",
                                        "value": "config-leader-election-webhook"
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "config-observability"
                                    },
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "tekton.dev/pipeline"
                                    },
                                    {
                                        "name": "PROBES_PORT",
                                        "value": "8080"
                                    },
                                    {
                                        "name": "SSL_CERT_DIR",
                                        "value": "/tekton-custom-certs:/etc/ssl/certs:/etc/pki/tls/certs"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "WEBHOOK_ADMISSION_CONTROLLER_NAME",
                                        "value": "webhook.pipeline.tekton.dev"
                                    },
                                    {
                                        "name": "WEBHOOK_PORT",
                                        "value": "8443"
                                    },
                                    {
                                        "name": "WEBHOOK_SECRET_NAME",
                                        "value": "webhook-certs"
                                    },
                                    {
                                        "name": "WEBHOOK_SERVICE_NAME",
                                        "value": "tekton-pipelines-webhook"
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-webhook-rhel9@sha256:431fa1781faf88012bafd33b220ddf32b09e136fc571d8c6fdfccab804c4da3a",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/health",
                                        "port": "probes",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "name": "webhook",
                                "ports": [
                                    {
                                        "containerPort": 9090,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8008,
                                        "name": "profiling",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8443,
                                        "name": "https-webhook",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8080,
                                        "name": "probes",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readiness",
                                        "port": "probes",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsGroup": 65532,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tekton-custom-certs/ca-bundle.crt",
                                        "name": "config-trusted-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "ca-bundle.crt"
                                    },
                                    {
                                        "mountPath": "/tekton-custom-certs/service-ca.crt",
                                        "name": "config-service-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "service-ca.crt"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "config-trusted-system-cabundle-volume",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "tekton-pipelines-webhook",
                        "serviceAccountName": "tekton-pipelines-webhook",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "ca-bundle.crt"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "service-ca.crt",
                                            "path": "service-ca.crt"
                                        }
                                    ],
                                    "name": "config-service-cabundle"
                                },
                                "name": "config-service-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-system-cabundle-volume"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 6,
                "fullyLabeledReplicas": 6,
                "observedGeneration": 5,
                "readyReplicas": 6,
                "replicas": 6
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:17:20Z",
                "generation": 1,
                "labels": {
                    "app": "tekton-triggers-controller",
                    "app.kubernetes.io/component": "controller",
                    "app.kubernetes.io/instance": "default",
                    "app.kubernetes.io/name": "controller",
                    "app.kubernetes.io/part-of": "tekton-triggers",
                    "app.kubernetes.io/version": "v0.35.0",
                    "operator.tekton.dev/deployment-spec-applied-hash": "82cd7060b4a652d1781ebde3df63c241",
                    "pod-template-hash": "6ff547cc65",
                    "triggers.tekton.dev/release": "v0.35.0",
                    "version": "v0.35.0"
                },
                "name": "tekton-triggers-controller-6ff547cc65",
                "namespace": "openshift-pipelines",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-triggers-controller",
                        "uid": "77d19b98-0ab8-4ded-a597-90c1ac0a7815"
                    }
                ],
                "resourceVersion": "34085",
                "uid": "5a535c22-d6c6-4e61-a39f-f2ff44c63ceb"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "controller",
                        "app.kubernetes.io/instance": "default",
                        "app.kubernetes.io/name": "controller",
                        "app.kubernetes.io/part-of": "tekton-triggers",
                        "pod-template-hash": "6ff547cc65"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "tekton-triggers-controller",
                            "app.kubernetes.io/component": "controller",
                            "app.kubernetes.io/instance": "default",
                            "app.kubernetes.io/name": "controller",
                            "app.kubernetes.io/part-of": "tekton-triggers",
                            "app.kubernetes.io/version": "v0.35.0",
                            "operator.tekton.dev/deployment-spec-applied-hash": "82cd7060b4a652d1781ebde3df63c241",
                            "pod-template-hash": "6ff547cc65",
                            "triggers.tekton.dev/release": "v0.35.0",
                            "version": "v0.35.0"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "nodeAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "nodeSelectorTerms": [
                                        {
                                            "matchExpressions": [
                                                {
                                                    "key": "kubernetes.io/os",
                                                    "operator": "NotIn",
                                                    "values": [
                                                        "windows"
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            },
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "app.kubernetes.io/component": "controller",
                                                    "app.kubernetes.io/instance": "default",
                                                    "app.kubernetes.io/name": "controller",
                                                    "app.kubernetes.io/part-of": "tekton-triggers"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "-logtostderr",
                                    "-stderrthreshold",
                                    "INFO",
                                    "-el-image",
                                    "quay.io/openshift-pipeline/pipelines-triggers-eventlistenersink-rhel9@sha256:87d66a6582beff7f95f7843a9e454069d6cecca1f68c350d3e9af28e86825b71",
                                    "-el-port",
                                    "8080",
                                    "-el-security-context=true",
                                    "-el-read-only-root-filesystem=true",
                                    "-el-events",
                                    "enable",
                                    "-el-readtimeout",
                                    "5",
                                    "-el-writetimeout",
                                    "40",
                                    "-el-idletimeout",
                                    "120",
                                    "-el-timeouthandler",
                                    "30",
                                    "-el-httpclient-readtimeout",
                                    "30",
                                    "-el-httpclient-keep-alive",
                                    "30",
                                    "-el-httpclient-tlshandshaketimeout",
                                    "10",
                                    "-el-httpclient-responseheadertimeout",
                                    "10",
                                    "-el-httpclient-expectcontinuetimeout",
                                    "1",
                                    "-period-seconds",
                                    "10",
                                    "-failure-threshold",
                                    "3"
                                ],
                                "env": [
                                    {
                                        "name": "CONFIG_DEFAULTS_NAME",
                                        "value": "config-defaults-triggers"
                                    },
                                    {
                                        "name": "CONFIG_LEADERELECTION_NAME",
                                        "value": "config-leader-election-triggers-controllers"
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging-triggers"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "config-observability-triggers"
                                    },
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "tekton.dev/triggers"
                                    },
                                    {
                                        "name": "METRICS_PROMETHEUS_PORT",
                                        "value": "9000"
                                    },
                                    {
                                        "name": "SSL_CERT_DIR",
                                        "value": "/tekton-custom-certs:/etc/ssl/certs:/etc/pki/tls/certs"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-triggers-controller-rhel9@sha256:599724370cb0d5844a5719ef2da6885014f6c8e597d6539d1fecf1f528517959",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "tekton-triggers-controller",
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tekton-custom-certs/ca-bundle.crt",
                                        "name": "config-trusted-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "ca-bundle.crt"
                                    },
                                    {
                                        "mountPath": "/tekton-custom-certs/service-ca.crt",
                                        "name": "config-service-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "service-ca.crt"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "config-trusted-system-cabundle-volume",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "tekton-triggers-controller",
                        "serviceAccountName": "tekton-triggers-controller",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "ca-bundle.crt"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "service-ca.crt",
                                            "path": "service-ca.crt"
                                        }
                                    ],
                                    "name": "config-service-cabundle"
                                },
                                "name": "config-service-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-system-cabundle-volume"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:17:20Z",
                "generation": 1,
                "labels": {
                    "app": "tekton-triggers-core-interceptors",
                    "app.kubernetes.io/component": "interceptors",
                    "app.kubernetes.io/instance": "default",
                    "app.kubernetes.io/name": "core-interceptors",
                    "app.kubernetes.io/part-of": "tekton-triggers",
                    "app.kubernetes.io/version": "v0.35.0",
                    "operator.tekton.dev/deployment-spec-applied-hash": "ea978863399f9b5f6c7dcd24b6d1d327",
                    "pod-template-hash": "68b795b76",
                    "triggers.tekton.dev/release": "v0.35.0",
                    "version": "v0.35.0"
                },
                "name": "tekton-triggers-core-interceptors-68b795b76",
                "namespace": "openshift-pipelines",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-triggers-core-interceptors",
                        "uid": "47f145b9-f7fb-4dd3-9aa6-48a3042662f7"
                    }
                ],
                "resourceVersion": "34278",
                "uid": "cb4207fe-c09b-48cf-ab48-edf0186c703c"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "interceptors",
                        "app.kubernetes.io/instance": "default",
                        "app.kubernetes.io/name": "core-interceptors",
                        "app.kubernetes.io/part-of": "tekton-triggers",
                        "pod-template-hash": "68b795b76"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "tekton-triggers-core-interceptors",
                            "app.kubernetes.io/component": "interceptors",
                            "app.kubernetes.io/instance": "default",
                            "app.kubernetes.io/name": "core-interceptors",
                            "app.kubernetes.io/part-of": "tekton-triggers",
                            "app.kubernetes.io/version": "v0.35.0",
                            "operator.tekton.dev/deployment-spec-applied-hash": "ea978863399f9b5f6c7dcd24b6d1d327",
                            "pod-template-hash": "68b795b76",
                            "triggers.tekton.dev/release": "v0.35.0",
                            "version": "v0.35.0"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "-logtostderr",
                                    "-stderrthreshold",
                                    "INFO"
                                ],
                                "env": [
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging-triggers"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "config-observability-triggers"
                                    },
                                    {
                                        "name": "INTERCEPTOR_TLS_SECRET_NAME",
                                        "value": "tekton-triggers-core-interceptors-certs"
                                    },
                                    {
                                        "name": "INTERCEPTOR_TLS_SVC_NAME",
                                        "value": "tekton-triggers-core-interceptors"
                                    },
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "tekton.dev/triggers"
                                    },
                                    {
                                        "name": "SSL_CERT_DIR",
                                        "value": "/tekton-custom-certs:/etc/ssl/certs:/etc/pki/tls/certs"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-triggers-core-interceptors-rhel9@sha256:ecc4ff3814e912326c100ded0fa79a49e8b0706e830efcd06d7f1e8410ac8eb4",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "tekton-triggers-core-interceptors",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/ready",
                                        "port": 8443,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 5
                                },
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tekton-custom-certs/ca-bundle.crt",
                                        "name": "config-trusted-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "ca-bundle.crt"
                                    },
                                    {
                                        "mountPath": "/tekton-custom-certs/service-ca.crt",
                                        "name": "config-service-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "service-ca.crt"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "config-trusted-system-cabundle-volume",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "tekton-triggers-core-interceptors",
                        "serviceAccountName": "tekton-triggers-core-interceptors",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "ca-bundle.crt"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "service-ca.crt",
                                            "path": "service-ca.crt"
                                        }
                                    ],
                                    "name": "config-service-cabundle"
                                },
                                "name": "config-service-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-system-cabundle-volume"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:17:20Z",
                "generation": 1,
                "labels": {
                    "app": "tekton-triggers-webhook",
                    "app.kubernetes.io/component": "webhook",
                    "app.kubernetes.io/instance": "default",
                    "app.kubernetes.io/name": "webhook",
                    "app.kubernetes.io/part-of": "tekton-triggers",
                    "app.kubernetes.io/version": "v0.35.0",
                    "operator.tekton.dev/deployment-spec-applied-hash": "3e2d91facdf37d10c45304c9ff2c6288",
                    "pod-template-hash": "bb99c9466",
                    "triggers.tekton.dev/release": "v0.35.0",
                    "version": "v0.35.0"
                },
                "name": "tekton-triggers-webhook-bb99c9466",
                "namespace": "openshift-pipelines",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-triggers-webhook",
                        "uid": "7dd31da9-38b9-4fe8-8390-ff13873c4a56"
                    }
                ],
                "resourceVersion": "34011",
                "uid": "980a63a0-fbbc-4077-8d01-2e49ed6be5e2"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "webhook",
                        "app.kubernetes.io/instance": "default",
                        "app.kubernetes.io/name": "webhook",
                        "app.kubernetes.io/part-of": "tekton-triggers",
                        "pod-template-hash": "bb99c9466"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "tekton-triggers-webhook",
                            "app.kubernetes.io/component": "webhook",
                            "app.kubernetes.io/instance": "default",
                            "app.kubernetes.io/name": "webhook",
                            "app.kubernetes.io/part-of": "tekton-triggers",
                            "app.kubernetes.io/version": "v0.35.0",
                            "operator.tekton.dev/deployment-spec-applied-hash": "3e2d91facdf37d10c45304c9ff2c6288",
                            "pod-template-hash": "bb99c9466",
                            "triggers.tekton.dev/release": "v0.35.0",
                            "version": "v0.35.0"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "CONFIG_LEADERELECTION_NAME",
                                        "value": "config-leader-election-triggers-webhook"
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "config-logging-triggers"
                                    },
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.0.0"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "tekton.dev/triggers"
                                    },
                                    {
                                        "name": "SSL_CERT_DIR",
                                        "value": "/tekton-custom-certs:/etc/ssl/certs:/etc/pki/tls/certs"
                                    },
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "WEBHOOK_SECRET_NAME",
                                        "value": "triggers-webhook-certs"
                                    },
                                    {
                                        "name": "WEBHOOK_SERVICE_NAME",
                                        "value": "tekton-triggers-webhook"
                                    }
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-triggers-webhook-rhel9@sha256:ea481d2b778b145b8a7184d1564bd02befa7a4eee152329d05315e2ff9181ff3",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "webhook",
                                "ports": [
                                    {
                                        "containerPort": 9000,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8008,
                                        "name": "profiling",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8443,
                                        "name": "https-webhook",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tekton-custom-certs/ca-bundle.crt",
                                        "name": "config-trusted-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "ca-bundle.crt"
                                    },
                                    {
                                        "mountPath": "/tekton-custom-certs/service-ca.crt",
                                        "name": "config-service-cabundle-volume",
                                        "readOnly": true,
                                        "subPath": "service-ca.crt"
                                    },
                                    {
                                        "mountPath": "/etc/pki/ca-trust/extracted/pem",
                                        "name": "config-trusted-system-cabundle-volume",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "tekton-triggers-webhook",
                        "serviceAccountName": "tekton-triggers-webhook",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "ca-bundle.crt"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "service-ca.crt",
                                            "path": "service-ca.crt"
                                        }
                                    ],
                                    "name": "config-service-cabundle"
                                },
                                "name": "config-service-cabundle-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca-bundle.crt",
                                            "path": "tls-ca-bundle.pem"
                                        }
                                    ],
                                    "name": "config-trusted-cabundle"
                                },
                                "name": "config-trusted-system-cabundle-volume"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:17:44Z",
                "generation": 1,
                "labels": {
                    "app": "tkn-cli-serve",
                    "pod-template-hash": "65984f5c46"
                },
                "name": "tkn-cli-serve-65984f5c46",
                "namespace": "openshift-pipelines",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tkn-cli-serve",
                        "uid": "de0cd888-605b-46ca-b199-432011d8df88"
                    }
                ],
                "resourceVersion": "35805",
                "uid": "00041510-c5a9-4456-bdde-de7fc570cfd0"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "tkn-cli-serve",
                        "pod-template-hash": "65984f5c46"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "tkn-cli-serve",
                            "pod-template-hash": "65984f5c46"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "image": "quay.io/openshift-pipeline/pipelines-serve-tkn-cli-rhel9@sha256:b5a16892e0c7a4efeeb184cf19b4dacdeea2a491c21474fa98f8084bbf35ff8c",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "tkn-cli-serve",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/httpd",
                                        "name": "httpd-config"
                                    },
                                    {
                                        "mountPath": "/var/log/httpd",
                                        "name": "httpd-logs"
                                    },
                                    {
                                        "mountPath": "/opt/app-root",
                                        "name": "app-root"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "initContainers": [
                            {
                                "command": [
                                    "sh",
                                    "-c",
                                    "cp -rL /etc/httpd/* /httpd-config/ 2\u003e/dev/null || true\nfind /httpd-config -type f -exec chmod u+w {} \\;\ncp -rL /opt/app-root/* /app-root/ 2\u003e/dev/null || true\nfind /app-root -type f -exec chmod u+w {} \\;\n"
                                ],
                                "image": "quay.io/openshift-pipeline/pipelines-serve-tkn-cli-rhel9@sha256:b5a16892e0c7a4efeeb184cf19b4dacdeea2a491c21474fa98f8084bbf35ff8c",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "tkn-cli-serve-init-config",
                                "resources": {},
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/httpd-config",
                                        "name": "httpd-config"
                                    },
                                    {
                                        "mountPath": "/app-root",
                                        "name": "app-root"
                                    }
                                ]
                            }
                        ],
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "emptyDir": {},
                                "name": "httpd-config"
                            },
                            {
                                "emptyDir": {},
                                "name": "httpd-logs"
                            },
                            {
                                "emptyDir": {},
                                "name": "app-root"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "include.release.openshift.io/hypershift": "true",
                    "include.release.openshift.io/ibm-cloud-managed": "true"
                },
                "creationTimestamp": "2026-04-19T18:53:35Z",
                "generation": 1,
                "labels": {
                    "app": "service-ca-operator",
                    "pod-template-hash": "565f7cf679"
                },
                "name": "service-ca-operator-565f7cf679",
                "namespace": "openshift-service-ca-operator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "service-ca-operator",
                        "uid": "d59c66d9-f47b-4323-8872-a4bcede77edb"
                    }
                ],
                "resourceVersion": "13101",
                "uid": "5f98d8ca-2f0a-404d-9ce9-7257826297b8"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "service-ca-operator",
                        "pod-template-hash": "565f7cf679"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "nonroot-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "service-ca-operator",
                            "pod-template-hash": "565f7cf679"
                        },
                        "name": "service-ca-operator"
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--config=/var/run/configmaps/config/operator-config.yaml",
                                    "-v=2"
                                ],
                                "command": [
                                    "service-ca-operator",
                                    "operator"
                                ],
                                "env": [
                                    {
                                        "name": "CONTROLLER_IMAGE",
                                        "value": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:957cb9c76d75144d15108d4e8f4c7fc231e61e86f6cf5f377346e2bc313ec720"
                                    },
                                    {
                                        "name": "OPERATOR_IMAGE_VERSION",
                                        "value": "4.18.9"
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:957cb9c76d75144d15108d4e8f4c7fc231e61e86f6cf5f377346e2bc313ec720",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "service-ca-operator",
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "80Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/configmaps/config",
                                        "name": "config"
                                    },
                                    {
                                        "mountPath": "/var/run/secrets/serving-cert",
                                        "name": "serving-cert"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsGroup": 1001,
                            "runAsNonRoot": true,
                            "runAsUser": 1001,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "service-ca-operator",
                        "serviceAccountName": "service-ca-operator",
                        "terminationGracePeriodSeconds": 30,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/not-ready",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ],
                        "volumes": [
                            {
                                "name": "serving-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "optional": true,
                                    "secretName": "serving-cert"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "service-ca-operator-config"
                                },
                                "name": "config"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "1",
                    "deployment.kubernetes.io/revision": "1",
                    "operator.openshift.io/spec-hash": "8d19f1043e1c8f2bd251e902ecbbf1162e6cff7d8d8edb590baca710beaf6507"
                },
                "creationTimestamp": "2026-04-19T19:02:13Z",
                "generation": 1,
                "labels": {
                    "app": "service-ca",
                    "pod-template-hash": "6549cb95df",
                    "service-ca": "true"
                },
                "name": "service-ca-6549cb95df",
                "namespace": "openshift-service-ca",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "service-ca",
                        "uid": "193e555b-4f39-453e-9a72-7d0ec188f450"
                    }
                ],
                "resourceVersion": "9987",
                "uid": "5bb1a4f0-6936-413b-bc7e-871b1d4e2ea1"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "service-ca",
                        "pod-template-hash": "6549cb95df",
                        "service-ca": "true"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "service-ca",
                            "pod-template-hash": "6549cb95df",
                            "service-ca": "true"
                        },
                        "name": "service-ca"
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "-v=2"
                                ],
                                "command": [
                                    "service-ca-operator",
                                    "controller"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:957cb9c76d75144d15108d4e8f4c7fc231e61e86f6cf5f377346e2bc313ec720",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "service-ca-controller",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "120Mi"
                                    }
                                },
                                "securityContext": {
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/var/run/secrets/signing-key",
                                        "name": "signing-key"
                                    },
                                    {
                                        "mountPath": "/var/run/configmaps/signing-cabundle",
                                        "name": "signing-cabundle"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "priorityClassName": "system-cluster-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "service-ca",
                        "serviceAccountName": "service-ca",
                        "terminationGracePeriodSeconds": 30,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/unreachable",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            },
                            {
                                "effect": "NoExecute",
                                "key": "node.kubernetes.io/not-ready",
                                "operator": "Exists",
                                "tolerationSeconds": 120
                            }
                        ],
                        "volumes": [
                            {
                                "name": "signing-key",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "signing-key"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "signing-cabundle"
                                },
                                "name": "signing-cabundle"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:13:37Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "controller",
                    "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                    "app.kubernetes.io/name": "prometheus-operator",
                    "app.kubernetes.io/part-of": "openshift-monitoring",
                    "app.kubernetes.io/version": "0.78.1",
                    "pod-template-hash": "7979996c8"
                },
                "name": "prometheus-operator-7979996c8",
                "namespace": "openshift-user-workload-monitoring",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "prometheus-operator",
                        "uid": "af61a7a2-7b6e-4148-917b-a2036a714199"
                    }
                ],
                "resourceVersion": "20262",
                "uid": "9dcdd41f-59a8-4f19-9ff5-b4811869b1fb"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "controller",
                        "app.kubernetes.io/name": "prometheus-operator",
                        "app.kubernetes.io/part-of": "openshift-monitoring",
                        "pod-template-hash": "7979996c8"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "kubectl.kubernetes.io/default-container": "prometheus-operator",
                            "openshift.io/required-scc": "restricted-v2",
                            "target.workload.openshift.io/management": "{\"effect\": \"PreferredDuringScheduling\"}"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "controller",
                            "app.kubernetes.io/managed-by": "cluster-monitoring-operator",
                            "app.kubernetes.io/name": "prometheus-operator",
                            "app.kubernetes.io/part-of": "openshift-monitoring",
                            "app.kubernetes.io/version": "0.78.1",
                            "pod-template-hash": "7979996c8"
                        }
                    },
                    "spec": {
                        "automountServiceAccountToken": true,
                        "containers": [
                            {
                                "args": [
                                    "--prometheus-config-reloader=quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:8e158c83ec12b3e0237fab9a221630bd691e79c079a111f346354ff43b8199df",
                                    "--kubelet-endpoints=true",
                                    "--kubelet-endpointslice=false",
                                    "--prometheus-instance-namespaces=openshift-user-workload-monitoring",
                                    "--alertmanager-instance-namespaces=openshift-user-workload-monitoring",
                                    "--thanos-ruler-instance-namespaces=openshift-user-workload-monitoring",
                                    "--config-reloader-cpu-limit=0",
                                    "--config-reloader-memory-limit=0",
                                    "--config-reloader-cpu-request=1m",
                                    "--config-reloader-memory-request=10Mi",
                                    "--web.listen-address=127.0.0.1:8080",
                                    "--controller-id=openshift-user-workload-monitoring/prometheus-operator"
                                ],
                                "env": [
                                    {
                                        "name": "GOGC",
                                        "value": "30"
                                    }
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:8c1fac1dd497afa5ea5d8f89d3cce6f30fef8c9cde34940058fc8d98dad38692",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "prometheus-operator",
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "17Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError"
                            },
                            {
                                "args": [
                                    "--secure-listen-address=:8443",
                                    "--tls-cipher-suites=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
                                    "--upstream=http://127.0.0.1:8080/",
                                    "--tls-cert-file=/etc/tls/private/tls.crt",
                                    "--tls-private-key-file=/etc/tls/private/tls.key",
                                    "--config-file=/etc/kube-rbac-policy/config.yaml",
                                    "--client-ca-file=/etc/tls/client/client-ca.crt",
                                    "--tls-min-version=VersionTLS12"
                                ],
                                "image": "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1c7c24111f1709d7648156873ced09462638aa4b3cf7e7aee13297e51bcdfb3e",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "requests": {
                                        "cpu": "1m",
                                        "memory": "10Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "FallbackToLogsOnError",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls/private",
                                        "name": "prometheus-operator-user-workload-tls",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/kube-rbac-policy",
                                        "name": "prometheus-operator-uwm-kube-rbac-proxy-config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/tls/client",
                                        "name": "metrics-client-ca",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "nodeSelector": {
                            "kubernetes.io/os": "linux"
                        },
                        "priorityClassName": "openshift-user-critical",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "prometheus-operator",
                        "serviceAccountName": "prometheus-operator",
                        "terminationGracePeriodSeconds": 30,
                        "tolerations": [
                            {
                                "effect": "NoSchedule",
                                "key": "node-role.kubernetes.io/master",
                                "operator": "Exists"
                            }
                        ],
                        "volumes": [
                            {
                                "name": "prometheus-operator-user-workload-tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "prometheus-operator-user-workload-tls"
                                }
                            },
                            {
                                "name": "prometheus-operator-uwm-kube-rbac-proxy-config",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "prometheus-operator-uwm-kube-rbac-proxy-config"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "metrics-client-ca"
                                },
                                "name": "metrics-client-ca"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "vector-kubearchive-log-collector-in-cluster-local:apps/Deployment:product-kubearchive-logging/grafana",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                    "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                    "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                    "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                    "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                    "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                    "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n"
                },
                "creationTimestamp": "2026-04-19T19:18:57Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/instance": "grafana",
                    "app.kubernetes.io/name": "grafana",
                    "app.kubernetes.io/version": "10.4.0",
                    "helm.sh/chart": "grafana-10.4.0",
                    "pod-template-hash": "55f4bb5f95"
                },
                "name": "grafana-55f4bb5f95",
                "namespace": "product-kubearchive-logging",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "grafana",
                        "uid": "470477ba-23fa-4501-afa1-44811af93efd"
                    }
                ],
                "resourceVersion": "38018",
                "uid": "0d657709-9d9a-47f1-b2df-707d8db69500"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/instance": "grafana",
                        "app.kubernetes.io/name": "grafana",
                        "pod-template-hash": "55f4bb5f95"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "checksum/config": "6212cf91fffe59e00c368d437c7a63b609983dfab3197bdf22df2269bfcf6d6c",
                            "checksum/sc-dashboard-provider-config": "e70bf6a851099d385178a76de9757bb0bef8299da6d8443602590e44f05fdf24",
                            "checksum/secret": "7590fe10cbd3ae3e92a60625ff270e3e7d404731e1c73aaa2df1a78dab2c7768",
                            "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                            "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                            "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                            "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                            "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                            "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                            "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                            "kubectl.kubernetes.io/default-container": "grafana"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/instance": "grafana",
                            "app.kubernetes.io/name": "grafana",
                            "app.kubernetes.io/version": "10.4.0",
                            "helm.sh/chart": "grafana-10.4.0",
                            "pod-template-hash": "55f4bb5f95"
                        }
                    },
                    "spec": {
                        "automountServiceAccountToken": true,
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "POD_IP",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "status.podIP"
                                            }
                                        }
                                    },
                                    {
                                        "name": "GF_SECURITY_ADMIN_USER",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "admin-user",
                                                "name": "grafana"
                                            }
                                        }
                                    },
                                    {
                                        "name": "GF_SECURITY_ADMIN_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "admin-password",
                                                "name": "grafana"
                                            }
                                        }
                                    },
                                    {
                                        "name": "GF_PATHS_DATA",
                                        "value": "/var/lib/grafana/"
                                    },
                                    {
                                        "name": "GF_PATHS_LOGS",
                                        "value": "/var/log/grafana"
                                    },
                                    {
                                        "name": "GF_PATHS_PLUGINS",
                                        "value": "/var/lib/grafana/plugins"
                                    },
                                    {
                                        "name": "GF_PATHS_PROVISIONING",
                                        "value": "/etc/grafana/provisioning"
                                    },
                                    {
                                        "name": "GOMEMLIMIT",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "divisor": "1",
                                                "resource": "limits.memory"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/kubearchive/grafana:10.4.0",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 10,
                                    "httpGet": {
                                        "path": "/api/health",
                                        "port": 3000,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 60,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 30
                                },
                                "name": "grafana",
                                "ports": [
                                    {
                                        "containerPort": 3000,
                                        "name": "grafana",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9094,
                                        "name": "gossip-tcp",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9094,
                                        "name": "gossip-udp",
                                        "protocol": "UDP"
                                    },
                                    {
                                        "containerPort": 6060,
                                        "name": "profiling",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/api/health",
                                        "port": 3000,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsGroup": 1000770000,
                                    "runAsNonRoot": true,
                                    "runAsUser": 1000770000,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/grafana/grafana.ini",
                                        "name": "config",
                                        "subPath": "grafana.ini"
                                    },
                                    {
                                        "mountPath": "/var/lib/grafana",
                                        "name": "storage"
                                    },
                                    {
                                        "mountPath": "/etc/grafana/provisioning/datasources/datasources.yaml",
                                        "name": "config",
                                        "subPath": "datasources.yaml"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": true,
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "fsGroup": 1000770000,
                            "runAsGroup": 1000770000,
                            "runAsNonRoot": true,
                            "runAsUser": 1000770000
                        },
                        "serviceAccount": "grafana",
                        "serviceAccountName": "grafana",
                        "shareProcessNamespace": false,
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "grafana"
                                },
                                "name": "config"
                            },
                            {
                                "emptyDir": {},
                                "name": "storage"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "vector-kubearchive-log-collector-in-cluster-local:apps/Deployment:product-kubearchive-logging/loki-distributor",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "1",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                    "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                    "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                    "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                    "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                    "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                    "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n"
                },
                "creationTimestamp": "2026-04-19T19:18:57Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "distributor",
                    "app.kubernetes.io/instance": "loki",
                    "app.kubernetes.io/name": "loki",
                    "app.kubernetes.io/part-of": "memberlist",
                    "app.kubernetes.io/version": "3.6.3",
                    "helm.sh/chart": "loki-6.49.0",
                    "pod-template-hash": "5d4786f4bc"
                },
                "name": "loki-distributor-5d4786f4bc",
                "namespace": "product-kubearchive-logging",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "loki-distributor",
                        "uid": "6e379a43-9c5b-40b9-a226-ef340ea0d4b9"
                    }
                ],
                "resourceVersion": "38026",
                "uid": "6ed307f8-d0f2-4c36-bad9-ed3f56d28f9e"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "distributor",
                        "app.kubernetes.io/instance": "loki",
                        "app.kubernetes.io/name": "loki",
                        "pod-template-hash": "5d4786f4bc"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "checksum/config": "9c1da9d587c969666f111c0953bc5aa254e49555cfdd18dbb56b2805de7e56b6",
                            "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                            "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                            "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                            "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                            "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                            "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                            "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "distributor",
                            "app.kubernetes.io/instance": "loki",
                            "app.kubernetes.io/name": "loki",
                            "app.kubernetes.io/part-of": "memberlist",
                            "app.kubernetes.io/version": "3.6.3",
                            "helm.sh/chart": "loki-6.49.0",
                            "pod-template-hash": "5d4786f4bc"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "app.kubernetes.io/component": "distributor",
                                                "app.kubernetes.io/instance": "loki",
                                                "app.kubernetes.io/name": "loki"
                                            }
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "-config.file=/etc/loki/config/config.yaml",
                                    "-target=distributor",
                                    "-log.level=debug"
                                ],
                                "image": "quay.io/kubearchive/loki:3.6.3",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "distributor",
                                "ports": [
                                    {
                                        "containerPort": 3100,
                                        "name": "http-metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9095,
                                        "name": "grpc",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 7946,
                                        "name": "http-memberlist",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/ready",
                                        "port": "http-metrics",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/loki/config",
                                        "name": "config"
                                    },
                                    {
                                        "mountPath": "/etc/loki/runtime-config",
                                        "name": "runtime-config"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "fsGroup": 10001,
                            "fsGroupChangePolicy": "OnRootMismatch",
                            "runAsGroup": 10001,
                            "runAsNonRoot": true,
                            "runAsUser": 10001
                        },
                        "serviceAccount": "loki",
                        "serviceAccountName": "loki",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "config.yaml",
                                            "path": "config.yaml"
                                        }
                                    ],
                                    "name": "loki"
                                },
                                "name": "config"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "loki-runtime"
                                },
                                "name": "runtime-config"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "vector-kubearchive-log-collector-in-cluster-local:apps/Deployment:product-kubearchive-logging/loki-gateway",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                    "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                    "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                    "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                    "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                    "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                    "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n"
                },
                "creationTimestamp": "2026-04-19T19:18:57Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "gateway",
                    "app.kubernetes.io/instance": "loki",
                    "app.kubernetes.io/name": "loki",
                    "pod-template-hash": "764d5c765b"
                },
                "name": "loki-gateway-764d5c765b",
                "namespace": "product-kubearchive-logging",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "loki-gateway",
                        "uid": "48002f6d-c228-4c89-998d-73e131b4020f"
                    }
                ],
                "resourceVersion": "37952",
                "uid": "d7410c12-b592-4851-89fe-a1fc07d7b400"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "gateway",
                        "app.kubernetes.io/instance": "loki",
                        "app.kubernetes.io/name": "loki",
                        "pod-template-hash": "764d5c765b"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "checksum/config": "ea39bdec9ff6342bc478cab7e8b5b51efead06358502870d6aa90a3ce086b3da",
                            "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                            "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                            "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                            "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                            "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                            "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                            "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "gateway",
                            "app.kubernetes.io/instance": "loki",
                            "app.kubernetes.io/name": "loki",
                            "pod-template-hash": "764d5c765b"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "app.kubernetes.io/component": "gateway",
                                                "app.kubernetes.io/instance": "loki",
                                                "app.kubernetes.io/name": "loki"
                                            }
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "image": "quay.io/nginx/nginx-unprivileged:1.24-alpine",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "nginx",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "http-metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/",
                                        "port": "http-metrics",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 5,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 3
                                },
                                "resources": {
                                    "limits": {
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/nginx",
                                        "name": "config"
                                    },
                                    {
                                        "mountPath": "/tmp",
                                        "name": "tmp"
                                    },
                                    {
                                        "mountPath": "/docker-entrypoint.d",
                                        "name": "docker-entrypoint-d-override"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "enableServiceLinks": true,
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "fsGroup": 101,
                            "runAsGroup": 101,
                            "runAsNonRoot": true,
                            "runAsUser": 101
                        },
                        "serviceAccount": "loki",
                        "serviceAccountName": "loki",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "loki-gateway"
                                },
                                "name": "config"
                            },
                            {
                                "emptyDir": {},
                                "name": "tmp"
                            },
                            {
                                "emptyDir": {},
                                "name": "docker-entrypoint-d-override"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "vector-kubearchive-log-collector-in-cluster-local:apps/Deployment:product-kubearchive-logging/loki-minio",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                    "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                    "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                    "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                    "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                    "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                    "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n"
                },
                "creationTimestamp": "2026-04-19T19:18:57Z",
                "generation": 1,
                "labels": {
                    "app": "minio",
                    "pod-template-hash": "8d7c57d97",
                    "release": "loki"
                },
                "name": "loki-minio-8d7c57d97",
                "namespace": "product-kubearchive-logging",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "loki-minio",
                        "uid": "cfa4a3c5-0fd0-4c1e-86ab-6838b2db9464"
                    }
                ],
                "resourceVersion": "37683",
                "uid": "89c9590e-8f36-4d01-a631-dd8bf8b106c3"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "minio",
                        "pod-template-hash": "8d7c57d97",
                        "release": "loki"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "checksum/config": "c6991decd6e21178368a30e50fface4a5e2be73d6f997ade38de9d235be74fb5",
                            "checksum/secrets": "d7ad998d24f563da009a414b12e43c6ccf27fdecfac5864c747ffe0d3177e847",
                            "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                            "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                            "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                            "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                            "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                            "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                            "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app": "minio",
                            "pod-template-hash": "8d7c57d97",
                            "release": "loki"
                        },
                        "name": "loki-minio"
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "/bin/sh",
                                    "-ce",
                                    "/usr/bin/docker-entrypoint.sh minio server /export -S /etc/minio/certs/ --address :9000 --console-address :9001"
                                ],
                                "env": [
                                    {
                                        "name": "MINIO_ROOT_USER",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "rootUser",
                                                "name": "loki-minio"
                                            }
                                        }
                                    },
                                    {
                                        "name": "MINIO_ROOT_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "rootPassword",
                                                "name": "loki-minio"
                                            }
                                        }
                                    },
                                    {
                                        "name": "MINIO_PROMETHEUS_AUTH_TYPE",
                                        "value": "public"
                                    }
                                ],
                                "image": "quay.io/minio/minio:RELEASE.2024-12-18T13-15-44Z",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "minio",
                                "ports": [
                                    {
                                        "containerPort": 9000,
                                        "name": "http",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9001,
                                        "name": "http-console",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "128Mi"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tmp/credentials",
                                        "name": "minio-user",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/export",
                                        "name": "export"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "minio-sa",
                        "serviceAccountName": "minio-sa",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "emptyDir": {},
                                "name": "export"
                            },
                            {
                                "name": "minio-user",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "loki-minio"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "vector-kubearchive-log-collector-in-cluster-local:apps/Deployment:product-kubearchive-logging/loki-querier",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "1",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                    "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                    "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                    "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                    "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                    "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                    "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n"
                },
                "creationTimestamp": "2026-04-19T19:18:57Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "querier",
                    "app.kubernetes.io/instance": "loki",
                    "app.kubernetes.io/name": "loki",
                    "app.kubernetes.io/part-of": "memberlist",
                    "app.kubernetes.io/version": "3.6.3",
                    "helm.sh/chart": "loki-6.49.0",
                    "pod-template-hash": "cc79b8c59"
                },
                "name": "loki-querier-cc79b8c59",
                "namespace": "product-kubearchive-logging",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "loki-querier",
                        "uid": "8206bd00-cb21-4125-81ba-f7dce1ef46a3"
                    }
                ],
                "resourceVersion": "38034",
                "uid": "9e13e1af-5079-42ee-9f68-6c59196cc94c"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "querier",
                        "app.kubernetes.io/instance": "loki",
                        "app.kubernetes.io/name": "loki",
                        "pod-template-hash": "cc79b8c59"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "checksum/config": "9c1da9d587c969666f111c0953bc5aa254e49555cfdd18dbb56b2805de7e56b6",
                            "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                            "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                            "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                            "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                            "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                            "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                            "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "querier",
                            "app.kubernetes.io/instance": "loki",
                            "app.kubernetes.io/name": "loki",
                            "app.kubernetes.io/part-of": "memberlist",
                            "app.kubernetes.io/version": "3.6.3",
                            "helm.sh/chart": "loki-6.49.0",
                            "pod-template-hash": "cc79b8c59"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "app.kubernetes.io/component": "querier",
                                                "app.kubernetes.io/instance": "loki",
                                                "app.kubernetes.io/name": "loki"
                                            }
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "-config.file=/etc/loki/config/config.yaml",
                                    "-target=querier",
                                    "-log.level=debug"
                                ],
                                "image": "quay.io/kubearchive/loki:3.6.3",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "querier",
                                "ports": [
                                    {
                                        "containerPort": 3100,
                                        "name": "http-metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9095,
                                        "name": "grpc",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 7946,
                                        "name": "http-memberlist",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/ready",
                                        "port": "http-metrics",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/loki/config",
                                        "name": "config"
                                    },
                                    {
                                        "mountPath": "/etc/loki/runtime-config",
                                        "name": "runtime-config"
                                    },
                                    {
                                        "mountPath": "/var/loki",
                                        "name": "data"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "fsGroup": 10001,
                            "fsGroupChangePolicy": "OnRootMismatch",
                            "runAsGroup": 10001,
                            "runAsNonRoot": true,
                            "runAsUser": 10001
                        },
                        "serviceAccount": "loki",
                        "serviceAccountName": "loki",
                        "terminationGracePeriodSeconds": 30,
                        "topologySpreadConstraints": [
                            {
                                "labelSelector": {
                                    "matchLabels": {
                                        "app.kubernetes.io/component": "querier",
                                        "app.kubernetes.io/instance": "loki",
                                        "app.kubernetes.io/name": "loki"
                                    }
                                },
                                "maxSkew": 1,
                                "topologyKey": "kubernetes.io/hostname",
                                "whenUnsatisfiable": "ScheduleAnyway"
                            }
                        ],
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "config.yaml",
                                            "path": "config.yaml"
                                        }
                                    ],
                                    "name": "loki"
                                },
                                "name": "config"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "loki-runtime"
                                },
                                "name": "runtime-config"
                            },
                            {
                                "emptyDir": {},
                                "name": "data"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "vector-kubearchive-log-collector-in-cluster-local:apps/Deployment:product-kubearchive-logging/loki-query-frontend",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "1",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                    "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                    "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                    "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                    "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                    "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                    "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n"
                },
                "creationTimestamp": "2026-04-19T19:18:57Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "query-frontend",
                    "app.kubernetes.io/instance": "loki",
                    "app.kubernetes.io/name": "loki",
                    "app.kubernetes.io/part-of": "memberlist",
                    "app.kubernetes.io/version": "3.6.3",
                    "helm.sh/chart": "loki-6.49.0",
                    "pod-template-hash": "55cfd95965"
                },
                "name": "loki-query-frontend-55cfd95965",
                "namespace": "product-kubearchive-logging",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "loki-query-frontend",
                        "uid": "e460c3f5-c532-474b-95d0-5a3f04dcd65d"
                    }
                ],
                "resourceVersion": "38339",
                "uid": "602d53f8-f569-4e81-af5f-d4d6ad3cc8d6"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "query-frontend",
                        "app.kubernetes.io/instance": "loki",
                        "app.kubernetes.io/name": "loki",
                        "pod-template-hash": "55cfd95965"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "checksum/config": "9c1da9d587c969666f111c0953bc5aa254e49555cfdd18dbb56b2805de7e56b6",
                            "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                            "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                            "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                            "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                            "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                            "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                            "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "query-frontend",
                            "app.kubernetes.io/instance": "loki",
                            "app.kubernetes.io/name": "loki",
                            "app.kubernetes.io/part-of": "memberlist",
                            "app.kubernetes.io/version": "3.6.3",
                            "helm.sh/chart": "loki-6.49.0",
                            "pod-template-hash": "55cfd95965"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "app.kubernetes.io/component": "query-frontend",
                                                "app.kubernetes.io/instance": "loki",
                                                "app.kubernetes.io/name": "loki"
                                            }
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "-config.file=/etc/loki/config/config.yaml",
                                    "-target=query-frontend",
                                    "-log.level=debug"
                                ],
                                "image": "quay.io/kubearchive/loki:3.6.3",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "query-frontend",
                                "ports": [
                                    {
                                        "containerPort": 3100,
                                        "name": "http-metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9095,
                                        "name": "grpc",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 7946,
                                        "name": "http-memberlist",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/ready",
                                        "port": "http-metrics",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "25m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/loki/config",
                                        "name": "config"
                                    },
                                    {
                                        "mountPath": "/etc/loki/runtime-config",
                                        "name": "runtime-config"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "fsGroup": 10001,
                            "fsGroupChangePolicy": "OnRootMismatch",
                            "runAsGroup": 10001,
                            "runAsNonRoot": true,
                            "runAsUser": 10001
                        },
                        "serviceAccount": "loki",
                        "serviceAccountName": "loki",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "config.yaml",
                                            "path": "config.yaml"
                                        }
                                    ],
                                    "name": "loki"
                                },
                                "name": "config"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "loki-runtime"
                                },
                                "name": "runtime-config"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "vector-kubearchive-log-collector-in-cluster-local:apps/Deployment:product-kubearchive-logging/loki-query-scheduler",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "1",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                    "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                    "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                    "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                    "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                    "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                    "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n"
                },
                "creationTimestamp": "2026-04-19T19:18:57Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/component": "query-scheduler",
                    "app.kubernetes.io/instance": "loki",
                    "app.kubernetes.io/name": "loki",
                    "app.kubernetes.io/part-of": "memberlist",
                    "app.kubernetes.io/version": "3.6.3",
                    "helm.sh/chart": "loki-6.49.0",
                    "pod-template-hash": "577c6dbbd"
                },
                "name": "loki-query-scheduler-577c6dbbd",
                "namespace": "product-kubearchive-logging",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "loki-query-scheduler",
                        "uid": "78c2d21c-30fa-4f39-b1e9-3b4d3ab879f4"
                    }
                ],
                "resourceVersion": "38348",
                "uid": "3d907e2f-8566-4442-99fd-bb02756f4235"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/component": "query-scheduler",
                        "app.kubernetes.io/instance": "loki",
                        "app.kubernetes.io/name": "loki",
                        "pod-template-hash": "577c6dbbd"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "checksum/config": "9c1da9d587c969666f111c0953bc5aa254e49555cfdd18dbb56b2805de7e56b6",
                            "ignore-check.kube-linter.io/drop-net-raw-capability": "\"Vector runs requires access to socket.\"\n",
                            "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Minio post-jobs from chart require write access to filesystem.\"\n",
                            "ignore-check.kube-linter.io/pdb-unhealthy-pod-eviction-policy": "\"Managed by upstream Loki chart (no value exposed for unhealthyPodEvictionPolicy).\"\n",
                            "ignore-check.kube-linter.io/run-as-non-root": "\"Vector runs as Root and attach host Path.\"\n",
                            "ignore-check.kube-linter.io/sensitive-host-mounts": "\"Vector runs requires certain host mounts to watch files being created by pods.\"\n",
                            "ignore-check.kube-linter.io/unset-cpu-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n",
                            "ignore-check.kube-linter.io/unset-memory-requirements": "\"Minio post-job containers from chart do not expose resource configuration options.\"\n"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/component": "query-scheduler",
                            "app.kubernetes.io/instance": "loki",
                            "app.kubernetes.io/name": "loki",
                            "app.kubernetes.io/part-of": "memberlist",
                            "app.kubernetes.io/version": "3.6.3",
                            "helm.sh/chart": "loki-6.49.0",
                            "pod-template-hash": "577c6dbbd"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "labelSelector": {
                                            "matchLabels": {
                                                "app.kubernetes.io/component": "query-scheduler",
                                                "app.kubernetes.io/instance": "loki",
                                                "app.kubernetes.io/name": "loki"
                                            }
                                        },
                                        "topologyKey": "kubernetes.io/hostname"
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "-config.file=/etc/loki/config/config.yaml",
                                    "-target=query-scheduler",
                                    "-log.level=debug"
                                ],
                                "image": "quay.io/kubearchive/loki:3.6.3",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "query-scheduler",
                                "ports": [
                                    {
                                        "containerPort": 3100,
                                        "name": "http-metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9095,
                                        "name": "grpc",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 7946,
                                        "name": "http-memberlist",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/ready",
                                        "port": "http-metrics",
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "memory": "64Mi"
                                    },
                                    "requests": {
                                        "cpu": "25m",
                                        "memory": "32Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/loki/config",
                                        "name": "config"
                                    },
                                    {
                                        "mountPath": "/etc/loki/runtime-config",
                                        "name": "runtime-config"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "fsGroup": 10001,
                            "fsGroupChangePolicy": "OnRootMismatch",
                            "runAsGroup": 10001,
                            "runAsNonRoot": true,
                            "runAsUser": 10001
                        },
                        "serviceAccount": "loki",
                        "serviceAccountName": "loki",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "config.yaml",
                                            "path": "config.yaml"
                                        }
                                    ],
                                    "name": "loki"
                                },
                                "name": "config"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "loki-runtime"
                                },
                                "name": "runtime-config"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "kubearchive-in-cluster-local:apps/Deployment:product-kubearchive/kubearchive-api-server",
                    "deployment.kubernetes.io/desired-replicas": "2",
                    "deployment.kubernetes.io/max-replicas": "3",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:54Z",
                "generation": 1,
                "labels": {
                    "app": "kubearchive-api-server",
                    "pod-template-hash": "5b86d4ff4"
                },
                "name": "kubearchive-api-server-5b86d4ff4",
                "namespace": "product-kubearchive",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "kubearchive-api-server",
                        "uid": "57724362-6ed1-4923-bdc2-ed7ef86b0fe7"
                    }
                ],
                "resourceVersion": "33346",
                "uid": "81088122-1c3d-44fe-aa49-1401a78451ea"
            },
            "spec": {
                "replicas": 2,
                "selector": {
                    "matchLabels": {
                        "app": "kubearchive-api-server",
                        "pod-template-hash": "5b86d4ff4"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "kubearchive-api-server",
                            "pod-template-hash": "5b86d4ff4"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "app": "kubearchive-api-server"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 50
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "KUBEARCHIVE_OTEL_MODE",
                                        "value": "enabled"
                                    },
                                    {
                                        "name": "OTEL_EXPORTER_OTLP_ENDPOINT",
                                        "value": "http://otel-collector:4318"
                                    },
                                    {
                                        "name": "AUTH_IMPERSONATE",
                                        "value": "true"
                                    },
                                    {
                                        "name": "MIGRATION_VERSION",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "MIGRATION_VERSION",
                                                "name": "kubearchive-schema-version-hhfkfdkkcg"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KUBEARCHIVE_ENABLE_PPROF",
                                        "value": "true"
                                    },
                                    {
                                        "name": "LOG_LEVEL",
                                        "value": "INFO"
                                    },
                                    {
                                        "name": "KLOG_LEVEL",
                                        "value": "0"
                                    },
                                    {
                                        "name": "GIN_MODE",
                                        "value": "release"
                                    },
                                    {
                                        "name": "KUBEARCHIVE_OTLP_SEND_LOGS",
                                        "value": "false"
                                    },
                                    {
                                        "name": "OTEL_GO_X_DEPRECATED_RUNTIME_METRICS",
                                        "value": "false"
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "GOMEMLIMIT",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "divisor": "0",
                                                "resource": "limits.memory"
                                            }
                                        }
                                    },
                                    {
                                        "name": "GOMAXPROCS",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "divisor": "0",
                                                "resource": "limits.cpu"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CACHE_EXPIRATION_AUTHORIZED",
                                        "value": "10m"
                                    },
                                    {
                                        "name": "CACHE_EXPIRATION_UNAUTHORIZED",
                                        "value": "1m"
                                    },
                                    {
                                        "name": "KUBEARCHIVE_LOGGING_DIR",
                                        "value": "/data/logging"
                                    }
                                ],
                                "envFrom": [
                                    {
                                        "secretRef": {
                                            "name": "kubearchive-database-credentials"
                                        }
                                    }
                                ],
                                "image": "quay.io/kubearchive/api:v1.21.3@sha256:5dfa9fff9df9df3fef6fe28f88047272f0a653b3ccfbea327a10e3052f1dddb4",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/livez",
                                        "port": 8081,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "kubearchive-api-server",
                                "ports": [
                                    {
                                        "containerPort": 8081,
                                        "name": "server",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8888,
                                        "name": "pprof",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTPS"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "700m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "200m",
                                        "memory": "230Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/kubearchive/ssl/",
                                        "name": "tls-secret",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/data/logging",
                                        "name": "logging-config"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "kubearchive-api-server",
                        "serviceAccountName": "kubearchive-api-server",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "tls-secret",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "kubearchive-api-server-tls"
                                }
                            },
                            {
                                "name": "logging-config",
                                "projected": {
                                    "defaultMode": 420,
                                    "sources": [
                                        {
                                            "configMap": {
                                                "name": "kubearchive-logging-reader-fftdgkfc2g"
                                            }
                                        },
                                        {
                                            "secret": {
                                                "name": "kubearchive-logging"
                                            }
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 2,
                "fullyLabeledReplicas": 2,
                "observedGeneration": 1,
                "readyReplicas": 2,
                "replicas": 2
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "kubearchive-in-cluster-local:apps/Deployment:product-kubearchive/kubearchive-operator",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:54Z",
                "generation": 1,
                "labels": {
                    "control-plane": "controller-manager",
                    "pod-template-hash": "c46476bf8"
                },
                "name": "kubearchive-operator-c46476bf8",
                "namespace": "product-kubearchive",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "kubearchive-operator",
                        "uid": "a2426cd6-79af-476c-b5f2-b9fd5d0da7dc"
                    }
                ],
                "resourceVersion": "33709",
                "uid": "ebef9d14-4148-4eb6-bb01-8385cf992407"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "control-plane": "controller-manager",
                        "pod-template-hash": "c46476bf8"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "kubectl.kubernetes.io/default-container": "manager"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "control-plane": "controller-manager",
                            "pod-template-hash": "c46476bf8"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--health-probe-bind-address=:8081"
                                ],
                                "env": [
                                    {
                                        "name": "KUBEARCHIVE_OTEL_MODE",
                                        "value": "enabled"
                                    },
                                    {
                                        "name": "OTEL_EXPORTER_OTLP_ENDPOINT",
                                        "value": "http://otel-collector:4318"
                                    },
                                    {
                                        "name": "KUBEARCHIVE_ENABLE_PPROF",
                                        "value": "true"
                                    },
                                    {
                                        "name": "LOG_LEVEL",
                                        "value": "INFO"
                                    },
                                    {
                                        "name": "KLOG_LEVEL",
                                        "value": "0"
                                    },
                                    {
                                        "name": "KUBEARCHIVE_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KUBEARCHIVE_OTLP_SEND_LOGS",
                                        "value": "false"
                                    },
                                    {
                                        "name": "OTEL_GO_X_DEPRECATED_RUNTIME_METRICS",
                                        "value": "false"
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "GOMEMLIMIT",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "divisor": "0",
                                                "resource": "limits.memory"
                                            }
                                        }
                                    },
                                    {
                                        "name": "GOMAXPROCS",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "divisor": "0",
                                                "resource": "limits.cpu"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/kubearchive/operator:v1.21.3@sha256:e60f0a019d3b8a895e46caacc429dd0865c80fdb2af83f40d2b4d4c1e7803d52",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "ports": [
                                    {
                                        "containerPort": 8081,
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9443,
                                        "name": "webhook-server",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8888,
                                        "name": "pprof-server",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tmp/k8s-webhook-server/serving-certs",
                                        "name": "cert",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/kubearchive/config",
                                        "name": "operator-config",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true
                        },
                        "serviceAccount": "kubearchive-operator",
                        "serviceAccountName": "kubearchive-operator",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "name": "cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "kubearchive-operator-tls"
                                }
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "kubearchive-operator"
                                },
                                "name": "operator-config"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "kubearchive-in-cluster-local:apps/Deployment:product-kubearchive/kubearchive-sink",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:54Z",
                "generation": 1,
                "labels": {
                    "app": "kubearchive-sink",
                    "pod-template-hash": "cbdc95bc6"
                },
                "name": "kubearchive-sink-cbdc95bc6",
                "namespace": "product-kubearchive",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "kubearchive-sink",
                        "uid": "3fa629b1-2df5-46d7-9a15-256febfb3156"
                    }
                ],
                "resourceVersion": "33065",
                "uid": "ef3ea629-eb94-4a45-b4d0-33e99800ec0a"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "kubearchive-sink",
                        "pod-template-hash": "cbdc95bc6"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "kubearchive-sink",
                            "pod-template-hash": "cbdc95bc6"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "KUBEARCHIVE_OTEL_MODE",
                                        "value": "enabled"
                                    },
                                    {
                                        "name": "OTEL_EXPORTER_OTLP_ENDPOINT",
                                        "value": "http://otel-collector:4318"
                                    },
                                    {
                                        "name": "MIGRATION_VERSION",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "MIGRATION_VERSION",
                                                "name": "kubearchive-schema-version-hhfkfdkkcg"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KUBEARCHIVE_ENABLE_PPROF",
                                        "value": "true"
                                    },
                                    {
                                        "name": "GIN_MODE",
                                        "value": "release"
                                    },
                                    {
                                        "name": "LOG_LEVEL",
                                        "value": "INFO"
                                    },
                                    {
                                        "name": "KLOG_LEVEL",
                                        "value": "0"
                                    },
                                    {
                                        "name": "KUBEARCHIVE_OTLP_SEND_LOGS",
                                        "value": "false"
                                    },
                                    {
                                        "name": "OTEL_GO_X_DEPRECATED_RUNTIME_METRICS",
                                        "value": "false"
                                    },
                                    {
                                        "name": "POD_NAME",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.name"
                                            }
                                        }
                                    },
                                    {
                                        "name": "GOMEMLIMIT",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "divisor": "0",
                                                "resource": "limits.memory"
                                            }
                                        }
                                    },
                                    {
                                        "name": "GOMAXPROCS",
                                        "valueFrom": {
                                            "resourceFieldRef": {
                                                "divisor": "0",
                                                "resource": "limits.cpu"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KUBEARCHIVE_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "KUBEARCHIVE_LOGGING_DIR",
                                        "value": "/data/logging"
                                    }
                                ],
                                "envFrom": [
                                    {
                                        "secretRef": {
                                            "name": "kubearchive-database-credentials"
                                        }
                                    }
                                ],
                                "image": "quay.io/kubearchive/sink:v1.21.3@sha256:cf197b6ecd5a98c3c92a2bed8d2a567b96590bf89783b1d3d5b501239514c422",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/livez",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "kubearchive-sink",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "sink",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8888,
                                        "name": "pprof",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8080,
                                        "scheme": "HTTP"
                                    },
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 4
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "200m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "200m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/data/logging",
                                        "name": "logging-config"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "kubearchive-sink",
                        "serviceAccountName": "kubearchive-sink",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "kubearchive-logging-writer-29g6897ccf"
                                },
                                "name": "logging-config"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "kubearchive-in-cluster-local:apps/Deployment:product-kubearchive/otel-collector",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:16:54Z",
                "generation": 1,
                "labels": {
                    "app": "otel-collector",
                    "pod-template-hash": "68955cb7b4"
                },
                "name": "otel-collector-68955cb7b4",
                "namespace": "product-kubearchive",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "otel-collector",
                        "uid": "a9e5a0b7-9092-4f55-b2ea-8cfd3e9ea13c"
                    }
                ],
                "resourceVersion": "33307",
                "uid": "550a58cc-aae8-4648-be55-ca4f62decd99"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "otel-collector",
                        "pod-template-hash": "68955cb7b4"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "otel-collector",
                            "pod-template-hash": "68955cb7b4"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:8443",
                                    "--upstream=http://127.0.0.1:9090/",
                                    "--logtostderr=true",
                                    "--v=10"
                                ],
                                "image": "registry.redhat.io/openshift4/ose-kube-rbac-proxy:v4.15",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "200Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "200Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            },
                            {
                                "command": [
                                    "/otelcol",
                                    "--config=/conf/otel-collector-config.yaml"
                                ],
                                "image": "quay.io/kubearchive/opentelemetry-collector:0.123.0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "otel-collector",
                                "ports": [
                                    {
                                        "containerPort": 4318,
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "200Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "200Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/conf",
                                        "name": "otel-collector-conf"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "kubearchive-otel-collector",
                        "serviceAccountName": "kubearchive-otel-collector",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "otel-collector-conf-h2c78fc5d4"
                                },
                                "name": "otel-collector-conf"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-wave": "-2",
                    "argocd.argoproj.io/tracking-id": "kubearchive-in-cluster-local:apps/Deployment:product-kubearchive/postgresql",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1",
                    "ignore-check.kube-linter.io/no-read-only-root-fs": "\"Postgres requires to write on root fs,\n ignoring this one as this is only used in development environment\"\n"
                },
                "creationTimestamp": "2026-04-19T19:14:05Z",
                "generation": 1,
                "labels": {
                    "app": "postgresql",
                    "pod-template-hash": "657c8d5447"
                },
                "name": "postgresql-657c8d5447",
                "namespace": "product-kubearchive",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "postgresql",
                        "uid": "067a1da6-3889-4b75-87fa-7fd8618cf68e"
                    }
                ],
                "resourceVersion": "24011",
                "uid": "5d1d62df-44c3-4b3b-838a-07f5330b925f"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "postgresql",
                        "pod-template-hash": "657c8d5447"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "postgresql",
                            "pod-template-hash": "657c8d5447"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "POSTGRESQL_DATABASE",
                                        "value": "kubearchive"
                                    },
                                    {
                                        "name": "POSTGRESQL_USERNAME",
                                        "value": "kubearchive"
                                    },
                                    {
                                        "name": "POSTGRESQL_PASSWORD",
                                        "value": "password"
                                    },
                                    {
                                        "name": "POSTGRESQL_REPLICATION_USE_PASSFILE",
                                        "value": "no"
                                    },
                                    {
                                        "name": "POSTGRESQL_ENABLE_TLS",
                                        "value": "yes"
                                    },
                                    {
                                        "name": "POSTGRESQL_TLS_CERT_FILE",
                                        "value": "/mount/ssl-postgres/tls.crt"
                                    },
                                    {
                                        "name": "POSTGRESQL_TLS_KEY_FILE",
                                        "value": "/mount/ssl-postgres/tls.key"
                                    }
                                ],
                                "image": "quay.io/kubearchive/postgresql:16.6.0",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "postgresql",
                                "ports": [
                                    {
                                        "containerPort": 5432,
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "100Mi"
                                    },
                                    "requests": {
                                        "cpu": "50m",
                                        "memory": "100Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": false,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/mount/ssl-postgres/",
                                        "name": "ssl"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "ssl",
                                "secret": {
                                    "defaultMode": 384,
                                    "secretName": "postgresql-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "project-controller-in-cluster-local:apps/Deployment:project-controller/project-controller-controller-manager",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:13:32Z",
                "generation": 1,
                "labels": {
                    "control-plane": "controller-manager",
                    "pod-template-hash": "867c9ffc5f"
                },
                "name": "project-controller-controller-manager-867c9ffc5f",
                "namespace": "project-controller",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "project-controller-controller-manager",
                        "uid": "37cbb9c4-c6ad-46b4-ad77-f5ab38cb98bb"
                    }
                ],
                "resourceVersion": "20767",
                "uid": "d43a618b-96d8-498f-a8d8-464323533450"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "control-plane": "controller-manager",
                        "pod-template-hash": "867c9ffc5f"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "kubectl.kubernetes.io/default-container": "manager"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "control-plane": "controller-manager",
                            "pod-template-hash": "867c9ffc5f"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--metrics-bind-address=:8443",
                                    "--leader-elect=false",
                                    "--health-probe-bind-address=:8081",
                                    "--metrics-secure=true"
                                ],
                                "command": [
                                    "/manager"
                                ],
                                "image": "quay.io/konflux-ci/project-controller:512564d38cf9bf91e49df164c14863149e3b3963",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true
                        },
                        "serviceAccount": "project-controller-controller-manager",
                        "serviceAccountName": "project-controller-controller-manager",
                        "terminationGracePeriodSeconds": 10
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "release-in-cluster-local:apps/Deployment:release-service/release-service-controller-manager",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:02Z",
                "generation": 1,
                "labels": {
                    "control-plane": "controller-manager",
                    "pod-template-hash": "b874649c5"
                },
                "name": "release-service-controller-manager-b874649c5",
                "namespace": "release-service",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "release-service-controller-manager",
                        "uid": "032e87a6-5eb6-4411-8040-49793318321b"
                    }
                ],
                "resourceVersion": "33732",
                "uid": "21d3a86e-0ec3-4aec-8021-9aaf182d8bfd"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "control-plane": "controller-manager",
                        "pod-template-hash": "b874649c5"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "kubectl.kubernetes.io/default-container": "manager"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "control-plane": "controller-manager",
                            "pod-template-hash": "b874649c5"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--metrics-bind-address=:8080",
                                    "--leader-elect=false"
                                ],
                                "command": [
                                    "/manager"
                                ],
                                "env": [
                                    {
                                        "name": "DEFAULT_RELEASE_PVC",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "DEFAULT_RELEASE_PVC",
                                                "name": "release-service-manager-properties",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "DEFAULT_RELEASE_WORKSPACE_NAME",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "DEFAULT_RELEASE_WORKSPACE_NAME",
                                                "name": "release-service-manager-properties",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "DEFAULT_RELEASE_WORKSPACE_SIZE",
                                        "valueFrom": {
                                            "configMapKeyRef": {
                                                "key": "DEFAULT_RELEASE_WORKSPACE_SIZE",
                                                "name": "release-service-manager-properties",
                                                "optional": true
                                            }
                                        }
                                    },
                                    {
                                        "name": "SERVICE_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/release-service:a4ded44a430db5c81c0b2aced5216a5b034e7f0a",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "webhook-server",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "256Mi"
                                    },
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tmp/k8s-webhook-server/serving-certs",
                                        "name": "cert",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true
                        },
                        "serviceAccount": "release-service-controller-manager",
                        "serviceAccountName": "release-service-controller-manager",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "name": "cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "webhook-server-cert"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "release-in-cluster-local:apps/Deployment:release-service/release-service-monitor-deployment",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:02Z",
                "generation": 1,
                "labels": {
                    "app": "release-service-monitor-app",
                    "pod-template-hash": "5cf9d45d85"
                },
                "name": "release-service-monitor-deployment-5cf9d45d85",
                "namespace": "release-service",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "release-service-monitor-deployment",
                        "uid": "3b8f4c31-9292-4e7c-9ea3-2d434f5a8839"
                    }
                ],
                "resourceVersion": "23099",
                "uid": "e54ba499-8a31-4e09-b00e-c3cc0f046192"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "release-service-monitor-app",
                        "pod-template-hash": "5cf9d45d85"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "release-service-monitor-app",
                            "pod-template-hash": "5cf9d45d85"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "command": [
                                    "/bin/metrics-server",
                                    "/config/server-config.yaml"
                                ],
                                "env": [
                                    {
                                        "name": "HOME",
                                        "value": "/var/tmp"
                                    },
                                    {
                                        "name": "TMPDIR",
                                        "value": "/var/tmp"
                                    }
                                ],
                                "image": "quay.io/konflux-ci/release-service-monitor:7673969b22a482822a63e1767429cdca7c691ea3",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "release-service-monitor",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "256Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/config",
                                        "name": "config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/var/tmp",
                                        "name": "temp-directory"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "server-config.yaml",
                                            "path": "server-config.yaml"
                                        }
                                    ],
                                    "name": "release-service-monitor-config"
                                },
                                "name": "config"
                            },
                            {
                                "emptyDir": {},
                                "name": "temp-directory"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/tracking-id": "smee-client-in-cluster-local:apps/Deployment:smee-client/gosmee-client",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:13Z",
                "generation": 1,
                "labels": {
                    "app": "gosmee-client",
                    "pod-template-hash": "6bf7995fb8"
                },
                "name": "gosmee-client-6bf7995fb8",
                "namespace": "smee-client",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "gosmee-client",
                        "uid": "c892280c-befc-4129-8bb1-718a7edf7976"
                    }
                ],
                "resourceVersion": "24068",
                "uid": "bb20b362-b887-4ca8-a3d6-6447196475dd"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app": "gosmee-client",
                        "pod-template-hash": "6bf7995fb8"
                    }
                },
                "template": {
                    "metadata": {
                        "creationTimestamp": null,
                        "labels": {
                            "app": "gosmee-client",
                            "pod-template-hash": "6bf7995fb8"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "client",
                                    "--sse-buffer-size",
                                    "2097152",
                                    "https://hook.pipelinesascode.com/FMPGBULUKAyF",
                                    "http://localhost:8080"
                                ],
                                "image": "ghcr.io/chmouel/gosmee:v0.28.0",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "exec": {
                                        "command": [
                                            "/shared/check-smee-health.sh"
                                        ]
                                    },
                                    "failureThreshold": 4,
                                    "initialDelaySeconds": 30,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 25
                                },
                                "name": "gosmee",
                                "resources": {
                                    "limits": {
                                        "cpu": "1",
                                        "memory": "750Mi"
                                    },
                                    "requests": {
                                        "cpu": "1",
                                        "memory": "750Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/shared",
                                        "name": "shared-health"
                                    }
                                ]
                            },
                            {
                                "env": [
                                    {
                                        "name": "DOWNSTREAM_SERVICE_URL",
                                        "value": "http://pipelines-as-code-controller.openshift-pipelines:8080"
                                    },
                                    {
                                        "name": "SMEE_CHANNEL_URL",
                                        "value": "https://hook.pipelinesascode.com/FMPGBULUKAyF"
                                    },
                                    {
                                        "name": "HEALTH_CHECK_TIMEOUT_SECONDS",
                                        "value": "20"
                                    }
                                ],
                                "image": "quay.io/konflux-ci/smee-sidecar:ff9f8ccd3cedaf21827ac2ef86c49847c970bab9",
                                "imagePullPolicy": "Always",
                                "livenessProbe": {
                                    "exec": {
                                        "command": [
                                            "/shared/check-sidecar-health.sh"
                                        ]
                                    },
                                    "failureThreshold": 3,
                                    "initialDelaySeconds": 30,
                                    "periodSeconds": 30,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 25
                                },
                                "name": "health-check-sidecar",
                                "ports": [
                                    {
                                        "containerPort": 8080,
                                        "name": "http",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 9100,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "128Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/shared",
                                        "name": "shared-health"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "emptyDir": {},
                                "name": "shared-health"
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/sync-wave": "10",
                    "argocd.argoproj.io/tracking-id": "kueue-in-cluster-local:apps/Deployment:tekton-kueue/tekton-kueue-controller-manager",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:18:40Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/name": "tekton-kueue",
                    "control-plane": "controller-manager",
                    "pod-template-hash": "59f748c859"
                },
                "name": "tekton-kueue-controller-manager-59f748c859",
                "namespace": "tekton-kueue",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-kueue-controller-manager",
                        "uid": "ae73fbec-9cdc-4260-9948-4c0db56e09c1"
                    }
                ],
                "resourceVersion": "36994",
                "uid": "980880bb-3765-44f0-8b4c-b51449dc8c41"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "tekton-kueue",
                        "control-plane": "controller-manager",
                        "pod-template-hash": "59f748c859"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                            "argocd.argoproj.io/sync-wave": "10",
                            "kubectl.kubernetes.io/default-container": "manager"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "tekton-kueue",
                            "control-plane": "controller-manager",
                            "pod-template-hash": "59f748c859"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "controller",
                                    "--leader-elect",
                                    "--health-probe-bind-address=:8081",
                                    "--metrics-bind-address=:8443",
                                    "--metrics-cert-path=/tmp/k8s-metrics-server/metrics-certs"
                                ],
                                "command": [
                                    "/manager"
                                ],
                                "image": "quay.io/konflux-ci/tekton-kueue:b6c757566c8be810e7dc9c28b207c774a8a8c50d",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "metrics-server",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tmp/k8s-metrics-server/metrics-certs",
                                        "name": "metrics-certs",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "tekton-kueue-controller-manager",
                        "serviceAccountName": "tekton-kueue-controller-manager",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "name": "metrics-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca.crt",
                                            "path": "ca.crt"
                                        },
                                        {
                                            "key": "tls.crt",
                                            "path": "tls.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "tls.key"
                                        }
                                    ],
                                    "optional": false,
                                    "secretName": "controller-manager-metrics-server-cert"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/sync-wave": "10",
                    "argocd.argoproj.io/tracking-id": "kueue-in-cluster-local:apps/Deployment:tekton-kueue/tekton-kueue-webhook",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:18:40Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/name": "tekton-kueue-webhook",
                    "control-plane": "controller-manager",
                    "pod-template-hash": "654d897f99"
                },
                "name": "tekton-kueue-webhook-654d897f99",
                "namespace": "tekton-kueue",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-kueue-webhook",
                        "uid": "37d322d4-44fb-40ed-8aa6-2aa910a25244"
                    }
                ],
                "resourceVersion": "37048",
                "uid": "6ff561a6-3304-4119-bd70-ec9041847755"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "tekton-kueue-webhook",
                        "control-plane": "controller-manager",
                        "pod-template-hash": "654d897f99"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                            "argocd.argoproj.io/sync-wave": "10",
                            "kubectl.kubernetes.io/default-container": "webhook"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "tekton-kueue-webhook",
                            "control-plane": "controller-manager",
                            "pod-template-hash": "654d897f99"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "webhook",
                                    "--health-probe-bind-address=:8081",
                                    "--webhook-cert-path=/tmp/k8s-webhook-server/serving-certs",
                                    "--metrics-bind-address=:8443",
                                    "--metrics-cert-path=/tmp/k8s-metrics-server/metrics-certs"
                                ],
                                "command": [
                                    "/manager"
                                ],
                                "image": "quay.io/konflux-ci/tekton-kueue:b6c757566c8be810e7dc9c28b207c774a8a8c50d",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "webhook",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "webhook-server",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8443,
                                        "name": "metrics-server",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "10m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tmp/k8s-webhook-server/serving-certs",
                                        "name": "webhook-certs",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/tmp/k8s-metrics-server/metrics-certs",
                                        "name": "metrics-certs",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true,
                            "seccompProfile": {
                                "type": "RuntimeDefault"
                            }
                        },
                        "serviceAccount": "tekton-kueue-webhook",
                        "serviceAccountName": "tekton-kueue-webhook",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "name": "webhook-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "webhook-server-cert"
                                }
                            },
                            {
                                "name": "metrics-certs",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "ca.crt",
                                            "path": "ca.crt"
                                        },
                                        {
                                            "key": "tls.crt",
                                            "path": "tls.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "tls.key"
                                        }
                                    ],
                                    "optional": false,
                                    "secretName": "webhook-metrics-server-cert"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/sync-wave": "0",
                    "argocd.argoproj.io/tracking-id": "pipeline-service-in-cluster-local:apps/Deployment:tekton-results/tekton-results-api",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:15:06Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/name": "tekton-results-api",
                    "app.kubernetes.io/version": "devel",
                    "pod-template-hash": "5455474595"
                },
                "name": "tekton-results-api-5455474595",
                "namespace": "tekton-results",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-results-api",
                        "uid": "2f96b50c-c068-40e6-af9b-2382e509ea4c"
                    }
                ],
                "resourceVersion": "30539",
                "uid": "49d62d13-eb6b-417f-8a58-eca7fa3f7dfe"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "tekton-results-api",
                        "pod-template-hash": "5455474595"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                            "cluster-autoscaler.kubernetes.io/safe-to-evict": "false"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "tekton-results-api",
                            "app.kubernetes.io/version": "devel",
                            "pod-template-hash": "5455474595"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "nodeAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "nodeSelectorTerms": [
                                        {
                                            "matchExpressions": [
                                                {
                                                    "key": "kubernetes.io/os",
                                                    "operator": "NotIn",
                                                    "values": [
                                                        "windows"
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            },
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "app.kubernetes.io/name": "tekton-results-api"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "LOGS_API",
                                        "value": "true"
                                    },
                                    {
                                        "name": "LOGS_TYPE",
                                        "value": "blob"
                                    },
                                    {
                                        "name": "S3_HOSTNAME_IMMUTABLE",
                                        "value": "true"
                                    },
                                    {
                                        "name": "AWS_ACCESS_KEY_ID",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "aws_access_key_id",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "AWS_SECRET_ACCESS_KEY",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "aws_secret_access_key",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "AWS_REGION",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "aws_region",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "S3_BUCKET_NAME",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "bucket",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "AWS_ENDPOINT_URL",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "endpoint",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DB_USER",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "db.user",
                                                "name": "tekton-results-database"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DB_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "db.password",
                                                "name": "tekton-results-database"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DB_HOST",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "db.host",
                                                "name": "tekton-results-database"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DB_NAME",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "db.name",
                                                "name": "tekton-results-database"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/tekton-results-api:99db802a56c3d62e823e162feee9811e55ed1f5b",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "api",
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "512Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "startupProbe": {
                                    "failureThreshold": 10,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/ssl/certs/s3-cert.crt",
                                        "name": "ca-s3",
                                        "subPath": "s3-cert.crt"
                                    },
                                    {
                                        "mountPath": "/etc/tls/db",
                                        "name": "db-tls-ca",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/tekton/results",
                                        "name": "config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/tls",
                                        "name": "tls",
                                        "readOnly": true
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:9443",
                                    "--upstream=http://127.0.0.1:9090/",
                                    "--logtostderr=true",
                                    "--v=6"
                                ],
                                "image": "registry.redhat.io/openshift4/ose-kube-rbac-proxy:v4.12",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "5m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "initContainers": [
                            {
                                "args": [
                                    "-c",
                                    "mc --config-dir /tmp config host add minio \"$S3_ENDPOINT\" \"$S3_ACCESS_KEY_ID\" \"$S3_SECRET_ACCESS_KEY\" \u0026\u0026\nif [ -z \"$(mc --config-dir /tmp ls minio | grep \"$S3_BUCKET_NAME\")\" ]; then\n  mc --config-dir /tmp mb --with-lock --region \"$S3_REGION\" minio/\"$S3_BUCKET_NAME\" \u0026\u0026\n  echo \"Minio bucket $S3_BUCKET_NAME successfully created.\"\nfi\n"
                                ],
                                "command": [
                                    "/bin/bash"
                                ],
                                "env": [
                                    {
                                        "name": "S3_ACCESS_KEY_ID",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "aws_access_key_id",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "S3_SECRET_ACCESS_KEY",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "aws_secret_access_key",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "S3_REGION",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "aws_region",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "S3_BUCKET_NAME",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "bucket",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "S3_ENDPOINT",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "endpoint",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/minio/mc:RELEASE.2023-01-28T20-29-38Z",
                                "imagePullPolicy": "Always",
                                "name": "mc",
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "5m",
                                        "memory": "32Mi"
                                    }
                                },
                                "securityContext": {
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/ssl/certs/s3-cert.crt",
                                        "name": "ca-s3",
                                        "subPath": "s3-cert.crt"
                                    },
                                    {
                                        "mountPath": "/tmp",
                                        "name": "tmp-mc-volume"
                                    }
                                ]
                            }
                        ],
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "tekton-results-api",
                        "serviceAccountName": "tekton-results-api",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "ca-s3",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "public.crt",
                                            "path": "s3-cert.crt"
                                        }
                                    ],
                                    "secretName": "storage-tls"
                                }
                            },
                            {
                                "emptyDir": {},
                                "name": "tmp-mc-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "rds-root-crt"
                                },
                                "name": "db-tls-ca"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "tekton-results-api-config"
                                },
                                "name": "config"
                            },
                            {
                                "name": "tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "tekton-results-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/sync-wave": "0",
                    "argocd.argoproj.io/tracking-id": "pipeline-service-in-cluster-local:apps/Deployment:tekton-results/tekton-results-api-for-watcher",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:15:06Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/name": "tekton-results-api-for-watcher",
                    "app.kubernetes.io/version": "devel",
                    "pod-template-hash": "549c78859f"
                },
                "name": "tekton-results-api-for-watcher-549c78859f",
                "namespace": "tekton-results",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-results-api-for-watcher",
                        "uid": "21a831d3-a67f-49eb-aeee-fcbcdff1f9de"
                    }
                ],
                "resourceVersion": "30532",
                "uid": "151f4b91-9287-411f-b78d-e98c66279c4c"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "tekton-results-api-for-watcher",
                        "pod-template-hash": "549c78859f"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                            "cluster-autoscaler.kubernetes.io/safe-to-evict": "false"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "tekton-results-api-for-watcher",
                            "app.kubernetes.io/version": "devel",
                            "pod-template-hash": "549c78859f"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "nodeAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "nodeSelectorTerms": [
                                        {
                                            "matchExpressions": [
                                                {
                                                    "key": "kubernetes.io/os",
                                                    "operator": "NotIn",
                                                    "values": [
                                                        "windows"
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            },
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "app.kubernetes.io/name": "tekton-results-api-for-watcher"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "LOGS_API",
                                        "value": "true"
                                    },
                                    {
                                        "name": "LOGS_TYPE",
                                        "value": "blob"
                                    },
                                    {
                                        "name": "S3_HOSTNAME_IMMUTABLE",
                                        "value": "true"
                                    },
                                    {
                                        "name": "AWS_ACCESS_KEY_ID",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "aws_access_key_id",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "AWS_SECRET_ACCESS_KEY",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "aws_secret_access_key",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "AWS_REGION",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "aws_region",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "S3_BUCKET_NAME",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "bucket",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "AWS_ENDPOINT_URL",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "endpoint",
                                                "name": "tekton-results-s3"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DB_USER",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "db.user",
                                                "name": "tekton-results-database"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DB_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "db.password",
                                                "name": "tekton-results-database"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DB_HOST",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "db.host",
                                                "name": "tekton-results-database"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DB_NAME",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "db.name",
                                                "name": "tekton-results-database"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/tekton-results-api:99db802a56c3d62e823e162feee9811e55ed1f5b",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "api",
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "limits": {
                                        "cpu": "100m",
                                        "memory": "512Mi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "512Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "startupProbe": {
                                    "failureThreshold": 10,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8080,
                                        "scheme": "HTTPS"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/ssl/certs/s3-cert.crt",
                                        "name": "ca-s3",
                                        "subPath": "s3-cert.crt"
                                    },
                                    {
                                        "mountPath": "/etc/tls/db",
                                        "name": "db-tls-ca",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/tekton/results",
                                        "name": "config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/tls",
                                        "name": "tls",
                                        "readOnly": true
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:9443",
                                    "--upstream=http://127.0.0.1:9090/",
                                    "--logtostderr=true",
                                    "--v=6"
                                ],
                                "image": "registry.redhat.io/openshift4/ose-kube-rbac-proxy:v4.12",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "5m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "tekton-results-api",
                        "serviceAccountName": "tekton-results-api",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "ca-s3",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "public.crt",
                                            "path": "s3-cert.crt"
                                        }
                                    ],
                                    "secretName": "storage-tls"
                                }
                            },
                            {
                                "emptyDir": {},
                                "name": "tmp-mc-volume"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "rds-root-crt"
                                },
                                "name": "db-tls-ca"
                            },
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "tekton-results-api-config"
                                },
                                "name": "config"
                            },
                            {
                                "name": "tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "tekton-results-for-watcher-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/tracking-id": "pipeline-service-in-cluster-local:apps/Deployment:tekton-results/tekton-results-retention-policy-agent",
                    "deployment.kubernetes.io/desired-replicas": "0",
                    "deployment.kubernetes.io/max-replicas": "0",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:15:06Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/name": "tekton-results-retention-policy-agent",
                    "app.kubernetes.io/version": "devel",
                    "pod-template-hash": "55bf9dfb64"
                },
                "name": "tekton-results-retention-policy-agent-55bf9dfb64",
                "namespace": "tekton-results",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-results-retention-policy-agent",
                        "uid": "f1726c13-71ee-4f8e-ab29-fc2b9aef4431"
                    }
                ],
                "resourceVersion": "27043",
                "uid": "72e213e9-32fb-4de3-ae8b-5abcb2cab640"
            },
            "spec": {
                "replicas": 0,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "tekton-results-retention-policy-agent",
                        "pod-template-hash": "55bf9dfb64"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                            "cluster-autoscaler.kubernetes.io/safe-to-evict": "false"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "tekton-results-retention-policy-agent",
                            "app.kubernetes.io/version": "devel",
                            "pod-template-hash": "55bf9dfb64"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "env": [
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "tekton-results-config-logging"
                                    },
                                    {
                                        "name": "DB_USER",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "POSTGRES_USER",
                                                "name": "tekton-results-postgres"
                                            }
                                        }
                                    },
                                    {
                                        "name": "DB_PASSWORD",
                                        "valueFrom": {
                                            "secretKeyRef": {
                                                "key": "POSTGRES_PASSWORD",
                                                "name": "tekton-results-postgres"
                                            }
                                        }
                                    }
                                ],
                                "image": "quay.io/konflux-ci/tekton-results-retention-policy-agent:99db802a56c3d62e823e162feee9811e55ed1f5b",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "retention-policy-agent",
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "5m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tekton/results",
                                        "name": "config",
                                        "readOnly": true
                                    },
                                    {
                                        "mountPath": "/etc/tls",
                                        "name": "tls",
                                        "readOnly": true
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "tekton-results-watcher",
                        "serviceAccountName": "tekton-results-watcher",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "configMap": {
                                    "defaultMode": 420,
                                    "name": "tekton-results-api-config"
                                },
                                "name": "config"
                            },
                            {
                                "name": "tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "tekton-results-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "observedGeneration": 1,
                "replicas": 0
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                    "argocd.argoproj.io/sync-wave": "2",
                    "argocd.argoproj.io/tracking-id": "pipeline-service-in-cluster-local:apps/Deployment:tekton-results/tekton-results-watcher",
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:22:18Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/name": "tekton-results-watcher",
                    "app.kubernetes.io/version": "devel",
                    "pod-template-hash": "55667bb668"
                },
                "name": "tekton-results-watcher-55667bb668",
                "namespace": "tekton-results",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tekton-results-watcher",
                        "uid": "5c2816e5-aa75-429d-a3d2-12d0f02b77a9"
                    }
                ],
                "resourceVersion": "41283",
                "uid": "0ebe13e7-2635-4b56-993a-c94a515f2309"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/name": "tekton-results-watcher",
                        "pod-template-hash": "55667bb668"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "argocd.argoproj.io/sync-options": "SkipDryRunOnMissingResource=true",
                            "cluster-autoscaler.kubernetes.io/safe-to-evict": "false"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/name": "tekton-results-watcher",
                            "app.kubernetes.io/version": "devel",
                            "pod-template-hash": "55667bb668"
                        }
                    },
                    "spec": {
                        "affinity": {
                            "nodeAffinity": {
                                "requiredDuringSchedulingIgnoredDuringExecution": {
                                    "nodeSelectorTerms": [
                                        {
                                            "matchExpressions": [
                                                {
                                                    "key": "kubernetes.io/os",
                                                    "operator": "NotIn",
                                                    "values": [
                                                        "windows"
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            },
                            "podAntiAffinity": {
                                "preferredDuringSchedulingIgnoredDuringExecution": [
                                    {
                                        "podAffinityTerm": {
                                            "labelSelector": {
                                                "matchLabels": {
                                                    "app.kubernetes.io/name": "tekton-results-watcher"
                                                }
                                            },
                                            "topologyKey": "kubernetes.io/hostname"
                                        },
                                        "weight": 100
                                    }
                                ]
                            }
                        },
                        "containers": [
                            {
                                "args": [
                                    "-api_addr",
                                    "tekton-results-api-service-for-watcher.tekton-results.svc.cluster.local:8080",
                                    "-auth_mode",
                                    "token",
                                    "-check_owner=false",
                                    "-completed_run_grace_period=2h",
                                    "-requeue_interval=2m",
                                    "-store_deadline=1m",
                                    "-forward_buffer=1m",
                                    "-threadiness=32",
                                    "-qps=50",
                                    "-burst=50",
                                    "-logs_api=true",
                                    "-disable_storing_incomplete_runs=true"
                                ],
                                "env": [
                                    {
                                        "name": "SYSTEM_NAMESPACE",
                                        "valueFrom": {
                                            "fieldRef": {
                                                "apiVersion": "v1",
                                                "fieldPath": "metadata.namespace"
                                            }
                                        }
                                    },
                                    {
                                        "name": "CONFIG_LOGGING_NAME",
                                        "value": "tekton-results-config-logging"
                                    },
                                    {
                                        "name": "CONFIG_LEADERELECTION_NAME",
                                        "value": "tekton-results-config-leader-election"
                                    },
                                    {
                                        "name": "CONFIG_OBSERVABILITY_NAME",
                                        "value": "tekton-results-config-observability"
                                    },
                                    {
                                        "name": "METRICS_DOMAIN",
                                        "value": "tekton.dev/results"
                                    },
                                    {
                                        "name": "TEKTON_RESULTS_API_SERVICE",
                                        "value": "tekton-results-api-service-for-watcher.tekton-results.svc.cluster.local:8080"
                                    },
                                    {
                                        "name": "AUTH_MODE",
                                        "value": "token"
                                    },
                                    {
                                        "name": "KUBERNETES_MIN_VERSION",
                                        "value": "v1.28.0"
                                    }
                                ],
                                "image": "quay.io/konflux-ci/tekton-results-watcher:99db802a56c3d62e823e162feee9811e55ed1f5b",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "watcher",
                                "ports": [
                                    {
                                        "containerPort": 9090,
                                        "name": "metrics",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8008,
                                        "name": "profiling",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "250m",
                                        "memory": "2Gi"
                                    },
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/etc/tls",
                                        "name": "tls",
                                        "readOnly": true
                                    }
                                ]
                            },
                            {
                                "args": [
                                    "--secure-listen-address=0.0.0.0:8443",
                                    "--upstream=http://127.0.0.1:9090/",
                                    "--logtostderr=true",
                                    "--v=6"
                                ],
                                "image": "registry.redhat.io/openshift4/ose-kube-rbac-proxy:v4.12",
                                "imagePullPolicy": "IfNotPresent",
                                "name": "kube-rbac-proxy",
                                "ports": [
                                    {
                                        "containerPort": 8443,
                                        "name": "watchermetrics",
                                        "protocol": "TCP"
                                    }
                                ],
                                "resources": {
                                    "limits": {
                                        "cpu": "500m",
                                        "memory": "128Mi"
                                    },
                                    "requests": {
                                        "cpu": "5m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    },
                                    "readOnlyRootFilesystem": true,
                                    "runAsNonRoot": true,
                                    "seccompProfile": {
                                        "type": "RuntimeDefault"
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File"
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {},
                        "serviceAccount": "tekton-results-watcher",
                        "serviceAccountName": "tekton-results-watcher",
                        "terminationGracePeriodSeconds": 30,
                        "volumes": [
                            {
                                "name": "tls",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "tekton-results-for-watcher-tls"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        },
        {
            "apiVersion": "apps/v1",
            "kind": "ReplicaSet",
            "metadata": {
                "annotations": {
                    "deployment.kubernetes.io/desired-replicas": "1",
                    "deployment.kubernetes.io/max-replicas": "2",
                    "deployment.kubernetes.io/revision": "1"
                },
                "creationTimestamp": "2026-04-19T19:14:10Z",
                "generation": 1,
                "labels": {
                    "app.kubernetes.io/managed-by": "operator-lifecycle-manager",
                    "app.kubernetes.io/name": "tempo-operator",
                    "app.kubernetes.io/part-of": "tempo-operator",
                    "control-plane": "controller-manager",
                    "pod-template-hash": "6654f9f99d"
                },
                "name": "tempo-operator-controller-6654f9f99d",
                "namespace": "tempo-operator",
                "ownerReferences": [
                    {
                        "apiVersion": "apps/v1",
                        "blockOwnerDeletion": true,
                        "controller": true,
                        "kind": "Deployment",
                        "name": "tempo-operator-controller",
                        "uid": "a7d49200-3f17-45e1-a562-c52c51bf04ba"
                    }
                ],
                "resourceVersion": "25090",
                "uid": "d6ceb41e-08e8-4863-aecf-6ae45498f2d7"
            },
            "spec": {
                "replicas": 1,
                "selector": {
                    "matchLabels": {
                        "app.kubernetes.io/managed-by": "operator-lifecycle-manager",
                        "app.kubernetes.io/name": "tempo-operator",
                        "app.kubernetes.io/part-of": "tempo-operator",
                        "control-plane": "controller-manager",
                        "pod-template-hash": "6654f9f99d"
                    }
                },
                "template": {
                    "metadata": {
                        "annotations": {
                            "alm-examples": "[\n  {\n    \"apiVersion\": \"tempo.grafana.com/v1alpha1\",\n    \"kind\": \"TempoMonolithic\",\n    \"metadata\": {\n      \"name\": \"sample\"\n    },\n    \"spec\": {\n      \"jaegerui\": {\n        \"enabled\": true,\n        \"resources\": {\n          \"limits\": {\n            \"cpu\": \"2\",\n            \"memory\": \"2Gi\"\n          }\n        },\n        \"route\": {\n          \"enabled\": true\n        }\n      },\n      \"resources\": {\n        \"limits\": {\n          \"cpu\": \"2\",\n          \"memory\": \"2Gi\"\n        }\n      },\n      \"storage\": {\n        \"traces\": {\n          \"backend\": \"memory\"\n        }\n      }\n    }\n  },\n  {\n    \"apiVersion\": \"tempo.grafana.com/v1alpha1\",\n    \"kind\": \"TempoStack\",\n    \"metadata\": {\n      \"name\": \"sample\"\n    },\n    \"spec\": {\n      \"resources\": {\n        \"total\": {\n          \"limits\": {\n            \"cpu\": \"2000m\",\n            \"memory\": \"2Gi\"\n          }\n        }\n      },\n      \"storage\": {\n        \"secret\": {\n          \"name\": \"my-storage-secret\",\n          \"type\": \"s3\"\n        }\n      },\n      \"storageSize\": \"1Gi\",\n      \"template\": {\n        \"queryFrontend\": {\n          \"jaegerQuery\": {\n            \"enabled\": true,\n            \"ingress\": {\n              \"type\": \"route\"\n            }\n          }\n        }\n      }\n    }\n  }\n]",
                            "capabilities": "Deep Insights",
                            "categories": "Logging \u0026 Tracing,Monitoring,Observability",
                            "console.openshift.io/operator-monitoring-default": "true",
                            "containerImage": "registry.redhat.io/rhosdt/tempo-rhel9-operator@sha256:43f93473bf97cb8012d327f0d29d01e1a882a5a02309f2b667143bf8f0cd4cf1",
                            "createdAt": "17 Mar 2026, 20:09",
                            "description": "Create and manage deployments of Tempo, a high-scale distributed tracing backend.",
                            "features.operators.openshift.io/cnf": "false",
                            "features.operators.openshift.io/cni": "false",
                            "features.operators.openshift.io/csi": "false",
                            "features.operators.openshift.io/disconnected": "true",
                            "features.operators.openshift.io/fips-compliant": "true",
                            "features.operators.openshift.io/proxy-aware": "true",
                            "features.operators.openshift.io/tls-profiles": "true",
                            "features.operators.openshift.io/token-auth-aws": "true",
                            "features.operators.openshift.io/token-auth-azure": "false",
                            "features.operators.openshift.io/token-auth-gcp": "false",
                            "kubectl.kubernetes.io/default-container": "manager",
                            "olm.operatorGroup": "tempo-operator",
                            "olm.operatorNamespace": "tempo-operator",
                            "olm.skipRange": "\u003e=0.6.0 \u003c0.20.0-2",
                            "olm.targetNamespaces": "",
                            "olmcahash": "085eaddf19adaa982266481fd594ab87d641ee8bf88ed77e33f3cfe815754041",
                            "operatorframework.io/cluster-monitoring": "true",
                            "operatorframework.io/properties": "{\"properties\":[{\"type\":\"olm.gvk\",\"value\":{\"group\":\"tempo.grafana.com\",\"kind\":\"TempoMonolithic\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.gvk\",\"value\":{\"group\":\"tempo.grafana.com\",\"kind\":\"TempoStack\",\"version\":\"v1alpha1\"}},{\"type\":\"olm.package\",\"value\":{\"packageName\":\"tempo-product\",\"version\":\"0.20.0-2\"}}]}",
                            "operatorframework.io/suggested-namespace": "openshift-tempo-operator",
                            "operators.openshift.io/infrastructure-features": "[\"disconnected\"]",
                            "operators.openshift.io/valid-subscription": "[\"OpenShift Container Platform\", \"OpenShift Platform Plus\"]",
                            "operators.operatorframework.io/builder": "operator-sdk-v1.36.0",
                            "operators.operatorframework.io/project_layout": "go.kubebuilder.io/v4",
                            "repository": "https://github.com/grafana/tempo-operator",
                            "support": "Red Hat"
                        },
                        "creationTimestamp": null,
                        "labels": {
                            "app.kubernetes.io/managed-by": "operator-lifecycle-manager",
                            "app.kubernetes.io/name": "tempo-operator",
                            "app.kubernetes.io/part-of": "tempo-operator",
                            "control-plane": "controller-manager",
                            "pod-template-hash": "6654f9f99d"
                        }
                    },
                    "spec": {
                        "containers": [
                            {
                                "args": [
                                    "--zap-log-level=info",
                                    "start",
                                    "--metrics-tls-cert-dir=/var/run/tls/server/"
                                ],
                                "env": [
                                    {
                                        "name": "RELATED_IMAGE_TEMPO",
                                        "value": "registry.redhat.io/rhosdt/tempo-rhel9@sha256:5fb9605ec704409ce0a4e2664278c1c67852210a20ccf3e7ff36a8343cb44306"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_JAEGER_QUERY",
                                        "value": "registry.redhat.io/rhosdt/tempo-jaeger-query-rhel9@sha256:a2cec745ebb8b80ebbd86808c0c34a7c16604d0f5fbb14ae182db9e08dde3284"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_TEMPO_QUERY",
                                        "value": "registry.redhat.io/rhosdt/tempo-query-rhel9@sha256:1aafaeb556a435fb7dafb49546f681eea75373d9cf610edc2b6a8aee33956ed2"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_TEMPO_GATEWAY",
                                        "value": "registry.redhat.io/rhosdt/tempo-gateway-rhel9@sha256:59750eb11ea00204b502e4f15248f27c78437c41ef18e221d55ed4b481857d66"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_TEMPO_GATEWAY_OPA",
                                        "value": "registry.redhat.io/rhosdt/tempo-gateway-opa-rhel9@sha256:d8c3d067cd701b07dbad39fc6ea829a08b4e6234cc1ce05331abe152388743ae"
                                    },
                                    {
                                        "name": "RELATED_IMAGE_OAUTH_PROXY",
                                        "value": "registry.redhat.io/openshift4/ose-oauth-proxy@sha256:6bcfa981a7a75c242a16afa6dab36bf6e3b8a1442fa863875919ad551f48eceb"
                                    },
                                    {
                                        "name": "DISTRIBUTION",
                                        "value": "openshift"
                                    },
                                    {
                                        "name": "FEATURE_GATES",
                                        "value": "openshift.route,openshift.servingCertsService,openshift.oauthProxy,openshift.noAuthWarning,prometheusOperator,observability.metrics.createServiceMonitors,observability.metrics.createPrometheusRules"
                                    },
                                    {
                                        "name": "DEFAULT_POD_SECURITY_CONTEXT",
                                        "value": "{}"
                                    },
                                    {
                                        "name": "OPERATOR_CONDITION_NAME",
                                        "value": "tempo-operator.v0.20.0-2"
                                    }
                                ],
                                "image": "registry.redhat.io/rhosdt/tempo-rhel9-operator@sha256:43f93473bf97cb8012d327f0d29d01e1a882a5a02309f2b667143bf8f0cd4cf1",
                                "imagePullPolicy": "IfNotPresent",
                                "livenessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/healthz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 15,
                                    "periodSeconds": 20,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "name": "manager",
                                "ports": [
                                    {
                                        "containerPort": 9443,
                                        "name": "webhook-server",
                                        "protocol": "TCP"
                                    },
                                    {
                                        "containerPort": 8443,
                                        "name": "https",
                                        "protocol": "TCP"
                                    }
                                ],
                                "readinessProbe": {
                                    "failureThreshold": 3,
                                    "httpGet": {
                                        "path": "/readyz",
                                        "port": 8081,
                                        "scheme": "HTTP"
                                    },
                                    "initialDelaySeconds": 5,
                                    "periodSeconds": 10,
                                    "successThreshold": 1,
                                    "timeoutSeconds": 1
                                },
                                "resources": {
                                    "requests": {
                                        "cpu": "100m",
                                        "memory": "64Mi"
                                    }
                                },
                                "securityContext": {
                                    "allowPrivilegeEscalation": false,
                                    "capabilities": {
                                        "drop": [
                                            "ALL"
                                        ]
                                    }
                                },
                                "terminationMessagePath": "/dev/termination-log",
                                "terminationMessagePolicy": "File",
                                "volumeMounts": [
                                    {
                                        "mountPath": "/tmp/k8s-webhook-server/serving-certs",
                                        "name": "webhook-cert"
                                    },
                                    {
                                        "mountPath": "/var/run/tls/server",
                                        "name": "tempo-operator-metrics-cert"
                                    },
                                    {
                                        "mountPath": "/apiserver.local.config/certificates",
                                        "name": "apiservice-cert"
                                    }
                                ]
                            }
                        ],
                        "dnsPolicy": "ClusterFirst",
                        "restartPolicy": "Always",
                        "schedulerName": "default-scheduler",
                        "securityContext": {
                            "runAsNonRoot": true
                        },
                        "serviceAccount": "tempo-operator-controller-manager",
                        "serviceAccountName": "tempo-operator-controller-manager",
                        "terminationGracePeriodSeconds": 10,
                        "volumes": [
                            {
                                "name": "cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "webhook-server-cert"
                                }
                            },
                            {
                                "name": "tempo-operator-metrics-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "secretName": "tempo-operator-metrics"
                                }
                            },
                            {
                                "name": "apiservice-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "tls.crt",
                                            "path": "apiserver.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "apiserver.key"
                                        }
                                    ],
                                    "secretName": "tempo-operator-controller-service-cert"
                                }
                            },
                            {
                                "name": "webhook-cert",
                                "secret": {
                                    "defaultMode": 420,
                                    "items": [
                                        {
                                            "key": "tls.crt",
                                            "path": "tls.crt"
                                        },
                                        {
                                            "key": "tls.key",
                                            "path": "tls.key"
                                        }
                                    ],
                                    "secretName": "tempo-operator-controller-service-cert"
                                }
                            }
                        ]
                    }
                }
            },
            "status": {
                "availableReplicas": 1,
                "fullyLabeledReplicas": 1,
                "observedGeneration": 1,
                "readyReplicas": 1,
                "replicas": 1
            }
        }
    ],
    "kind": "List",
    "metadata": {
        "resourceVersion": ""
    }
}
