AlinsRan commented on PR #2882: URL: https://github.com/apache/apisix-ingress-controller/pull/2882#issuecomment-5746419547
api7/adc#618 is merged, so the schema side is done — but CI here is still blocked, on a **release** rather than the merge. `kind-load-adc-image` pulls `ghcr.io/api7/adc:$(ADC_VERSION)` and retags it as `:dev`, so the published `adc:dev` is never what the e2e and conformance jobs run. `ADC_VERSION ?= 0.30.5`, and v0.30.5 was cut on 2026-09-16, before the merge: ``` $ docker run --rm -v ...:/w ghcr.io/api7/adc:0.30.5 validate -f /w/adc.yaml ✖ Unrecognized keys: "snis", "tls_passthrough" $ docker run --rm -v ...:/w ghcr.io/api7/adc:dev validate -f /w/adc.yaml (passes schema, proceeds to the backend call) ``` So this needs ADC to cut a release carrying api7/adc#618, and then a one-line `ADC_VERSION` bump here. Staying in draft until then; nothing else is outstanding — the conformance run is green locally against an ADC image built from that branch (GATEWAY-TLS core 19 passed / 0 failed / 1 skipped). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
