Name: prometheus-webhook-snmp-2-build Namespace: service-telemetry Priority: 0 Service Account: builder Node: crc/192.168.126.11 Start Time: Tue, 24 Feb 2026 00:29:32 +0000 Labels: openshift.io/build.name=prometheus-webhook-snmp-2 Annotations: k8s.ovn.org/pod-networks: {"default":{"ip_addresses":["10.217.0.81/23"],"mac_address":"0a:58:0a:d9:00:51","gateway_ips":["10.217.0.1"],"routes":[{"dest":"10.217.0.0... k8s.v1.cni.cncf.io/network-status: [{ "name": "ovn-kubernetes", "interface": "eth0", "ips": [ "10.217.0.81" ], "mac": "0a:58:0a:d9:00:51", "default": true, "dns": {} }] openshift.io/build.name: prometheus-webhook-snmp-2 openshift.io/scc: privileged security.openshift.io/validated-scc-subject-type: user Status: Succeeded IP: 10.217.0.81 IPs: IP: 10.217.0.81 Controlled By: Build/prometheus-webhook-snmp-2 Init Containers: git-clone: Container ID: cri-o://82310429a935935448e90bbd1748722f98163c1b9a95ff30dd163badae816358 Image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:c2a80d6dd943dbbb5c0bc63f4aa17d55e44dbde22a3ea4e6a41a32930dc4ac77 Image ID: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:c2a80d6dd943dbbb5c0bc63f4aa17d55e44dbde22a3ea4e6a41a32930dc4ac77 Port: Host Port: SeccompProfile: RuntimeDefault Args: openshift-git-clone --v=0 State: Terminated Reason: Completed Exit Code: 0 Started: Tue, 24 Feb 2026 00:29:33 +0000 Finished: Tue, 24 Feb 2026 00:29:34 +0000 Ready: True Restart Count: 0 Environment: BUILD: {"kind":"Build","apiVersion":"build.openshift.io/v1","metadata":{"name":"prometheus-webhook-snmp-2","namespace":"service-telemetry","uid":"a7639853-ad6c-441a-82d5-14907e4eab9d","resourceVersion":"45692","generation":1,"creationTimestamp":"2026-02-24T00:29:32Z","labels":{"build":"prometheus-webhook-snmp","buildconfig":"prometheus-webhook-snmp","openshift.io/build-config.name":"prometheus-webhook-snmp","openshift.io/build.start-policy":"Serial"},"annotations":{"openshift.io/build-config.name":"prometheus-webhook-snmp","openshift.io/build.number":"2"},"ownerReferences":[{"apiVersion":"build.openshift.io/v1","kind":"BuildConfig","name":"prometheus-webhook-snmp","uid":"8d921ce5-83dc-4ab6-9930-d87ef451beff","controller":true}],"managedFields":[{"manager":"openshift-apiserver","operation":"Update","apiVersion":"build.openshift.io/v1","time":"2026-02-24T00:29:32Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.number":{}},"f:labels":{".":{},"f:build":{},"f:buildconfig":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.start-policy":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8d921ce5-83dc-4ab6-9930-d87ef451beff\"}":{}}},"f:spec":{"f:output":{"f:to":{}},"f:revision":{".":{},"f:git":{".":{},"f:author":{".":{},"f:email":{},"f:name":{}},"f:commit":{},"f:committer":{".":{},"f:email":{},"f:name":{}},"f:message":{}},"f:type":{}},"f:serviceAccount":{},"f:source":{"f:binary":{},"f:dockerfile":{},"f:type":{}},"f:strategy":{"f:dockerStrategy":{".":{},"f:from":{}},"f:type":{}}},"f:status":{"f:conditions":{".":{},"k:{\"type\":\"New\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:status":{},"f:type":{}}},"f:config":{},"f:phase":{}}}}]},"spec":{"serviceAccount":"builder","source":{"type":"Binary","binary":{},"dockerfile":"FROM registry.access.redhat.com/ubi9:latest\n\n# \u003e\u003e ignore SC2086 because passing quoted env vars to dnf causes issues (fail to install)\n# hadolint ignore=SC2086\nRUN INSTALL_PKGS=\"\\\n procps-ng \\\n lsof \\\n python3 \\\n python3-devel \\\n gcc \\\n \" \u0026\u0026 \\\n dnf -y --setopt=tsflags=nodocs --setopt=skip_missing_names_on_install=False install $INSTALL_PKGS \u0026\u0026 \\\n dnf -y clean all\n\nCOPY . /source/app\nWORKDIR /source/app\n\nRUN python3 -m pip install --no-cache-dir -r requirements-build.txt \u0026\u0026 \\\n python3 -m pip install --no-cache-dir . \u0026\u0026 \\\n python3 -m pip freeze\n\n# Cleanup\n# \u003e\u003e ignore SC2086 because passing quoted env vars to dnf causes issues (fail to install)\n# hadolint ignore=SC2086\nRUN UNINSTALL_PKGS=\"\\\n gcc \\\n \" \u0026\u0026 \\\n dnf remove -y $UNINSTALL_PKGS \u0026\u0026 \\\n dnf -y clean all\n\nENV SNMP_COMMUNITY=\"public\"\nENV SNMP_PORT=162\nENV SNMP_HOST=\"localhost\"\nENV SNMP_RETRIES=5\nENV SNMP_TIMEOUT=1\nENV ALERT_OID_LABEL=\"oid\"\nENV TRAP_OID_PREFIX=\"1.3.6.1.4.1.50495.15\"\nENV TRAP_DEFAULT_OID=\"1.3.6.1.4.1.50495.15.1.2.1\"\nENV TRAP_DEFAULT_SEVERITY=\"\"\n\nEXPOSE 9099\n\nCMD [\"sh\", \"-c\", \"/usr/local/bin/prometheus-webhook-snmp --debug --snmp-port=\\\"${SNMP_PORT}\\\" --snmp-host=\\\"${SNMP_HOST}\\\" --snmp-community=\\\"${SNMP_COMMUNITY}\\\" --snmp-retries=\\\"${SNMP_RETRIES}\\\" --snmp-timeout=\\\"${SNMP_TIMEOUT}\\\" --alert-oid-label=\\\"${ALERT_OID_LABEL}\\\" --trap-oid-prefix=\\\"${TRAP_OID_PREFIX}\\\" --trap-default-oid=\\\"${TRAP_DEFAULT_OID}\\\" --trap-default-severity=\\\"${TRAP_DEFAULT_SEVERITY}\\\" run\"]\n"},"revision":{"type":"Git","git":{"commit":"e9922314cc777d251a07a5352311dc7afed0257d","author":{"name":"Victoria Martinez de la Cruz","email":"victoria@redhat.com"},"committer":{"name":"GitHub","email":"noreply@github.com"},"message":"STF 1.5.7 release ops (#49)\n\n* Add calver as a build requirement\n\ncalver is actually a build requirement of trove-classifiers, but it goes\nundetected by pip_find_builddeps.py because of [1].\n\nThis causes disconnected builds that rely on explicit requirements\nlistings (like those done with Cachito) to fail. By adding it explicitly\nthose builds should be fixed.\n\nFuture runs of pip_find_builddeps.py will preserve this manual addition\nas long as the --append argument is passed to it.\n\nRelated: RELDEL-6094\n\n[1] https://github.com/pypa/pip/issues/7863\n\n* Fixup prometheus_client requirement\n\nWe were declaring 0.21.0 in setup.py and 0.21.1 elsewhere. Make\neverything match by declaring 0.21.1.\n\n* Bump pip from 25.0.1 to 25.3\n\nBumps [pip](https://github.com/pypa/pip) from 25.0.1 to 25.3.\n- [Changelog](https://github.com/pypa/pip/blob/main/NEWS.rst)\n- [Commits](https://github.com/pypa/pip/compare/25.0.1...25.3)\n\n---\nupdated-dependencies:\n- dependency-name: pip\n dependency-version: '25.3'\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\n* Use UBI9 instead of CentOS 9 Stream\n\n- Drop telnet\n- Ignore hadolint DL3007\n\n* Update requirements and requirements-build (\u003e= py3.9) (#47)\n\n* Dependencies are outdated and this could carry severe security concerns.\n\nUpdate dependencies using:\n\npipreqs (used to generate a requirements.in)\npip_find_builddeps (used to generate a requirements-build.in)\npip-compile --allow-unsafe (used to generate requirements.txt and requirements-build.txt)\n\nSee https://github.com/containerbuildsystem/cachito/blob/01a944ebe81c58e294aa79bda43b475634306828/docs/pip.md?plain=1#L166\nfor details\n\n* Remove comment from setuptools-scm in requirements-build.in (#50)\n\n* Remove comment from setuptools-scm\n\nOnly comment out setuptools_scm\u003c8.0 from requirements-build.in,\nwhich is conflicting with the other versions\n\n* Add calver dependency back\n\n---------\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: Miguel Garcia \u003cmigarcia@redhat.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"}},"strategy":{"type":"Docker","dockerStrategy":{"from":{"kind":"DockerImage","name":"registry.access.redhat.com/ubi9@sha256:0d37bd2384f10881a2b0fdf695af99816fdf468a499fe3ace43da84c3cb566aa"},"pullSecret":{"name":"builder-dockercfg-28rxw"}}},"output":{"to":{"kind":"DockerImage","name":"image-registry.openshift-image-registry.svc:5000/service-telemetry/prometheus-webhook-snmp:latest"},"pushSecret":{"name":"builder-dockercfg-28rxw"}},"resources":{},"postCommit":{},"nodeSelector":null},"status":{"phase":"New","outputDockerImageReference":"image-registry.openshift-image-registry.svc:5000/service-telemetry/prometheus-webhook-snmp:latest","config":{"kind":"BuildConfig","namespace":"service-telemetry","name":"prometheus-webhook-snmp"},"output":{},"conditions":[{"type":"New","status":"True","lastUpdateTime":"2026-02-24T00:29:32Z","lastTransitionTime":"2026-02-24T00:29:32Z"}]}} LANG: C.utf8 BUILD_REGISTRIES_CONF_PATH: /var/run/configs/openshift.io/build-system/registries.conf BUILD_REGISTRIES_DIR_PATH: /var/run/configs/openshift.io/build-system/registries.d BUILD_SIGNATURE_POLICY_PATH: /var/run/configs/openshift.io/build-system/policy.json BUILD_STORAGE_CONF_PATH: /var/run/configs/openshift.io/build-system/storage.conf BUILD_BLOBCACHE_DIR: /var/cache/blobs Mounts: /tmp/build from buildworkdir (rw) /var/cache/blobs from build-blob-cache (rw) /var/run/configs/openshift.io/build-system from build-system-configs (ro) /var/run/configs/openshift.io/certs from build-ca-bundles (rw) /var/run/configs/openshift.io/pki from build-proxy-ca-bundles (rw) /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-fdls8 (ro) manage-dockerfile: Container ID: cri-o://9068c43f80d5fca93bc65634aabafb2c2562de25958efdd3853354f974317d97 Image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:c2a80d6dd943dbbb5c0bc63f4aa17d55e44dbde22a3ea4e6a41a32930dc4ac77 Image ID: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:c2a80d6dd943dbbb5c0bc63f4aa17d55e44dbde22a3ea4e6a41a32930dc4ac77 Port: Host Port: SeccompProfile: RuntimeDefault Args: openshift-manage-dockerfile --v=0 State: Terminated Reason: Completed Exit Code: 0 Started: Tue, 24 Feb 2026 00:29:35 +0000 Finished: Tue, 24 Feb 2026 00:29:35 +0000 Ready: True Restart Count: 0 Environment: BUILD: {"kind":"Build","apiVersion":"build.openshift.io/v1","metadata":{"name":"prometheus-webhook-snmp-2","namespace":"service-telemetry","uid":"a7639853-ad6c-441a-82d5-14907e4eab9d","resourceVersion":"45692","generation":1,"creationTimestamp":"2026-02-24T00:29:32Z","labels":{"build":"prometheus-webhook-snmp","buildconfig":"prometheus-webhook-snmp","openshift.io/build-config.name":"prometheus-webhook-snmp","openshift.io/build.start-policy":"Serial"},"annotations":{"openshift.io/build-config.name":"prometheus-webhook-snmp","openshift.io/build.number":"2"},"ownerReferences":[{"apiVersion":"build.openshift.io/v1","kind":"BuildConfig","name":"prometheus-webhook-snmp","uid":"8d921ce5-83dc-4ab6-9930-d87ef451beff","controller":true}],"managedFields":[{"manager":"openshift-apiserver","operation":"Update","apiVersion":"build.openshift.io/v1","time":"2026-02-24T00:29:32Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.number":{}},"f:labels":{".":{},"f:build":{},"f:buildconfig":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.start-policy":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8d921ce5-83dc-4ab6-9930-d87ef451beff\"}":{}}},"f:spec":{"f:output":{"f:to":{}},"f:revision":{".":{},"f:git":{".":{},"f:author":{".":{},"f:email":{},"f:name":{}},"f:commit":{},"f:committer":{".":{},"f:email":{},"f:name":{}},"f:message":{}},"f:type":{}},"f:serviceAccount":{},"f:source":{"f:binary":{},"f:dockerfile":{},"f:type":{}},"f:strategy":{"f:dockerStrategy":{".":{},"f:from":{}},"f:type":{}}},"f:status":{"f:conditions":{".":{},"k:{\"type\":\"New\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:status":{},"f:type":{}}},"f:config":{},"f:phase":{}}}}]},"spec":{"serviceAccount":"builder","source":{"type":"Binary","binary":{},"dockerfile":"FROM registry.access.redhat.com/ubi9:latest\n\n# \u003e\u003e ignore SC2086 because passing quoted env vars to dnf causes issues (fail to install)\n# hadolint ignore=SC2086\nRUN INSTALL_PKGS=\"\\\n procps-ng \\\n lsof \\\n python3 \\\n python3-devel \\\n gcc \\\n \" \u0026\u0026 \\\n dnf -y --setopt=tsflags=nodocs --setopt=skip_missing_names_on_install=False install $INSTALL_PKGS \u0026\u0026 \\\n dnf -y clean all\n\nCOPY . /source/app\nWORKDIR /source/app\n\nRUN python3 -m pip install --no-cache-dir -r requirements-build.txt \u0026\u0026 \\\n python3 -m pip install --no-cache-dir . \u0026\u0026 \\\n python3 -m pip freeze\n\n# Cleanup\n# \u003e\u003e ignore SC2086 because passing quoted env vars to dnf causes issues (fail to install)\n# hadolint ignore=SC2086\nRUN UNINSTALL_PKGS=\"\\\n gcc \\\n \" \u0026\u0026 \\\n dnf remove -y $UNINSTALL_PKGS \u0026\u0026 \\\n dnf -y clean all\n\nENV SNMP_COMMUNITY=\"public\"\nENV SNMP_PORT=162\nENV SNMP_HOST=\"localhost\"\nENV SNMP_RETRIES=5\nENV SNMP_TIMEOUT=1\nENV ALERT_OID_LABEL=\"oid\"\nENV TRAP_OID_PREFIX=\"1.3.6.1.4.1.50495.15\"\nENV TRAP_DEFAULT_OID=\"1.3.6.1.4.1.50495.15.1.2.1\"\nENV TRAP_DEFAULT_SEVERITY=\"\"\n\nEXPOSE 9099\n\nCMD [\"sh\", \"-c\", \"/usr/local/bin/prometheus-webhook-snmp --debug --snmp-port=\\\"${SNMP_PORT}\\\" --snmp-host=\\\"${SNMP_HOST}\\\" --snmp-community=\\\"${SNMP_COMMUNITY}\\\" --snmp-retries=\\\"${SNMP_RETRIES}\\\" --snmp-timeout=\\\"${SNMP_TIMEOUT}\\\" --alert-oid-label=\\\"${ALERT_OID_LABEL}\\\" --trap-oid-prefix=\\\"${TRAP_OID_PREFIX}\\\" --trap-default-oid=\\\"${TRAP_DEFAULT_OID}\\\" --trap-default-severity=\\\"${TRAP_DEFAULT_SEVERITY}\\\" run\"]\n"},"revision":{"type":"Git","git":{"commit":"e9922314cc777d251a07a5352311dc7afed0257d","author":{"name":"Victoria Martinez de la Cruz","email":"victoria@redhat.com"},"committer":{"name":"GitHub","email":"noreply@github.com"},"message":"STF 1.5.7 release ops (#49)\n\n* Add calver as a build requirement\n\ncalver is actually a build requirement of trove-classifiers, but it goes\nundetected by pip_find_builddeps.py because of [1].\n\nThis causes disconnected builds that rely on explicit requirements\nlistings (like those done with Cachito) to fail. By adding it explicitly\nthose builds should be fixed.\n\nFuture runs of pip_find_builddeps.py will preserve this manual addition\nas long as the --append argument is passed to it.\n\nRelated: RELDEL-6094\n\n[1] https://github.com/pypa/pip/issues/7863\n\n* Fixup prometheus_client requirement\n\nWe were declaring 0.21.0 in setup.py and 0.21.1 elsewhere. Make\neverything match by declaring 0.21.1.\n\n* Bump pip from 25.0.1 to 25.3\n\nBumps [pip](https://github.com/pypa/pip) from 25.0.1 to 25.3.\n- [Changelog](https://github.com/pypa/pip/blob/main/NEWS.rst)\n- [Commits](https://github.com/pypa/pip/compare/25.0.1...25.3)\n\n---\nupdated-dependencies:\n- dependency-name: pip\n dependency-version: '25.3'\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\n* Use UBI9 instead of CentOS 9 Stream\n\n- Drop telnet\n- Ignore hadolint DL3007\n\n* Update requirements and requirements-build (\u003e= py3.9) (#47)\n\n* Dependencies are outdated and this could carry severe security concerns.\n\nUpdate dependencies using:\n\npipreqs (used to generate a requirements.in)\npip_find_builddeps (used to generate a requirements-build.in)\npip-compile --allow-unsafe (used to generate requirements.txt and requirements-build.txt)\n\nSee https://github.com/containerbuildsystem/cachito/blob/01a944ebe81c58e294aa79bda43b475634306828/docs/pip.md?plain=1#L166\nfor details\n\n* Remove comment from setuptools-scm in requirements-build.in (#50)\n\n* Remove comment from setuptools-scm\n\nOnly comment out setuptools_scm\u003c8.0 from requirements-build.in,\nwhich is conflicting with the other versions\n\n* Add calver dependency back\n\n---------\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: Miguel Garcia \u003cmigarcia@redhat.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"}},"strategy":{"type":"Docker","dockerStrategy":{"from":{"kind":"DockerImage","name":"registry.access.redhat.com/ubi9@sha256:0d37bd2384f10881a2b0fdf695af99816fdf468a499fe3ace43da84c3cb566aa"},"pullSecret":{"name":"builder-dockercfg-28rxw"}}},"output":{"to":{"kind":"DockerImage","name":"image-registry.openshift-image-registry.svc:5000/service-telemetry/prometheus-webhook-snmp:latest"},"pushSecret":{"name":"builder-dockercfg-28rxw"}},"resources":{},"postCommit":{},"nodeSelector":null},"status":{"phase":"New","outputDockerImageReference":"image-registry.openshift-image-registry.svc:5000/service-telemetry/prometheus-webhook-snmp:latest","config":{"kind":"BuildConfig","namespace":"service-telemetry","name":"prometheus-webhook-snmp"},"output":{},"conditions":[{"type":"New","status":"True","lastUpdateTime":"2026-02-24T00:29:32Z","lastTransitionTime":"2026-02-24T00:29:32Z"}]}} LANG: C.utf8 BUILD_REGISTRIES_CONF_PATH: /var/run/configs/openshift.io/build-system/registries.conf BUILD_REGISTRIES_DIR_PATH: /var/run/configs/openshift.io/build-system/registries.d BUILD_SIGNATURE_POLICY_PATH: /var/run/configs/openshift.io/build-system/policy.json BUILD_STORAGE_CONF_PATH: /var/run/configs/openshift.io/build-system/storage.conf BUILD_BLOBCACHE_DIR: /var/cache/blobs Mounts: /tmp/build from buildworkdir (rw) /var/cache/blobs from build-blob-cache (rw) /var/run/configs/openshift.io/build-system from build-system-configs (ro) /var/run/configs/openshift.io/certs from build-ca-bundles (rw) /var/run/configs/openshift.io/pki from build-proxy-ca-bundles (rw) /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-fdls8 (ro) Containers: docker-build: Container ID: cri-o://927e27611c9f52211e3bfd28e326070be1a2077bae821313e126912366d86095 Image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:c2a80d6dd943dbbb5c0bc63f4aa17d55e44dbde22a3ea4e6a41a32930dc4ac77 Image ID: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:c2a80d6dd943dbbb5c0bc63f4aa17d55e44dbde22a3ea4e6a41a32930dc4ac77 Port: Host Port: SeccompProfile: Unconfined Args: openshift-docker-build --v=0 State: Terminated Reason: Completed Exit Code: 0 Started: Tue, 24 Feb 2026 00:29:36 +0000 Finished: Tue, 24 Feb 2026 00:30:26 +0000 Ready: False Restart Count: 0 Environment: BUILD: {"kind":"Build","apiVersion":"build.openshift.io/v1","metadata":{"name":"prometheus-webhook-snmp-2","namespace":"service-telemetry","uid":"a7639853-ad6c-441a-82d5-14907e4eab9d","resourceVersion":"45692","generation":1,"creationTimestamp":"2026-02-24T00:29:32Z","labels":{"build":"prometheus-webhook-snmp","buildconfig":"prometheus-webhook-snmp","openshift.io/build-config.name":"prometheus-webhook-snmp","openshift.io/build.start-policy":"Serial"},"annotations":{"openshift.io/build-config.name":"prometheus-webhook-snmp","openshift.io/build.number":"2"},"ownerReferences":[{"apiVersion":"build.openshift.io/v1","kind":"BuildConfig","name":"prometheus-webhook-snmp","uid":"8d921ce5-83dc-4ab6-9930-d87ef451beff","controller":true}],"managedFields":[{"manager":"openshift-apiserver","operation":"Update","apiVersion":"build.openshift.io/v1","time":"2026-02-24T00:29:32Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.number":{}},"f:labels":{".":{},"f:build":{},"f:buildconfig":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.start-policy":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"8d921ce5-83dc-4ab6-9930-d87ef451beff\"}":{}}},"f:spec":{"f:output":{"f:to":{}},"f:revision":{".":{},"f:git":{".":{},"f:author":{".":{},"f:email":{},"f:name":{}},"f:commit":{},"f:committer":{".":{},"f:email":{},"f:name":{}},"f:message":{}},"f:type":{}},"f:serviceAccount":{},"f:source":{"f:binary":{},"f:dockerfile":{},"f:type":{}},"f:strategy":{"f:dockerStrategy":{".":{},"f:from":{}},"f:type":{}}},"f:status":{"f:conditions":{".":{},"k:{\"type\":\"New\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:status":{},"f:type":{}}},"f:config":{},"f:phase":{}}}}]},"spec":{"serviceAccount":"builder","source":{"type":"Binary","binary":{},"dockerfile":"FROM registry.access.redhat.com/ubi9:latest\n\n# \u003e\u003e ignore SC2086 because passing quoted env vars to dnf causes issues (fail to install)\n# hadolint ignore=SC2086\nRUN INSTALL_PKGS=\"\\\n procps-ng \\\n lsof \\\n python3 \\\n python3-devel \\\n gcc \\\n \" \u0026\u0026 \\\n dnf -y --setopt=tsflags=nodocs --setopt=skip_missing_names_on_install=False install $INSTALL_PKGS \u0026\u0026 \\\n dnf -y clean all\n\nCOPY . /source/app\nWORKDIR /source/app\n\nRUN python3 -m pip install --no-cache-dir -r requirements-build.txt \u0026\u0026 \\\n python3 -m pip install --no-cache-dir . \u0026\u0026 \\\n python3 -m pip freeze\n\n# Cleanup\n# \u003e\u003e ignore SC2086 because passing quoted env vars to dnf causes issues (fail to install)\n# hadolint ignore=SC2086\nRUN UNINSTALL_PKGS=\"\\\n gcc \\\n \" \u0026\u0026 \\\n dnf remove -y $UNINSTALL_PKGS \u0026\u0026 \\\n dnf -y clean all\n\nENV SNMP_COMMUNITY=\"public\"\nENV SNMP_PORT=162\nENV SNMP_HOST=\"localhost\"\nENV SNMP_RETRIES=5\nENV SNMP_TIMEOUT=1\nENV ALERT_OID_LABEL=\"oid\"\nENV TRAP_OID_PREFIX=\"1.3.6.1.4.1.50495.15\"\nENV TRAP_DEFAULT_OID=\"1.3.6.1.4.1.50495.15.1.2.1\"\nENV TRAP_DEFAULT_SEVERITY=\"\"\n\nEXPOSE 9099\n\nCMD [\"sh\", \"-c\", \"/usr/local/bin/prometheus-webhook-snmp --debug --snmp-port=\\\"${SNMP_PORT}\\\" --snmp-host=\\\"${SNMP_HOST}\\\" --snmp-community=\\\"${SNMP_COMMUNITY}\\\" --snmp-retries=\\\"${SNMP_RETRIES}\\\" --snmp-timeout=\\\"${SNMP_TIMEOUT}\\\" --alert-oid-label=\\\"${ALERT_OID_LABEL}\\\" --trap-oid-prefix=\\\"${TRAP_OID_PREFIX}\\\" --trap-default-oid=\\\"${TRAP_DEFAULT_OID}\\\" --trap-default-severity=\\\"${TRAP_DEFAULT_SEVERITY}\\\" run\"]\n"},"revision":{"type":"Git","git":{"commit":"e9922314cc777d251a07a5352311dc7afed0257d","author":{"name":"Victoria Martinez de la Cruz","email":"victoria@redhat.com"},"committer":{"name":"GitHub","email":"noreply@github.com"},"message":"STF 1.5.7 release ops (#49)\n\n* Add calver as a build requirement\n\ncalver is actually a build requirement of trove-classifiers, but it goes\nundetected by pip_find_builddeps.py because of [1].\n\nThis causes disconnected builds that rely on explicit requirements\nlistings (like those done with Cachito) to fail. By adding it explicitly\nthose builds should be fixed.\n\nFuture runs of pip_find_builddeps.py will preserve this manual addition\nas long as the --append argument is passed to it.\n\nRelated: RELDEL-6094\n\n[1] https://github.com/pypa/pip/issues/7863\n\n* Fixup prometheus_client requirement\n\nWe were declaring 0.21.0 in setup.py and 0.21.1 elsewhere. Make\neverything match by declaring 0.21.1.\n\n* Bump pip from 25.0.1 to 25.3\n\nBumps [pip](https://github.com/pypa/pip) from 25.0.1 to 25.3.\n- [Changelog](https://github.com/pypa/pip/blob/main/NEWS.rst)\n- [Commits](https://github.com/pypa/pip/compare/25.0.1...25.3)\n\n---\nupdated-dependencies:\n- dependency-name: pip\n dependency-version: '25.3'\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\n* Use UBI9 instead of CentOS 9 Stream\n\n- Drop telnet\n- Ignore hadolint DL3007\n\n* Update requirements and requirements-build (\u003e= py3.9) (#47)\n\n* Dependencies are outdated and this could carry severe security concerns.\n\nUpdate dependencies using:\n\npipreqs (used to generate a requirements.in)\npip_find_builddeps (used to generate a requirements-build.in)\npip-compile --allow-unsafe (used to generate requirements.txt and requirements-build.txt)\n\nSee https://github.com/containerbuildsystem/cachito/blob/01a944ebe81c58e294aa79bda43b475634306828/docs/pip.md?plain=1#L166\nfor details\n\n* Remove comment from setuptools-scm in requirements-build.in (#50)\n\n* Remove comment from setuptools-scm\n\nOnly comment out setuptools_scm\u003c8.0 from requirements-build.in,\nwhich is conflicting with the other versions\n\n* Add calver dependency back\n\n---------\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: Miguel Garcia \u003cmigarcia@redhat.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"}},"strategy":{"type":"Docker","dockerStrategy":{"from":{"kind":"DockerImage","name":"registry.access.redhat.com/ubi9@sha256:0d37bd2384f10881a2b0fdf695af99816fdf468a499fe3ace43da84c3cb566aa"},"pullSecret":{"name":"builder-dockercfg-28rxw"}}},"output":{"to":{"kind":"DockerImage","name":"image-registry.openshift-image-registry.svc:5000/service-telemetry/prometheus-webhook-snmp:latest"},"pushSecret":{"name":"builder-dockercfg-28rxw"}},"resources":{},"postCommit":{},"nodeSelector":null},"status":{"phase":"New","outputDockerImageReference":"image-registry.openshift-image-registry.svc:5000/service-telemetry/prometheus-webhook-snmp:latest","config":{"kind":"BuildConfig","namespace":"service-telemetry","name":"prometheus-webhook-snmp"},"output":{},"conditions":[{"type":"New","status":"True","lastUpdateTime":"2026-02-24T00:29:32Z","lastTransitionTime":"2026-02-24T00:29:32Z"}]}} LANG: C.utf8 PUSH_DOCKERCFG_PATH: /var/run/secrets/openshift.io/push PULL_DOCKERCFG_PATH: /var/run/secrets/openshift.io/pull BUILD_REGISTRIES_CONF_PATH: /var/run/configs/openshift.io/build-system/registries.conf BUILD_REGISTRIES_DIR_PATH: /var/run/configs/openshift.io/build-system/registries.d BUILD_SIGNATURE_POLICY_PATH: /var/run/configs/openshift.io/build-system/policy.json BUILD_STORAGE_CONF_PATH: /var/run/configs/openshift.io/build-system/storage.conf BUILD_BLOBCACHE_DIR: /var/cache/blobs Mounts: /tmp/build from buildworkdir (rw) /var/cache/blobs from build-blob-cache (rw) /var/lib/containers from container-storage-root (rw) /var/lib/containers/cache from buildcachedir (rw) /var/lib/kubelet/config.json from node-pullsecrets (ro) /var/run/configs/openshift.io/build-system from build-system-configs (ro) /var/run/configs/openshift.io/certs from build-ca-bundles (rw) /var/run/configs/openshift.io/pki from build-proxy-ca-bundles (rw) /var/run/containers from container-storage-run (rw) /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-fdls8 (ro) /var/run/secrets/openshift.io/pull from builder-dockercfg-28rxw-pull (ro) /var/run/secrets/openshift.io/push from builder-dockercfg-28rxw-push (ro) Conditions: Type Status PodReadyToStartContainers False Initialized True Ready False ContainersReady False PodScheduled True Volumes: buildcachedir: Type: HostPath (bare host directory volume) Path: /var/lib/containers/cache HostPathType: buildworkdir: Type: EmptyDir (a temporary directory that shares a pod's lifetime) Medium: SizeLimit: node-pullsecrets: Type: HostPath (bare host directory volume) Path: /var/lib/kubelet/config.json HostPathType: File builder-dockercfg-28rxw-push: Type: Secret (a volume populated by a Secret) SecretName: builder-dockercfg-28rxw Optional: false builder-dockercfg-28rxw-pull: Type: Secret (a volume populated by a Secret) SecretName: builder-dockercfg-28rxw Optional: false build-system-configs: Type: ConfigMap (a volume populated by a ConfigMap) Name: prometheus-webhook-snmp-2-sys-config Optional: false build-ca-bundles: Type: ConfigMap (a volume populated by a ConfigMap) Name: prometheus-webhook-snmp-2-ca Optional: false build-proxy-ca-bundles: Type: ConfigMap (a volume populated by a ConfigMap) Name: prometheus-webhook-snmp-2-global-ca Optional: false container-storage-root: Type: EmptyDir (a temporary directory that shares a pod's lifetime) Medium: SizeLimit: container-storage-run: Type: EmptyDir (a temporary directory that shares a pod's lifetime) Medium: SizeLimit: build-blob-cache: Type: EmptyDir (a temporary directory that shares a pod's lifetime) Medium: SizeLimit: kube-api-access-fdls8: Type: Projected (a volume that contains injected data from multiple sources) TokenExpirationSeconds: 3607 ConfigMapName: kube-root-ca.crt Optional: false DownwardAPI: true ConfigMapName: openshift-service-ca.crt Optional: false QoS Class: BestEffort Node-Selectors: kubernetes.io/os=linux Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s node.kubernetes.io/unreachable:NoExecute op=Exists for 300s Events: Type Reason Age From Message ---- ------ ---- ---- ------- Normal Scheduled 4m39s default-scheduler Successfully assigned service-telemetry/prometheus-webhook-snmp-2-build to crc Normal AddedInterface 4m40s multus Add eth0 [10.217.0.81/23] from ovn-kubernetes Normal Pulled 4m39s kubelet Container image "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:c2a80d6dd943dbbb5c0bc63f4aa17d55e44dbde22a3ea4e6a41a32930dc4ac77" already present on machine Normal Created 4m39s kubelet Created container: git-clone Normal Started 4m39s kubelet Started container git-clone Normal Pulled 4m37s kubelet Container image "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:c2a80d6dd943dbbb5c0bc63f4aa17d55e44dbde22a3ea4e6a41a32930dc4ac77" already present on machine Normal Created 4m37s kubelet Created container: manage-dockerfile Normal Started 4m37s kubelet Started container manage-dockerfile Normal Pulled 4m36s kubelet Container image "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:c2a80d6dd943dbbb5c0bc63f4aa17d55e44dbde22a3ea4e6a41a32930dc4ac77" already present on machine Normal Created 4m36s kubelet Created container: docker-build Normal Started 4m36s kubelet Started container docker-build