Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some HTTP/2 requests fail with duplicate value in envoy authority request header #48088

Closed
2 tasks done
SeanKilleen opened this issue Nov 29, 2023 · 33 comments
Closed
2 tasks done

Comments

@SeanKilleen
Copy link

SeanKilleen commented Nov 29, 2023

Is this the right place to submit this?

  • This is not a security vulnerability or a crashing bug
  • This is not a question about how to use Istio

Bug Description

Hi all,

I am using SAP BTP Kyma and hitting a truly strange situation. I'm at a bit of a loss as to why this issue is occurring, but it seems it might be occurring between Kyma and Istio, and since there are differing areas of expertise in those repos, I am cross-posting this issue in both repositories and linking them together (not something I'd typically do.)

Background

We use SAP BTP Kyma, which uses Istio:

  • Kubernetes v1.26.9
  • Istio v1.19.3

Within Kyma, we are using an API Rule to allow traffic. It is a very broad rule currently, allowing put/get/post/delete requests across .*

Kyma, as I understand, uses Istio VirtualServices to work with a single kyma-gateway.

I am newer to troubleshooting both Istio and Kyma, so I don't want anyone to assume that I know something I don't; let me know if I'm missing something conceptually.

The Problem

All HTTP/1.x requests to our app succeed. However, some HTTP/2 requests succeed, and some do not.

  • I can make HTTP/2 requests via Insomnia (on Windows) or curl (via WSL) and receive a successful response.
  • In some cases, with some clients -- Apidog on Windows, or an SAP environment that's making an HTTP/1.1 request and wrapping it in HTTP/2 -- those same calls result in a 404 error (I can flip a switch for HTTP/2 support on/off on the client and it will work when not an HTTP/2 request). Same body, same URL, same content-type, etc. etc.

After a bunch of troubleshooting and getting deeper into the Istio logs, I noticed a pattern.

In the requests that fail, the authority header within istio seems to be duplicated. E.g. if the correct authority is xyz, the value being shown in the logs is xyz,xyz. Requests that fail seem to consistently have this occur, and I have never seen it occur in a successful request.

I am having difficulty understanding whether:

  • The calling clients are somehow doing something they shouldn't that's not in the spirit of HTTP/2
  • The Kyma/istio integration is causing this to be duplicated
  • Something within Istio is causing it to be duplicated.

Logs

Istio logs for a failed request
2023-11-29T19:16:18.155693Z	debug	envoy filter external/envoy/source/extensions/filters/listener/tls_inspector/tls_inspector.cc:137	tls:onServerName(), requestedServerName: cip.REDACTED.kyma.ondemand.com	thread=24
2023-11-29T19:16:18.203382Z	debug	envoy http2 external/envoy/source/common/http/http2/codec_impl.cc:1605	[Tags: "ConnectionId":"1735723"] updating connection-level initial window size to 268435456	thread=24
2023-11-29T19:16:18.204324Z	debug	envoy http external/envoy/source/common/http/conn_manager_impl.cc:378	[Tags: "ConnectionId":"1735723"] new stream	thread=24
2023-11-29T19:16:18.204510Z	debug	envoy http external/envoy/source/common/http/conn_manager_impl.cc:1165	[Tags: "ConnectionId":"1735723","StreamId":"511241007191140157"] request headers complete (end_stream=false):
':method', 'POST'
':scheme', 'https'
':path', '/api/SvcRequest/ProcessServiceRequest'
':authority', 'cip.REDACTED.kyma.ondemand.com,cip.REDACTED.kyma.ondemand.com'
'content-type', 'application/xml; charset=utf-8'
'content-length', '1816'
'accept', 'application/xml'
'authorization', 'Bearer REDACTED'
'user-agent', 'SAP NetWeaver Application Server (1.0;757)'
'accept-encoding', 'gzip, br'
	thread=24
2023-11-29T19:16:18.204576Z	debug	envoy connection external/envoy/source/common/network/connection_impl.h:98	[C1735723] current connecting state: false	thread=24
2023-11-29T19:16:18.204632Z	debug	envoy filter source/extensions/filters/http/alpn/alpn_filter.cc:61	cannot find route entry	thread=24
2023-11-29T19:16:18.204655Z	debug	envoy router external/envoy/source/common/router/router.cc:408	[Tags: "ConnectionId":"1735723","StreamId":"511241007191140157"] no route match for URL '/api/SvcRequest/ProcessServiceRequest'	thread=24
2023-11-29T19:16:18.204669Z	debug	envoy http external/envoy/source/common/http/filter_manager.cc:946	[Tags: "ConnectionId":"1735723","StreamId":"511241007191140157"] Preparing local reply with details route_not_found	thread=24
2023-11-29T19:16:18.204711Z	debug	envoy http external/envoy/source/common/http/filter_manager.cc:988	[Tags: "ConnectionId":"1735723","StreamId":"511241007191140157"] Executing sending local reply.	thread=24
2023-11-29T19:16:18.204760Z	debug	envoy http external/envoy/source/common/http/conn_manager_impl.cc:1819	[Tags: "ConnectionId":"1735723","StreamId":"511241007191140157"] encoding headers via codec (end_stream=true):
':status', '404'
'date', 'Wed, 29 Nov 2023 19:16:17 GMT'
'server', 'istio-envoy'
	thread=24
2023-11-29T19:16:18.204775Z	debug	envoy http external/envoy/source/common/http/conn_manager_impl.cc:237	[Tags: "ConnectionId":"1735723","StreamId":"511241007191140157"] doEndStream() resetting stream	thread=24
2023-11-29T19:16:18.204783Z	debug	envoy http external/envoy/source/common/http/conn_manager_impl.cc:1888	[Tags: "ConnectionId":"1735723","StreamId":"511241007191140157"] stream reset: reset reason: local reset, response details: -	thread=24
2023-11-29T19:16:18.204851Z	debug	envoy http2 external/envoy/source/common/http/http2/codec_impl.cc:1225	[Tags: "ConnectionId":"1735723"] sent reset code=0	thread=24
2023-11-29T19:16:18.204881Z	debug	envoy http2 external/envoy/source/common/http/http2/codec_impl.cc:1350	[Tags: "ConnectionId":"1735723"] stream 1 closed: 0	thread=24
Istio logs for a successful request
2023-11-29T18:01:12.409335Z	debug	envoy filter external/envoy/source/extensions/filters/listener/tls_inspector/tls_inspector.cc:137	tls:onServerName(), requestedServerName: cip.REDACTED.kyma.ondemand.com	thread=23
2023-11-29T18:01:12.446095Z	debug	envoy http2 external/envoy/source/common/http/http2/codec_impl.cc:1605	[Tags: "ConnectionId":"1733026"] updating connection-level initial window size to 268435456	thread=23
2023-11-29T18:01:12.446162Z	debug	envoy http external/envoy/source/common/http/conn_manager_impl.cc:378	[Tags: "ConnectionId":"1733026"] new stream	thread=23
2023-11-29T18:01:12.446285Z	debug	envoy http external/envoy/source/common/http/conn_manager_impl.cc:1165	[Tags: "ConnectionId":"1733026","StreamId":"16013734393669961989"] request headers complete (end_stream=false):
':method', 'POST'
':path', '/api/SvcRequest/ProcessServiceRequest'
':scheme', 'https'
':authority', 'cip.REDACTED.kyma.ondemand.com'
'content-type', 'application/xml'
'user-agent', 'SeanInsomnia/8.3.0'
'authorization', 'Bearer REDACTED'
'accept', '*/*'
'content-length', '1816'
	thread=23
2023-11-29T18:01:12.446330Z	debug	envoy connection external/envoy/source/common/network/connection_impl.h:98	[C1733026] current connecting state: false	thread=23
2023-11-29T18:01:12.446407Z	debug	envoy filter source/extensions/filters/http/alpn/alpn_filter.cc:92	override with 3 ALPNs	thread=23
2023-11-29T18:01:12.446467Z	debug	envoy router external/envoy/source/common/router/router.cc:478	[Tags: "ConnectionId":"1733026","StreamId":"16013734393669961989"] cluster 'outbound|80||cip.sct-products.svc.cluster.local' match for URL '/api/SvcRequest/ProcessServiceRequest'	thread=23
2023-11-29T18:01:12.446569Z	debug	envoy router external/envoy/source/common/router/router.cc:690	[Tags: "ConnectionId":"1733026","StreamId":"16013734393669961989"] router decoding headers:
':method', 'POST'
':path', '/api/SvcRequest/ProcessServiceRequest'
':scheme', 'https'
':authority', 'cip.REDACTED.kyma.ondemand.com'
'content-type', 'application/xml'
'user-agent', 'SeanInsomnia/8.3.0'
'authorization', 'Bearer REDACTED'
'accept', '*/*'
'content-length', '1816'
'x-forwarded-for', '10.250.0.4'
'x-forwarded-proto', 'https'
'x-envoy-internal', 'true'
'x-request-id', '144dda5d-3b6e-4d6c-8950-fd617f61f188'
'x-envoy-peer-metadata-id', 'router~100.64.0.49~istio-ingressgateway-5b96c5b95f-5vxdj.istio-system~istio-system.svc.cluster.local'
'x-envoy-peer-metadata', 'ChoKCkNMVVNURVJfSUQSDBoKS3ViZXJuZXRlcwodCgxJTlNUQU5DRV9JUFMSDRoLMTAwLjY0LjAuNDkKGQoNSVNUSU9fVkVSU0lPThIIGgYxLjE5LjMKzwMKBkxBQkVMUxLEAyrBAwodCgNhcHASFhoUaXN0aW8taW5ncmVzc2dhdGV3YXkKEwoFY2hhcnQSChoIZ2F0ZXdheXMKFAoIaGVyaXRhZ2USCBoGVGlsbGVyCjYKKWluc3RhbGwub3BlcmF0b3IuaXN0aW8uaW8vb3duaW5nLXJlc291cmNlEgkaB3Vua25vd24KGQoFaXN0aW8SEBoOaW5ncmVzc2dhdGV3YXkKGQoMaXN0aW8uaW8vcmV2EgkaB2RlZmF1bHQKMAobb3BlcmF0b3IuaXN0aW8uaW8vY29tcG9uZW50EhEaD0luZ3Jlc3NHYXRld2F5cwoxCiRwb2RzLndhcmRlbi5reW1hLXByb2plY3QuaW8vdmFsaWRhdGUSCRoHc3VjY2VzcwoSCgdyZWxlYXNlEgcaBWlzdGlvCjkKH3NlcnZpY2UuaXN0aW8uaW8vY2Fub25pY2FsLW5hbWUSFhoUaXN0aW8taW5ncmVzc2dhdGV3YXkKLwojc2VydmljZS5pc3Rpby5pby9jYW5vbmljYWwtcmV2aXNpb24SCBoGbGF0ZXN0CiIKF3NpZGVjYXIuaXN0aW8uaW8vaW5qZWN0EgcaBWZhbHNlChoKB01FU0hfSUQSDxoNY2x1c3Rlci5sb2NhbAovCgROQU1FEicaJWlzdGlvLWluZ3Jlc3NnYXRld2F5LTViOTZjNWI5NWYtNXZ4ZGoKGwoJTkFNRVNQQUNFEg4aDGlzdGlvLXN5c3RlbQpdCgVPV05FUhJUGlJrdWJlcm5ldGVzOi8vYXBpcy9hcHBzL3YxL25hbWVzcGFjZXMvaXN0aW8tc3lzdGVtL2RlcGxveW1lbnRzL2lzdGlvLWluZ3Jlc3NnYXRld2F5CqQFChFQTEFURk9STV9NRVRBREFUQRKOBSqLBQomCgphenVyZV9OYW1lEhgaFnNob290LS1reW1hLS1jLTM1OTY0YzMKOQoyYXp1cmVfa3ViZXJuZXRlcy5pby1jbHVzdGVyLXNob290LS1reW1hLS1jLTM1OTY0YzMSAxoBMQokCh1henVyZV9rdWJlcm5ldGVzLmlvLXJvbGUtbm9kZRIDGgExCiMKGGF6dXJlX2t1YmVybmV0ZXMuaW9fYXJjaBIHGgVhbWQ2NAoaCg5henVyZV9sb2NhdGlvbhIIGgZlYXN0dXMKQgoKYXp1cmVfbmFtZRI0GjJzaG9vdC0ta3ltYS0tYy0zNTk2NGMzLWNwdS13b3JrZXItMC16My01YzRkZC1nZzc0cwpACjZhenVyZV9uZXR3b3JraW5nLmdhcmRlbmVyLmNsb3VkX25vZGUtbG9jYWwtZG5zLWVuYWJsZWQSBhoEdHJ1ZQonCh1henVyZV9ub2RlLmt1YmVybmV0ZXMuaW9fcm9sZRIGGgRub2RlCjQKCmF6dXJlX3ZtSWQSJhokZWZkZWVhN2UtODhhOC00OTA5LTlkYjItYjM5MzE5OWI1OWZmCjcKJWF6dXJlX3dvcmtlci5nYXJkZW4uc2FwY2xvdWQuaW9fZ3JvdXASDhoMY3B1LXdvcmtlci0wCjQKJGF6dXJlX3dvcmtlci5nYXJkZW5lci5jbG91ZF9jcmktbmFtZRIMGgpjb250YWluZXJkCjIKIGF6dXJlX3dvcmtlci5nYXJkZW5lci5jbG91ZF9wb29sEg4aDGNwdS13b3JrZXItMAo3Ci1henVyZV93b3JrZXIuZ2FyZGVuZXIuY2xvdWRfc3lzdGVtLWNvbXBvbmVudHMSBhoEdHJ1ZQonCg1XT1JLTE9BRF9OQU1FEhYaFGlzdGlvLWluZ3Jlc3NnYXRld2F5'
'x-envoy-expected-rq-timeout-ms', '180000'
'x-envoy-attempt-count', '1'
'x-forwarded-host', 'cip.REDACTED.kyma.ondemand.com'
	thread=23
2023-11-29T18:01:12.447195Z	debug	envoy http external/envoy/source/common/http/conn_manager_impl.cc:1148	[Tags: "ConnectionId":"1733026","StreamId":"16013734393669961989"] request end stream	thread=23
2023-11-29T18:01:12.451942Z	debug	envoy router external/envoy/source/common/router/upstream_request.cc:562	[Tags: "ConnectionId":"1733026","StreamId":"16013734393669961989"] pool ready	thread=23
2023-11-29T18:01:19.821992Z	debug	envoy router external/envoy/source/common/router/router.cc:1437	[Tags: "ConnectionId":"1733026","StreamId":"16013734393669961989"] upstream headers complete: end_stream=false	thread=23
2023-11-29T18:01:19.822329Z	debug	envoy http external/envoy/source/common/http/conn_manager_impl.cc:1819	[Tags: "ConnectionId":"1733026","StreamId":"16013734393669961989"] encoding headers via codec (end_stream=false):
':status', '200'
'content-type', 'application/xml'
'date', 'Wed, 29 Nov 2023 18:01:18 GMT'
'server', 'istio-envoy'
'x-envoy-upstream-service-time', '7375'
	thread=23
2023-11-29T18:01:19.823102Z	debug	envoy http external/envoy/source/common/http/conn_manager_impl.cc:1924	[Tags: "ConnectionId":"1733026","StreamId":"16013734393669961989"] Codec completed encoding stream.	thread=23
2023-11-29T18:01:19.823154Z	debug	envoy http2 external/envoy/source/common/http/http2/codec_impl.cc:1350	[Tags: "ConnectionId":"1733026"] stream 1 closed: 0	thread=23
2023-11-29T18:01:19.823191Z	debug	envoy http2 external/envoy/source/common/http/http2/codec_impl.cc:1414	[Tags: "ConnectionId":"1733026"] Recouping 0 bytes of flow control window for stream 1.	thread=23

As far as I can tell, the difference seems to be that when these failing requests are made, and the authority header is formatted in that way, the alpn_filter in istio can't find the routes, and therefore there's a 404. I'm not sure if that's because

  • The header itself is badly formed and shouldn't be in that format
  • The header is fine but there is some kind of matching on host that is too strict and needs to be relaxed
  • Something else is going on that I'm missing.

Troubleshooting So far

  • Many many successful and failed requests to try to reproduce the pattern
  • I've enabled more verbose logs (let me know if others would be helpful!) --level "http:debug,http2:debug,admin:debug,client:debug,connection:debug,envoy_bug:debug,filter:debug,main:debug,multi_connection:debug,quic_stream:debug,router:debug,upstream:debug"
  • Installed Kiali to check things out visually, look at some config validation, etc. -- no issues found.

Version

istioctl: 

client version: 1.20.0
control plane version: 1.19.3
data plane version: 1.19.3 (20 proxies)

kubectl:

Client Version: v1.28.2
Server Version: v1.26.9

Additional Information

GitHub tells me my entry is too long, so I'll paste it in a separate comment.

@SeanKilleen
Copy link
Author

SeanKilleen commented Nov 29, 2023

The output of bug-report is below, with a minor redaction on the hostname.

bug-report output2023-11-29T19:45:44.666247Z info STARTING kubectl config current-context --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:44.719076Z info COMPLETED kubectl config current-context --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:44.719172Z info Target cluster context: shoot--kyma--REDACTED 2023-11-29T19:45:44.719576Z info Running with the following config: kubeconfig: .\kubeconfigs\kubeconfig_preprodnew.yaml istio-namespace: istio-system full-secrets: false timeout (mins): 30 include: { } exclude: { Namespaces: kube-node-lease,kube-public,kube-system,local-path-storage } end-time: 2023-11-29 14:45:44.6612425 -0500 EST 2023-11-29T19:45:44.722077Z info Cluster endpoint: https://api.REDACTED.kyma.ondemand.com 2023-11-29T19:45:45.210812Z info Done collecting cluster resource runtime=488.7354ms 2023-11-29T19:45:45.212312Z error unable to retrieve Pods: Get "http://localhost:8080/api/v1/namespaces/istio-system/pods?fieldSelector=status.phase%3DRunning&labelSelector=app%3Distiod%2Cistio.io%2Frev%3Ddefault": dial tcp [::1]:8080: connectex: No connection could be made because the target machine actively refused it. 2023-11-29T19:45:45.212812Z info CLI version: version.BuildInfo{Version:"1.20.0", GitRevision:"6869a6c2371e21c847d216065cf5c59863d01b4c", GolangVersion:"go1.21.3", BuildStatus:"Clean", GitTag:"1.20.0"} The following Istio control plane revisions/versions were found in the cluster: Revision default: unable to retrieve Pods: Get "http://localhost:8080/api/v1/namespaces/istio-system/pods?fieldSelector=status.phase%!D(MISSING)Running&labelSelector=app%!D(MISSING)istiod%!C(MISSING)istio.io%!F(MISSING)rev%!D(MISSING)default": dial tcp [::1]:8080: connectex: No connection could be made because the target machine actively refused it. The following proxy revisions/versions were found in the cluster: 2023-11-29T19:45:45.212812Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\versions runtime=0s 2023-11-29T19:45:45.212812Z info Done getting control plane revisions/versions runtime=2.0004ms 2023-11-29T19:45:45.213313Z info Cluster resource tree: istio-system istio-cni-node istio-cni-node-859cz install-cni istio-cni-node-lrbvv install-cni istio-ingressgateway istio-ingressgateway-5b96c5b95f-t7dxs istio-proxy istio-ingressgateway-5b96c5b95f-2qmzj istio-proxy istio-ingressgateway-5b96c5b95f-5vxdj istio-proxy istiod istiod-7cf9c6df79-qhz9l discovery istiod-7cf9c6df79-s7ws2 discovery kyma-system central-application-connectivity-validator central-application-connectivity-validator-5b9478467d-ncm5t istio-proxy central-application-connectivity-validator rma-system-logs-collector rma-system-logs-collector-dcfd7dfc5-7v2ht otel-collector skr-webhook skr-webhook-f6bdbf7fc-666mh server application-connector-controller-manager application-connector-controller-manager-55d9db7d45-cx4kl istio-proxy manager istio-controller-manager istio-controller-manager-677489658d-5q5fd manager monitoring-kube-state-metrics monitoring-kube-state-metrics-54dbf5f558-9ztnc kube-state-metrics ory-oathkeeper ory-oathkeeper-7dffc66bbb-7b7dp istio-proxy oathkeeper oathkeeper-maester ory-oathkeeper-7dffc66bbb-lxdd9 istio-proxy oathkeeper oathkeeper-maester ory-oathkeeper-7dffc66bbb-n45lk istio-proxy oathkeeper oathkeeper-maester rma-system-logs-agent rma-system-logs-agent-2h4qd opentelemetry-collector rma-system-logs-agent-d6qnv opentelemetry-collector warden-admission warden-admission-657b4576d4-gpjvs admission warden-operator warden-operator-5799cd8c7f-r62zb istio-proxy operator central-application-gateway central-application-gateway-58696795bd-8s7k2 istio-proxy central-application-gateway monitoring-auth-proxy-grafana monitoring-auth-proxy-grafana-7ff796d866-gp6vt auth-proxy istio-proxy monitoring-grafana monitoring-grafana-69ffc5d57-7fwsq grafana-sc-dashboard-watcher grafana istio-proxy grafana-sc-datasources-watcher monitoring-operator monitoring-operator-94dd887cb-625x6 monitoring monitoring-prometheus-node-exporter monitoring-prometheus-node-exporter-2wx5t node-exporter monitoring-prometheus-node-exporter-7dpfn node-exporter rma-victoria-metrics-agent rma-victoria-metrics-agent-5865697f5b-lbkx4 victoria-metrics-agent api-gateway-controller-manager api-gateway-controller-manager-74fd8dd9c5-g6r7d manager compass-runtime-agent compass-runtime-agent-b66957b45-66jdq istio-proxy compass-runtime-agent monitoring-prometheus-istio-server monitoring-prometheus-istio-server-5cb8594cc9-vrxj9 prometheus-istio-server-configmap-reload prometheus-istio-server rma-kube-state-metrics rma-kube-state-metrics-7bc6d47cf5-nmjww kube-state-metrics observability grafana grafana-548676f75c-v2fht grafana kiali kiali-855b85d6f7-r4f9z kiali seq seq-66f565c684-6tlz4 seq sap-btp-operator sap-btp-operator-controller-manager sap-btp-operator-controller-manager-59896db5b9-m42hq kube-rbac-proxy manager sap-btp-operator-controller-manager-59896db5b9-wwbzb kube-rbac-proxy manager sct-products cip cip-bbb764f7b-79655 istio-proxy cip cip-bbb764f7b-9qp8m istio-proxy cip cip-bbb764f7b-pvbgt istio-proxy cip minio minio-6ddc6c665d-b76cv minio cert-manager cert-manager cert-manager-774c9dbff-6qxlm cert-manager-controller cert-manager-cainjector cert-manager-cainjector-646d9649d9-zb5g9 cert-manager-cainjector cert-manager-webhook cert-manager-webhook-5995b68bf7-2f6mn cert-manager-webhook 2023-11-29T19:45:45.215813Z info Fetching logs for the following containers: cert-manager/cert-manager-cainjector/cert-manager-cainjector-646d9649d9-zb5g9/cert-manager-cainjector cert-manager/cert-manager-webhook/cert-manager-webhook-5995b68bf7-2f6mn/cert-manager-webhook cert-manager/cert-manager/cert-manager-774c9dbff-6qxlm/cert-manager-controller istio-system/istio-cni-node/istio-cni-node-859cz/install-cni istio-system/istio-cni-node/istio-cni-node-lrbvv/install-cni istio-system/istio-ingressgateway/istio-ingressgateway-5b96c5b95f-2qmzj/istio-proxy istio-system/istio-ingressgateway/istio-ingressgateway-5b96c5b95f-5vxdj/istio-proxy istio-system/istio-ingressgateway/istio-ingressgateway-5b96c5b95f-t7dxs/istio-proxy istio-system/istiod/istiod-7cf9c6df79-qhz9l/discovery istio-system/istiod/istiod-7cf9c6df79-s7ws2/discovery kyma-system/api-gateway-controller-manager/api-gateway-controller-manager-74fd8dd9c5-g6r7d/manager kyma-system/application-connector-controller-manager/application-connector-controller-manager-55d9db7d45-cx4kl/istio-proxy kyma-system/application-connector-controller-manager/application-connector-controller-manager-55d9db7d45-cx4kl/manager kyma-system/central-application-connectivity-validator/central-application-connectivity-validator-5b9478467d-ncm5t/central-application-connectivity-validator kyma-system/central-application-connectivity-validator/central-application-connectivity-validator-5b9478467d-ncm5t/istio-proxy kyma-system/central-application-gateway/central-application-gateway-58696795bd-8s7k2/central-application-gateway kyma-system/central-application-gateway/central-application-gateway-58696795bd-8s7k2/istio-proxy kyma-system/compass-runtime-agent/compass-runtime-agent-b66957b45-66jdq/compass-runtime-agent kyma-system/compass-runtime-agent/compass-runtime-agent-b66957b45-66jdq/istio-proxy kyma-system/istio-controller-manager/istio-controller-manager-677489658d-5q5fd/manager kyma-system/monitoring-auth-proxy-grafana/monitoring-auth-proxy-grafana-7ff796d866-gp6vt/auth-proxy kyma-system/monitoring-auth-proxy-grafana/monitoring-auth-proxy-grafana-7ff796d866-gp6vt/istio-proxy kyma-system/monitoring-grafana/monitoring-grafana-69ffc5d57-7fwsq/grafana kyma-system/monitoring-grafana/monitoring-grafana-69ffc5d57-7fwsq/grafana-sc-dashboard-watcher kyma-system/monitoring-grafana/monitoring-grafana-69ffc5d57-7fwsq/grafana-sc-datasources-watcher kyma-system/monitoring-grafana/monitoring-grafana-69ffc5d57-7fwsq/istio-proxy kyma-system/monitoring-kube-state-metrics/monitoring-kube-state-metrics-54dbf5f558-9ztnc/kube-state-metrics kyma-system/monitoring-operator/monitoring-operator-94dd887cb-625x6/monitoring kyma-system/monitoring-prometheus-istio-server/monitoring-prometheus-istio-server-5cb8594cc9-vrxj9/prometheus-istio-server kyma-system/monitoring-prometheus-istio-server/monitoring-prometheus-istio-server-5cb8594cc9-vrxj9/prometheus-istio-server-configmap-reload kyma-system/monitoring-prometheus-node-exporter/monitoring-prometheus-node-exporter-2wx5t/node-exporter kyma-system/monitoring-prometheus-node-exporter/monitoring-prometheus-node-exporter-7dpfn/node-exporter kyma-system/ory-oathkeeper/ory-oathkeeper-7dffc66bbb-7b7dp/istio-proxy kyma-system/ory-oathkeeper/ory-oathkeeper-7dffc66bbb-7b7dp/oathkeeper kyma-system/ory-oathkeeper/ory-oathkeeper-7dffc66bbb-7b7dp/oathkeeper-maester kyma-system/ory-oathkeeper/ory-oathkeeper-7dffc66bbb-lxdd9/istio-proxy kyma-system/ory-oathkeeper/ory-oathkeeper-7dffc66bbb-lxdd9/oathkeeper kyma-system/ory-oathkeeper/ory-oathkeeper-7dffc66bbb-lxdd9/oathkeeper-maester kyma-system/ory-oathkeeper/ory-oathkeeper-7dffc66bbb-n45lk/istio-proxy kyma-system/ory-oathkeeper/ory-oathkeeper-7dffc66bbb-n45lk/oathkeeper kyma-system/ory-oathkeeper/ory-oathkeeper-7dffc66bbb-n45lk/oathkeeper-maester kyma-system/rma-kube-state-metrics/rma-kube-state-metrics-7bc6d47cf5-nmjww/kube-state-metrics kyma-system/rma-system-logs-agent/rma-system-logs-agent-2h4qd/opentelemetry-collector kyma-system/rma-system-logs-agent/rma-system-logs-agent-d6qnv/opentelemetry-collector kyma-system/rma-system-logs-collector/rma-system-logs-collector-dcfd7dfc5-7v2ht/otel-collector kyma-system/rma-victoria-metrics-agent/rma-victoria-metrics-agent-5865697f5b-lbkx4/victoria-metrics-agent kyma-system/skr-webhook/skr-webhook-f6bdbf7fc-666mh/server kyma-system/warden-admission/warden-admission-657b4576d4-gpjvs/admission kyma-system/warden-operator/warden-operator-5799cd8c7f-r62zb/istio-proxy kyma-system/warden-operator/warden-operator-5799cd8c7f-r62zb/operator observability/grafana/grafana-548676f75c-v2fht/grafana observability/kiali/kiali-855b85d6f7-r4f9z/kiali observability/seq/seq-66f565c684-6tlz4/seq sap-btp-operator/sap-btp-operator-controller-manager/sap-btp-operator-controller-manager-59896db5b9-m42hq/kube-rbac-proxy sap-btp-operator/sap-btp-operator-controller-manager/sap-btp-operator-controller-manager-59896db5b9-m42hq/manager sap-btp-operator/sap-btp-operator-controller-manager/sap-btp-operator-controller-manager-59896db5b9-wwbzb/kube-rbac-proxy sap-btp-operator/sap-btp-operator-controller-manager/sap-btp-operator-controller-manager-59896db5b9-wwbzb/manager sct-products/cip/cip-bbb764f7b-79655/cip sct-products/cip/cip-bbb764f7b-79655/istio-proxy sct-products/cip/cip-bbb764f7b-9qp8m/cip sct-products/cip/cip-bbb764f7b-9qp8m/istio-proxy sct-products/cip/cip-bbb764f7b-pvbgt/cip sct-products/cip/cip-bbb764f7b-pvbgt/istio-proxy sct-products/minio/minio-6ddc6c665d-b76cv/minio 2023-11-29T19:45:45.216812Z info Fetching Istio control plane information from cluster. 2023-11-29T19:45:45.216812Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetK8sResources 2023-11-29T19:45:45.216812Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCRs 2023-11-29T19:45:45.216812Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetEvents 2023-11-29T19:45:45.216812Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetClusterInfo 2023-11-29T19:45:45.216812Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNodeInfo 2023-11-29T19:45:45.216812Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetSecrets 2023-11-29T19:45:45.216812Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetDescribePods 2023-11-29T19:45:45.216812Z info Fetching CNI logs from cluster. 2023-11-29T19:45:45.216812Z info Waiting on CNI logs for istio-cni-node-859cz 2023-11-29T19:45:45.216812Z info Waiting on CNI logs for istio-cni-node-lrbvv 2023-11-29T19:45:45.216812Z info Getting logs for istio-system/istio-cni-node-lrbvv/... 2023-11-29T19:45:45.216812Z info STARTING PodLogs istio-system/istio-cni-node-lrbvv/ 2023-11-29T19:45:45.216812Z info Getting logs for istio-system/istio-cni-node-859cz/... 2023-11-29T19:45:45.216812Z info STARTING PodLogs istio-system/istio-cni-node-859cz/ 2023-11-29T19:45:45.223312Z info STARTING kubectl get secrets --all-namespaces --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:45.223812Z info STARTING kubectl get --all-namespaces all,namespaces,jobs,ingresses,endpoints,endpointslices,customresourcedefinitions,configmaps,events,mutatingwebhookconfigurations,validatingwebhookconfigurations,networkpolicies -o yaml --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:45.223812Z info STARTING kubectl describe nodes --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:45.223812Z info STARTING kubectl get customresourcedefinitions --no-headers --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:45.223812Z info STARTING kubectl config current-context --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:45.223812Z info STARTING kubectl describe pods --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml -n istio-system 2023-11-29T19:45:45.224812Z info STARTING kubectl get events --all-namespaces -o wide --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:45.248815Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.248815Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.249314Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:45.249314Z info Waiting on proxy logs istio-system/istio-ingressgateway-5b96c5b95f-2qmzj/istio-proxy 2023-11-29T19:45:45.249314Z info STARTING PodExec istio-system/istio-ingressgateway-5b96c5b95f-2qmzj/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:45.249814Z info Getting logs for istio-system/istio-ingressgateway-5b96c5b95f-2qmzj/istio-proxy... 2023-11-29T19:45:45.283841Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.283841Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.283841Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:45.283841Z info Waiting on proxy logs istio-system/istio-ingressgateway-5b96c5b95f-5vxdj/istio-proxy 2023-11-29T19:45:45.283841Z info Getting logs for istio-system/istio-ingressgateway-5b96c5b95f-5vxdj/istio-proxy... 2023-11-29T19:45:45.305839Z info COMPLETED kubectl config current-context --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:45.321338Z info STARTING PodExec istio-system/istio-ingressgateway-5b96c5b95f-2qmzj/istio-proxy:netstat -natpw 2023-11-29T19:45:45.338838Z info COMPLETED PodLogs istio-system/istio-cni-node-859cz/ 2023-11-29T19:45:45.338838Z info COMPLETED PodLogs istio-system/istio-cni-node-lrbvv/ 2023-11-29T19:45:45.338838Z info Done getting logs only for istio-system/istio-cni-node-lrbvv/ runtime=122.0261ms 2023-11-29T19:45:45.338838Z info Done getting logs only for istio-system/istio-cni-node-859cz/ runtime=122.0261ms 2023-11-29T19:45:45.338838Z info Done with CNI logs istio-cni-node-859cz 2023-11-29T19:45:45.338838Z info Done with CNI logs istio-cni-node-lrbvv 2023-11-29T19:45:45.338838Z info Done getting CNI logs for istio-cni-node-859cz runtime=122.0261ms 2023-11-29T19:45:45.338838Z info Done getting CNI logs for istio-cni-node-lrbvv runtime=122.0261ms 2023-11-29T19:45:45.338838Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.338838Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.338838Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:45.338838Z info Waiting on proxy logs istio-system/istio-ingressgateway-5b96c5b95f-t7dxs/istio-proxy 2023-11-29T19:45:45.338838Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetIstiodInfo 2023-11-29T19:45:45.338838Z info Waiting on Istiod logs for istio-system/istiod-7cf9c6df79-qhz9l 2023-11-29T19:45:45.338838Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetIstiodInfo 2023-11-29T19:45:45.338838Z info Waiting on Istiod logs for istio-system/istiod-7cf9c6df79-s7ws2 2023-11-29T19:45:45.338838Z info Getting logs for istio-system/istio-ingressgateway-5b96c5b95f-t7dxs/istio-proxy... 2023-11-29T19:45:45.338838Z info Getting logs for istio-system/istiod-7cf9c6df79-qhz9l/discovery... 2023-11-29T19:45:45.338838Z info Getting logs for istio-system/istiod-7cf9c6df79-s7ws2/discovery... 2023-11-29T19:45:45.377838Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.377838Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.377838Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:45.377838Z info Waiting on proxy logs kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl/istio-proxy 2023-11-29T19:45:45.377838Z info Getting logs for kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl/istio-proxy... 2023-11-29T19:45:45.413838Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.413838Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.413838Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:45.413838Z info Waiting on proxy logs kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t/istio-proxy 2023-11-29T19:45:45.413838Z info Getting logs for kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t/istio-proxy... 2023-11-29T19:45:45.429838Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:certs 2023-11-29T19:45:45.450174Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.450335Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.450335Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:45.450335Z info Waiting on proxy logs kyma-system/central-application-gateway-58696795bd-8s7k2/istio-proxy 2023-11-29T19:45:45.450335Z info Getting logs for kyma-system/central-application-gateway-58696795bd-8s7k2/istio-proxy... 2023-11-29T19:45:45.487333Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.487333Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.487333Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:45.487333Z info Waiting on proxy logs kyma-system/compass-runtime-agent-b66957b45-66jdq/istio-proxy 2023-11-29T19:45:45.487333Z info Getting logs for kyma-system/compass-runtime-agent-b66957b45-66jdq/istio-proxy... 2023-11-29T19:45:45.491611Z info COMPLETED kubectl get events --all-namespaces -o wide --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:45.491611Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster runtime=0s 2023-11-29T19:45:45.491611Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetEvents 2023-11-29T19:45:45.491611Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetEvents runtime=274.7988ms 2023-11-29T19:45:45.517760Z info STARTING PodLogs istio-system/istio-ingressgateway-5b96c5b95f-2qmzj/istio-proxy 2023-11-29T19:45:45.532096Z info COMPLETED kubectl get secrets --all-namespaces --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:45.532096Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\secrets: The system cannot find the path specified. 2023-11-29T19:45:45.532096Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\secrets runtime=0s 2023-11-29T19:45:45.532096Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster runtime=0s 2023-11-29T19:45:45.532096Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetSecrets 2023-11-29T19:45:45.532096Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.532096Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.532096Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:45.532096Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetSecrets runtime=315.2835ms 2023-11-29T19:45:45.532096Z info Waiting on proxy logs kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt/istio-proxy 2023-11-29T19:45:45.532096Z info Getting logs for kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt/istio-proxy... 2023-11-29T19:45:45.553039Z info COMPLETED kubectl get customresourcedefinitions --no-headers --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:45.569864Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.569864Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.569864Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:45.569864Z info Waiting on proxy logs kyma-system/monitoring-grafana-69ffc5d57-7fwsq/istio-proxy 2023-11-29T19:45:45.569864Z info Getting logs for kyma-system/monitoring-grafana-69ffc5d57-7fwsq/istio-proxy... 2023-11-29T19:45:45.599160Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.599160Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.599160Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:45.599160Z info Waiting on proxy logs kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp/istio-proxy 2023-11-29T19:45:45.599160Z info Getting logs for kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp/istio-proxy... 2023-11-29T19:45:45.618268Z info STARTING PodExec istio-system/istio-ingressgateway-5b96c5b95f-5vxdj/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:45.634266Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.634266Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.634266Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:45.634266Z info Waiting on proxy logs kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9/istio-proxy 2023-11-29T19:45:45.634266Z info Getting logs for kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9/istio-proxy... 2023-11-29T19:45:45.669724Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.669724Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.669724Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:45.669724Z info Waiting on proxy logs kyma-system/ory-oathkeeper-7dffc66bbb-n45lk/istio-proxy 2023-11-29T19:45:45.669724Z info Getting logs for kyma-system/ory-oathkeeper-7dffc66bbb-n45lk/istio-proxy... 2023-11-29T19:45:45.717057Z info STARTING PodExec istio-system/istio-ingressgateway-5b96c5b95f-5vxdj/istio-proxy:netstat -natpw 2023-11-29T19:45:45.821137Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:certs 2023-11-29T19:45:45.833892Z info COMPLETED PodExec istio-system/istio-ingressgateway-5b96c5b95f-2qmzj/istio-proxy:netstat -natpw 2023-11-29T19:45:45.833892Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.833892Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=585.0765ms 2023-11-29T19:45:45.854637Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.854637Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:45.854637Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:45.854637Z info Waiting on proxy logs kyma-system/warden-operator-5799cd8c7f-r62zb/istio-proxy 2023-11-29T19:45:45.854637Z info Getting logs for kyma-system/warden-operator-5799cd8c7f-r62zb/istio-proxy... 2023-11-29T19:45:45.922228Z info STARTING PodLogs istio-system/istio-ingressgateway-5b96c5b95f-5vxdj/istio-proxy 2023-11-29T19:45:45.933731Z info COMPLETED PodExec istio-system/istio-ingressgateway-5b96c5b95f-2qmzj/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:45.933731Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:45.933731Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=684.9156ms 2023-11-29T19:45:45.992914Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:certs 2023-11-29T19:45:45.993110Z info port forward completed without error 2023-11-29T19:45:45.994985Z info COMPLETED kubectl describe nodes --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:45.994985Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\nodes: The system cannot find the path specified. 2023-11-29T19:45:45.994985Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\nodes runtime=0s 2023-11-29T19:45:45.994985Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster runtime=0s 2023-11-29T19:45:45.994985Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNodeInfo 2023-11-29T19:45:45.994985Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNodeInfo runtime=778.1726ms 2023-11-29T19:45:46.018328Z info STARTING kubectl version --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:46.055827Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:46.055827Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:46.055827Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:46.055827Z info Waiting on proxy logs sct-products/cip-bbb764f7b-79655/istio-proxy 2023-11-29T19:45:46.055827Z info Getting logs for sct-products/cip-bbb764f7b-79655/istio-proxy... 2023-11-29T19:45:46.092326Z info COMPLETED kubectl describe pods --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml -n istio-system 2023-11-29T19:45:46.092326Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\describe-pods: The system cannot find the path specified. 2023-11-29T19:45:46.092326Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\describe-pods runtime=0s 2023-11-29T19:45:46.092326Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster runtime=0s 2023-11-29T19:45:46.092326Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetDescribePods 2023-11-29T19:45:46.092326Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetDescribePods runtime=875.5141ms 2023-11-29T19:45:46.121289Z info STARTING PodExec istio-system/istio-ingressgateway-5b96c5b95f-t7dxs/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:46.219463Z info STARTING PodExec istio-system/istio-ingressgateway-5b96c5b95f-t7dxs/istio-proxy:netstat -natpw 2023-11-29T19:45:46.242491Z info COMPLETED PodExec istio-system/istio-ingressgateway-5b96c5b95f-5vxdj/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:46.242491Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:46.242491Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=958.65ms 2023-11-29T19:45:46.254711Z info COMPLETED kubectl version --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:46.254711Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\cluster-context: The system cannot find the path specified. 2023-11-29T19:45:46.254711Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\cluster-context runtime=0s 2023-11-29T19:45:46.254711Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\kubectl-version: The system cannot find the path specified. 2023-11-29T19:45:46.254711Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\kubectl-version runtime=0s 2023-11-29T19:45:46.254711Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster runtime=0s 2023-11-29T19:45:46.254711Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetClusterInfo 2023-11-29T19:45:46.254711Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetClusterInfo runtime=1.037899s 2023-11-29T19:45:46.263576Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:46.263576Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:46.263576Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:46.263576Z info Waiting on proxy logs sct-products/cip-bbb764f7b-9qp8m/istio-proxy 2023-11-29T19:45:46.263576Z info Getting logs for sct-products/cip-bbb764f7b-9qp8m/istio-proxy... 2023-11-29T19:45:46.323002Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:certs 2023-11-29T19:45:46.418089Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/adsz 2023-11-29T19:45:46.440089Z info COMPLETED PodExec istio-system/istio-ingressgateway-5b96c5b95f-5vxdj/istio-proxy:netstat -natpw 2023-11-29T19:45:46.440089Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:46.440089Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=1.1562479s 2023-11-29T19:45:46.461312Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:46.461312Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:46.461312Z info Waiting on istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:45:46.461312Z info Waiting on proxy logs sct-products/cip-bbb764f7b-pvbgt/istio-proxy 2023-11-29T19:45:46.461312Z info Getting logs for sct-products/cip-bbb764f7b-pvbgt/istio-proxy... 2023-11-29T19:45:46.517881Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/adsz 2023-11-29T19:45:46.616920Z info STARTING PodLogs istio-system/istio-ingressgateway-5b96c5b95f-t7dxs/istio-proxy 2023-11-29T19:45:46.717230Z info STARTING PodLogs istio-system/istiod-7cf9c6df79-qhz9l/discovery 2023-11-29T19:45:46.758284Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:certs 2023-11-29T19:45:46.758284Z info port forward completed without error 2023-11-29T19:45:46.817157Z info STARTING PodLogs istio-system/istiod-7cf9c6df79-s7ws2/discovery 2023-11-29T19:45:46.917538Z info STARTING PodExec kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:46.945934Z info COMPLETED PodExec istio-system/istio-ingressgateway-5b96c5b95f-t7dxs/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:46.945934Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:46.945934Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=1.6070955s 2023-11-29T19:45:46.981477Z info COMPLETED PodLogs istio-system/istiod-7cf9c6df79-s7ws2/discovery 2023-11-29T19:45:46.981477Z info Done getting logs only for istio-system/istiod-7cf9c6df79-s7ws2/discovery runtime=1.6426388s 2023-11-29T19:45:46.981559Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\discovery.log: The system cannot find the path specified. 2023-11-29T19:45:46.981559Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\discovery.log runtime=0s 2023-11-29T19:45:46.981559Z info Done with Istiod logs for istio-system/istiod-7cf9c6df79-s7ws2 2023-11-29T19:45:46.981559Z info Done getting Istiod logs for istio-system/istiod-7cf9c6df79-s7ws2 runtime=1.6427209s 2023-11-29T19:45:47.017536Z info STARTING ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:certs 2023-11-29T19:45:47.042943Z info COMPLETED PodExec istio-system/istio-ingressgateway-5b96c5b95f-t7dxs/istio-proxy:netstat -natpw 2023-11-29T19:45:47.042943Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:47.042943Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=1.7041046s 2023-11-29T19:45:47.117715Z info STARTING PodExec kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl/istio-proxy:netstat -natpw 2023-11-29T19:45:47.219322Z info STARTING PodLogs kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl/istio-proxy 2023-11-29T19:45:47.282335Z info COMPLETED kubectl get --all-namespaces all,namespaces,jobs,ingresses,endpoints,endpointslices,customresourcedefinitions,configmaps,events,mutatingwebhookconfigurations,validatingwebhookconfigurations,networkpolicies -o yaml --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:47.283835Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\k8s-resources: The system cannot find the path specified. 2023-11-29T19:45:47.284335Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\k8s-resources runtime=2ms 2023-11-29T19:45:47.284335Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster runtime=2ms 2023-11-29T19:45:47.284335Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetK8sResources 2023-11-29T19:45:47.284335Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetK8sResources runtime=2.0675224s 2023-11-29T19:45:47.317607Z info STARTING PodExec kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:47.372235Z info COMPLETED PodLogs istio-system/istiod-7cf9c6df79-qhz9l/discovery 2023-11-29T19:45:47.372235Z info Done getting logs only for istio-system/istiod-7cf9c6df79-qhz9l/discovery runtime=2.0333964s 2023-11-29T19:45:47.372235Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\discovery.log: The system cannot find the path specified. 2023-11-29T19:45:47.372235Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\discovery.log runtime=0s 2023-11-29T19:45:47.372235Z info Done with Istiod logs for istio-system/istiod-7cf9c6df79-qhz9l 2023-11-29T19:45:47.372235Z info Done getting Istiod logs for istio-system/istiod-7cf9c6df79-qhz9l runtime=2.0333964s 2023-11-29T19:45:47.417125Z info STARTING PodExec kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t/istio-proxy:netstat -natpw 2023-11-29T19:45:47.430322Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:certs 2023-11-29T19:45:47.430322Z info port forward completed without error 2023-11-29T19:45:47.517382Z info STARTING ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:certs 2023-11-29T19:45:47.618198Z info STARTING PodLogs kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t/istio-proxy 2023-11-29T19:45:47.711860Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/adsz 2023-11-29T19:45:47.723461Z info STARTING PodExec kyma-system/central-application-gateway-58696795bd-8s7k2/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:47.805723Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/adsz 2023-11-29T19:45:47.817669Z info STARTING ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:certs 2023-11-29T19:45:47.892539Z info COMPLETED PodExec kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:47.892539Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:47.892539Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=2.5147009s 2023-11-29T19:45:47.916816Z info STARTING PodExec kyma-system/central-application-gateway-58696795bd-8s7k2/istio-proxy:netstat -natpw 2023-11-29T19:45:48.017255Z info STARTING PodLogs kyma-system/central-application-gateway-58696795bd-8s7k2/istio-proxy 2023-11-29T19:45:48.055252Z info COMPLETED PodLogs kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl/istio-proxy 2023-11-29T19:45:48.055252Z info Done getting logs only for kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl/istio-proxy runtime=2.6774144s 2023-11-29T19:45:48.055252Z info Done with proxy logs kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl/istio-proxy 2023-11-29T19:45:48.055252Z info Done getting from proxy logs for kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl/istio-proxy runtime=2.6774144s 2023-11-29T19:45:48.117091Z info STARTING PodExec kyma-system/compass-runtime-agent-b66957b45-66jdq/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:48.119502Z info COMPLETED PodExec kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl/istio-proxy:netstat -natpw 2023-11-29T19:45:48.119502Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:48.119502Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=2.7416637s 2023-11-29T19:45:48.160861Z info COMPLETED ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:certs 2023-11-29T19:45:48.161360Z info port forward completed without error 2023-11-29T19:45:48.218130Z info STARTING ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:certs 2023-11-29T19:45:48.222783Z info COMPLETED PodExec kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:48.222783Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:48.222783Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=2.8089445s 2023-11-29T19:45:48.314723Z info COMPLETED PodExec kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t/istio-proxy:netstat -natpw 2023-11-29T19:45:48.314723Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:48.314723Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=2.9008845s 2023-11-29T19:45:48.317238Z info STARTING PodExec kyma-system/compass-runtime-agent-b66957b45-66jdq/istio-proxy:netstat -natpw 2023-11-29T19:45:48.418345Z info STARTING PodLogs kyma-system/compass-runtime-agent-b66957b45-66jdq/istio-proxy 2023-11-29T19:45:48.517014Z info STARTING ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:certs 2023-11-29T19:45:48.555696Z info COMPLETED ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:certs 2023-11-29T19:45:48.556196Z info port forward completed without error 2023-11-29T19:45:48.563884Z info COMPLETED PodLogs kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t/istio-proxy 2023-11-29T19:45:48.563884Z info Done getting logs only for kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t/istio-proxy runtime=3.1500464s 2023-11-29T19:45:48.563884Z info Done with proxy logs kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t/istio-proxy 2023-11-29T19:45:48.563884Z info Done getting from proxy logs for kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t/istio-proxy runtime=3.1500464s 2023-11-29T19:45:48.598022Z info COMPLETED PodExec kyma-system/central-application-gateway-58696795bd-8s7k2/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:48.598022Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:48.598164Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=3.1479906s 2023-11-29T19:45:48.617510Z info STARTING PodExec kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt/istio-proxy:netstat -natpw 2023-11-29T19:45:48.716876Z info STARTING PodExec kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:48.816337Z info COMPLETED PodExec kyma-system/central-application-gateway-58696795bd-8s7k2/istio-proxy:netstat -natpw 2023-11-29T19:45:48.816337Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:48.816337Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=3.3660019s 2023-11-29T19:45:48.817747Z info STARTING PodLogs kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt/istio-proxy 2023-11-29T19:45:48.880514Z info COMPLETED ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:certs 2023-11-29T19:45:48.880514Z info port forward completed without error 2023-11-29T19:45:48.916983Z info STARTING kubectl get --all-namespaces alertmanagerconfigs.monitoring.coreos.com,alertmanagers.monitoring.coreos.com,apigateways.operator.kyma-project.io,apirules.gateway.kyma-project.io,applicationconnectors.operator.kyma-project.io,applications.applicationconnector.kyma-project.io,authorizationpolicies.security.istio.io,bgpconfigurations.crd.projectcalico.org,bgpfilters.crd.projectcalico.org,bgppeers.crd.projectcalico.org,blockaffinities.crd.projectcalico.org,caliconodestatuses.crd.projectcalico.org,certificaterequests.cert-manager.io,certificaterevocations.cert.gardener.cloud,certificates.cert-manager.io,certificates.cert.gardener.cloud,challenges.acme.cert-manager.io,clusterinformations.crd.projectcalico.org,clusterissuers.cert-manager.io,compassconnections.compass.kyma-project.io,destinationrules.networking.istio.io,dnsannotations.dns.gardener.cloud,dnsentries.dns.gardener.cloud,dnsproviders.dns.gardener.cloud,envoyfilters.networking.istio.io,felixconfigurations.crd.projectcalico.org,gateways.networking.istio.io,globalnetworkpolicies.crd.projectcalico.org,globalnetworksets.crd.projectcalico.org,hostendpoints.crd.projectcalico.org,ipamblocks.crd.projectcalico.org,ipamconfigs.crd.projectcalico.org,ipamhandles.crd.projectcalico.org,ippools.crd.projectcalico.org,ipreservations.crd.projectcalico.org,issuers.cert-manager.io,issuers.cert.gardener.cloud,istiooperators.install.istio.io,istios.operator.kyma-project.io,kubecontrollersconfigurations.crd.projectcalico.org,kymas.operator.kyma-project.io,moduletemplates.operator.kyma-project.io,networkpolicies.crd.projectcalico.org,networksets.crd.projectcalico.org,orders.acme.cert-manager.io,peerauthentications.security.istio.io,podmonitors.monitoring.coreos.com,probes.monitoring.coreos.com,prometheuses.monitoring.coreos.com,prometheusrules.monitoring.coreos.com,proxyconfigs.networking.istio.io,requestauthentications.security.istio.io,rules.oathkeeper.ory.sh,servicebindings.services.cloud.sap.com,serviceentries.networking.istio.io,serviceinstances.services.cloud.sap.com,servicemonitors.monitoring.coreos.com,sidecars.networking.istio.io,telemetries.telemetry.istio.io,thanosrulers.monitoring.coreos.com,verticalpodautoscalercheckpoints.autoscaling.k8s.io,verticalpodautoscalers.autoscaling.k8s.io,virtualservices.networking.istio.io,volumesnapshotclasses.snapshot.storage.k8s.io,volumesnapshotcontents.snapshot.storage.k8s.io,volumesnapshots.snapshot.storage.k8s.io,wasmplugins.extensions.istio.io,workloadentries.networking.istio.io,workloadgroups.networking.istio.io -o yaml --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:48.982122Z info COMPLETED PodExec kyma-system/compass-runtime-agent-b66957b45-66jdq/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:48.982122Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:48.982122Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=3.4947883s 2023-11-29T19:45:49.017986Z info STARTING PodExec kyma-system/monitoring-grafana-69ffc5d57-7fwsq/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:49.119949Z info STARTING ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:certs 2023-11-29T19:45:49.144551Z info COMPLETED PodLogs kyma-system/central-application-gateway-58696795bd-8s7k2/istio-proxy 2023-11-29T19:45:49.144551Z info Done getting logs only for kyma-system/central-application-gateway-58696795bd-8s7k2/istio-proxy runtime=3.6942163s 2023-11-29T19:45:49.144551Z info Done with proxy logs kyma-system/central-application-gateway-58696795bd-8s7k2/istio-proxy 2023-11-29T19:45:49.144551Z info Done getting from proxy logs for kyma-system/central-application-gateway-58696795bd-8s7k2/istio-proxy runtime=3.6942163s 2023-11-29T19:45:49.218078Z info STARTING PodExec kyma-system/monitoring-grafana-69ffc5d57-7fwsq/istio-proxy:netstat -natpw 2023-11-29T19:45:49.224579Z info COMPLETED PodExec kyma-system/compass-runtime-agent-b66957b45-66jdq/istio-proxy:netstat -natpw 2023-11-29T19:45:49.224579Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:49.224579Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=3.7372453s 2023-11-29T19:45:49.248020Z info COMPLETED ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:certs 2023-11-29T19:45:49.248020Z info port forward completed without error 2023-11-29T19:45:49.317048Z info STARTING PodLogs kyma-system/monitoring-grafana-69ffc5d57-7fwsq/istio-proxy 2023-11-29T19:45:49.417268Z info STARTING PodExec kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:49.478501Z info COMPLETED PodLogs kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt/istio-proxy 2023-11-29T19:45:49.478501Z info Done getting logs only for kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt/istio-proxy runtime=3.9464052s 2023-11-29T19:45:49.478501Z info Done with proxy logs kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt/istio-proxy 2023-11-29T19:45:49.478501Z info Done getting from proxy logs for kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt/istio-proxy runtime=3.9464052s 2023-11-29T19:45:49.507077Z info COMPLETED PodExec kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt/istio-proxy:netstat -natpw 2023-11-29T19:45:49.507077Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:49.507077Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=3.9749813s 2023-11-29T19:45:49.517049Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:certs 2023-11-29T19:45:49.548899Z info COMPLETED ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:certs 2023-11-29T19:45:49.548899Z info port forward completed without error 2023-11-29T19:45:49.601951Z info COMPLETED PodExec kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:49.601951Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:49.601951Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=4.0698553s 2023-11-29T19:45:49.618009Z info STARTING PodExec kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp/istio-proxy:netstat -natpw 2023-11-29T19:45:49.717361Z info STARTING PodLogs kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp/istio-proxy 2023-11-29T19:45:49.724531Z info COMPLETED PodLogs kyma-system/compass-runtime-agent-b66957b45-66jdq/istio-proxy 2023-11-29T19:45:49.724531Z info Done getting logs only for kyma-system/compass-runtime-agent-b66957b45-66jdq/istio-proxy runtime=4.2371973s 2023-11-29T19:45:49.724531Z info Done with proxy logs kyma-system/compass-runtime-agent-b66957b45-66jdq/istio-proxy 2023-11-29T19:45:49.724531Z info Done getting from proxy logs for kyma-system/compass-runtime-agent-b66957b45-66jdq/istio-proxy runtime=4.2371973s 2023-11-29T19:45:49.817103Z info STARTING PodExec kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:49.917690Z info STARTING PodExec kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9/istio-proxy:netstat -natpw 2023-11-29T19:45:49.935294Z info COMPLETED PodExec kyma-system/monitoring-grafana-69ffc5d57-7fwsq/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:49.935294Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:49.935294Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=4.36543s 2023-11-29T19:45:50.017390Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:certs 2023-11-29T19:45:50.117411Z info STARTING PodLogs kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9/istio-proxy 2023-11-29T19:45:50.167841Z info COMPLETED PodExec kyma-system/monitoring-grafana-69ffc5d57-7fwsq/istio-proxy:netstat -natpw 2023-11-29T19:45:50.167841Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:50.167841Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=4.5979771s 2023-11-29T19:45:50.174530Z info COMPLETED ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:certs 2023-11-29T19:45:50.175034Z info port forward completed without error 2023-11-29T19:45:50.216912Z info STARTING PodExec kyma-system/ory-oathkeeper-7dffc66bbb-n45lk/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:50.316904Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:certs 2023-11-29T19:45:50.374166Z info COMPLETED PodExec kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:50.374166Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:50.374166Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=4.7750061s 2023-11-29T19:45:50.416848Z info STARTING PodExec kyma-system/ory-oathkeeper-7dffc66bbb-n45lk/istio-proxy:netstat -natpw 2023-11-29T19:45:50.517113Z info STARTING PodLogs kyma-system/ory-oathkeeper-7dffc66bbb-n45lk/istio-proxy 2023-11-29T19:45:50.617701Z info STARTING PodExec kyma-system/warden-operator-5799cd8c7f-r62zb/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:50.650378Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:certs 2023-11-29T19:45:50.650378Z info port forward completed without error 2023-11-29T19:45:50.679870Z info COMPLETED PodExec kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp/istio-proxy:netstat -natpw 2023-11-29T19:45:50.679870Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:50.679870Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=5.0807108s 2023-11-29T19:45:50.717876Z info STARTING PodExec kyma-system/warden-operator-5799cd8c7f-r62zb/istio-proxy:netstat -natpw 2023-11-29T19:45:50.787793Z info COMPLETED PodLogs kyma-system/monitoring-grafana-69ffc5d57-7fwsq/istio-proxy 2023-11-29T19:45:50.787793Z info Done getting logs only for kyma-system/monitoring-grafana-69ffc5d57-7fwsq/istio-proxy runtime=5.2179298s 2023-11-29T19:45:50.787793Z info Done with proxy logs kyma-system/monitoring-grafana-69ffc5d57-7fwsq/istio-proxy 2023-11-29T19:45:50.787793Z info Done getting from proxy logs for kyma-system/monitoring-grafana-69ffc5d57-7fwsq/istio-proxy runtime=5.2179298s 2023-11-29T19:45:50.804843Z info COMPLETED PodExec kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:50.804843Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:50.804843Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=5.1705763s 2023-11-29T19:45:50.817148Z info STARTING ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:certs 2023-11-29T19:45:50.873874Z info COMPLETED PodExec kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9/istio-proxy:netstat -natpw 2023-11-29T19:45:50.874128Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:50.874128Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=5.2398615s 2023-11-29T19:45:50.926802Z info STARTING PodLogs kyma-system/warden-operator-5799cd8c7f-r62zb/istio-proxy 2023-11-29T19:45:51.016865Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:clusters 2023-11-29T19:45:51.069782Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:certs 2023-11-29T19:45:51.070285Z info port forward completed without error 2023-11-29T19:45:51.072782Z info COMPLETED PodLogs istio-system/istio-ingressgateway-5b96c5b95f-2qmzj/istio-proxy 2023-11-29T19:45:51.072782Z info COMPLETED PodLogs kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp/istio-proxy 2023-11-29T19:45:51.072782Z info Done getting logs only for kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp/istio-proxy runtime=5.4736219s 2023-11-29T19:45:51.072782Z info Done with proxy logs kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp/istio-proxy 2023-11-29T19:45:51.072782Z info Done getting from proxy logs for kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp/istio-proxy runtime=5.4736219s 2023-11-29T19:45:51.074282Z info COMPLETED PodLogs kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9/istio-proxy 2023-11-29T19:45:51.074282Z info Done getting logs only for kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9/istio-proxy runtime=5.4400153s 2023-11-29T19:45:51.074282Z info Done with proxy logs kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9/istio-proxy 2023-11-29T19:45:51.074282Z info Done getting from proxy logs for kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9/istio-proxy runtime=5.4400153s 2023-11-29T19:45:51.092780Z info Done getting logs only for istio-system/istio-ingressgateway-5b96c5b95f-2qmzj/istio-proxy runtime=5.8429651s 2023-11-29T19:45:51.092780Z info Done with proxy logs istio-system/istio-ingressgateway-5b96c5b95f-2qmzj/istio-proxy 2023-11-29T19:45:51.092780Z info Done getting from proxy logs for istio-system/istio-ingressgateway-5b96c5b95f-2qmzj/istio-proxy runtime=5.8434655s 2023-11-29T19:45:51.117174Z info STARTING PodExec sct-products/cip-bbb764f7b-79655/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:51.125335Z info COMPLETED PodExec kyma-system/ory-oathkeeper-7dffc66bbb-n45lk/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:51.125335Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:51.125335Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=5.4556111s 2023-11-29T19:45:51.216842Z info STARTING ProxyGet sct-products/cip-bbb764f7b-79655:certs 2023-11-29T19:45:51.271816Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:certs 2023-11-29T19:45:51.272142Z info port forward completed without error 2023-11-29T19:45:51.278120Z info COMPLETED PodLogs kyma-system/ory-oathkeeper-7dffc66bbb-n45lk/istio-proxy 2023-11-29T19:45:51.278120Z info Done getting logs only for kyma-system/ory-oathkeeper-7dffc66bbb-n45lk/istio-proxy runtime=5.6083957s 2023-11-29T19:45:51.278120Z info Done with proxy logs kyma-system/ory-oathkeeper-7dffc66bbb-n45lk/istio-proxy 2023-11-29T19:45:51.278120Z info Done getting from proxy logs for kyma-system/ory-oathkeeper-7dffc66bbb-n45lk/istio-proxy runtime=5.6083957s 2023-11-29T19:45:51.306589Z info COMPLETED PodExec kyma-system/ory-oathkeeper-7dffc66bbb-n45lk/istio-proxy:netstat -natpw 2023-11-29T19:45:51.306589Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:51.306589Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=5.6368653s 2023-11-29T19:45:51.317132Z info STARTING PodExec sct-products/cip-bbb764f7b-79655/istio-proxy:netstat -natpw 2023-11-29T19:45:51.381508Z info COMPLETED PodLogs istio-system/istio-ingressgateway-5b96c5b95f-5vxdj/istio-proxy 2023-11-29T19:45:51.401289Z info Done getting logs only for istio-system/istio-ingressgateway-5b96c5b95f-5vxdj/istio-proxy runtime=6.1174476s 2023-11-29T19:45:51.401289Z info Done with proxy logs istio-system/istio-ingressgateway-5b96c5b95f-5vxdj/istio-proxy 2023-11-29T19:45:51.401289Z info Done getting from proxy logs for istio-system/istio-ingressgateway-5b96c5b95f-5vxdj/istio-proxy runtime=6.1174476s 2023-11-29T19:45:51.402092Z info COMPLETED PodExec kyma-system/warden-operator-5799cd8c7f-r62zb/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:51.402092Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:51.402092Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=5.5474546s 2023-11-29T19:45:51.417683Z info STARTING PodLogs sct-products/cip-bbb764f7b-79655/istio-proxy 2023-11-29T19:45:51.451174Z info COMPLETED PodExec kyma-system/warden-operator-5799cd8c7f-r62zb/istio-proxy:netstat -natpw 2023-11-29T19:45:51.451174Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:51.451174Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=5.5965371s 2023-11-29T19:45:51.501666Z info COMPLETED PodLogs kyma-system/warden-operator-5799cd8c7f-r62zb/istio-proxy 2023-11-29T19:45:51.501666Z info Done getting logs only for kyma-system/warden-operator-5799cd8c7f-r62zb/istio-proxy runtime=5.6470284s 2023-11-29T19:45:51.501666Z info Done with proxy logs kyma-system/warden-operator-5799cd8c7f-r62zb/istio-proxy 2023-11-29T19:45:51.501666Z info Done getting from proxy logs for kyma-system/warden-operator-5799cd8c7f-r62zb/istio-proxy runtime=5.6470284s 2023-11-29T19:45:51.521247Z info STARTING PodExec sct-products/cip-bbb764f7b-9qp8m/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:51.600798Z info COMPLETED ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:certs 2023-11-29T19:45:51.600971Z info port forward completed without error 2023-11-29T19:45:51.617128Z info STARTING PodExec sct-products/cip-bbb764f7b-9qp8m/istio-proxy:netstat -natpw 2023-11-29T19:45:51.667341Z info COMPLETED PodLogs istio-system/istio-ingressgateway-5b96c5b95f-t7dxs/istio-proxy 2023-11-29T19:45:51.667341Z info COMPLETED PodLogs sct-products/cip-bbb764f7b-79655/istio-proxy 2023-11-29T19:45:51.667341Z info Done getting logs only for sct-products/cip-bbb764f7b-79655/istio-proxy runtime=5.6115135s 2023-11-29T19:45:51.667341Z info Done with proxy logs sct-products/cip-bbb764f7b-79655/istio-proxy 2023-11-29T19:45:51.667341Z info Done getting from proxy logs for sct-products/cip-bbb764f7b-79655/istio-proxy runtime=5.6115135s 2023-11-29T19:45:51.685596Z info Done getting logs only for istio-system/istio-ingressgateway-5b96c5b95f-t7dxs/istio-proxy runtime=6.3467574s 2023-11-29T19:45:51.685596Z info Done with proxy logs istio-system/istio-ingressgateway-5b96c5b95f-t7dxs/istio-proxy 2023-11-29T19:45:51.685596Z info Done getting from proxy logs for istio-system/istio-ingressgateway-5b96c5b95f-t7dxs/istio-proxy runtime=6.3467574s 2023-11-29T19:45:51.700290Z info COMPLETED PodExec sct-products/cip-bbb764f7b-79655/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:51.700290Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:51.700290Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=5.6444627s 2023-11-29T19:45:51.717807Z info STARTING ProxyGet sct-products/cip-bbb764f7b-9qp8m:certs 2023-11-29T19:45:51.748445Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:clusters 2023-11-29T19:45:51.748947Z info port forward completed without error 2023-11-29T19:45:51.807250Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-79655:certs 2023-11-29T19:45:51.808253Z info port forward completed without error 2023-11-29T19:45:51.816850Z info STARTING PodLogs sct-products/cip-bbb764f7b-9qp8m/istio-proxy 2023-11-29T19:45:51.818512Z info COMPLETED PodExec sct-products/cip-bbb764f7b-79655/istio-proxy:netstat -natpw 2023-11-29T19:45:51.818512Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:51.818512Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=5.7626848s 2023-11-29T19:45:51.861330Z info COMPLETED PodLogs sct-products/cip-bbb764f7b-9qp8m/istio-proxy 2023-11-29T19:45:51.861330Z info Done getting logs only for sct-products/cip-bbb764f7b-9qp8m/istio-proxy runtime=5.5977538s 2023-11-29T19:45:51.861330Z info Done with proxy logs sct-products/cip-bbb764f7b-9qp8m/istio-proxy 2023-11-29T19:45:51.861330Z info Done getting from proxy logs for sct-products/cip-bbb764f7b-9qp8m/istio-proxy runtime=5.5977538s 2023-11-29T19:45:51.924797Z info STARTING PodExec sct-products/cip-bbb764f7b-pvbgt/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:51.930612Z info COMPLETED PodExec sct-products/cip-bbb764f7b-9qp8m/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:51.930612Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:51.930612Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=5.667036s 2023-11-29T19:45:52.015670Z info COMPLETED PodExec sct-products/cip-bbb764f7b-9qp8m/istio-proxy:netstat -natpw 2023-11-29T19:45:52.015670Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:52.015933Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=5.7523566s 2023-11-29T19:45:52.017175Z info STARTING ProxyGet sct-products/cip-bbb764f7b-pvbgt:certs 2023-11-29T19:45:52.125176Z info STARTING PodExec sct-products/cip-bbb764f7b-pvbgt/istio-proxy:netstat -natpw 2023-11-29T19:45:52.172185Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-9qp8m:certs 2023-11-29T19:45:52.172688Z info port forward completed without error 2023-11-29T19:45:52.218568Z info STARTING PodLogs sct-products/cip-bbb764f7b-pvbgt/istio-proxy 2023-11-29T19:45:52.268991Z info COMPLETED PodLogs sct-products/cip-bbb764f7b-pvbgt/istio-proxy 2023-11-29T19:45:52.268991Z info Done getting logs only for sct-products/cip-bbb764f7b-pvbgt/istio-proxy runtime=5.8076787s 2023-11-29T19:45:52.268991Z info Done with proxy logs sct-products/cip-bbb764f7b-pvbgt/istio-proxy 2023-11-29T19:45:52.268991Z info Done getting from proxy logs for sct-products/cip-bbb764f7b-pvbgt/istio-proxy runtime=5.8076787s 2023-11-29T19:45:52.325385Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:clusters 2023-11-29T19:45:52.327384Z info COMPLETED PodExec sct-products/cip-bbb764f7b-pvbgt/istio-proxy:find /var/lib/istio -name core.* 2023-11-29T19:45:52.327525Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCoredumps 2023-11-29T19:45:52.327525Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCoredumps runtime=5.8662129s 2023-11-29T19:45:52.403673Z info COMPLETED kubectl get --all-namespaces alertmanagerconfigs.monitoring.coreos.com,alertmanagers.monitoring.coreos.com,apigateways.operator.kyma-project.io,apirules.gateway.kyma-project.io,applicationconnectors.operator.kyma-project.io,applications.applicationconnector.kyma-project.io,authorizationpolicies.security.istio.io,bgpconfigurations.crd.projectcalico.org,bgpfilters.crd.projectcalico.org,bgppeers.crd.projectcalico.org,blockaffinities.crd.projectcalico.org,caliconodestatuses.crd.projectcalico.org,certificaterequests.cert-manager.io,certificaterevocations.cert.gardener.cloud,certificates.cert-manager.io,certificates.cert.gardener.cloud,challenges.acme.cert-manager.io,clusterinformations.crd.projectcalico.org,clusterissuers.cert-manager.io,compassconnections.compass.kyma-project.io,destinationrules.networking.istio.io,dnsannotations.dns.gardener.cloud,dnsentries.dns.gardener.cloud,dnsproviders.dns.gardener.cloud,envoyfilters.networking.istio.io,felixconfigurations.crd.projectcalico.org,gateways.networking.istio.io,globalnetworkpolicies.crd.projectcalico.org,globalnetworksets.crd.projectcalico.org,hostendpoints.crd.projectcalico.org,ipamblocks.crd.projectcalico.org,ipamconfigs.crd.projectcalico.org,ipamhandles.crd.projectcalico.org,ippools.crd.projectcalico.org,ipreservations.crd.projectcalico.org,issuers.cert-manager.io,issuers.cert.gardener.cloud,istiooperators.install.istio.io,istios.operator.kyma-project.io,kubecontrollersconfigurations.crd.projectcalico.org,kymas.operator.kyma-project.io,moduletemplates.operator.kyma-project.io,networkpolicies.crd.projectcalico.org,networksets.crd.projectcalico.org,orders.acme.cert-manager.io,peerauthentications.security.istio.io,podmonitors.monitoring.coreos.com,probes.monitoring.coreos.com,prometheuses.monitoring.coreos.com,prometheusrules.monitoring.coreos.com,proxyconfigs.networking.istio.io,requestauthentications.security.istio.io,rules.oathkeeper.ory.sh,servicebindings.services.cloud.sap.com,serviceentries.networking.istio.io,serviceinstances.services.cloud.sap.com,servicemonitors.monitoring.coreos.com,sidecars.networking.istio.io,telemetries.telemetry.istio.io,thanosrulers.monitoring.coreos.com,verticalpodautoscalercheckpoints.autoscaling.k8s.io,verticalpodautoscalers.autoscaling.k8s.io,virtualservices.networking.istio.io,volumesnapshotclasses.snapshot.storage.k8s.io,volumesnapshotcontents.snapshot.storage.k8s.io,volumesnapshots.snapshot.storage.k8s.io,wasmplugins.extensions.istio.io,workloadentries.networking.istio.io,workloadgroups.networking.istio.io -o yaml --kubeconfig .\kubeconfigs\kubeconfig_preprodnew.yaml 2023-11-29T19:45:52.403673Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\crs: The system cannot find the path specified. 2023-11-29T19:45:52.403673Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster\crs runtime=0s 2023-11-29T19:45:52.403673Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\cluster runtime=0s 2023-11-29T19:45:52.403673Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetCRs 2023-11-29T19:45:52.403673Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetCRs runtime=7.1868611s 2023-11-29T19:45:52.419073Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:clusters 2023-11-29T19:45:52.467010Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-pvbgt:certs 2023-11-29T19:45:52.467510Z info port forward completed without error 2023-11-29T19:45:52.508607Z info COMPLETED PodExec sct-products/cip-bbb764f7b-pvbgt/istio-proxy:netstat -natpw 2023-11-29T19:45:52.508960Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetNetstat 2023-11-29T19:45:52.508960Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetNetstat runtime=6.0476484s 2023-11-29T19:45:52.526612Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/authorizationz 2023-11-29T19:45:52.620080Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/authorizationz 2023-11-29T19:45:52.727833Z info STARTING ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:clusters 2023-11-29T19:45:52.820447Z info STARTING ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:clusters 2023-11-29T19:45:52.865585Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:clusters 2023-11-29T19:45:52.866085Z info port forward completed without error 2023-11-29T19:45:52.919708Z info STARTING ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:clusters 2023-11-29T19:45:53.012361Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:clusters 2023-11-29T19:45:53.012773Z info port forward completed without error 2023-11-29T19:45:53.020277Z info STARTING ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:clusters 2023-11-29T19:45:53.041779Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/authorizationz 2023-11-29T19:45:53.086053Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/authorizationz 2023-11-29T19:45:53.127878Z info STARTING ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:clusters 2023-11-29T19:45:53.220847Z info STARTING ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:clusters 2023-11-29T19:45:53.283154Z info COMPLETED ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:clusters 2023-11-29T19:45:53.283154Z info port forward completed without error 2023-11-29T19:45:53.321507Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:clusters 2023-11-29T19:45:53.323141Z info COMPLETED ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:clusters 2023-11-29T19:45:53.323141Z info port forward completed without error 2023-11-29T19:45:53.364745Z info COMPLETED ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:clusters 2023-11-29T19:45:53.365076Z info port forward completed without error 2023-11-29T19:45:53.422337Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:clusters 2023-11-29T19:45:53.516974Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:clusters 2023-11-29T19:45:53.535027Z info COMPLETED ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:clusters 2023-11-29T19:45:53.535554Z info port forward completed without error 2023-11-29T19:45:53.622095Z info STARTING ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:clusters 2023-11-29T19:45:53.691687Z info COMPLETED ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:clusters 2023-11-29T19:45:53.691857Z info port forward completed without error 2023-11-29T19:45:53.720021Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:config_dump?include_eds 2023-11-29T19:45:53.742321Z info COMPLETED ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:clusters 2023-11-29T19:45:53.742822Z info port forward completed without error 2023-11-29T19:45:53.822637Z info STARTING ProxyGet sct-products/cip-bbb764f7b-79655:clusters 2023-11-29T19:45:53.872344Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:clusters 2023-11-29T19:45:53.872844Z info port forward completed without error 2023-11-29T19:45:53.916859Z info STARTING ProxyGet sct-products/cip-bbb764f7b-9qp8m:clusters 2023-11-29T19:45:53.942868Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:clusters 2023-11-29T19:45:53.943373Z info port forward completed without error 2023-11-29T19:45:54.023428Z info STARTING ProxyGet sct-products/cip-bbb764f7b-pvbgt:clusters 2023-11-29T19:45:54.087233Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:clusters 2023-11-29T19:45:54.087734Z info port forward completed without error 2023-11-29T19:45:54.124217Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:config_dump?include_eds 2023-11-29T19:45:54.127985Z info COMPLETED ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:clusters 2023-11-29T19:45:54.128401Z info port forward completed without error 2023-11-29T19:45:54.223705Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:config_dump?include_eds 2023-11-29T19:45:54.291715Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-79655:clusters 2023-11-29T19:45:54.292007Z info port forward completed without error 2023-11-29T19:45:54.322370Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/cachez 2023-11-29T19:45:54.356929Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:config_dump?include_eds 2023-11-29T19:45:54.357198Z info port forward completed without error 2023-11-29T19:45:54.417250Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/cachez 2023-11-29T19:45:54.417250Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-9qp8m:clusters 2023-11-29T19:45:54.417418Z info port forward completed without error 2023-11-29T19:45:54.445448Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-pvbgt:clusters 2023-11-29T19:45:54.445752Z info port forward completed without error 2023-11-29T19:45:54.531823Z info STARTING ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:config_dump?include_eds 2023-11-29T19:45:54.622493Z info STARTING ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:config_dump?include_eds 2023-11-29T19:45:54.720488Z info STARTING ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:config_dump?include_eds 2023-11-29T19:45:54.726707Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:config_dump?include_eds 2023-11-29T19:45:54.726707Z info port forward completed without error 2023-11-29T19:45:54.824794Z info STARTING ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:config_dump?include_eds 2023-11-29T19:45:54.917114Z info STARTING ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:config_dump?include_eds 2023-11-29T19:45:54.946476Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/cachez 2023-11-29T19:45:55.008852Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/cachez 2023-11-29T19:45:55.020761Z info STARTING ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:config_dump?include_eds 2023-11-29T19:45:55.080283Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:config_dump?include_eds 2023-11-29T19:45:55.080625Z info port forward completed without error 2023-11-29T19:45:55.117207Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:config_dump?include_eds 2023-11-29T19:45:55.219426Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:config_dump?include_eds 2023-11-29T19:45:55.305594Z info COMPLETED ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:config_dump?include_eds 2023-11-29T19:45:55.305594Z info port forward completed without error 2023-11-29T19:45:55.318229Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:config_dump?include_eds 2023-11-29T19:45:55.402287Z info COMPLETED ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:config_dump?include_eds 2023-11-29T19:45:55.402787Z info port forward completed without error 2023-11-29T19:45:55.417271Z info STARTING ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:config_dump?include_eds 2023-11-29T19:45:55.477230Z info COMPLETED ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:config_dump?include_eds 2023-11-29T19:45:55.477230Z info port forward completed without error 2023-11-29T19:45:55.517118Z info STARTING ProxyGet sct-products/cip-bbb764f7b-79655:config_dump?include_eds 2023-11-29T19:45:55.617116Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:listeners 2023-11-29T19:45:55.642542Z info COMPLETED ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:config_dump?include_eds 2023-11-29T19:45:55.642542Z info port forward completed without error 2023-11-29T19:45:55.717755Z info STARTING ProxyGet sct-products/cip-bbb764f7b-9qp8m:config_dump?include_eds 2023-11-29T19:45:55.806206Z info COMPLETED ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:config_dump?include_eds 2023-11-29T19:45:55.806706Z info port forward completed without error 2023-11-29T19:45:55.822666Z info STARTING ProxyGet sct-products/cip-bbb764f7b-pvbgt:config_dump?include_eds 2023-11-29T19:45:55.853499Z info COMPLETED ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:config_dump?include_eds 2023-11-29T19:45:55.853499Z info port forward completed without error 2023-11-29T19:45:55.931101Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:listeners 2023-11-29T19:45:56.014700Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:listeners 2023-11-29T19:45:56.014700Z info port forward completed without error 2023-11-29T19:45:56.024952Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/clusterz 2023-11-29T19:45:56.065995Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:config_dump?include_eds 2023-11-29T19:45:56.065995Z info port forward completed without error 2023-11-29T19:45:56.117115Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/clusterz 2023-11-29T19:45:56.167313Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:config_dump?include_eds 2023-11-29T19:45:56.167313Z info port forward completed without error 2023-11-29T19:45:56.214286Z info COMPLETED ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:config_dump?include_eds 2023-11-29T19:45:56.214286Z info port forward completed without error 2023-11-29T19:45:56.224963Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:listeners 2023-11-29T19:45:56.239294Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:config_dump?include_eds 2023-11-29T19:45:56.239656Z info port forward completed without error 2023-11-29T19:45:56.316963Z info STARTING ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:listeners 2023-11-29T19:45:56.319911Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-79655:config_dump?include_eds 2023-11-29T19:45:56.319911Z info port forward completed without error 2023-11-29T19:45:56.335185Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:listeners 2023-11-29T19:45:56.335587Z info port forward completed without error 2023-11-29T19:45:56.422993Z info STARTING ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:listeners 2023-11-29T19:45:56.439667Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-9qp8m:config_dump?include_eds 2023-11-29T19:45:56.439667Z info port forward completed without error 2023-11-29T19:45:56.516060Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/clusterz 2023-11-29T19:45:56.518195Z info STARTING ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:listeners 2023-11-29T19:45:56.554214Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-pvbgt:config_dump?include_eds 2023-11-29T19:45:56.554544Z info port forward completed without error 2023-11-29T19:45:56.565017Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:listeners 2023-11-29T19:45:56.565017Z info port forward completed without error 2023-11-29T19:45:56.571599Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/clusterz 2023-11-29T19:45:56.626056Z info STARTING ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:listeners 2023-11-29T19:45:56.649880Z info COMPLETED ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:listeners 2023-11-29T19:45:56.650082Z info port forward completed without error 2023-11-29T19:45:56.716851Z info STARTING ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:listeners 2023-11-29T19:45:56.758910Z info COMPLETED ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:listeners 2023-11-29T19:45:56.759194Z info port forward completed without error 2023-11-29T19:45:56.826824Z info STARTING ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:listeners 2023-11-29T19:45:56.891371Z info COMPLETED ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:listeners 2023-11-29T19:45:56.892196Z info port forward completed without error 2023-11-29T19:45:56.919098Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:memory 2023-11-29T19:45:57.026710Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:listeners 2023-11-29T19:45:57.029592Z info COMPLETED ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:listeners 2023-11-29T19:45:57.030134Z info port forward completed without error 2023-11-29T19:45:57.068970Z info COMPLETED ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:listeners 2023-11-29T19:45:57.069371Z info port forward completed without error 2023-11-29T19:45:57.120004Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:listeners 2023-11-29T19:45:57.219017Z info STARTING ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:listeners 2023-11-29T19:45:57.220093Z info COMPLETED ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:listeners 2023-11-29T19:45:57.220943Z info port forward completed without error 2023-11-29T19:45:57.311516Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:memory 2023-11-29T19:45:57.311516Z info port forward completed without error 2023-11-29T19:45:57.319862Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:listeners 2023-11-29T19:45:57.424901Z info STARTING ProxyGet sct-products/cip-bbb764f7b-79655:listeners 2023-11-29T19:45:57.428273Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:listeners 2023-11-29T19:45:57.428654Z info port forward completed without error 2023-11-29T19:45:57.470495Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:listeners 2023-11-29T19:45:57.470495Z info port forward completed without error 2023-11-29T19:45:57.520006Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:memory 2023-11-29T19:45:57.627707Z info STARTING ProxyGet sct-products/cip-bbb764f7b-9qp8m:listeners 2023-11-29T19:45:57.644841Z info COMPLETED ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:listeners 2023-11-29T19:45:57.645131Z info port forward completed without error 2023-11-29T19:45:57.720130Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/configz 2023-11-29T19:45:57.730516Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:listeners 2023-11-29T19:45:57.731016Z info port forward completed without error 2023-11-29T19:45:57.778730Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-79655:listeners 2023-11-29T19:45:57.778730Z info port forward completed without error 2023-11-29T19:45:57.819669Z info STARTING ProxyGet sct-products/cip-bbb764f7b-pvbgt:listeners 2023-11-29T19:45:57.854934Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:memory 2023-11-29T19:45:57.854934Z info port forward completed without error 2023-11-29T19:45:57.920252Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:memory 2023-11-29T19:45:58.021050Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/configz 2023-11-29T19:45:58.029170Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-9qp8m:listeners 2023-11-29T19:45:58.029422Z info port forward completed without error 2023-11-29T19:45:58.118637Z info STARTING ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:memory 2023-11-29T19:45:58.161756Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-pvbgt:listeners 2023-11-29T19:45:58.162332Z info port forward completed without error 2023-11-29T19:45:58.188001Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/configz 2023-11-29T19:45:58.222528Z info STARTING ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:memory 2023-11-29T19:45:58.286451Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:memory 2023-11-29T19:45:58.286653Z info port forward completed without error 2023-11-29T19:45:58.320682Z info STARTING ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:memory 2023-11-29T19:45:58.427761Z info STARTING ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:memory 2023-11-29T19:45:58.471135Z info COMPLETED ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:memory 2023-11-29T19:45:58.471135Z info port forward completed without error 2023-11-29T19:45:58.520252Z info STARTING ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:memory 2023-11-29T19:45:58.586908Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/configz 2023-11-29T19:45:58.627883Z info STARTING ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:memory 2023-11-29T19:45:58.652709Z info COMPLETED ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:memory 2023-11-29T19:45:58.652709Z info port forward completed without error 2023-11-29T19:45:58.720649Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:server_info 2023-11-29T19:45:58.782132Z info COMPLETED ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:memory 2023-11-29T19:45:58.782334Z info port forward completed without error 2023-11-29T19:45:58.821287Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:memory 2023-11-29T19:45:58.835131Z info COMPLETED ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:memory 2023-11-29T19:45:58.835321Z info port forward completed without error 2023-11-29T19:45:58.835321Z info COMPLETED ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:memory 2023-11-29T19:45:58.835321Z info port forward completed without error 2023-11-29T19:45:58.917681Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:memory 2023-11-29T19:45:58.997012Z info COMPLETED ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:memory 2023-11-29T19:45:58.997012Z info port forward completed without error 2023-11-29T19:45:59.016991Z info STARTING ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:memory 2023-11-29T19:45:59.094215Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:server_info 2023-11-29T19:45:59.094633Z info port forward completed without error 2023-11-29T19:45:59.119964Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:memory 2023-11-29T19:45:59.220618Z info STARTING ProxyGet sct-products/cip-bbb764f7b-79655:memory 2023-11-29T19:45:59.264477Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:memory 2023-11-29T19:45:59.264477Z info port forward completed without error 2023-11-29T19:45:59.319074Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:server_info 2023-11-29T19:45:59.359728Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:memory 2023-11-29T19:45:59.360673Z info port forward completed without error 2023-11-29T19:45:59.405169Z info COMPLETED ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:memory 2023-11-29T19:45:59.405313Z info port forward completed without error 2023-11-29T19:45:59.422550Z info STARTING ProxyGet sct-products/cip-bbb764f7b-9qp8m:memory 2023-11-29T19:45:59.517297Z info STARTING ProxyGet sct-products/cip-bbb764f7b-pvbgt:memory 2023-11-29T19:45:59.518293Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:memory 2023-11-29T19:45:59.518609Z info port forward completed without error 2023-11-29T19:45:59.595765Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-79655:memory 2023-11-29T19:45:59.595765Z info port forward completed without error 2023-11-29T19:45:59.622438Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/endpointShardz 2023-11-29T19:45:59.718791Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:server_info 2023-11-29T19:45:59.757676Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:server_info 2023-11-29T19:45:59.758165Z info port forward completed without error 2023-11-29T19:45:59.811838Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-9qp8m:memory 2023-11-29T19:45:59.812082Z info port forward completed without error 2023-11-29T19:45:59.816824Z info STARTING ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:server_info 2023-11-29T19:45:59.903999Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-pvbgt:memory 2023-11-29T19:45:59.904154Z info port forward completed without error 2023-11-29T19:45:59.919882Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/endpointShardz 2023-11-29T19:46:00.027624Z info STARTING ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:server_info 2023-11-29T19:46:00.118028Z info STARTING ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:server_info 2023-11-29T19:46:00.139610Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:server_info 2023-11-29T19:46:00.139610Z info port forward completed without error 2023-11-29T19:46:00.217335Z info STARTING ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:server_info 2023-11-29T19:46:00.217335Z info COMPLETED ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:server_info 2023-11-29T19:46:00.217335Z info port forward completed without error 2023-11-29T19:46:00.236290Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/endpointShardz 2023-11-29T19:46:00.317821Z info STARTING ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:server_info 2023-11-29T19:46:00.374189Z info COMPLETED ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:server_info 2023-11-29T19:46:00.374527Z info port forward completed without error 2023-11-29T19:46:00.421418Z info STARTING ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:server_info 2023-11-29T19:46:00.493961Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/endpointShardz 2023-11-29T19:46:00.520429Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:stats/prometheus 2023-11-29T19:46:00.600105Z info COMPLETED ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:server_info 2023-11-29T19:46:00.600317Z info port forward completed without error 2023-11-29T19:46:00.628262Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:server_info 2023-11-29T19:46:00.691132Z info COMPLETED ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:server_info 2023-11-29T19:46:00.691132Z info port forward completed without error 2023-11-29T19:46:00.720790Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:server_info 2023-11-29T19:46:00.817355Z info STARTING ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:server_info 2023-11-29T19:46:00.832061Z info COMPLETED ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:server_info 2023-11-29T19:46:00.832061Z info port forward completed without error 2023-11-29T19:46:00.898996Z info COMPLETED ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:server_info 2023-11-29T19:46:00.898996Z info port forward completed without error 2023-11-29T19:46:00.917698Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:server_info 2023-11-29T19:46:01.003203Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:server_info 2023-11-29T19:46:01.003203Z info port forward completed without error 2023-11-29T19:46:01.022255Z info STARTING ProxyGet sct-products/cip-bbb764f7b-79655:server_info 2023-11-29T19:46:01.119938Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:stats/prometheus 2023-11-29T19:46:01.120938Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:server_info 2023-11-29T19:46:01.120938Z info port forward completed without error 2023-11-29T19:46:01.170298Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:stats/prometheus 2023-11-29T19:46:01.170298Z info port forward completed without error 2023-11-29T19:46:01.218228Z info STARTING ProxyGet sct-products/cip-bbb764f7b-9qp8m:server_info 2023-11-29T19:46:01.239389Z info COMPLETED ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:server_info 2023-11-29T19:46:01.239650Z info port forward completed without error 2023-11-29T19:46:01.317556Z info STARTING ProxyGet sct-products/cip-bbb764f7b-pvbgt:server_info 2023-11-29T19:46:01.323259Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:server_info 2023-11-29T19:46:01.323259Z info port forward completed without error 2023-11-29T19:46:01.422459Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:stats/prometheus 2023-11-29T19:46:01.467562Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-79655:server_info 2023-11-29T19:46:01.467916Z info port forward completed without error 2023-11-29T19:46:01.521861Z info STARTING ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:stats/prometheus 2023-11-29T19:46:01.619491Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/endpointz 2023-11-29T19:46:01.663079Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-9qp8m:server_info 2023-11-29T19:46:01.663578Z info port forward completed without error 2023-11-29T19:46:01.663578Z info port forward completed without error 2023-11-29T19:46:01.663578Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:stats/prometheus 2023-11-29T19:46:01.722010Z info STARTING ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:stats/prometheus 2023-11-29T19:46:01.729848Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-pvbgt:server_info 2023-11-29T19:46:01.730350Z info port forward completed without error 2023-11-29T19:46:01.826518Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/endpointz 2023-11-29T19:46:01.899969Z info COMPLETED ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:stats/prometheus 2023-11-29T19:46:01.899969Z info port forward completed without error 2023-11-29T19:46:01.922592Z info STARTING ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:stats/prometheus 2023-11-29T19:46:01.995802Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:stats/prometheus 2023-11-29T19:46:01.996303Z info port forward completed without error 2023-11-29T19:46:02.017712Z info STARTING ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:stats/prometheus 2023-11-29T19:46:02.112910Z info COMPLETED ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:stats/prometheus 2023-11-29T19:46:02.113413Z info port forward completed without error 2023-11-29T19:46:02.116971Z info STARTING ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:stats/prometheus 2023-11-29T19:46:02.186304Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/endpointz 2023-11-29T19:46:02.221084Z info STARTING ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:stats/prometheus 2023-11-29T19:46:02.291944Z info COMPLETED ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:stats/prometheus 2023-11-29T19:46:02.292445Z info port forward completed without error 2023-11-29T19:46:02.322517Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:stats/prometheus 2023-11-29T19:46:02.409319Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/endpointz 2023-11-29T19:46:02.420989Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:stats/prometheus 2023-11-29T19:46:02.420989Z info COMPLETED ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:stats/prometheus 2023-11-29T19:46:02.421181Z info port forward completed without error 2023-11-29T19:46:02.471310Z info COMPLETED ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:stats/prometheus 2023-11-29T19:46:02.471523Z info port forward completed without error 2023-11-29T19:46:02.523734Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:runtime 2023-11-29T19:46:02.631351Z info STARTING ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:stats/prometheus 2023-11-29T19:46:02.672305Z info COMPLETED ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:stats/prometheus 2023-11-29T19:46:02.672678Z info port forward completed without error 2023-11-29T19:46:02.698217Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:stats/prometheus 2023-11-29T19:46:02.698717Z info port forward completed without error 2023-11-29T19:46:02.722176Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:stats/prometheus 2023-11-29T19:46:02.785202Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:stats/prometheus 2023-11-29T19:46:02.785510Z info port forward completed without error 2023-11-29T19:46:02.822996Z info STARTING ProxyGet sct-products/cip-bbb764f7b-79655:stats/prometheus 2023-11-29T19:46:02.872140Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-2qmzj:runtime 2023-11-29T19:46:02.872140Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\server_info: The system cannot find the path specified. 2023-11-29T19:46:02.872140Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\server_info runtime=0s 2023-11-29T19:46:02.872140Z info port forward completed without error 2023-11-29T19:46:02.872140Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:02.872140Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\stats\prometheus runtime=0s 2023-11-29T19:46:02.872140Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\runtime: The system cannot find the path specified. 2023-11-29T19:46:02.872140Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\runtime runtime=0s 2023-11-29T19:46:02.872140Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\certs: The system cannot find the path specified. 2023-11-29T19:46:02.872140Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\certs runtime=0s 2023-11-29T19:46:02.872644Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\clusters: The system cannot find the path specified. 2023-11-29T19:46:02.872644Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\clusters runtime=504.5µs 2023-11-29T19:46:02.872644Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:02.872644Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\config_dump?include_eds runtime=0s 2023-11-29T19:46:02.872644Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\listeners: The system cannot find the path specified. 2023-11-29T19:46:02.872644Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\listeners runtime=0s 2023-11-29T19:46:02.872644Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\memory: The system cannot find the path specified. 2023-11-29T19:46:02.872644Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\memory runtime=0s 2023-11-29T19:46:02.872644Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj runtime=504.5µs 2023-11-29T19:46:02.872644Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:02.872644Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=17.6233304s 2023-11-29T19:46:02.923765Z info STARTING ProxyGet sct-products/cip-bbb764f7b-9qp8m:stats/prometheus 2023-11-29T19:46:03.019161Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:runtime 2023-11-29T19:46:03.034491Z info COMPLETED ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:stats/prometheus 2023-11-29T19:46:03.034656Z info port forward completed without error 2023-11-29T19:46:03.093160Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:stats/prometheus 2023-11-29T19:46:03.093774Z info port forward completed without error 2023-11-29T19:46:03.122242Z info STARTING ProxyGet sct-products/cip-bbb764f7b-pvbgt:stats/prometheus 2023-11-29T19:46:03.222401Z info STARTING ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:runtime 2023-11-29T19:46:03.319674Z info STARTING ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:runtime 2023-11-29T19:46:03.387461Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-79655:stats/prometheus 2023-11-29T19:46:03.387716Z info port forward completed without error 2023-11-29T19:46:03.419986Z info STARTING ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:runtime 2023-11-29T19:46:03.428809Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-9qp8m:stats/prometheus 2023-11-29T19:46:03.429171Z info port forward completed without error 2023-11-29T19:46:03.466345Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-5vxdj:runtime 2023-11-29T19:46:03.466849Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:03.466849Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\stats\prometheus runtime=503.9µs 2023-11-29T19:46:03.466849Z info port forward completed without error 2023-11-29T19:46:03.466849Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\runtime: The system cannot find the path specified. 2023-11-29T19:46:03.466849Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\runtime runtime=0s 2023-11-29T19:46:03.466849Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\certs: The system cannot find the path specified. 2023-11-29T19:46:03.466849Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\certs runtime=0s 2023-11-29T19:46:03.467353Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\clusters: The system cannot find the path specified. 2023-11-29T19:46:03.467353Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\clusters runtime=504.7µs 2023-11-29T19:46:03.467353Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:03.467353Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\config_dump?include_eds runtime=0s 2023-11-29T19:46:03.467353Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\listeners: The system cannot find the path specified. 2023-11-29T19:46:03.467353Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\listeners runtime=0s 2023-11-29T19:46:03.467353Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\memory: The system cannot find the path specified. 2023-11-29T19:46:03.467353Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\memory runtime=0s 2023-11-29T19:46:03.467353Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\server_info: The system cannot find the path specified. 2023-11-29T19:46:03.467353Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\server_info runtime=0s 2023-11-29T19:46:03.467353Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj runtime=1.0086ms 2023-11-29T19:46:03.467353Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:03.467353Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=18.1835123s 2023-11-29T19:46:03.523394Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/inject 2023-11-29T19:46:03.560364Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-pvbgt:stats/prometheus 2023-11-29T19:46:03.560364Z info port forward completed without error 2023-11-29T19:46:03.629843Z info STARTING ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:runtime 2023-11-29T19:46:03.637854Z info COMPLETED ProxyGet kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl:runtime 2023-11-29T19:46:03.637854Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\listeners: The system cannot find the path specified. 2023-11-29T19:46:03.637854Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\listeners runtime=0s 2023-11-29T19:46:03.637854Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\memory: The system cannot find the path specified. 2023-11-29T19:46:03.637854Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\memory runtime=0s 2023-11-29T19:46:03.637854Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\server_info: The system cannot find the path specified. 2023-11-29T19:46:03.637854Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\server_info runtime=0s 2023-11-29T19:46:03.637854Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:03.637854Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\stats\prometheus runtime=0s 2023-11-29T19:46:03.637854Z info port forward completed without error 2023-11-29T19:46:03.637854Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\runtime: The system cannot find the path specified. 2023-11-29T19:46:03.637854Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\runtime runtime=0s 2023-11-29T19:46:03.637854Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\certs: The system cannot find the path specified. 2023-11-29T19:46:03.637854Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\certs runtime=0s 2023-11-29T19:46:03.637854Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\clusters: The system cannot find the path specified. 2023-11-29T19:46:03.637854Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\clusters runtime=0s 2023-11-29T19:46:03.637854Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:03.637854Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl\config_dump?include_eds runtime=0s 2023-11-29T19:46:03.637854Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\application-connector-controller-manager-55d9db7d45-cx4kl runtime=0s 2023-11-29T19:46:03.637854Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:03.637854Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=18.260016s 2023-11-29T19:46:03.697621Z info COMPLETED ProxyGet istio-system/istio-ingressgateway-5b96c5b95f-t7dxs:runtime 2023-11-29T19:46:03.697897Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:03.697897Z info port forward completed without error 2023-11-29T19:46:03.697897Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\stats\prometheus runtime=276.6µs 2023-11-29T19:46:03.697897Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\runtime: The system cannot find the path specified. 2023-11-29T19:46:03.697897Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\runtime runtime=0s 2023-11-29T19:46:03.697897Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\certs: The system cannot find the path specified. 2023-11-29T19:46:03.697897Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\certs runtime=0s 2023-11-29T19:46:03.697897Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\clusters: The system cannot find the path specified. 2023-11-29T19:46:03.697897Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\clusters runtime=0s 2023-11-29T19:46:03.698398Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:03.698398Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\config_dump?include_eds runtime=500.8µs 2023-11-29T19:46:03.698398Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\listeners: The system cannot find the path specified. 2023-11-29T19:46:03.698398Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\listeners runtime=0s 2023-11-29T19:46:03.698398Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\memory: The system cannot find the path specified. 2023-11-29T19:46:03.698398Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\memory runtime=0s 2023-11-29T19:46:03.698398Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\server_info: The system cannot find the path specified. 2023-11-29T19:46:03.698398Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\server_info runtime=0s 2023-11-29T19:46:03.698398Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs runtime=777.4µs 2023-11-29T19:46:03.698398Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:03.698398Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=18.3595598s 2023-11-29T19:46:03.723906Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/inject 2023-11-29T19:46:03.820054Z info STARTING ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:runtime 2023-11-29T19:46:03.822062Z info COMPLETED ProxyGet kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t:runtime 2023-11-29T19:46:03.822062Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\memory: The system cannot find the path specified. 2023-11-29T19:46:03.822062Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\memory runtime=0s 2023-11-29T19:46:03.822062Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\server_info: The system cannot find the path specified. 2023-11-29T19:46:03.822062Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\server_info runtime=0s 2023-11-29T19:46:03.822425Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:03.822425Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\stats\prometheus runtime=0s 2023-11-29T19:46:03.822425Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\runtime: The system cannot find the path specified. 2023-11-29T19:46:03.822425Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\runtime runtime=0s 2023-11-29T19:46:03.822425Z info port forward completed without error 2023-11-29T19:46:03.822425Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\certs: The system cannot find the path specified. 2023-11-29T19:46:03.822425Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\certs runtime=0s 2023-11-29T19:46:03.822425Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\clusters: The system cannot find the path specified. 2023-11-29T19:46:03.822425Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\clusters runtime=0s 2023-11-29T19:46:03.822425Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:03.822425Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\config_dump?include_eds runtime=0s 2023-11-29T19:46:03.822425Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\listeners: The system cannot find the path specified. 2023-11-29T19:46:03.822425Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t\listeners runtime=0s 2023-11-29T19:46:03.822425Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-connectivity-validator-5b9478467d-ncm5t runtime=363.2µs 2023-11-29T19:46:03.822425Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:03.822425Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=18.4085872s 2023-11-29T19:46:03.923766Z info STARTING ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:runtime 2023-11-29T19:46:04.016619Z info COMPLETED ProxyGet kyma-system/central-application-gateway-58696795bd-8s7k2:runtime 2023-11-29T19:46:04.016619Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\memory: The system cannot find the path specified. 2023-11-29T19:46:04.016619Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\memory runtime=0s 2023-11-29T19:46:04.016619Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\server_info: The system cannot find the path specified. 2023-11-29T19:46:04.016619Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\server_info runtime=0s 2023-11-29T19:46:04.016619Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:04.016619Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\stats\prometheus runtime=0s 2023-11-29T19:46:04.016619Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\runtime: The system cannot find the path specified. 2023-11-29T19:46:04.016619Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\runtime runtime=0s 2023-11-29T19:46:04.016619Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\certs: The system cannot find the path specified. 2023-11-29T19:46:04.016619Z info port forward completed without error 2023-11-29T19:46:04.016619Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\certs runtime=0s 2023-11-29T19:46:04.017124Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\clusters: The system cannot find the path specified. 2023-11-29T19:46:04.017124Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\clusters runtime=505.1µs 2023-11-29T19:46:04.017124Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:04.017124Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\config_dump?include_eds runtime=0s 2023-11-29T19:46:04.017124Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\listeners: The system cannot find the path specified. 2023-11-29T19:46:04.017124Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2\listeners runtime=0s 2023-11-29T19:46:04.017124Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\central-application-gateway-58696795bd-8s7k2 runtime=505.1µs 2023-11-29T19:46:04.017124Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:04.017124Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=18.5667893s 2023-11-29T19:46:04.017124Z info STARTING ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:runtime 2023-11-29T19:46:04.039593Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/inject 2023-11-29T19:46:04.117150Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:runtime 2023-11-29T19:46:04.154314Z info COMPLETED ProxyGet kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt:runtime 2023-11-29T19:46:04.154314Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:04.154314Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\stats\prometheus runtime=0s 2023-11-29T19:46:04.154314Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\runtime: The system cannot find the path specified. 2023-11-29T19:46:04.154314Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\runtime runtime=0s 2023-11-29T19:46:04.154314Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\certs: The system cannot find the path specified. 2023-11-29T19:46:04.154314Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\certs runtime=0s 2023-11-29T19:46:04.154647Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\clusters: The system cannot find the path specified. 2023-11-29T19:46:04.154647Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\clusters runtime=333µs 2023-11-29T19:46:04.154647Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:04.154647Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\config_dump?include_eds runtime=0s 2023-11-29T19:46:04.154647Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\listeners: The system cannot find the path specified. 2023-11-29T19:46:04.154647Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\listeners runtime=0s 2023-11-29T19:46:04.154647Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\memory: The system cannot find the path specified. 2023-11-29T19:46:04.154647Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\memory runtime=0s 2023-11-29T19:46:04.154647Z info port forward completed without error 2023-11-29T19:46:04.154647Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\server_info: The system cannot find the path specified. 2023-11-29T19:46:04.154647Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt\server_info runtime=0s 2023-11-29T19:46:04.154647Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-auth-proxy-grafana-7ff796d866-gp6vt runtime=333µs 2023-11-29T19:46:04.154647Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:04.154647Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=18.6225511s 2023-11-29T19:46:04.221907Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:runtime 2023-11-29T19:46:04.226274Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/inject 2023-11-29T19:46:04.321722Z info STARTING ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:runtime 2023-11-29T19:46:04.321855Z info COMPLETED ProxyGet kyma-system/compass-runtime-agent-b66957b45-66jdq:runtime 2023-11-29T19:46:04.321855Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\listeners: The system cannot find the path specified. 2023-11-29T19:46:04.321855Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\listeners runtime=0s 2023-11-29T19:46:04.321855Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\memory: The system cannot find the path specified. 2023-11-29T19:46:04.321855Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\memory runtime=0s 2023-11-29T19:46:04.321855Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\server_info: The system cannot find the path specified. 2023-11-29T19:46:04.321855Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\server_info runtime=0s 2023-11-29T19:46:04.321855Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:04.321855Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\stats\prometheus runtime=0s 2023-11-29T19:46:04.321855Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\runtime: The system cannot find the path specified. 2023-11-29T19:46:04.321855Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\runtime runtime=0s 2023-11-29T19:46:04.321855Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\certs: The system cannot find the path specified. 2023-11-29T19:46:04.321855Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\certs runtime=0s 2023-11-29T19:46:04.321855Z info port forward completed without error 2023-11-29T19:46:04.322356Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\clusters: The system cannot find the path specified. 2023-11-29T19:46:04.322356Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\clusters runtime=500.3µs 2023-11-29T19:46:04.322356Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:04.322356Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq\config_dump?include_eds runtime=0s 2023-11-29T19:46:04.322356Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\compass-runtime-agent-b66957b45-66jdq runtime=500.3µs 2023-11-29T19:46:04.322356Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:04.322356Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=18.8350222s 2023-11-29T19:46:04.365078Z info COMPLETED ProxyGet kyma-system/monitoring-grafana-69ffc5d57-7fwsq:runtime 2023-11-29T19:46:04.365078Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\listeners: The system cannot find the path specified. 2023-11-29T19:46:04.365078Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\listeners runtime=0s 2023-11-29T19:46:04.365591Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\memory: The system cannot find the path specified. 2023-11-29T19:46:04.365591Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\memory runtime=512.9µs 2023-11-29T19:46:04.365591Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\server_info: The system cannot find the path specified. 2023-11-29T19:46:04.365591Z info port forward completed without error 2023-11-29T19:46:04.365591Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\server_info runtime=0s 2023-11-29T19:46:04.365591Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:04.365591Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\stats\prometheus runtime=0s 2023-11-29T19:46:04.366099Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\runtime: The system cannot find the path specified. 2023-11-29T19:46:04.366099Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\runtime runtime=508.3µs 2023-11-29T19:46:04.366099Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\certs: The system cannot find the path specified. 2023-11-29T19:46:04.366099Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\certs runtime=0s 2023-11-29T19:46:04.366099Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\clusters: The system cannot find the path specified. 2023-11-29T19:46:04.366099Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\clusters runtime=0s 2023-11-29T19:46:04.366599Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:04.366599Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq\config_dump?include_eds runtime=499.3µs 2023-11-29T19:46:04.366599Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\monitoring-grafana-69ffc5d57-7fwsq runtime=1.5205ms 2023-11-29T19:46:04.366599Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:04.366599Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=18.7967352s 2023-11-29T19:46:04.431929Z info STARTING ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:runtime 2023-11-29T19:46:04.517014Z info STARTING ProxyGet sct-products/cip-bbb764f7b-79655:runtime 2023-11-29T19:46:04.555124Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp:runtime 2023-11-29T19:46:04.555124Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\server_info: The system cannot find the path specified. 2023-11-29T19:46:04.555124Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\server_info runtime=0s 2023-11-29T19:46:04.555124Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:04.555124Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\stats\prometheus runtime=0s 2023-11-29T19:46:04.555124Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\runtime: The system cannot find the path specified. 2023-11-29T19:46:04.555124Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\runtime runtime=0s 2023-11-29T19:46:04.555124Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\certs: The system cannot find the path specified. 2023-11-29T19:46:04.555124Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\certs runtime=0s 2023-11-29T19:46:04.555510Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\clusters: The system cannot find the path specified. 2023-11-29T19:46:04.555510Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\clusters runtime=386.3µs 2023-11-29T19:46:04.555510Z info port forward completed without error 2023-11-29T19:46:04.555510Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:04.555510Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\config_dump?include_eds runtime=0s 2023-11-29T19:46:04.555510Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\listeners: The system cannot find the path specified. 2023-11-29T19:46:04.555510Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\listeners runtime=0s 2023-11-29T19:46:04.555510Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\memory: The system cannot find the path specified. 2023-11-29T19:46:04.555510Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp\memory runtime=0s 2023-11-29T19:46:04.555510Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-7b7dp runtime=386.3µs 2023-11-29T19:46:04.555510Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:04.555510Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=18.9563502s 2023-11-29T19:46:04.621449Z info STARTING ProxyGet sct-products/cip-bbb764f7b-9qp8m:runtime 2023-11-29T19:46:04.693874Z info COMPLETED ProxyGet kyma-system/warden-operator-5799cd8c7f-r62zb:runtime 2023-11-29T19:46:04.693874Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\memory: The system cannot find the path specified. 2023-11-29T19:46:04.693874Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\memory runtime=0s 2023-11-29T19:46:04.693874Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\server_info: The system cannot find the path specified. 2023-11-29T19:46:04.693874Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\server_info runtime=0s 2023-11-29T19:46:04.693874Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:04.693874Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\stats\prometheus runtime=0s 2023-11-29T19:46:04.694266Z info port forward completed without error 2023-11-29T19:46:04.694266Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\runtime: The system cannot find the path specified. 2023-11-29T19:46:04.694266Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\runtime runtime=392.3µs 2023-11-29T19:46:04.694266Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\certs: The system cannot find the path specified. 2023-11-29T19:46:04.694266Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\certs runtime=0s 2023-11-29T19:46:04.694266Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\clusters: The system cannot find the path specified. 2023-11-29T19:46:04.694266Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\clusters runtime=0s 2023-11-29T19:46:04.694767Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:04.694767Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\config_dump?include_eds runtime=500.5µs 2023-11-29T19:46:04.694767Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\listeners: The system cannot find the path specified. 2023-11-29T19:46:04.694767Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb\listeners runtime=0s 2023-11-29T19:46:04.694767Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\warden-operator-5799cd8c7f-r62zb runtime=892.8µs 2023-11-29T19:46:04.694767Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:04.694767Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=18.8401298s 2023-11-29T19:46:04.696328Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9:runtime 2023-11-29T19:46:04.696328Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\clusters: The system cannot find the path specified. 2023-11-29T19:46:04.696328Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\clusters runtime=0s 2023-11-29T19:46:04.696769Z info port forward completed without error 2023-11-29T19:46:04.696769Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:04.696769Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\config_dump?include_eds runtime=441.2µs 2023-11-29T19:46:04.696769Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\listeners: The system cannot find the path specified. 2023-11-29T19:46:04.696769Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\listeners runtime=0s 2023-11-29T19:46:04.696769Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\memory: The system cannot find the path specified. 2023-11-29T19:46:04.696769Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\memory runtime=0s 2023-11-29T19:46:04.696769Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\server_info: The system cannot find the path specified. 2023-11-29T19:46:04.696769Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\server_info runtime=0s 2023-11-29T19:46:04.697268Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:04.697268Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\stats\prometheus runtime=499.1µs 2023-11-29T19:46:04.697268Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\runtime: The system cannot find the path specified. 2023-11-29T19:46:04.697268Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\runtime runtime=0s 2023-11-29T19:46:04.697268Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\certs: The system cannot find the path specified. 2023-11-29T19:46:04.697268Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9\certs runtime=0s 2023-11-29T19:46:04.697268Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-lxdd9 runtime=940.3µs 2023-11-29T19:46:04.697268Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:04.697268Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=19.0630014s 2023-11-29T19:46:04.724790Z info STARTING ProxyGet sct-products/cip-bbb764f7b-pvbgt:runtime 2023-11-29T19:46:04.820726Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/instancesz 2023-11-29T19:46:04.868036Z info COMPLETED ProxyGet kyma-system/ory-oathkeeper-7dffc66bbb-n45lk:runtime 2023-11-29T19:46:04.868230Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:04.868230Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\stats\prometheus runtime=193.3µs 2023-11-29T19:46:04.868230Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\runtime: The system cannot find the path specified. 2023-11-29T19:46:04.868230Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\runtime runtime=0s 2023-11-29T19:46:04.868230Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\certs: The system cannot find the path specified. 2023-11-29T19:46:04.868230Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\certs runtime=0s 2023-11-29T19:46:04.868230Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\clusters: The system cannot find the path specified. 2023-11-29T19:46:04.868230Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\clusters runtime=0s 2023-11-29T19:46:04.868230Z info port forward completed without error 2023-11-29T19:46:04.868230Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-79655:runtime 2023-11-29T19:46:04.868230Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\clusters: The system cannot find the path specified. 2023-11-29T19:46:04.868230Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\clusters runtime=0s 2023-11-29T19:46:04.868230Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:04.868230Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\config_dump?include_eds runtime=0s 2023-11-29T19:46:04.868730Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\listeners: The system cannot find the path specified. 2023-11-29T19:46:04.868730Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\listeners runtime=0s 2023-11-29T19:46:04.868730Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\memory: The system cannot find the path specified. 2023-11-29T19:46:04.868730Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\memory runtime=0s 2023-11-29T19:46:04.868730Z info port forward completed without error 2023-11-29T19:46:04.868730Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\server_info: The system cannot find the path specified. 2023-11-29T19:46:04.868730Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk\server_info runtime=0s 2023-11-29T19:46:04.868730Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\kyma-system\ory-oathkeeper-7dffc66bbb-n45lk runtime=693.2µs 2023-11-29T19:46:04.868730Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:04.868730Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=19.1990056s 2023-11-29T19:46:04.868730Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:04.868730Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\config_dump?include_eds runtime=499.9µs 2023-11-29T19:46:04.868730Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\listeners: The system cannot find the path specified. 2023-11-29T19:46:04.868730Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\listeners runtime=0s 2023-11-29T19:46:04.868730Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\memory: The system cannot find the path specified. 2023-11-29T19:46:04.868730Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\memory runtime=0s 2023-11-29T19:46:04.868730Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\server_info: The system cannot find the path specified. 2023-11-29T19:46:04.868730Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\server_info runtime=0s 2023-11-29T19:46:04.868730Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:04.868730Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\stats\prometheus runtime=0s 2023-11-29T19:46:04.868730Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\runtime: The system cannot find the path specified. 2023-11-29T19:46:04.868730Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\runtime runtime=0s 2023-11-29T19:46:04.868730Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\certs: The system cannot find the path specified. 2023-11-29T19:46:04.868730Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\certs runtime=0s 2023-11-29T19:46:04.868730Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655 runtime=499.9µs 2023-11-29T19:46:04.868730Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:04.868730Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=18.8129023s 2023-11-29T19:46:04.924846Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/instancesz 2023-11-29T19:46:04.979741Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-9qp8m:runtime 2023-11-29T19:46:04.980083Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\runtime: The system cannot find the path specified. 2023-11-29T19:46:04.980083Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\runtime runtime=342.6µs 2023-11-29T19:46:04.980083Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\certs: The system cannot find the path specified. 2023-11-29T19:46:04.980083Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\certs runtime=0s 2023-11-29T19:46:04.980579Z info port forward completed without error 2023-11-29T19:46:04.980579Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\clusters: The system cannot find the path specified. 2023-11-29T19:46:04.980579Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\clusters runtime=495.4µs 2023-11-29T19:46:04.981582Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:04.981582Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\config_dump?include_eds runtime=1.0036ms 2023-11-29T19:46:04.982079Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\listeners: The system cannot find the path specified. 2023-11-29T19:46:04.982079Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\listeners runtime=496.4µs 2023-11-29T19:46:04.982079Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\memory: The system cannot find the path specified. 2023-11-29T19:46:04.982079Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\memory runtime=0s 2023-11-29T19:46:04.982079Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\server_info: The system cannot find the path specified. 2023-11-29T19:46:04.982079Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\server_info runtime=0s 2023-11-29T19:46:04.982578Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:04.982578Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\stats\prometheus runtime=0s 2023-11-29T19:46:04.982578Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m runtime=2.8378ms 2023-11-29T19:46:04.982578Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:04.982578Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=18.7190022s 2023-11-29T19:46:05.085802Z info COMPLETED ProxyGet sct-products/cip-bbb764f7b-pvbgt:runtime 2023-11-29T19:46:05.086747Z info port forward completed without error 2023-11-29T19:46:05.086747Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\config_dump?include_eds: The system cannot find the path specified. 2023-11-29T19:46:05.086747Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\config_dump?include_eds runtime=945.3µs 2023-11-29T19:46:05.087249Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\listeners: The system cannot find the path specified. 2023-11-29T19:46:05.087249Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\listeners runtime=0s 2023-11-29T19:46:05.087249Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\memory: The system cannot find the path specified. 2023-11-29T19:46:05.087249Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\memory runtime=0s 2023-11-29T19:46:05.087249Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\server_info: The system cannot find the path specified. 2023-11-29T19:46:05.087249Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\server_info runtime=0s 2023-11-29T19:46:05.087750Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\stats\prometheus: The system cannot find the path specified. 2023-11-29T19:46:05.087750Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\stats\prometheus runtime=501µs 2023-11-29T19:46:05.087750Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\runtime: The system cannot find the path specified. 2023-11-29T19:46:05.087750Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\runtime runtime=0s 2023-11-29T19:46:05.087750Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\certs: The system cannot find the path specified. 2023-11-29T19:46:05.087750Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\certs runtime=0s 2023-11-29T19:46:05.087750Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\clusters: The system cannot find the path specified. 2023-11-29T19:46:05.087750Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\clusters runtime=0s 2023-11-29T19:46:05.087750Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt runtime=1.9482ms 2023-11-29T19:46:05.088248Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo 2023-11-29T19:46:05.088248Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetProxyInfo runtime=18.6269365s 2023-11-29T19:46:05.378849Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/instancesz 2023-11-29T19:46:05.378849Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/mcsz 2023-11-29T19:46:05.499170Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/instancesz 2023-11-29T19:46:05.499170Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/mcsz 2023-11-29T19:46:05.939586Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/mcsz 2023-11-29T19:46:05.939586Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/mesh 2023-11-29T19:46:05.963400Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/mcsz 2023-11-29T19:46:05.963400Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/mesh 2023-11-29T19:46:06.385086Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/mesh 2023-11-29T19:46:06.385147Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/networkz 2023-11-29T19:46:06.396731Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/mesh 2023-11-29T19:46:06.396731Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/networkz 2023-11-29T19:46:06.904885Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/networkz 2023-11-29T19:46:06.904885Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/push_status 2023-11-29T19:46:07.039913Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/networkz 2023-11-29T19:46:07.039913Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/push_status 2023-11-29T19:46:07.431997Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/push_status 2023-11-29T19:46:07.431997Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/registryz 2023-11-29T19:46:07.766271Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/push_status 2023-11-29T19:46:07.766271Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/registryz 2023-11-29T19:46:08.029568Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/registryz 2023-11-29T19:46:08.029568Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/resourcesz 2023-11-29T19:46:08.394203Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/registryz 2023-11-29T19:46:08.394203Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/resourcesz 2023-11-29T19:46:08.563682Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/resourcesz 2023-11-29T19:46:08.563682Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/syncz 2023-11-29T19:46:08.928715Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/resourcesz 2023-11-29T19:46:08.929028Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/syncz 2023-11-29T19:46:09.172371Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/syncz 2023-11-29T19:46:09.172822Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/telemetryz 2023-11-29T19:46:09.423205Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/syncz 2023-11-29T19:46:09.423205Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/telemetryz 2023-11-29T19:46:09.731096Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET debug/telemetryz 2023-11-29T19:46:09.731393Z info STARTING PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET metrics 2023-11-29T19:46:10.069747Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET debug/telemetryz 2023-11-29T19:46:10.069747Z info STARTING PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET metrics 2023-11-29T19:46:10.277235Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-qhz9l/discovery:pilot-discovery request GET metrics 2023-11-29T19:46:10.277235Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\metrics: The system cannot find the path specified. 2023-11-29T19:46:10.277235Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\metrics runtime=0s 2023-11-29T19:46:10.277485Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\adsz: The system cannot find the path specified. 2023-11-29T19:46:10.277485Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\adsz runtime=249.4µs 2023-11-29T19:46:10.277485Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\cachez: The system cannot find the path specified. 2023-11-29T19:46:10.277485Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\cachez runtime=0s 2023-11-29T19:46:10.277485Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\endpointShardz: The system cannot find the path specified. 2023-11-29T19:46:10.277485Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\endpointShardz runtime=0s 2023-11-29T19:46:10.277485Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\push_status: The system cannot find the path specified. 2023-11-29T19:46:10.277485Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\push_status runtime=0s 2023-11-29T19:46:10.277485Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\authorizationz: The system cannot find the path specified. 2023-11-29T19:46:10.277485Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\authorizationz runtime=0s 2023-11-29T19:46:10.277485Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\clusterz: The system cannot find the path specified. 2023-11-29T19:46:10.277485Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\clusterz runtime=0s 2023-11-29T19:46:10.277485Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\configz: The system cannot find the path specified. 2023-11-29T19:46:10.277485Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\configz runtime=0s 2023-11-29T19:46:10.277985Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\endpointz: The system cannot find the path specified. 2023-11-29T19:46:10.277985Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\endpointz runtime=500.3µs 2023-11-29T19:46:10.277985Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\instancesz: The system cannot find the path specified. 2023-11-29T19:46:10.277985Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\instancesz runtime=0s 2023-11-29T19:46:10.277985Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\syncz: The system cannot find the path specified. 2023-11-29T19:46:10.277985Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\syncz runtime=0s 2023-11-29T19:46:10.277985Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\telemetryz: The system cannot find the path specified. 2023-11-29T19:46:10.277985Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\telemetryz runtime=0s 2023-11-29T19:46:10.277985Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\inject: The system cannot find the path specified. 2023-11-29T19:46:10.277985Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\inject runtime=0s 2023-11-29T19:46:10.278487Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\mcsz: The system cannot find the path specified. 2023-11-29T19:46:10.278487Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\mcsz runtime=0s 2023-11-29T19:46:10.278487Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\mesh: The system cannot find the path specified. 2023-11-29T19:46:10.278487Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\mesh runtime=0s 2023-11-29T19:46:10.278487Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\networkz: The system cannot find the path specified. 2023-11-29T19:46:10.278487Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\networkz runtime=0s 2023-11-29T19:46:10.278487Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\registryz: The system cannot find the path specified. 2023-11-29T19:46:10.278487Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\registryz runtime=0s 2023-11-29T19:46:10.278487Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\resourcesz: The system cannot find the path specified. 2023-11-29T19:46:10.278487Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l\debug\resourcesz runtime=0s 2023-11-29T19:46:10.278487Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-qhz9l runtime=1.2516ms 2023-11-29T19:46:10.278487Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetIstiodInfo 2023-11-29T19:46:10.278487Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetIstiodInfo runtime=24.9396488s 2023-11-29T19:46:10.678728Z info COMPLETED PodExec istio-system/istiod-7cf9c6df79-s7ws2/discovery:pilot-discovery request GET metrics 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\networkz: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\networkz runtime=109.8µs 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\metrics: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\metrics runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\adsz: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\adsz runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\authorizationz: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\authorizationz runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\clusterz: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\clusterz runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\configz: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\configz runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\endpointz: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\endpointz runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\mcsz: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\mcsz runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\mesh: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\mesh runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\resourcesz: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\resourcesz runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\syncz: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\syncz runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\telemetryz: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\telemetryz runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\endpointShardz: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\endpointShardz runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\inject: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\inject runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\registryz: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\registryz runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\cachez: The system cannot find the path specified. 2023-11-29T19:46:10.679229Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\cachez runtime=0s 2023-11-29T19:46:10.679229Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\instancesz: The system cannot find the path specified. 2023-11-29T19:46:10.679729Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\instancesz runtime=499.9µs 2023-11-29T19:46:10.679729Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\push_status: The system cannot find the path specified. 2023-11-29T19:46:10.679729Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2\debug\push_status runtime=0s 2023-11-29T19:46:10.679729Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\istio\istio-system\istiod-7cf9c6df79-s7ws2 runtime=609.7µs 2023-11-29T19:46:10.679729Z info Done with istio.io/istio/tools/bug-report/pkg/content.GetIstiodInfo 2023-11-29T19:46:10.679729Z info Done getting from cluster for istio.io/istio/tools/bug-report/pkg/content.GetIstiodInfo runtime=25.3408903s 2023-11-29T19:46:10.679729Z info Running Istio analyze on all namespaces and report as below: 2023-11-29T19:46:10.715237Z info cluster "" kube client started 2023-11-29T19:46:10.875819Z info gateways.networking.istio.io is now ready, building client 2023-11-29T19:46:10.875819Z info wasmplugins.extensions.istio.io is now ready, building client 2023-11-29T19:46:10.875819Z info telemetries.telemetry.istio.io is now ready, building client 2023-11-29T19:46:10.875819Z info serviceentries.networking.istio.io is now ready, building client 2023-11-29T19:46:10.875819Z info envoyfilters.networking.istio.io is now ready, building client 2023-11-29T19:46:10.875819Z info requestauthentications.security.istio.io is now ready, building client 2023-11-29T19:46:10.875819Z info destinationrules.networking.istio.io is now ready, building client 2023-11-29T19:46:10.875819Z info proxyconfigs.networking.istio.io is now ready, building client 2023-11-29T19:46:10.875819Z info peerauthentications.security.istio.io is now ready, building client 2023-11-29T19:46:10.875819Z info authorizationpolicies.security.istio.io is now ready, building client 2023-11-29T19:46:10.875819Z info workloadentries.networking.istio.io is now ready, building client 2023-11-29T19:46:10.875819Z info sidecars.networking.istio.io is now ready, building client 2023-11-29T19:46:10.875819Z info virtualservices.networking.istio.io is now ready, building client 2023-11-29T19:46:10.875819Z info workloadgroups.networking.istio.io is now ready, building client 2023-11-29T19:46:10.999940Z info Executed analyzers: 2023-11-29T19:46:10.999940Z info : annotations.K8sAnalyzer 2023-11-29T19:46:10.999940Z info : auth.AuthorizationPoliciesAnalyzer 2023-11-29T19:46:10.999940Z info : deployment.MultiServiceAnalyzer 2023-11-29T19:46:10.999940Z info : applicationUID.Analyzer 2023-11-29T19:46:10.999940Z info : deprecation.DeprecationAnalyzer 2023-11-29T19:46:10.999940Z info : externalcontrolplane.ExternalControlPlaneAnalyzer 2023-11-29T19:46:10.999940Z info : gateway.IngressGatewayPortAnalyzer 2023-11-29T19:46:10.999940Z info : gateway.CertificateAnalyzer 2023-11-29T19:46:10.999940Z info : gateway.SecretAnalyzer 2023-11-29T19:46:10.999940Z info : gateway.ConflictingGatewayAnalyzer 2023-11-29T19:46:10.999940Z info : injection.Analyzer 2023-11-29T19:46:10.999940Z info : injection.ImageAnalyzer 2023-11-29T19:46:10.999940Z info : injection.ImageAutoAnalyzer 2023-11-29T19:46:10.999940Z info : meshnetworks.MeshNetworksAnalyzer 2023-11-29T19:46:10.999940Z info : service.PortNameAnalyzer 2023-11-29T19:46:10.999940Z info : sidecar.DefaultSelectorAnalyzer 2023-11-29T19:46:10.999940Z info : sidecar.SelectorAnalyzer 2023-11-29T19:46:10.999940Z info : virtualservice.ConflictingMeshGatewayHostsAnalyzer 2023-11-29T19:46:10.999940Z info : virtualservice.DestinationHostAnalyzer 2023-11-29T19:46:10.999940Z info : virtualservice.DestinationRuleAnalyzer 2023-11-29T19:46:10.999940Z info : virtualservice.GatewayAnalyzer 2023-11-29T19:46:10.999940Z info : virtualservice.JWTClaimRouteAnalyzer 2023-11-29T19:46:10.999940Z info : virtualservice.RegexAnalyzer 2023-11-29T19:46:10.999940Z info : destinationrule.CaCertificateAnalyzer 2023-11-29T19:46:10.999940Z info : serviceentry.Analyzer 2023-11-29T19:46:10.999940Z info : webhook.Analyzer 2023-11-29T19:46:10.999940Z info : envoyfilter.EnvoyPatchAnalyzer 2023-11-29T19:46:10.999940Z info : telemetry.ProviderAnalyzer 2023-11-29T19:46:10.999940Z info : telemetry.SelectorAnalyzer 2023-11-29T19:46:10.999940Z info : telemetry.DefaultSelectorAnalyzer 2023-11-29T19:46:10.999940Z info : telemetry.LightstepAnalyzer 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.AuthorizationPolicy 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.DestinationRule 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.EnvoyFilter 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.Gateway 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.PeerAuthentication 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.ProxyConfig 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.RequestAuthentication 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.ServiceEntry 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.Sidecar 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.Telemetry 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.VirtualService 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.WasmPlugin 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.WorkloadEntry 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.WorkloadGroup 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.MeshNetworks 2023-11-29T19:46:10.999940Z info : schema.ValidationAnalyzer.MeshConfig 2023-11-29T19:46:11.000440Z info Analysis Report: 2023-11-29T19:46:11.001440Z info Warning [IST0103] (Pod sct-products/minio-6ddc6c665d-b76cv) The pod sct-products/minio-6ddc6c665d-b76cv is missing the Istio proxy. This can often be resolved by restarting or redeploying the workload. Warning [IST0103] (Pod sct-products/minio-provisioning-df4nw) The pod sct-products/minio-provisioning-df4nw is missing the Istio proxy. This can often be resolved by restarting or redeploying the workload. Warning [IST0103] (Pod sct-products/redis-redis-cluster-0) The pod sct-products/redis-redis-cluster-0 is missing the Istio proxy. This can often be resolved by restarting or redeploying the workload. Warning [IST0103] (Pod sct-products/redis-redis-cluster-1) The pod sct-products/redis-redis-cluster-1 is missing the Istio proxy. This can often be resolved by restarting or redeploying the workload. Warning [IST0103] (Pod sct-products/redis-redis-cluster-2) The pod sct-products/redis-redis-cluster-2 is missing the Istio proxy. This can often be resolved by restarting or redeploying the workload. Warning [IST0138] (Gateway kyma-system/kyma-gateway-application-connector) Duplicate certificate in multiple gateways [kyma-system/kyma-gateway-application-connector kyma-system/kyma-gateway] may cause 404s if clients re-use HTTP2 connections. Warning [IST0162] (Gateway kyma-system/kyma-gateway-application-connector) The gateway is listening on a target port (port 443) that is not defined in the Service associated with its workload instances (Pod selector istio=ingressgateway). If you need to access the gateway port through the gateway Service, it will not be available. Warning [IST0162] (Gateway kyma-system/kyma-gateway) The gateway is listening on a target port (port 443) that is not defined in the Service associated with its workload instances (Pod selector app=istio-ingressgateway,istio=ingressgateway). If you need to access the gateway port through the gateway Service, it will not be available. Warning [IST0162] (Gateway kyma-system/kyma-gateway) The gateway is listening on a target port (port 80) that is not defined in the Service associated with its workload instances (Pod selector app=istio-ingressgateway,istio=ingressgateway). If you need to access the gateway port through the gateway Service, it will not be available. Info [IST0102] (Namespace cert-manager) The namespace is not enabled for Istio injection. Run 'kubectl label namespace cert-manager istio-injection=enabled' to enable it, or 'kubectl label namespace cert-manager istio-injection=disabled' to explicitly mark it as not needing injection. Info [IST0102] (Namespace default) The namespace is not enabled for Istio injection. Run 'kubectl label namespace default istio-injection=enabled' to enable it, or 'kubectl label namespace default istio-injection=disabled' to explicitly mark it as not needing injection. Info [IST0102] (Namespace observability) The namespace is not enabled for Istio injection. Run 'kubectl label namespace observability istio-injection=enabled' to enable it, or 'kubectl label namespace observability istio-injection=disabled' to explicitly mark it as not needing injection. Info [IST0102] (Namespace sap-btp-operator) The namespace is not enabled for Istio injection. Run 'kubectl label namespace sap-btp-operator istio-injection=enabled' to enable it, or 'kubectl label namespace sap-btp-operator istio-injection=disabled' to explicitly mark it as not needing injection. Info [IST0118] (Service kyma-system/compass-runtime-agent-service) Port name (port: 443, targetPort: 443) doesn't follow the naming convention of Istio port. Info [IST0118] (Service observability/grafana) Port name service (port: 80, targetPort: 3000) doesn't follow the naming convention of Istio port. Info [IST0118] (Service sct-products/minio) Port name minio-api (port: 9000, targetPort: minio-api) doesn't follow the naming convention of Istio port. Info [IST0118] (Service sct-products/minio) Port name minio-console (port: 9001, targetPort: minio-console) doesn't follow the naming convention of Istio port. Info [IST0118] (Service kyma-system/monitoring-grafana-secured) Port name proxy-status (port: 15020, targetPort: 15020) doesn't follow the naming convention of Istio port. Info [IST0118] (Service kyma-system/monitoring-grafana) Port name proxy-status (port: 15020, targetPort: 15020) doesn't follow the naming convention of Istio port. Info [IST0118] (Service kyma-system/rma-kube-state-metrics) Port name metrics (port: 8081, targetPort: 8081) doesn't follow the naming convention of Istio port. Info [IST0118] (Service kyma-system/rma-system-logs-collector) Port name otlp (port: 4317, targetPort: 4317) doesn't follow the naming convention of Istio port. Info [IST0118] (Service sap-btp-operator/sap-btp-operator-webhook-service) Port name webhook-server (port: 443, targetPort: webhook-server) doesn't follow the naming convention of Istio port. Info [IST0118] (Service observability/seq) Port name ingestion (port: 5341, targetPort: ingestion) doesn't follow the naming convention of Istio port. Info [IST0118] (Service observability/seq) Port name ui (port: 80, targetPort: ui) doesn't follow the naming convention of Istio port. Info [IST0118] (Service kyma-system/skr-webhook) Port name webhook (port: 443, targetPort: watcher-port) doesn't follow the naming convention of Istio port. Info [IST0135] (Pod kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t) Annotation "sidecar.istio.io/inject" has been deprecated in favor of the "sidecar.istio.io/inject" label and may not work in future Istio versions. Info [IST0135] (Pod kyma-system/central-application-gateway-58696795bd-8s7k2) Annotation "sidecar.istio.io/inject" has been deprecated in favor of the "sidecar.istio.io/inject" label and may not work in future Istio versions. Info [IST0135] (Pod kyma-system/compass-runtime-agent-b66957b45-66jdq) Annotation "sidecar.istio.io/inject" has been deprecated in favor of the "sidecar.istio.io/inject" label and may not work in future Istio versions. Info [IST0135] (Pod kyma-system/monitoring-kube-state-metrics-54dbf5f558-9ztnc) Annotation "sidecar.istio.io/inject" has been deprecated in favor of the "sidecar.istio.io/inject" label and may not work in future Istio versions. Info [IST0135] (Pod kyma-system/monitoring-operator-94dd887cb-625x6) Annotation "sidecar.istio.io/inject" has been deprecated in favor of the "sidecar.istio.io/inject" label and may not work in future Istio versions. Info [IST0135] (Pod kyma-system/monitoring-prometheus-istio-server-5cb8594cc9-vrxj9) Annotation "sidecar.istio.io/inject" has been deprecated in favor of the "sidecar.istio.io/inject" label and may not work in future Istio versions. Info [IST0135] (Pod kyma-system/prometheus-monitoring-prometheus-0) Annotation "sidecar.istio.io/inject" has been deprecated in favor of the "sidecar.istio.io/inject" label and may not work in future Istio versions. Info [IST0135] (Pod kyma-system/rma-kube-state-metrics-7bc6d47cf5-nmjww) Annotation "sidecar.istio.io/inject" has been deprecated in favor of the "sidecar.istio.io/inject" label and may not work in future Istio versions. Info [IST0135] (Pod kyma-system/rma-victoria-metrics-agent-5865697f5b-lbkx4) Annotation "sidecar.istio.io/inject" has been deprecated in favor of the "sidecar.istio.io/inject" label and may not work in future Istio versions. Info [IST0135] (Pod kyma-system/warden-admission-657b4576d4-gpjvs) Annotation "sidecar.istio.io/inject" has been deprecated in favor of the "sidecar.istio.io/inject" label and may not work in future Istio versions. 2023-11-29T19:46:11.001940Z info 2023-11-29T19:46:11.001940Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\analyze\allNamespaces\allNamespaces: The system cannot find the path specified. 2023-11-29T19:46:11.001940Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\analyze\allNamespaces\allNamespaces runtime=0s 2023-11-29T19:46:11.001940Z info Done writing files for dir C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\analyze\allNamespaces runtime=0s 2023-11-29T19:46:11.001940Z info Done running Istio analyze on all namespaces and report runtime=322.2113ms 2023-11-29T19:46:11.001940Z error podExec error: error exec'ing into istio-system/istio-ingressgateway-5b96c5b95f-2qmzj istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "e8a923f8cc32746be84002d5a4bf2c3c72f87086f69a96091d264e809b420bf3": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into istio-system/istio-ingressgateway-5b96c5b95f-2qmzj istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "897899dff4296133c41723206f5ee8024c25abffc0759ecafbfae23223dfda52": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into istio-system/istio-ingressgateway-5b96c5b95f-5vxdj istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "11edf64eff3abae34e5b10c9680f5f86ff9b35c5bc8c09fdf05e740aa8d0eb1d": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into istio-system/istio-ingressgateway-5b96c5b95f-5vxdj istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "609b9779730cc64aea0857cefd1f93fffd380c8fb3bf0f5c1b935b184926b16f": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into istio-system/istio-ingressgateway-5b96c5b95f-t7dxs istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "2d3d73aa3a4bb7f23a412847f24aa261149d94da14283ea692842c7d81da1844": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into istio-system/istio-ingressgateway-5b96c5b95f-t7dxs istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "8e23e3fb2a6d1c95df53572c8d0c93986d4b57495013fb378a38826cf0bd07ca": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "bd25aedf8d0ab198f006e3ccf876d255b2921133d65eea65ae6d7aafb45d5ed7": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/application-connector-controller-manager-55d9db7d45-cx4kl istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "3426524ca9a3136737327ebad935f27c992f4fe841fe81bbef75d0981ee00d75": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "3691c5eadc8f1738c1a82e0eb3120f7584b3918ac9f878f64b2f7915340356fc": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/central-application-connectivity-validator-5b9478467d-ncm5t istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "d338929e5f4db0f8f39b5cb66891770c55186d0df9baa278ff302448ac8fe844": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/central-application-gateway-58696795bd-8s7k2 istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "1a354a0d8f2685149d2bcd6a5ce13e55109f402cef6fba4b5570a1383f7c8c6a": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/central-application-gateway-58696795bd-8s7k2 istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "85fdeb59ed06593725b6e2ec791b04715d8ba55c168b6696b81f3f6f65178353": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/compass-runtime-agent-b66957b45-66jdq istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "876cc2570e6080f0eb96f3bc89c134b905e07a99d16d1ecdfb25cb72e18da3a6": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/compass-runtime-agent-b66957b45-66jdq istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "732619573d33dbe91bcc9971a951f9542dfb3a6b7550962aeef661b1be507708": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "6d6554242074950534b03b30a50570dc2b482874861a3222bc7b8199f51254b7": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/monitoring-auth-proxy-grafana-7ff796d866-gp6vt istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "5fbd180e6c4a54c65d87370c4d2d58c559c494e3579a51e768a4f2896e4ca9f1": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/monitoring-grafana-69ffc5d57-7fwsq istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "dd9d3774b8278904f31b621208cf59d4f0642fb862d5bbb80a24fee2e9a61815": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/monitoring-grafana-69ffc5d57-7fwsq istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "393fdcad3b7dd9985a47b9f4b1dd17eeaca5fff94bb694982ff37ce8d5021589": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "db6abc662d5ccd1c626b10228b8920adcb8c2cb987d212099bbc1625f76b10b0": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/ory-oathkeeper-7dffc66bbb-7b7dp istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "39c68887816f2455ff4bf566103d41ae24d993c657773d59df6f675e58850b59": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9 istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "20e4984806de2cc2ae39b8ea64e4d7ad322f8d2b014ea9a330efe4300f06f1c4": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/ory-oathkeeper-7dffc66bbb-lxdd9 istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "9ac3e646cf7676371738e990a067b9d8b7916de36c940fb8314442ccd98732d4": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/ory-oathkeeper-7dffc66bbb-n45lk istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "2b79fea2acfc59c9451c9f649d26887492b72b5319e9afbfee65ffd7a1890bd3": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/ory-oathkeeper-7dffc66bbb-n45lk istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "1c3b57fd14bef02d4646edbfd795705d36cb1532acc48d14dd0c88f4dd7f2555": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/warden-operator-5799cd8c7f-r62zb istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "f830eeeec79f8a2bedb6481a7e4d100650e3fbb2a6cf2d63821d4231f2ab929e": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into kyma-system/warden-operator-5799cd8c7f-r62zb istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "338bd4a0627d52fbf8fd4c430c7b41284e539ea6fbe7b2a1e959be64c8c14616": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into sct-products/cip-bbb764f7b-79655 istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "a7f661371ab32759cac834d995ecef139698c22057deb15015a0f78bd0c14a3f": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into sct-products/cip-bbb764f7b-79655 istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "e472a6285854712304235ea30d927b6e177358c8467452d842ea2620d354a8a6": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into sct-products/cip-bbb764f7b-9qp8m istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "56f54f0a58dd3515fd87f08423e0bde551a6c791d12a99f09238ec202a175631": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into sct-products/cip-bbb764f7b-9qp8m istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "9c7ebce253a03d6f07966d6743a701ed14def18a383028ab4ada407ecf20b8ec": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into sct-products/cip-bbb764f7b-pvbgt istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "7bc23d826f1697689ab1eacc781b27fe455d740edd524f0843f90eb11a9f1d1e": OCI runtime exec failed: exec failed: unable to start container process: exec: "find": executable file not found in $PATH: unknown stderr: stdout: , podExec error: error exec'ing into sct-products/cip-bbb764f7b-pvbgt istio-proxy container: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "cc1f96adce59666e9b23d82294d08886a36fe1ac6ad08f9620fb91be7a2828e4": OCI runtime exec failed: exec failed: unable to start container process: exec: "netstat": executable file not found in $PATH: unknown stderr: stdout: 2023-11-29T19:46:11.004434Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\istio-proxy.log: The system cannot find the path specified. 2023-11-29T19:46:11.004434Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-2qmzj\istio-proxy.log runtime=2.4946ms 2023-11-29T19:46:11.004434Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\istio-proxy.log: The system cannot find the path specified. 2023-11-29T19:46:11.004434Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-pvbgt\istio-proxy.log runtime=0s 2023-11-29T19:46:11.004434Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\istio-proxy.log: The system cannot find the path specified. 2023-11-29T19:46:11.004434Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-79655\istio-proxy.log runtime=0s 2023-11-29T19:46:11.009434Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\istio-proxy.log: The system cannot find the path specified. 2023-11-29T19:46:11.009434Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-t7dxs\istio-proxy.log runtime=4.9993ms 2023-11-29T19:46:11.009434Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\istio-proxy.log: The system cannot find the path specified. 2023-11-29T19:46:11.009434Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\sct-products\cip-bbb764f7b-9qp8m\istio-proxy.log runtime=0s 2023-11-29T19:46:11.014934Z error open C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\istio-proxy.log: The system cannot find the path specified. 2023-11-29T19:46:11.014934Z info Done writing file for path C:\Users\SeanK\AppData\Local\Temp\bug-report\bug-report\proxies\istio-system\istio-ingressgateway-5b96c5b95f-5vxdj\istio-proxy.log runtime=5.5001ms 2023-11-29T19:46:11.014934Z info Done with bug-report command before generating the archive file runtime=26.2928573s 2023-11-29T19:46:11.014934Z info Creating an archive at D:\Repositories\_SCT\btp-product-infra\src\bug-report.tar.gz.

@SeanKilleen
Copy link
Author

Referencing the cross-posted issue at Kyma: kyma-project/kyma#18447

@hzxuzhonghu
Copy link
Member

Istio doesnot duplicate authority. Could be some rules generated by kyma.

@SeanKilleen
Copy link
Author

@hzxuzhonghu just to clarify -- istio does nothing to the :authority pseudo-header? I'm asking because I'm struggling to see what is passed to istio/envoy at the time it arrives at Kyma, and based on the patterns of failures I'm seeing, it looks like it's possible that in some situations, the :authority pseudo-header is appended to in some way.

@hzxuzhonghu
Copy link
Member

Envoy updates the :authority header if a host rewrite option (one of host_rewrite_literal, auto_host_rewrite, host_rewrite_header, or host_rewrite_path_regex)

@SeanKilleen
Copy link
Author

I confirmed that this appears to be an issue in the Envoy proxy used by Istio:

envoyproxy/envoy#31118 (comment)

Any client that sends both the :authority pseudo-header and the Host header will run into this problem with Envoy it seems, as Envoy will concatenate the :authority field which winds up in an authority that Istio then doesn't find any routes for because it's looking for a single instance of the name.

@howardjohn
Copy link
Member

In the log you showed, Envoy is receiving a request with the :authority already duplicate. So its likely something calling Istio/Envoy, not Envoy itself.

@SeanKilleen
Copy link
Author

That's what I thought at first too, but my understanding now after looking at that issue is that at the time that message is outputted, the concatenation on the Envoy side has already taken place, so it's not actually capturing the raw values that were sent. I suppose it's also possible that those are the raw values that are sent, and that Envoy means to return only the distinct value. But regardless, it seems confirmed that Envoy is not handling that header in compliance with https://www.rfc-editor.org/rfc/rfc9113#section-8.3.1

At this point, I think I'll probably turn my attention to seeing if there's anything I can do to modify the calling practices of the client in my particular situation (SAP NetWeaver) other than disabling its HTTP/2 support.

@howardjohn
Copy link
Member

Wow, I am shocked to find sending a Host and :authority seems to be valid IFF they are identical (which, in your case they seem to be). So I change my mind, you may be correct ("may" because I am neither an HTTP nor Envoy expert so cannot really speak authoritatively)

@SeanKilleen
Copy link
Author

SeanKilleen commented Nov 30, 2023

Wow, I am shocked to find sending a Host and :authority seems to be valid IFF they are identical

Agreed!

I am neither an HTTP nor Envoy expert so cannot really speak authoritatively

You're certainly more of an expert than I am 😆

@howardjohn
Copy link
Member

Anyhow, this appears to be an Envoy issue, so opening an issue under https://github.com/envoyproxy/envoy is probably the next step. Ideally reproduced in plain envoy but probably its sufficient without

@SeanKilleen
Copy link
Author

@howardjohn agreed -- the link I posted earlier is the link to the envoy issue I created.

Therefore, I'm OK if you want to close this out. 👍

@SeanKilleen
Copy link
Author

Closing this. We confirmed that the Envoy issue is what was impacting us. We found a workaround for the HTTP client we're forced to use that "tricks" it into not supplying both headers, and thus allows us to make HTTP/2 requests successfully from that environment.

Thank you for your time and attention on this!

@SeanKilleen
Copy link
Author

SeanKilleen commented Dec 8, 2023

ℹ️ FWIW, Envoy merged the fix for this issue and it will presumably be available in future releases (though I'm unsure how the back-porting process works for that from an istio perspective)

@zirain
Copy link
Member

zirain commented Dec 9, 2023

@SeanKilleen can you kindly link the upstream fix?

@SeanKilleen
Copy link
Author

SeanKilleen commented Dec 9, 2023

@zirain envoy issue here: envoyproxy/envoy#31118

PR with fix is linked from that issue and closes the issue. 👍 (Edit: Direct link: envoyproxy/envoy#30005)

@zirain
Copy link
Member

zirain commented Dec 9, 2023

@SeanKilleen thanks!

@SeanKilleen
Copy link
Author

@zirain FYI, I learned on the Envoy fix that it will be in the upcoming 1.29 unless someone wants to backport it earlier. Would back-porting it to 1.28.x or 1.27.x enable Istio to incorporate these changes sooner? If so I may consider trying to tackle it myself.

(My personal stake in this is wanting to see this make its way into Istio sooner so that Kyma can more easily upgrade their existing version of Istio)

@zirain
Copy link
Member

zirain commented Jan 3, 2024

@SeanKilleen you should request envoy maintainers backport the target PR.

@SeanKilleen
Copy link
Author

@zirain I'm not currently a contributor to that project and don't want to come off as entitled making a request. If istio has a relationship established it might make better sense to ask through that channel.

In case I attempt to backport it myself, which versions should it be backported against?

@zirain
Copy link
Member

zirain commented Jan 3, 2024

@zirain I'm not currently a contributor to that project and don't want to come off as entitled making a request. If istio has a relationship established it might make better sense to ask through that channel.

In case I attempt to backport it myself, which versions should it be backported against?

I think you directly ask @alyssawilk if they can do backport under the original PR.

@SeanKilleen
Copy link
Author

@zirain which versions do you think it it should be back-ported to? 1.28.x or earlier as well?

@SeanKilleen
Copy link
Author

@zirain FYI, this is now out in Envoy 1.29: https://github.com/envoyproxy/envoy/releases/tag/v1.29.0

You mentioned working to get it back-ported and I'm happy to follow-up in that thread, but I need to know whether back-porting to 1.28.x is good enough or if you need it earlier as well.

@zirain
Copy link
Member

zirain commented Jan 24, 2024

@SeanKilleen it had been backporrted to latest version of 1.28.x and 1.27.x.

@SeanKilleen
Copy link
Author

@zirain oh, I completely missed that! Thanks so much for clarifying. I'll keep an eye out for the istio releases that pull it in.

@zirain
Copy link
Member

zirain commented Jan 24, 2024

@zirain oh, I completely missed that! Thanks so much for clarifying. I'll keep an eye out for the istio releases that pull it in.

maybe you can check with istio 1.20.2, if not, please wait for a while, a new release in on the way.

@SeanKilleen
Copy link
Author

SeanKilleen commented Apr 3, 2024

Hi @zirain,

I wanted to reopen and follow up on this because I think the issue may still persist and I want to ensure the changes made it in as expected. You noted that I should wait until Istio 1.20.2 to test this. Our Kyma environment is currently using Istio 1.20.3 and I'm seeing the same behavior.

I think the source of confusion is that you noted that the Envoy fix had been back-ported to 1.28.x and 1.27.x, but I can't find evidence of that. (I see it in main and in v1.29, but not in v1.28 for example.) And in the original PR itself, it was noted that it would have to be back-ported. When you noted it had been backported, I (incorrectly) assumed you must have seen something I hadn't, so I didn't attempt to clarify. I think you intended to ask me to work to get it backported, and my reading of your words was that it had been back-ported.

Can you recommend a best next step from where things stand today? Thank you!

CC @hzxuzhonghu and @howardjohn as you both may have insight as well.

@zirain
Copy link
Member

zirain commented Apr 3, 2024

I wanted to reopen and follow up on this because I think the issue may still persist and I want to ensure the changes made it in as expected. You noted that I should wait until Istio 1.20.2 to test this. Our Kyma environment is currently using Istio 1.20.3 and I'm seeing the same behavior.

I think the source of confusion is that you noted that the Envoy fix had been back-ported to 1.28.x and 1.27.x, but I can't find evidence of that. (I see it in main and in v1.29, but not in v1.28 for example.) And in the original PR itself, it was noted that it would have to be back-ported. When you noted it had been backported, I (incorrectly) assumed you must have seen something I hadn't, so I didn't attempt to clarify. I think you intended to ask me to work to get it backported, and my reading of your words was that it had been back-ported.

Can you recommend a best next step from where things stand today? Thank you!

you can try to ping @phlax or @alyssawilk (I'm not sure who is the right person own backport) at the original PR, request to backport to v1.28.

@SeanKilleen
Copy link
Author

I've worked with the Envoy team to back-port the changes (grateful for their support!). I've confirmed they will be available in the upcoming 1.28.2 and 1.27.4 releases.

A few quick follow-up questions:

  • Assuming these Envoy releases go out shortly, as I expect they will, would it be Istio's intention to incorporate them into a theoretical 1.20.5 release?
  • Is there anything I can to do support that effort? I'm not familiar with how things operate here yet but like I did with Envoy I'm happy to learn.
  • Is there a rough target date for any upcoming 1.20.5 release? Want to make sure I set my expectations appropriately.

@ericvn
Copy link
Contributor

ericvn commented Apr 4, 2024

@SeanKilleen Istio pulls Envoy commits on a daily basis into our branches (assuming there was one), thus any patch build should point to an Envoy commit no more than a day old. It does take some time to run the build through acceptance tests, so when it actually is released, the Envoy may be a week old (possibly more). The @istio/release-managers-1-20 should be able to give you an idea when they are planning another patch release. I don't see any anticipated date in the #release-1.20 channel topic. If you are looking for envoyproxy/envoy#33301, I expect that would be referenced in the 1.20 branch shortly. I hope this process makes sense to you.

@SeanKilleen
Copy link
Author

@ericvn it absolutely does make sense, and I appreciate the awesomely thorough write-up. Thank you!

@phlax
Copy link

phlax commented Apr 4, 2024

@ericvn flagging our (Envoy) pending patch releases contain CVE fixes so might be good to cut istio releases also

@SeanKilleen
Copy link
Author

From what I can tell, I believe this fix is included in the Istio 1.20.5 release. While I can't yet test that in my own environment until SAP BTP Kyma makes it available, I wanted to note it here and close this out.

Thank you, all!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

7 participants