#!/usr/bin/env bash # shellcheck disable=SC1090,SC2154,SC2155 # Copyright Istio Authors # # Licensed 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. set -e set -u set -o pipefail source "tests/util/samples.sh" # @setup profile=demo # Start the otel sample startup_otel_sample # Apply Telemetry config snip_enable_envoys_access_logging_3 kubectl label namespace default istio-injection=enabled --overwrite # Start the sleep sample startup_sleep_sample export SOURCE_POD=$(kubectl get pod -l app=sleep -o jsonpath='{.items[0].metadata.name}') # Start the httpbin sample startup_httpbin_sample # Make curl request to httpbin _verify_elided snip_test_the_access_log_1 "$snip_test_the_access_log_1_out" # Check the logs _verify_contains snip_test_the_access_log_2 "outbound|8000||httpbin.default.svc.cluster.local" # @cleanup snip_cleanup_1