Closed alex-vmw closed 1 year ago
The breakdown in the logic looks to be here https://github.com/fabric8io/fluent-plugin-kubernetes_metadata_filter/blob/master/lib/fluent/plugin/kubernetes_metadata_cache_strategy.rb#L45-L56 where we find NS meta and not podmeta. It's a deleted pod so we will NEVER find meta so this should likely update the batch_cache_miss to short circuit the logic.
When you say "stuck" do you mean it takes time to process entries or it actually blocks entries all-to-gether?
When you say "stuck" do you mean it takes time to process entries or it actually blocks entries all-to-gether?
When I say "stuck", I mean all we see in the fluentd logs for hours and hours is error message posted, so we assumed nothing else was being processed.
P.S. Can you also explain why it would be doing 100+ API calls per second?
When I say "stuck", I mean all we see in the fluentd logs for hours and hours is error message posted, so we assumed nothing else was being processed.
Note the error message is "debug" and if you trace this to the code it actually returns an empty hash so lower your loglevel and the message goes away.
P.S. Can you also explain why it would be doing 100+ API calls per second?
Messages are run through the filter in batches. The filter includes a caching mechanism and attempts to retrieve meta from the cache or hits the API server when its not found. There is logic to avoid the behavior you are seeing which is to skip trying to make an API call if you are never going to find anything; no info will ever be found for a deleted pod. In this case, it looks like the issue is we find the namespace meta but not the pod meta, but this scenario is never recognized as a "miss" so it continues to try and find the pod metadata when evaluating subsequent records. This scenario will play out for every deleted pod which:
In this case, it looks like the issue is we find the namespace meta but not the pod meta, but this scenario is never recognized as a "miss" so it continues to try and find the pod metadata when evaluating subsequent records. This scenario will play out for every deleted pod which:
- produces log messages
- the kublet has not GC'd the container log files before fluent is able to read them
Sorry, are you saying that this is intended behavior or are you saying that this is in fact an issue and filter needs protection from the scenario you described above?
In this case, it looks like the issue is we find the namespace meta but not the pod meta, but this scenario is never recognized as a "miss" so it continues to try and find the pod metadata when evaluating subsequent records. This scenario will play out for every deleted pod which:
- produces log messages
- the kublet has not GC'd the container log files before fluent is able to read them
Sorry, are you saying that this is intended behavior or are you saying that this is in fact an issue and filter needs protection from the scenario you described above?
I believe it is in fact an issue but I will need to write a unit test to confirm. Regardless, I do not believe messages are "stuck" (I encourage you to see if messages are delivered) but the filter is unnecessarily hitting the API server.
Regardless, I do not believe messages are "stuck" (I encourage you to see if messages are delivered) but the filter is unnecessarily hitting the API server.
In fact, we started investigating this issue because we stopped receiving logs. However, I can't 100% be sure that metadata filter was the issue of not receiving logs as we have seen way too many in_tail
plugin issues lately that also result in logs not getting processed.
In fact, we started investigating this issue because we stopped receiving logs. However, I can't 100% be sure that metadata filter was the issue of not receiving logs as we have seen way too many
in_tail
plugin issues lately that also result in logs not getting processed.
Our experience with fluend in a containerized environment for OpenShift is this: when you begin to see a high container density, and higher log volumes, fluentd is unable to recognize the file rotations that occur from the container runtime. Whole sets of files are being rotated out from under fluent and it never sees the logs. This is because fluentd is simply not efficient enough in reading the large sets of container files and is CPU bound. You can mitigate this loss by moving to a more performant collector like fluentbit or vector which is C and Rust based. The throughput is an order of magnitude faster.
@jcantrill Sorry to bug you, do you have any possible ETA for a fix?
Hi @jcantrill , are there any news about that topic?
I have not done anything to address this issue. PRs are welcome.
Closing this issue due to age but please reopen with any PRs or if the behavior still exists
Describe the bug kubernetes_metadata_filter gets stuck in a loop trying to read metadata for a deleted kubernetes pod and stops sending logs.
To Reproduce Have fluentd collect metadata of kubernetes pods while constantly creating and deleting kubernetes pods.
Expected behavior kubernetes_metadata_filter should NOT get gets stuck in a loop trying to read metadata for a deleted kubernetes pod.
Your Environment Fluentd:
1.12.3
. kubernetes_metadata_filter:2.6.0
Operating system:Ubuntu 20.04.1 LTS
Kernel version: 5.4.0-62-genericFluentd Configuration
Error Log
2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:55 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api 2021-06-04 19:16:56 +0000 [debug]: #0 Exception 'HTTP status code 404, pods "cat-api-5c5c564d99-tq6ng" not found for GET https://172.21.0.1/api/v1/namespaces/ara-cat-beta/pods/cat-api-5c5c564d99-tq6ng' encountered fetching pod metadata from Kubernetes API v1 endpoint https://172.21.0.1:443/api