-->

whaust

顯示具有 k8s 標籤的文章。 顯示所有文章
顯示具有 k8s 標籤的文章。 顯示所有文章

2025年12月22日 星期一

醫院資訊系統環境中 Prometheus 與 Grafana 監測架構之深度分析與可行性評估報告

醫院資訊系統環境中 Prometheus 與 Grafana 監測架構之深度分析與可行性評估報告

探討觀測技術棧在異質性高、資料交換頻繁且法規嚴格的 HIS 環境中的應用價值

這份深度分析與可行性評估報告旨在探討 PrometheusGrafana 觀測技術棧在異質性高、資料交換頻繁且法規嚴格的醫院資訊系統(HIS)環境中的應用價值與實施架構。

一、 Prometheus:多維度指標採集與醫療資料建模

Prometheus 作為核心引擎,負責從分散的醫療端點收集時間序列資料。其在醫院環境的核心優勢如下:

  • • 多維度標籤系統 (Labels): 醫院 IT 管理人員可透過標籤精細定義監控對象,例如區分「ICU」或「急診室」的伺服器,使複雜的分析查詢能在毫秒內完成。
  • • 醫療應用指標類型:
    • 計數器 (Counter): 統計門診掛號訊息總數或失敗次數。
    • 測量儀 (Gauge): 監控藥房自動化系統的當前佇列長度或主機剩餘記憶體。
    • 直方圖 (Histogram) 與摘要 (Summary): 分析 PACS 影像載入延遲分佈,或評估檢驗報告 API 的回應時效。
  • • 拉取模型 (Pull Model) 的安全性: Prometheus 由伺服器主動抓取數據,對醫院內網安全至關重要。它能簡化防火牆配置,並具備端點健康自動偵測功能(up=0)。









二、 Grafana:臨床洞察的視覺化平台

Grafana 將枯燥的監控數據轉化為直觀的儀表板,為醫院提供統一觀測視窗(Single Pane of Glass)。

功能特性 醫療場景應用描述
跨系統整合 將 HIS 硬體狀態與門診候診人數等業務數據整合在同一螢幕。
動態分析工具 利用變數化查詢切換樓層;註釋功能標記 HIS 更新或斷電事件。
主動告警 當掛號佇列積壓時,透過 Teams/Webhook 即時通知工程師。



三、 針對醫療特有協定的適配性分析

針對醫院特有的傳輸協定,此架構表現出高度的擴展性:

• Mirth Connect 監控 (HL7/FHIR): 監控訊息通道狀態,即時發現訊息堆積是否影響臨床報告呈現。

• PACS/DICOM 效能監測: 追蹤磁碟寫入延遲,並模擬 DICOM C-FIND 請求主動測試服務。

• 基礎設施與網路: SNMP Exporter 將交換器與不斷電系統 (UPS) 資訊轉譯為監控指標。

四、 法規合規與數據安全(HIPAA 視角)

監控系統本身必須符合 HIPAA 對 PHI(受保護健康資訊)的保護要求:

  • 身分認證與 RBAC: 整合醫院 AD/LDAP,確保僅授權人員能查看。
  • 傳輸加密: 強制採用 TLS 1.2+ 加密。
  • 敏感資訊脫敏: 利用 Relabeling 功能自動移除或雜湊處理標籤中的潛在 PHI。

五、 可行性評估與實施效益

  • 提升事故修復效率 (MTTR): 研究顯示平均每週可節省 6 小時以上的分析時間。
  • 資源優化: 協助 CIO 識別資源過剩節點,降低硬體採購成本。
  • 擴展建議: 建議整合 VictoriaMetricsThanos 以實現高壓縮比的長久存儲。

結論與比喻

Prometheus 與 Grafana 的組合已成為醫院 IT 環境監控的黃金標準。

如果 HIS 是醫院的各個科室,Prometheus 就像是一套覆蓋全院的生理監視系統,持續收集所有機器的脈搏與血壓;Grafana 則是護理站的大型監控牆;而 VictoriaMetrics 則像是病歷室,負責將數據長期、高效地封存。




2025年10月10日 星期五

Kubernetes Configuration Recovery: Retrieving and Cleaning Deployed YAML

Kubernetes Configuration Recovery: Retrieving and Cleaning Deployed YAML

This document outlines the technical facts regarding configuration storage in Kubernetes and provides a reliable method for technical leads to retrieve the current, deployed resource configurations, which closely resemble the original YAML files.

1. Kubernetes Does Not Store the Original YAML File Path

When a user executes kubectl apply -f [yaml file], Kubernetes does not record the actual location of the original file. Instead, it only stores the desired state of the resources, as defined in the YAML, within its internal database, etcd.

2. Obtaining the Resource's Current Configuration from the Cluster

While the original YAML file itself cannot be located within the cluster, the cluster holds the complete current configuration of the deployed resource, which is highly similar to the source file.

Steps to Retrieve the Deployed Resource Configuration:

A. Identify the Resource Name, Type, and Namespace

You must first determine the resource's Kind, Name, and its Namespace (if applicable).

Resource Type Command to List Resources Notes
StorageClass (SC) kubectl get sc Typically cluster-scoped (no specific Namespace).
PersistentVolume (PV) kubectl get pv Cluster-scoped.
PersistentVolumeClaim (PVC) kubectl get pvc --all-namespaces Use -n <namespace> if the Namespace is known. e.g., for Elasticsearch.
Workload (e.g., Elasticsearch) kubectl get statefulset --all-namespaces
kubectl get deployment --all-namespaces
Identify the name (e.g., elasticsearch-master) and its Namespace. (Workloads are usually StatefulSet or Deployment).

B. Export the Resource's YAML Configuration

Once the resource is identified, use kubectl get with the -o yaml flag to export its current configuration.

Resource Type Example Command
StorageClass kubectl get sc <sc-name> -o yaml > storageclass-<sc-name>.yaml
(e.g., kubectl get sc netapp-trident-sc -o yaml > netapp-trident-sc.yaml)
PersistentVolume (PV) kubectl get pv <pv-name> -o yaml > pv-<pv-name>.yaml
PersistentVolumeClaim (PVC) kubectl get pvc <pvc-name> -n <namespace> -o yaml > pvc-<pvc-name>.yaml
Elasticsearch StatefulSet/Deployment # Assuming StatefulSet
kubectl get statefulset <es-statefulset-name> -n <namespace> -o yaml > es-statefulset.yaml

🚨 Critical Note: Cleaning the Exported YAML

The exported YAML files will contain numerous fields automatically added by Kubernetes during runtime. These include: status, creationTimestamp, resourceVersion, uid, and lengthy metadata.annotations (especially kubectl.kubernetes.io/last-applied-configuration).

If a "clean" YAML file is required for subsequent kubectl apply commands or for version control, these system-generated fields must be manually removed or stripped.

  • Priority Fields to Delete (Top-Level): status, metadata.creationTimestamp, metadata.resourceVersion, metadata.uid, metadata.selfLink (if present), and often metadata.generation.
  • For Deployment/StatefulSet, review and clean any unnecessary auto-generated annotations and labels within spec.template.metadata.

C. Using the last-applied-configuration Annotation (If Applicable)

If the initial kubectl apply command was executed without the --save-config=false flag, Kubernetes stores a copy of the successfully applied YAML content in a metadata.annotations field called kubectl.kubernetes.io/last-applied-configuration.

This configuration is typically closer to the original YAML (e.g., it lacks the status block) than the full kubectl get -o yaml output.

You can retrieve this clean configuration using tools like jq or yq:

# Retrieve for a StatefulSet, outputting JSON and piping to jq
kubectl get statefulset <es-statefulset-name> -n <namespace> -o jsonpath='{.metadata.annotations."kubectl\.kubernetes\.io/last-applied-configuration"}' | jq . > clean-es-statefulset.json

# Alternative: Retrieve for a StatefulSet, using yq to output clean YAML (requires yq)
# kubectl get statefulset <es-statefulset-name> -n <namespace> -o yaml | yq '.metadata.annotations."kubectl\.kubernetes\.io/last-applied-configuration"' -r | yq -P > clean-es-statefulset.yaml

Summary for Technical Management

The most robust method to reconstruct the configuration is:

  1. Use kubectl get <resource_type> -n <namespace> -o yaml to export the resource.
  2. Manually clean or use scripting tools to strip the exported YAML of status and system-generated metadata, rendering it a re-applyable configuration file.

Concurrently, the new administration must establish a mandatory process to store all future configuration files in a version control system (e.g., Git) and document the file location corresponding to each deployed resource, preventing recurrence of this "missing file" issue.



2025年4月30日 星期三

K8s 入門補充資料

1. OS選用 大型企業用 RedHat 比較多 , 個人或是開發者用 Ubuntu 比較多 

www.redhat.com
www.ubuntu.com

2. K8s安裝部分 : 

2.1 印度阿伯帶你學系列,可以練習印度式英文 

https://www.youtube.com/watch?v=uUupRagM7m0&list=PL2We04F3Y_41jYdadX55fdJplDvgNGENo 

2.2 搞笑IT KOL帶你學K8s, 聽概念 

https://www.youtube.com/watch?v=7bA0gTroJjw 

2.3 沈浸式K8s學習 

https://www.youtube.com/watch?v=2T86xAtR6Fo 


3. 大聯盟採用K8s

https://technology.mlblogs.com/anthos-on-bare-metal-how-mlb-turned-ball-parks-into-on-prem-k8-clusters-295031253a33


祝各位學習順利

2025年2月27日 星期四

技術通報:Kubernetes 1.31.7 のサポートと HSPC マルチパス設定ガイド

技術通報:Kubernetes 1.31.7 のサポートと HSPC マルチパス設定ガイド

一、通報の目的

Kubernetes 1.31.7 のアップグレード計画および Hitachi HSPC の最新サポート戦略に対応するため、システムアップグレードの注意点と正しい SAN マルチパス設定方法を提供し、システムの安定運用とマウント失敗問題の回避を目的としています。

二、影響範囲

  • Hitachi HSPC を利用してストレージリソースを管理している Kubernetes クラスター環境
  • Hitachi HSPC ストレージドライバーを展開し、SAN 経由でストレージにアクセスしているユーザー

三、技術ガイド

1. アップグレード順序の推奨

以下の順序でアップグレードを実施してください:

  1. Hitachi HSPC を Kubernetes 1.31.7 をサポートするバージョンにアップグレード
  2. Kubernetes クラスターを 1.31.7 にアップグレード

2. Multipath 設定の要求

SAN 環境でのストレージデバイスのマウントの安定性を確保するため、/etc/multipath.conf ファイルに以下の設定を行ってください:

find_multipaths no

3. 禁止設定(マウント失敗の原因)

以下の設定値は使用しないでください。 使用すると、マウントエラーが発生する可能性があります:

  • find_multipaths: yes
  • find_multipaths: smart

4. Trident のサポートポリシー

Trident はリリース以来、find_multipaths: no 設定を推奨しており、これによりマルチパス処理ロジックとの互換性が確保されます。

四、今後の対応提案

  • システム管理者は現在の multipath 設定ファイルを直ちに確認してください
  • すべてのアップグレードプロセスが本通報の推奨手順に従っていることを確認してください
  • 問題が発生した場合、内部 IT サポートチームまたはシステムインテグレーターに連絡してください

📌 技術連絡先

  • 三井ユナイテッド海外営業所

2024年10月24日 星期四

Pod 네트워킹에서 네트워크 루프 방지: 원인 및 해결 방법

 

Pod 네트워킹 아키텍처에서 네트워크 루프가 발생하는 경우, 다음과 같은 원인으로 인해 발생할 수 있습니다.


1. 브리지 구성 문제

  • 이 아키텍처에서 브리지(Bridge)는 서로 다른 가상 네트워크 인터페이스 간에 패킷을 전달하는 역할을 합니다. 브리지가 잘못 구성되면 패킷이 무한히 전달되어 네트워크 루프가 발생할 수 있습니다. 예를 들어, 브리지가 하나의 가상 네트워크 인터페이스에서 온 트래픽을 동일한 인터페이스나 이미 전달된 다른 인터페이스로 다시 보낼 수 있습니다.
  • 해결 방법: 브리지 규칙과 포워딩 규칙을 확인하여 패킷이 중복 전송되지 않도록 하십시오.

2. 다중 브리지 또는 잘못된 라우팅

  • 그림에서 다중 브리지가 존재하거나 라우팅이 잘못된 경우 루프가 발생할 수 있습니다. 예를 들어, Pod 내부의 가상 인터페이스(veth-red1의 IP는 192.168.1.11, veth-blue1의 IP는 192.168.1.12)가 여러 브리지에 의해 관리되거나 브리지(cbr0의 IP는 192.168.1.10/24)와 외부 인터페이스(eth0/ens4의 IP는 10.128.0.2) 간의 라우팅이 올바르게 구성되지 않은 경우, 패킷이 네트워크 인터페이스 간에 무한히 전달되어 네트워크 루프가 형성될 수 있습니다.
  • 해결 방법: Pod 간의 트래픽을 전달하는 브리지가 하나만 있는지 확인하고, 브리지(cbr0)와 외부 네트워크 인터페이스(eth0/ens4) 간의 라우팅 구성이 올바른지 확인하여 라우팅 충돌을 방지하십시오.

3. 잘못된 가상 인터페이스(veth pair) 구성

  • 가상 네트워크 인터페이스 페어(veth-red1veth-blue1)는 쌍으로 존재하며, 한쪽은 컨테이너 내부에 있고 다른 한쪽은 호스트 네트워크 네임스페이스에 있습니다. 이러한 가상 네트워크 인터페이스 페어가 잘못 구성되었거나 루프백 경로가 잘못 설정된 경우, 패킷이 동일한 인터페이스 간에 반복적으로 전송되어 네트워크 루프가 형성될 수 있습니다.
  • 해결 방법: 각 가상 네트워크 인터페이스 페어의 구성을 확인하여 불필요한 경로를 생성하지 않도록 올바르게 매핑되었는지 확인하십시오.

4. STP(스패닝 트리 프로토콜)가 활성화되지 않음

  • 전통적인 네트워크에서 스패닝 트리 프로토콜(STP)은 네트워크 루프를 방지하기 위한 일반적인 메커니즘입니다. 브리지에서 STP가 활성화되지 않은 경우, 네트워크 루프를 감지하고 차단할 수 없습니다.
  • 해결 방법: 브리지 구성에서 스패닝 트리 프로토콜을 활성화하여 루프가 발생하는 것을 방지하십시오.

5. 컨테이너 내부 네트워크 구성 오류

  • 컨테이너 내부 네트워크 네임스페이스에서 라우팅 또는 NAT 구성이 잘못된 경우, 트래픽이 자신에게 다시 라우팅되어 무한 루프를 일으킬 수 있습니다.
  • 해결 방법: 각 Pod 내부의 네트워크 구성을 확인하여 트래픽이 자신에게 잘못 라우팅되지 않도록 하십시오.

이것이 네트워크 루프를 유발할 수 있는 일반적인 원인들입니다. 브리지, 가상 네트워크 인터페이스 페어 및 라우팅 구성을 주의 깊게 점검하면 네트워크 루프 문제를 효과적으로 예방하거나 해결할 수 있습니다.

2023年2月20日 星期一

[K8s YAML] nginx yaml 產生範例

K8s Yaml 檔, 目的在於產生 nginx 服務 , 固定運行在 worker1 , worker2 , worker3 三個 node , 三個 node , pvc 的空間要 50G , storage class 為 basic1

 
 #!/bin/bash

apiVersion: v1
kind: Service
metadata:
  name: nginx-service
spec:
  selector:
    app: nginx
  ports:
    - name: http
      port: 80
      targetPort: 80
  type: ClusterIP
---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: nginx-deployment
spec:
  replicas: 3
  selector:
    matchLabels:
      app: nginx
  template:
    metadata:
      labels:
        app: nginx
    spec:
      containers:
        - name: nginx-container
          image: nginx
          volumeMounts:
            - name: nginx-pvc
              mountPath: /usr/share/nginx/html
      volumes:
        - name: nginx-pvc
          persistentVolumeClaim:
            claimName: nginx-pvc
      nodeSelector:
        kubernetes.io/hostname: worker1,worker2,worker3
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: nginx-pvc
spec:
  storageClassName: basic1
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 50Gi



2023年2月15日 星期三

在 Kubernetes 叢集中實現高可用性 (HA) 的步驟

在 Kubernetes 叢集中實現高可用性 (HA) 的步驟:


1. 準備多個節點:需要至少三個節點來部署高可用性 Kubernetes 叢集。每個節點都應該安裝 Kubernetes 執行環境,以及任何必要的依賴項。


2. 設置共享存儲解決方案:為了讓 Kubernetes API 服務器在節點故障的情況下保持可用,它需要訪問共享存儲解決方案。這可以是分散式文件系統、網絡附加存儲 (NAS) 設備或存儲區網絡 (SAN)。


3. 安裝負載均衡器:負載均衡器用於分發流量到 Kubernetes API 服務器實例,以確保請求均勻分佈,即使節點故障,API 服務器仍然可用。您可以使用硬件負載均衡器、基於雲的負載均衡器或軟件負載均衡器,如 HAProxy。


4. 安裝並配置 Kubernetes 組件:在叢集中的每個節點上安裝 Kubernetes 組件,包括 Kubernetes API 服務器、etcd、kube-controller-manager、kube-scheduler 和 kubelet。


5. 配置 etcd:etcd 是存儲 Kubernetes 叢集配置和狀態的鍵值存儲。將 etcd 配置為在叢集的每個節點上運行,並配置其使用共享存儲解決方案。


6. 配置 Kubernetes API 服務器:配置 Kubernetes API 服務器使用負載均衡器分發流量到 API 服務器實例,並配置其使用 etcd 作為其數據存儲。


7. 配置 Kubernetes 控制器管理器和調度器:配置這些組件使用負載均衡器和 etcd。


8. 將節點加入叢集:將每個節點加入叢集,並配置 kubelet 使用負載均衡器進行 API 服務器請求。


9. 測試叢集:安裝和配置完成後,通過部署一些測試應用程序並進行驗證來測試您的 Kubernetes 叢集是否正常運作。您可以使用 Kubernetes 官方提供的 Demo 應用程序或自己的應用程序進行測試。


綜上所述,要實現 Kubernetes 叢集的高可用性,需要在每個節點上安裝和配置 Kubernetes 組件,包括 etcd、Kubernetes API 服務器、kube-controller-manager、kube-scheduler 和 kubelet。同時還需要設置共享存儲解決方案和負載均衡器,以確保 Kubernetes API 服務器在節點故障的情況下仍然可用。最後,通過部署測試應用程序並進行驗證來測試 Kubernetes 叢集的運作是否正常。

2023年1月3日 星期二

안전하게 노드 비우기

성공적으로 반환 되면 kubectl drain모든 포드(이전 단락에서 설명한 대로 제외된 포드 제외)가 안전하게 제거되었음을 나타냅니다(원하는 단계적 종료 기간을 준수하고 정의한 PodDisruptionBudget을 준수함). 그런 다음 물리적 시스템의 전원을 끄거나 클라우드 플랫폼에서 실행 중인 경우 가상 시스템을 삭제하여 노드를 종료하는 것이 안전합니다. 먼저 배수하려는 노드의 이름을 식별합니다. 다음을 사용하여 클러스터의 모든 노드를 나열할 수 있습니다.
     

root# kubectl get nodes

다음으로 Kubernetes에 노드를 비우도록 지시합니다.
     

root# kubectl drain <Node Name>

반환되면(오류 없이) 노드의 전원을 끌 수 있습니다(또는 이와 동등하게 클라우드 플랫폼에 있는 경우 노드를 지원하는 가상 머신 삭제). 유지 관리 작업 중에 클러스터에 노드를 남겨두면 다음을 실행해야 합니다.
     

root# kubectl uncordon <Node Name>

이후 Kubernetes에 노드에 대한 새 포드 예약을 재개할 수 있음을 알립니다.
    

[root@rh91-worker1 dashboard]# kubectl drain rh91-worker3
node/rh91-worker3 cordoned
error: unable to drain node "rh91-worker3" due to error:[cannot delete Pods wies-data-nodes-3, default/bda-es-data-nodes-4, default/bda-es-data-nodes-6, deff-xfgbc, kubernetes-dashboard/dashboard-metrics-scraper-64bcc67c9c-68nrw, kubekube-system/calico-node-44qlq, kube-system/kube-proxy-6xx9m, metallb-system/sp
There are pending nodes to be drained:
 rh91-worker3
cannot delete Pods with local storage (use --delete-emptydir-data to override)-es-data-nodes-6, default/bda-es-data-nodes-9, default/bda-es-master-nodes-0, 4bcc67c9c-68nrw, kubernetes-dashboard/kubernetes-dashboard-5c8bd6b59-6qzr8
cannot delete DaemonSet-managed Pods (use --ignore-daemonsets to ignore): kube
[root@rh91-worker1 dashboard]# kubectl drain rh91-worker3 --delete-emptdir-dat
error: unknown flag: --delete-emptdir-data
See 'kubectl drain --help' for usage.
[root@rh91-worker1 dashboard]# kubectl drain rh91-worker3 --delete-emptydir-da
node/rh91-worker3 already cordoned
error: unable to drain node "rh91-worker3" due to error:cannot delete DaemonSepeaker-d2gpw, trident/trident-csi-v72wf, continuing command...
There are pending nodes to be drained:
 rh91-worker3
cannot delete DaemonSet-managed Pods (use --ignore-daemonsets to ignore): kube
[root@rh91-worker1 dashboard]# kubectl drain rh91-worker3 --delete-emptydir-da
node/rh91-worker3 already cordoned
Warning: ignoring DaemonSet-managed Pods: kube-system/calico-node-44qlq, kube-
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
evicting pod kubernetes-dashboard/kubernetes-dashboard-5c8bd6b59-6qzr8
evicting pod default/bda-es-data-nodes-6
evicting pod default/kibana-kb-6dfb4fbf7b-r49jg
evicting pod default/bda-es-data-nodes-9
evicting pod default/bda-es-master-nodes-0
evicting pod elastic-system/elastic-operator-0
evicting pod kube-system/metrics-server-55dd79d7bf-xfgbc
evicting pod default/bda-es-data-nodes-3
evicting pod kubernetes-dashboard/dashboard-metrics-scraper-64bcc67c9c-68nrw
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
pod/kubernetes-dashboard-5c8bd6b59-6qzr8 evicted
pod/kibana-kb-6dfb4fbf7b-r49jg evicted
pod/dashboard-metrics-scraper-64bcc67c9c-68nrw evicted
pod/elastic-operator-0 evicted
pod/metrics-server-55dd79d7bf-xfgbc evicted
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-3
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-3
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
pod/bda-es-data-nodes-9 evicted
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-3
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-3
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-3
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-3
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-3
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-3" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-3
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afte
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after : Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry aftes): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after : Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after : Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after : Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afted as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afted as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afted as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afted as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afted as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after as it would violate the pod's disruption budget.
pod/bda-es-data-nodes-3 evicted
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry afted as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
error when evicting pods/"bda-es-data-nodes-4" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-4
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
pod/bda-es-data-nodes-4 evicted
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
error when evicting pods/"bda-es-master-nodes-0" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-master-nodes-0
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
pod/bda-es-master-nodes-0 evicted
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-6" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-6
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
pod/bda-es-data-nodes-6 evicted
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-1
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
error when evicting pods/"bda-es-data-nodes-1" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
evicting pod default/bda-es-data-nodes-1
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
pod/bda-es-data-nodes-1 evicted
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
error when evicting pods/"bda-es-data-nodes-2" -n "default" (will retry after 5s): Cannot evict pod as it would violate the pod's disruption budget.
evicting pod default/bda-es-data-nodes-2
pod/bda-es-data-nodes-2 evicted
node/rh91-worker3 drained


Popular