wu-sheng commented on code in PR #13772: URL: https://github.com/apache/skywalking/pull/13772#discussion_r3014433174
########## test/e2e-v2/cases/envoy-ai-gateway/docker-compose.yml: ########## @@ -0,0 +1,85 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Envoy AI Gateway e2e — ai-gateway-cli + Ollama + SkyWalking OAP +# +# Architecture: +# trigger → ai-gateway-cli (port 1975) → ollama (port 11434) +# ↓ OTLP gRPC +# oap (port 11800) → banyandb + +services: + banyandb: + extends: + file: ../../script/docker-compose/base-compose.yml + service: banyandb + networks: + - e2e + + oap: + extends: + file: ../../script/docker-compose/base-compose.yml + service: oap + environment: + SW_STORAGE: banyandb + ports: + - 12800 + depends_on: + banyandb: + condition: service_healthy + + ollama: + image: ollama/ollama:0.6.2 + networks: + - e2e + expose: + - 11434 + healthcheck: + test: ["CMD", "ollama", "list"] + interval: 5s + timeout: 60s + retries: 120 + + aigw: + # TODO: pin to a release version once ai-gateway-cli HTTP listener is available in a release + image: envoyproxy/ai-gateway-cli:latest Review Comment: The standalone HTTP proxy mode is only available in the `latest` (dev) build. The released `v0.5.0` does not include this feature (verified locally). A TODO comment is in the file. Will pin once the CLI HTTP listener ships in a tagged release. -- 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]
