123456789101112131415161718192021222324252627 |
- # Copyright Broadcom, Inc. All Rights Reserved.
- # SPDX-License-Identifier: APACHE-2.0
- http:
- http://envoy-gateway:{{ .Vars.service.ports.admin }}:
- status: 200
- body:
- - 'Envoy Gateway Admin Console'
- http://127.0.0.1:{{ .Vars.containerPorts.admin }}:
- status: 200
- http://envoy-gateway:{{ .Vars.service.ports.metrics }}/metrics:
- status: 200
- body:
- - /gatewayclass-status/
- # Use the deployed fixed service that points to the envoy instance. This verifies
- # that envoy has the correct configuration
- http://vib-envoy-gateway:80:
- status: 200
- request-headers:
- - "Host: bitnami-envoy.my"
- body:
- - /nginx/
- file:
- /config/envoy-gateway.yaml:
- exists: true
- contents:
- - /enableDumpConfig.*{{.Vars.overrideConfiguration.admin.enableDumpConfig}}/
|