Skip to content

[automated] Update Kubernetes latest version in e2e tests#44445

Open
dd-octo-sts[bot] wants to merge 1 commit intomainfrom
update-k8s-versions-automated
Open

[automated] Update Kubernetes latest version in e2e tests#44445
dd-octo-sts[bot] wants to merge 1 commit intomainfrom
update-k8s-versions-automated

Conversation

@dd-octo-sts
Copy link
Contributor

@dd-octo-sts dd-octo-sts bot commented Dec 19, 2025

What does this PR do?

Updates the Kubernetes version used by the new-e2e-containers-k8s-latest job in .gitlab/test/e2e/e2e.yml to the latest stable release from kindest/node.

Motivation

Keep e2e tests running against the latest Kubernetes version to ensure compatibility.

New version added:

  • v1.35.1

Describe how you validated your changes

CI will validate the new versions work correctly.

@dd-octo-sts dd-octo-sts bot requested a review from a team as a code owner December 19, 2025 06:10
@dd-octo-sts dd-octo-sts bot added ask-review Ask required teams to review this PR changelog/no-changelog No changelog entry needed labels Dec 19, 2025
@dd-octo-sts dd-octo-sts bot requested a review from a team as a code owner December 19, 2025 06:10
@dd-octo-sts dd-octo-sts bot added qa/done QA done before merge and regressions are covered by tests team/container-integrations labels Dec 19, 2025
@dd-octo-sts dd-octo-sts bot requested a review from a team as a code owner December 19, 2025 06:10
@github-actions github-actions bot added the short review PR is simple enough to be reviewed quickly label Dec 19, 2025
@agent-platform-auto-pr
Copy link
Contributor

agent-platform-auto-pr bot commented Dec 19, 2025

Gitlab CI Configuration Changes

Modified Jobs

new-e2e-containers-k8s-latest
  new-e2e-containers-k8s-latest:
    after_script:
    - CODECOV_TOKEN=$($CI_PROJECT_DIR/tools/ci/fetch_secret.sh $CODECOV token) || exit
      $?; export CODECOV_TOKEN
    - $CI_PROJECT_DIR/tools/ci/junit_upload.sh "junit-${CI_JOB_ID}.tgz" "$E2E_RESULT_JSON"
    - "if [ -d \"$E2E_COVERAGE_OUT_DIR\" ]; then\n  dda inv -- -e coverage.process-e2e-coverage-folders\
      \ $E2E_COVERAGE_OUT_DIR\n  dda inv -- -e dyntest.compute-and-upload-job-index\
      \ --bucket-uri $S3_PERMANENT_ARTIFACTS_URI --coverage-folder $E2E_COVERAGE_OUT_DIR\
      \ --commit-sha $CI_COMMIT_SHA --job-id $CI_JOB_ID\nfi\n"
    artifacts:
      expire_in: 2 weeks
      paths:
      - $E2E_OUTPUT_DIR
      - $E2E_RESULT_JSON
      - junit-*.tgz
      - $E2E_COVERAGE_OUT_DIR
      reports:
        annotations:
        - $EXTERNAL_LINKS_PATH
      when: always
    before_script:
    - mkdir -p $GOPATH/pkg/mod/cache && tar xJf modcache_e2e.tar.xz -C $GOPATH/pkg/mod/cache
    - rm -f modcache_e2e.tar.xz
    - mkdir -p ~/.pulumi && tar xJf pulumi_plugins.tar.xz -C ~/.pulumi
    - rm -f pulumi_plugins.tar.xz
    - mkdir -p $GOPATH/bin $GOPATH/pkg/mod/cache && tar xJf modcache_tools.tar.xz -C
      $GOPATH
    - rm -f modcache_tools.tar.xz
    - export PATH=$PATH:$GOPATH/bin
    - mkdir -p ~/.aws
    - "if [ -n \"$E2E_USE_AWS_PROFILE\" ]; then\n  echo Using agent-qa-ci aws profile\n\
      \  $CI_PROJECT_DIR/tools/ci/fetch_secret.sh $AGENT_QA_E2E profile >> ~/.aws/config\
      \ || exit $?\n  # Now all `aws` commands target the agent-qa profile\n  export\
      \ AWS_PROFILE=agent-qa-ci\nelse\n  # Assume role to fetch only once credentials\
      \ and avoid rate limits\n  echo Assuming ddbuild-agent-ci role\n  roleoutput=\"\
      $(aws sts assume-role --role-arn arn:aws:iam::669783387624:role/ddbuild-agent-ci\
      \ --external-id ddbuild-agent-ci --role-session-name RoleSession)\"\n  export\
      \ AWS_ACCESS_KEY_ID=\"$(echo \"$roleoutput\" | jq -r '.Credentials.AccessKeyId')\"\
      \n  export AWS_SECRET_ACCESS_KEY=\"$(echo \"$roleoutput\" | jq -r '.Credentials.SecretAccessKey')\"\
      \n  export AWS_SESSION_TOKEN=\"$(echo \"$roleoutput\" | jq -r '.Credentials.SessionToken')\"\
      \nfi\n"
    - $CI_PROJECT_DIR/tools/ci/fetch_secret.sh $AGENT_QA_E2E ssh_public_key_rsa > $E2E_AWS_PUBLIC_KEY_PATH
      || exit $?
    - touch $E2E_AWS_PRIVATE_KEY_PATH && chmod 600 $E2E_AWS_PRIVATE_KEY_PATH && $CI_PROJECT_DIR/tools/ci/fetch_secret.sh
      $AGENT_QA_E2E ssh_key_rsa > $E2E_AWS_PRIVATE_KEY_PATH || exit $?
    - $CI_PROJECT_DIR/tools/ci/fetch_secret.sh $AGENT_QA_E2E ssh_public_key_rsa > $E2E_AZURE_PUBLIC_KEY_PATH
      || exit $?
    - touch $E2E_AZURE_PRIVATE_KEY_PATH && chmod 600 $E2E_AZURE_PRIVATE_KEY_PATH &&
      $CI_PROJECT_DIR/tools/ci/fetch_secret.sh $AGENT_QA_E2E ssh_key_rsa > $E2E_AZURE_PRIVATE_KEY_PATH
      || exit $?
    - $CI_PROJECT_DIR/tools/ci/fetch_secret.sh $AGENT_QA_E2E ssh_public_key_rsa > $E2E_GCP_PUBLIC_KEY_PATH
      || exit $?
    - touch $E2E_GCP_PRIVATE_KEY_PATH && chmod 600 $E2E_GCP_PRIVATE_KEY_PATH && $CI_PROJECT_DIR/tools/ci/fetch_secret.sh
      $AGENT_QA_E2E ssh_key_rsa > $E2E_GCP_PRIVATE_KEY_PATH || exit $?
    - pulumi login "s3://dd-pulumi-state?region=us-east-1&awssdk=v2&profile=$AWS_PROFILE"
    - ARM_CLIENT_ID=$($CI_PROJECT_DIR/tools/ci/fetch_secret.sh $E2E_AZURE client_id)
      || exit $?; export ARM_CLIENT_ID
    - ARM_CLIENT_SECRET=$($CI_PROJECT_DIR/tools/ci/fetch_secret.sh $E2E_AZURE token)
      || exit $?; export ARM_CLIENT_SECRET
    - ARM_TENANT_ID=$($CI_PROJECT_DIR/tools/ci/fetch_secret.sh $E2E_AZURE tenant_id)
      || exit $?; export ARM_TENANT_ID
    - ARM_SUBSCRIPTION_ID=$($CI_PROJECT_DIR/tools/ci/fetch_secret.sh $E2E_AZURE subscription_id)
      || exit $?; export ARM_SUBSCRIPTION_ID
    - $CI_PROJECT_DIR/tools/ci/fetch_secret.sh $E2E_GCP credentials_json > ~/gcp-credentials.json
      || exit $?
    - export GOOGLE_APPLICATION_CREDENTIALS=~/gcp-credentials.json
    - 'gcp_acr_key=$($CI_PROJECT_DIR/tools/ci/fetch_secret.sh $E2E_GCP credentials_acr_readonly)
      || exit $?
  
      export E2E_GCP_IMAGE_PULL_PASSWORD="b64=$(printf ''%s'' "$gcp_acr_key" | base64
      -w 0)"
  
      '
    - dda inv -- -e gitlab.generate-ci-visibility-links --output=$EXTERNAL_LINKS_PATH
    - export DD_ENV=nativetest
    - export DD_CIVISIBILITY_ENABLED=true
    - export DD_CIVISIBILITY_AGENTLESS_ENABLED=true
    - DD_API_KEY=$($CI_PROJECT_DIR/tools/ci/fetch_secret.sh $AGENT_API_KEY_ORG2 token)
      || exit $?; export DD_API_KEY
    - export WINDOWS_DDNPM_DRIVER=${WINDOWS_DDNPM_DRIVER:-$(dda inv release.get-release-json-value
      "dependencies::WINDOWS_DDNPM_DRIVER" --no-worktree)}
    - export WINDOWS_DDPROCMON_DRIVER=${WINDOWS_DDPROCMON_DRIVER:-$(dda inv release.get-release-json-value
      "dependencies::WINDOWS_DDPROCMON_DRIVER" --no-worktree)}
    image: registry.ddbuild.io/ci/datadog-agent-buildimages/linux$CI_IMAGE_LINUX_SUFFIX:$CI_IMAGE_LINUX
    needs:
    - go_e2e_deps
    - go_e2e_test_binaries
    - go_tools_deps
    - job: new-e2e-base-coverage
      optional: true
    - qa_agent_linux
    - qa_agent_linux_jmx
    - qa_dca
    - qa_dogstatsd
    rules:
    - if: $RUN_E2E_TESTS == "off"
      when: never
    - if: $CI_COMMIT_BRANCH =~ /^mq-working-branch-/
      when: never
    - if: $RUN_E2E_TESTS == "on"
      when: on_success
    - if: $CI_COMMIT_BRANCH == "main"
      when: on_success
    - if: $CI_COMMIT_BRANCH =~ /^[0-9]+\.[0-9]+\.x$/
      when: on_success
    - if: $CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+-rc\.[0-9]+$/
      when: on_success
    - changes:
        compare_to: $COMPARE_TO_BRANCH
        paths:
        - .gitlab/test/e2e/e2e.yml
        - test/e2e-framework/**/*
        - test/new-e2e/go.mod
        - go.mod
        - flakes.yaml
        - release.json
    - changes:
        compare_to: $COMPARE_TO_BRANCH
        paths:
        - comp/core/tagger/**/*
        - comp/core/workloadmeta/**/*
        - comp/core/autodiscovery/listeners/**/*
        - comp/core/autodiscovery/providers/**/*
        - comp/forwarder/defaultforwarder/**/*
        - comp/serializer/**/*
        - pkg/aggregator/*/**
        - comp/languagedetection/**/*
        - pkg/clusteragent/admission/mutate/**/*
        - pkg/clusteragent/languagedetection/**/*
        - pkg/collector/corechecks/cluster/**/*
        - pkg/collector/corechecks/containers/**/*
        - pkg/collector/corechecks/containerimage/**/*
        - pkg/collector/corechecks/containerlifecycle/**/*
        - pkg/collector/corechecks/sbom/**/*
        - pkg/sbom/**/*
        - pkg/util/clusteragent/**/*
        - pkg/util/containerd/**/*
        - pkg/util/containers/**/*
        - pkg/util/docker/**/*
        - pkg/util/ecs/**/*
        - pkg/util/kubernetes/**/*
        - pkg/util/cgroups/**/*
        - pkg/util/trivy/**/*
        - test/new-e2e/tests/containers/**/*
        - test/new-e2e/go.mod
        - go.mod
      when: on_success
    - if: $CI_COMMIT_BRANCH =~ /^mq-working-branch-/
      when: never
    - allow_failure: true
      when: manual
    script:
    - export IS_DEV_BRANCH="$(dda inv -- -e pipeline.is-dev-branch)"
    - DYNAMIC_TESTS_BREAKGLASS=$($CI_PROJECT_DIR/tools/ci/fetch_secret.sh $DYNAMIC_TESTS_BREAKGLASS
      value) || exit $?; export DYNAMIC_TESTS_BREAKGLASS
    - "if [ \"$DYNAMIC_TESTS_BREAKGLASS\" == \"true\" ] || [ \"$IS_DEV_BRANCH\" == \"\
      false\" ] || [ \"$RUN_E2E_TESTS\" == \"on\" ]; then\n  export DYNAMIC_TESTS_FLAG=\"\
      \"\nfi\n"
    - dda inv -- -e new-e2e-tests.run $DYNAMIC_TESTS_FLAG $PRE_BUILT_BINARIES_FLAG $MAX_RETRIES_FLAG
      --local-package $CI_PROJECT_DIR/$OMNIBUS_BASE_DIR --result-json $E2E_RESULT_JSON
      --targets $TARGETS -c ddagent:imagePullRegistry=669783387624.dkr.ecr.us-east-1.amazonaws.com,us-central1-docker.pkg.dev
      -c ddagent:imagePullUsername=AWS,_json_key -c ddagent:imagePullPassword=$(aws
      ecr get-login-password),$E2E_GCP_IMAGE_PULL_PASSWORD --junit-tar junit-${CI_JOB_ID}.tgz
      ${EXTRA_PARAMS} --test-washer --logs-folder=$E2E_OUTPUT_DIR/logs --logs-post-processing
      --logs-post-processing-test-depth=$E2E_LOGS_PROCESSING_TEST_DEPTH
    stage: e2e
    tags:
    - arch:amd64
    - specific:true
    variables:
      DYNAMIC_TESTS_FLAG: --impacted
      E2E_AWS_PRIVATE_KEY_PATH: /tmp/agent-qa-aws-ssh-key
      E2E_AWS_PUBLIC_KEY_PATH: /tmp/agent-qa-aws-ssh-key.pub
      E2E_AZURE_PRIVATE_KEY_PATH: /tmp/agent-qa-azure-ssh-key
      E2E_AZURE_PUBLIC_KEY_PATH: /tmp/agent-qa-azure-ssh-key.pub
      E2E_COMMIT_SHA: $CI_COMMIT_SHORT_SHA
      E2E_COVERAGE_OUT_DIR: $CI_PROJECT_DIR/coverage
      E2E_GCP_PRIVATE_KEY_PATH: /tmp/agent-qa-gcp-ssh-key
      E2E_GCP_PUBLIC_KEY_PATH: /tmp/agent-qa-gcp-ssh-key.pub
      E2E_KEY_PAIR_NAME: datadog-agent-ci-rsa
      E2E_LOGS_PROCESSING_TEST_DEPTH: 1
      E2E_OUTPUT_DIR: $CI_PROJECT_DIR/e2e-output
      E2E_PIPELINE_ID: $CI_PIPELINE_ID
      E2E_RESULT_JSON: $CI_PROJECT_DIR/e2e_test_output.json
      E2E_SKIP_WINDOWS: $SKIP_WINDOWS
      E2E_USE_AWS_PROFILE: 'true'
      EXTERNAL_LINKS_PATH: external_links_$CI_JOB_ID.json
-     EXTRA_PARAMS: --run TestKindSuite -c ddinfra:kubernetesVersion=v1.34.0@sha256:7416a61b42b1662ca6ca89f02028ac133a309a2a30ba309614e8ec94d976dc5a
+     EXTRA_PARAMS: --run TestKindSuite -c ddinfra:kubernetesVersion=v1.35.1@sha256:05d7bcdefbda08b4e038f644c4df690cdac3fba8b06f8289f30e10026720a1ab
      FLAKY_PATTERNS_CONFIG: $CI_PROJECT_DIR/flaky-patterns-runtime.yaml
      GIT_STRATEGY: clone
      KUBERNETES_CPU_REQUEST: 6
      KUBERNETES_MEMORY_LIMIT: 16Gi
      KUBERNETES_MEMORY_REQUEST: 12Gi
      MAX_RETRIES_FLAG: ''
      ON_NIGHTLY_FIPS: 'true'
      PRE_BUILT_BINARIES_FLAG: --use-prebuilt-binaries
      REMOTE_STACK_CLEANING: 'true'
      SHOULD_RUN_IN_FLAKES_FINDER: 'true'
      TARGETS: ./tests/containers
      TEAM: container-integrations

Changes Summary

Removed Modified Added Renamed
0 1 0 0

ℹ️ Diff available in the job log.

@agent-platform-auto-pr
Copy link
Contributor

agent-platform-auto-pr bot commented Dec 19, 2025

Static quality checks

✅ Please find below the results from static quality gates
Comparison made with ancestor fc6ac2f
📊 Static Quality Gates Dashboard

31 successful checks with minimal change (< 2 KiB)
Quality gate Current Size
agent_deb_amd64 748.889 MiB
agent_deb_amd64_fips 709.012 MiB
agent_heroku_amd64 324.182 MiB
agent_msi 659.832 MiB
agent_rpm_amd64 748.873 MiB
agent_rpm_amd64_fips 708.995 MiB
agent_rpm_arm64 727.971 MiB
agent_rpm_arm64_fips 690.531 MiB
agent_suse_amd64 748.873 MiB
agent_suse_amd64_fips 708.995 MiB
agent_suse_arm64 727.971 MiB
agent_suse_arm64_fips 690.531 MiB
docker_agent_amd64 811.296 MiB
docker_agent_arm64 814.941 MiB
docker_agent_jmx_amd64 1002.207 MiB
docker_agent_jmx_arm64 994.635 MiB
docker_cluster_agent_amd64 180.942 MiB
docker_cluster_agent_arm64 196.807 MiB
docker_cws_instrumentation_amd64 7.135 MiB
docker_cws_instrumentation_arm64 6.689 MiB
docker_dogstatsd_amd64 38.449 MiB
docker_dogstatsd_arm64 36.749 MiB
dogstatsd_deb_amd64 29.669 MiB
dogstatsd_deb_arm64 27.833 MiB
dogstatsd_rpm_amd64 29.669 MiB
dogstatsd_suse_amd64 29.669 MiB
iot_agent_deb_amd64 42.802 MiB
iot_agent_deb_arm64 39.915 MiB
iot_agent_deb_armhf 40.485 MiB
iot_agent_rpm_amd64 42.802 MiB
iot_agent_suse_amd64 42.802 MiB
On-wire sizes (compressed)
Quality gate Change Size (prev → curr → max)
agent_deb_amd64 -22.83 KiB (0.01% reduction) 183.100 → 183.077 → 184.810
agent_deb_amd64_fips -19.27 KiB (0.01% reduction) 175.439 → 175.420 → 177.560
agent_heroku_amd64 +3.12 KiB (0.00% increase) 87.117 → 87.120 → 88.450
agent_msi +28.0 KiB (0.02% increase) 142.699 → 142.727 → 143.300
agent_rpm_amd64 -17.35 KiB (0.01% reduction) 186.294 → 186.277 → 188.160
agent_rpm_amd64_fips +4.47 KiB (0.00% increase) 177.167 → 177.171 → 178.900
agent_rpm_arm64 +43.99 KiB (0.03% increase) 168.061 → 168.104 → 169.930
agent_rpm_arm64_fips -59.24 KiB (0.04% reduction) 161.046 → 160.988 → 163.120
agent_suse_amd64 -17.35 KiB (0.01% reduction) 186.294 → 186.277 → 188.160
agent_suse_amd64_fips +4.47 KiB (0.00% increase) 177.167 → 177.171 → 178.900
agent_suse_arm64 +43.99 KiB (0.03% increase) 168.061 → 168.104 → 169.930
agent_suse_arm64_fips -59.24 KiB (0.04% reduction) 161.046 → 160.988 → 163.120
docker_agent_amd64 neutral 275.392 MiB → 277.400
docker_agent_arm64 neutral 262.866 MiB → 266.040
docker_agent_jmx_amd64 +4.18 KiB (0.00% increase) 344.046 → 344.050 → 346.020
docker_agent_jmx_arm64 neutral 327.496 MiB → 330.660
docker_cluster_agent_amd64 neutral 63.914 MiB → 64.510
docker_cluster_agent_arm64 neutral 60.174 MiB → 61.170
docker_cws_instrumentation_amd64 neutral 2.994 MiB → 3.330
docker_cws_instrumentation_arm64 neutral 2.726 MiB → 3.090
docker_dogstatsd_amd64 neutral 14.877 MiB → 15.820
docker_dogstatsd_arm64 neutral 14.217 MiB → 14.830
dogstatsd_deb_amd64 neutral 7.840 MiB → 8.790
dogstatsd_deb_arm64 neutral 6.725 MiB → 7.710
dogstatsd_rpm_amd64 neutral 7.852 MiB → 8.800
dogstatsd_suse_amd64 neutral 7.852 MiB → 8.800
iot_agent_deb_amd64 neutral 11.225 MiB → 12.040
iot_agent_deb_arm64 neutral 9.596 MiB → 10.450
iot_agent_deb_armhf neutral 9.797 MiB → 10.620
iot_agent_rpm_amd64 neutral 11.244 MiB → 12.060
iot_agent_suse_amd64 neutral 11.244 MiB → 12.060

@cit-pr-commenter
Copy link

cit-pr-commenter bot commented Dec 19, 2025

Regression Detector

Regression Detector Results

Metrics dashboard
Target profiles
Run ID: c23578c8-d01e-4198-af9f-6ed7ff9d9c48

Baseline: d3659c6
Comparison: c4f3e62
Diff

Optimization Goals: ✅ No significant changes detected

Experiments ignored for regressions

Regressions in experiments with settings containing erratic: true are ignored.

perf experiment goal Δ mean % Δ mean % CI trials links
docker_containers_cpu % cpu utilization -1.93 [-4.98, +1.12] 1 Logs

Fine details of change detection per experiment

perf experiment goal Δ mean % Δ mean % CI trials links
quality_gate_metrics_logs memory utilization +1.68 [+1.46, +1.90] 1 Logs bounds checks dashboard
otlp_ingest_logs memory utilization +0.93 [+0.83, +1.03] 1 Logs
tcp_syslog_to_blackhole ingress throughput +0.62 [+0.55, +0.68] 1 Logs
docker_containers_memory memory utilization +0.59 [+0.52, +0.67] 1 Logs
ddot_metrics_sum_delta memory utilization +0.49 [+0.30, +0.69] 1 Logs
file_tree memory utilization +0.37 [+0.32, +0.43] 1 Logs
ddot_metrics_sum_cumulative memory utilization +0.22 [+0.06, +0.38] 1 Logs
ddot_metrics_sum_cumulativetodelta_exporter memory utilization +0.04 [-0.18, +0.27] 1 Logs
file_to_blackhole_1000ms_latency egress throughput +0.04 [-0.39, +0.47] 1 Logs
file_to_blackhole_500ms_latency egress throughput +0.02 [-0.37, +0.42] 1 Logs
uds_dogstatsd_to_api_v3 ingress throughput +0.00 [-0.12, +0.13] 1 Logs
tcp_dd_logs_filter_exclude ingress throughput -0.01 [-0.10, +0.08] 1 Logs
uds_dogstatsd_to_api ingress throughput -0.01 [-0.13, +0.11] 1 Logs
quality_gate_idle_all_features memory utilization -0.02 [-0.06, +0.01] 1 Logs bounds checks dashboard
quality_gate_idle memory utilization -0.03 [-0.07, +0.01] 1 Logs bounds checks dashboard
file_to_blackhole_0ms_latency egress throughput -0.03 [-0.54, +0.48] 1 Logs
file_to_blackhole_100ms_latency egress throughput -0.06 [-0.10, -0.01] 1 Logs
ddot_logs memory utilization -0.08 [-0.14, -0.01] 1 Logs
uds_dogstatsd_20mb_12k_contexts_20_senders memory utilization -0.09 [-0.15, -0.04] 1 Logs
otlp_ingest_metrics memory utilization -0.18 [-0.33, -0.03] 1 Logs
ddot_metrics memory utilization -0.45 [-0.68, -0.23] 1 Logs
quality_gate_logs % cpu utilization -0.55 [-2.05, +0.95] 1 Logs bounds checks dashboard
docker_containers_cpu % cpu utilization -1.93 [-4.98, +1.12] 1 Logs

Bounds Checks: ✅ Passed

perf experiment bounds_check_name replicates_passed links
docker_containers_cpu simple_check_run 10/10
docker_containers_memory memory_usage 10/10
docker_containers_memory simple_check_run 10/10
file_to_blackhole_0ms_latency lost_bytes 10/10
file_to_blackhole_0ms_latency memory_usage 10/10
file_to_blackhole_1000ms_latency lost_bytes 10/10
file_to_blackhole_1000ms_latency memory_usage 10/10
file_to_blackhole_100ms_latency lost_bytes 10/10
file_to_blackhole_100ms_latency memory_usage 10/10
file_to_blackhole_500ms_latency lost_bytes 10/10
file_to_blackhole_500ms_latency memory_usage 10/10
quality_gate_idle intake_connections 10/10 bounds checks dashboard
quality_gate_idle memory_usage 10/10 bounds checks dashboard
quality_gate_idle_all_features intake_connections 10/10 bounds checks dashboard
quality_gate_idle_all_features memory_usage 10/10 bounds checks dashboard
quality_gate_logs intake_connections 10/10 bounds checks dashboard
quality_gate_logs lost_bytes 10/10 bounds checks dashboard
quality_gate_logs memory_usage 10/10 bounds checks dashboard
quality_gate_metrics_logs cpu_usage 10/10 bounds checks dashboard
quality_gate_metrics_logs intake_connections 10/10 bounds checks dashboard
quality_gate_metrics_logs lost_bytes 10/10 bounds checks dashboard
quality_gate_metrics_logs memory_usage 10/10 bounds checks dashboard

Explanation

Confidence level: 90.00%
Effect size tolerance: |Δ mean %| ≥ 5.00%

Performance changes are noted in the perf column of each table:

  • ✅ = significantly better comparison variant performance
  • ❌ = significantly worse comparison variant performance
  • ➖ = no significant change in performance

A regression test is an A/B test of target performance in a repeatable rig, where "performance" is measured as "comparison variant minus baseline variant" for an optimization goal (e.g., ingress throughput). Due to intrinsic variability in measuring that goal, we can only estimate its mean value for each experiment; we report uncertainty in that value as a 90.00% confidence interval denoted "Δ mean % CI".

For each experiment, we decide whether a change in performance is a "regression" -- a change worth investigating further -- if all of the following criteria are true:

  1. Its estimated |Δ mean %| ≥ 5.00%, indicating the change is big enough to merit a closer look.

  2. Its 90.00% confidence interval "Δ mean % CI" does not contain zero, indicating that if our statistical model is accurate, there is at least a 90.00% chance there is a difference in performance between baseline and comparison variants.

  3. Its configuration does not mark it "erratic".

CI Pass/Fail Decision

Passed. All Quality Gates passed.

  • quality_gate_idle_all_features, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_idle_all_features, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check lost_bytes: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_metrics_logs, bounds check cpu_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check lost_bytes: 10/10 replicas passed. Gate passed.
  • quality_gate_idle, bounds check intake_connections: 10/10 replicas passed. Gate passed.
  • quality_gate_idle, bounds check memory_usage: 10/10 replicas passed. Gate passed.

@dd-octo-sts dd-octo-sts bot force-pushed the update-k8s-versions-automated branch 5 times, most recently from 6e80e01 to abfa33a Compare December 25, 2025 06:10
@dd-octo-sts dd-octo-sts bot force-pushed the update-k8s-versions-automated branch 5 times, most recently from ea05096 to 4c931ea Compare January 1, 2026 06:10
@frank-spano
Copy link
Contributor

/merge

@dd-devflow-routing-codex
Copy link

dd-devflow-routing-codex bot commented Jan 2, 2026

View all feedbacks in Devflow UI.

2026-01-02 15:03:52 UTC ℹ️ Start processing command /merge


2026-01-02 15:04:00 UTC ℹ️ MergeQueue: waiting for PR to be ready

This pull request is not mergeable according to GitHub. Common reasons include pending required checks, missing approvals, or merge conflicts — but it could also be blocked by other repository rules or settings.
It will be added to the queue as soon as checks pass and/or get approvals.
Note: if you pushed new commits since the last approval, you may need additional approval.
You can remove it from the waiting list with /remove command.


2026-01-02 19:04:10 UTC ⚠️ MergeQueue: This merge request was unqueued

devflow unqueued this merge request: It did not become mergeable within the expected time

@dd-octo-sts dd-octo-sts bot force-pushed the update-k8s-versions-automated branch 6 times, most recently from d65c3d7 to e08022e Compare January 9, 2026 06:10
@dd-octo-sts dd-octo-sts bot force-pushed the update-k8s-versions-automated branch 8 times, most recently from 31e02a0 to 2b14fcc Compare February 4, 2026 06:22
@dd-octo-sts dd-octo-sts bot force-pushed the update-k8s-versions-automated branch 3 times, most recently from 467fbfc to 4e2a282 Compare February 7, 2026 06:18
@dd-octo-sts dd-octo-sts bot added internal Identify a non-fork PR team/agent-devx labels Feb 7, 2026
@dd-octo-sts dd-octo-sts bot force-pushed the update-k8s-versions-automated branch 7 times, most recently from 0f2787e to 940f69b Compare February 17, 2026 06:26
@dd-octo-sts dd-octo-sts bot force-pushed the update-k8s-versions-automated branch 5 times, most recently from 5867824 to cd3410f Compare February 24, 2026 06:27
@dd-octo-sts dd-octo-sts bot force-pushed the update-k8s-versions-automated branch from cd3410f to 2afab08 Compare February 25, 2026 06:29
@agent-platform-auto-pr
Copy link
Contributor

agent-platform-auto-pr bot commented Feb 25, 2026

Files inventory check summary

File checks results against ancestor 5a007aeb:

Results for datadog-agent_7.78.0~devel.git.603.2e07f2f.pipeline.102555307-1_amd64.deb:

No change detected

@dd-octo-sts dd-octo-sts bot force-pushed the update-k8s-versions-automated branch from 2afab08 to b36936b Compare February 26, 2026 06:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ask-review Ask required teams to review this PR changelog/no-changelog No changelog entry needed internal Identify a non-fork PR qa/done QA done before merge and regressions are covered by tests short review PR is simple enough to be reviewed quickly team/agent-devx team/container-integrations

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants